:root {
    --rv-primary: #3771c1;
    --rv-primary-light: #e9eeff;
    --rv-primary-light-two: #f1f4ff;
    --rv-secondary: #46af1f;
    --rv-secondary-light: #f0ffef;
    --rv-black: #000000;
    --rv-white: #ffffff;
    --rv-heading-color: #11111b;
    --rv-text-color: #3f3f3f;
    --rv-dark: #131e23;
    --rv-body-font: "Poppins";
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: var(--rv-body-font);
  color: var(--rv-text-color);
  font-size: 16px;
}
body::after {
  content: "";
  background: radial-gradient(circle, rgba(61, 191, 74, 0.3490196078) 0%, rgba(62, 191, 75, 0.09) 100%);
  width: 800px;
  height: 700px;
  filter: blur(50px);
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--bs-black);
}

.btn-primary {
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 400;
  min-width: 150px;
  background-color: var(--rv-primary);
  border: 1px solid var(--rv-primary);
  color: var(--rv-white);
}
.btn-primary span {
  color: var(--rv-white);
}
.btn-primary span i {
  color: var(--rv-white);
}

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

.btn-secondary {
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 400;
  min-width: 150px;
  background-color: var(--rv-secondary);
  border: 1px solid var(--rv-secondary);
  color: var(--rv-white);
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--bs-black);
}

.inner-title .title {
  font-size: 24px;
  color: #454545;
}

.main-section, .top-section {
  padding: 80px 0;
}

.inner-first-section {
  padding-top: 160px;
}

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

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

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

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

.light_bg {
    background-color: #feffea;
}

.dark_bg {
  background-color: var(--rv-dark);
}

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

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

.dark_bg h1,
.dark_bg h2,
.dark_bg h3,
.dark_bg h4,
.dark_bg h5,
.dark_bg h6 {
  color: #fff !important;
}

.dark_bg p,
.dark_bg a,
.dark_bg li,
.dark_bg span {
  color: #fff !important;
}

.header-main {
  position: fixed;
  width: 100%;
  z-index: 9;
}
.header-main .navbar {
  padding: 0;
  margin: 0;
}
.header-main .navbar .navbar-brand img {
    height: 100px;
    width: auto;
    padding: 10px;
}

header.header-main.scrolled-up {
  position: fixed;
}

.navbar.navbar-expand-lg {
  width: 100%;
  background-color: transparent !important;
  background: transparent;
  padding: 0 20px;
}

.navbar.navbar-expand-lg::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0 0 25px 25px;
  left: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px 0px rgba(0, 0, 0, 0.0705882353);
}

.main_banner {
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
}

.navbar-expand-lg .navbar-nav .nav-item.dropdown {
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-item.dropdown::after {
  content: "\f107";
  position: absolute;
  font-family: fontawesome;
  right: 12px;
  top: 5px;
  transition: 0.3s ease-in-out;
  font-size: 20px;
  color: var(--rv-secondary);
}

.navbar-expand-lg .navbar-nav .nav-item.dropdown:hover::after {
  transform: rotate(180deg);
  transition: 0.3s ease-in-out;
  color: var(--rv-primary);
}

.navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
  padding-right: 30px;
}

.navbar-expand-lg .navbar-nav .dropdown-item .dropdown-link {
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .dropdown-item .dropdown-link:hover {
  color: var(--rv-primary);
}

.main_banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  /* transform: rotate(-10deg); */
  background-color: var(--rv-primary-light);
  border-radius: 100%;
}

.main_banner .banner_content {
  padding-top: 80px;
}

.main_banner .banner_content .title {
  font-weight: 700;
  font-size: 34px;
  color: var(--rv-heading-color);
}

.main_banner .banner_content .title span {
  position: relative;
  display: block;
  font-size: 38px;
}

.main_banner .banner_content .title span::after {
  background: #00adee;
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  bottom: 6px;
  -webkit-clip-path: polygon(0 60%, 90% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 60%, 90% 100%, 100% 100%, 0% 100%);
}

.main_banner .banner_content p {
  margin-bottom: 35px;
  margin-top: 20px;
  width: 85%;
}

.investor_corner {
  position: relative;
}

.investor_corner::after {
  content: "";
  position: absolute;
  background-image: url(../images/shape2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.investor_corner .item {
  margin: 15px 10px;
}

.investor_box {
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.investor_box:hover {
  background-color: #fff;
  text-decoration: none;
  box-shadow: 0 0 15px 2px rgba(229, 72, 44, 0.2);
}

.investor_box img {
  width: 80px !important;
  margin: 0 auto;
}

.investor_box h5 {
  font-weight: 600;
  font-size: 18px;
  padding: 20px 0 5px 0;
}

.investor_box p {
  font-size: 14px;
  line-height: 20px;
}

.why_chooseus {
  position: relative;
}

.why_chooseus::after {
  content: "";
  position: absolute;
  background-image: url(../images/shape3.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: -20px;
  left: 0px;
}

.why_chooseus::before {
  content: "";
  position: absolute;
  background-image: url(../images/line_shape.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 78%;
  height: 70%;
  top: 37%;
  left: 11%;
  opacity: 0.7;
}

.hexa_box {
  display: block;
  width: 220px;
  height: 220px;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.hexa_box.hexa_box1 {
  margin-right: 0;
}

.hexa_box.hexa_box2 {
  margin-right: 10px;
}

.hexa_box.hexa_box4 {
  margin-left: 0;
}

/*.hexa_box::before {
    content: "";
    position: absolute;
    border: 85px solid transparent;
    border-top: none;
    border-bottom: 40px solid #fff;
    top: -40px;
    left: 0;
    transition: all 0.2s ease-in-out;
}
.hexa_box::after {
    content: "";
    position: absolute;
    border: 85px solid transparent;
    border-bottom: none;
    border-top: 40px solid #fff;
    bottom: -40px;
    left: 0;
    transition: all 0.2s ease-in-out;
}*/
.hexa_box::before {
  content: "";
  position: absolute;
  background-image: url(../images/hexa_shape1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hexa_box::after {
  content: "";
  position: absolute;
  background-image: url(../images/hexa_shape2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hexa_box .icon {
  position: relative;
  z-index: 999;
  padding-top: 52px;
}

.hexa_box .icon img {
  width: 65px;
}

.hexa_box h5 {
  position: relative;
  z-index: 999;
  font-weight: 700;
  font-size: 17px;
  line-height: 18px;
  padding-top: 5px;
}

.service_row {
  display: flex;
}

.service_box {
  background-color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin: 15px;
}

.service_box:hover {
  background-color: #deffed;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
}

.service_box.box1:hover {
  background-color: rgba(230, 131, 169, 0.1411764706);
}

.service_box.box2:hover {
  background-color: rgba(118, 150, 253, 0.1411764706);
}

.service_box.box3:hover {
  background-color: rgba(127, 115, 250, 0.1411764706);
}

.service_box.box4:hover {
  background-color: rgba(253, 103, 176, 0.1411764706);
}

.service_box.box5:hover {
  background-color: rgba(113, 193, 241, 0.1411764706);
}

.service_box.box6:hover {
  background-color: rgba(122, 122, 237, 0.1411764706);
}

.service_box.box7:hover {
  background-color: rgba(145, 145, 245, 0.1411764706);
}

.service_box.box8:hover {
  background-color: rgba(234, 106, 60, 0.1411764706);
}

.main_section .col-md-3 {
  padding: 0 10px;
}

.service_box .icon {
  display: inline-block;
  width: 120px;
  height: 110px;
  border-radius: 100%;
  padding: 0px;
  margin-bottom: 10px;
  text-align: left;
}

.service_box .icon img {
  width: 100px;
}

.service_box h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  min-height: 42px;
  text-transform: uppercase;
  color: var(--rv-primary);
}

.service_box.box1 h5 {
  color: #e683a9;
}

.service_box.box2 h5 {
  color: #7696fd;
}

.service_box.box3 h5 {
  color: #7f73fa;
}

.service_box.box4 h5 {
  color: #fd67b0;
}

.service_box.box5 h5 {
  color: #71c1f1;
}

.service_box.box6 h5 {
  color: #7a7aed;
}

.service_box.box7 h5 {
  color: #9191f5;
}

.service_box.box8 h5 {
  color: #ea6a3c;
}

.service_box .view_more {
  text-decoration: none;
  font-weight: 500;
  color: #e683a9;
  font-size: 16px;
}

.service_box.box2 .view_more {
  color: #7696fd;
}

.service_box.box3 .view_more {
  color: #7f73fa;
}

.service_box.box4 .view_more {
  color: #fd67b0;
}

.service_box.box5 .view_more {
  color: #71c1f1;
}

.service_box.box6 .view_more {
  color: #7a7aed;
}

.service_box.box7 .view_more {
  color: #9191f5;
}

.service_box.box8 .view_more {
  color: #ea6a3c;
}

.service_box p {
  line-height: 20px;
}

.testimonial_card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  padding: 50px 50px 100px 50px;
  position: relative;
}

.testimonial_card::after {
  content: "";
  background-color: var(--rv-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 15px 15px 0 0;
}

.testimonials {
  text-align: center;
}

.testimonials p {
  color: #fff;
  font-size: 17px;
}

.testimonials .images {
  width: 120px;
  margin: 0 auto;
  border: 3px solid var(--rv-primary);
  border-radius: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.testimonials .client_info {
  margin-top: 20px;
}

.testimonials .client_info h4 {
  font-weight: 600;
  margin: 0;
}

.testimonials .client_info h5 {
  font-weight: 500;
}

#testimonialCar .owl-nav {
  position: relative;
  margin-top: -80px;
}

#testimonialCar .owl-nav button {
  background-color: var(--rv-primary) !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

#testimonialCar .owl-nav button span {
  color: #fff;
  font-size: 40px;
  font-weight: 200;
  line-height: 38px;
}

#testimonialCar .owl-nav .owl-prev {
  position: absolute;
  left: 20%;
}

#testimonialCar .owl-nav .owl-next {
  position: absolute;
  right: 20%;
}

.footer-main {
  padding-top: 60px;
  background: radial-gradient(circle, rgba(14, 132, 251, 0.35) 0%, rgba(62, 191, 75, 0.09) 100%);
  position: relative;
  border-radius: 80px 80px 0 0;
}
.footer-main::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  filter: blur(50px);
  opacity: 0.2;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c1d4e7;
  margin: 0 auto;
}
.footer-main .foot-title {
  margin-bottom: 20px;
}
.footer-main .foot-col.intro img {
  height: 160px;
}
.footer-main .foot-col .menu {
  padding-left: 0;
}
.footer-main .foot-col .menu li {
  list-style: none;
  padding-bottom: 10px;
  font-size: 14px;
}
.footer-main .foot-col .menu li a {
  font-weight: 600;
  color: var(--rv-text-color);
  text-decoration: none;
  transition: 0.5s;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.footer-main .foot-col .menu li a:hover {
  transition: 0.5s;
  transform: translateX(10px);
  color: var(--rv-primary);
}
.footer-main .contact-info p a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--rv-text-color);
}
.footer-main .contact-info p a i {
  color: #e14a42;
}
.footer-main .footer-bottom {
  padding: 10px 0;
  -webkit-backdrop-filter: saturate(200%) blur(30px);
          backdrop-filter: saturate(200%) blur(30px);
}
.footer-main .footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 34px;
  height: 3px;
  margin: 5px 7px;
  background: #a2a1a1;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--rv-primary);
}

.newsletter {
  margin-bottom: 50px;
}

.newsletter h1 {
  font-weight: 700;
  font-size: 32px;
}

.newsletter_form .form-group {
  position: relative;
  width: 50%;
  margin: 20px auto;
}

.newsletter_form .form-group .form-control {
  border-radius: 6px;
  height: 60px;
}

.newsletter_form .form-group .btn-primary {
  position: absolute;
  right: 4px;
  top: 4px;
}

.sip_section {
  padding: 40px 0;
}

.sip_section .ui-slider.ui-slider-horizontal {
  border: 1px solid var(--rv-primary);
  border-radius: 30px;
  height: 10px;
}

.sip_section .ui-slider-handle {
  background: var(--rv-primary) !important;
  border-radius: 100%;
  width: 22px !important;
  height: 22px !important;
  border: 1px solid var(--rv-primary) !important;
  outline: none !important;
}

.sip_section .ui-slider-range {
  background-color: var(--rv-primary);
  border: 1px solid var(--rv-primary) 2 !important;
  height: 12px !important;
  margin-top: -1px;
  border-radius: 30px 0 0 20px !important;
}

/*.plan_box {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}*/
.plan_box {
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  margin-bottom: 25px;
  display: block;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

.plan_box .image img {
  width: 300px;
}

.plan_box .content h4 {
  font-weight: 700;
  font-size: 24px;
  color: var(--rv-secondary);
  text-transform: uppercase;
  opacity: 0.8;
}

.blog_card {
  position: relative;
  background-color: var(--rv-primary-light);
  border-radius: 20px;
  overflow: hidden;
}

.blog_card .blog_thumb {
  position: relative;
}

.blog_card .blog_text {
  padding: 20px;
  background-color: var(--rv-white);
}

.blog_card .blog_text .date {
  position: absolute;
  background-color: var(--rv-primary);
  top: 15px;
  right: 15px;
  padding: 3px 15px;
  border-radius: 30px;
  color: #fff;
}

.blog_card .blog_text .category {
  color: var(--rv-primary);
  font-weight: 500;
  margin-top: 0;
  background: #eafaff;
  transform: translateX(-20px);
  padding: 5px 10px;
  border-radius: 0 10px 10px 0;
  display: inline-block;
}

.blog_card .blog_text h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 30px;
}

.blog_card .blog_text h4 a {
  color: var(--rv-heading-color);
}

.blog_card .blog_text .know_more {
  text-decoration: none;
  margin-top: 15px;
  display: block;
}

.blog_card .blog_text .read-more-btn {
  color: var(--rv-primary);
  font-size: 15px;
}

#blogCar .owl-nav button {
  background-color: var(--rv-heading-color) !important;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  margin: 20px 10px;
}

#blogCar .owl-nav button span {
  color: #fff;
  font-size: 32px;
  line-height: 28px;
}

.post-detail .blog_title {
  font-size: 24px;
  font-weight: 600;
}

.post-detail .view_img {
  height: 520px;
  overflow: hidden;
  margin: 15px 0;
}

.post-detail .view_img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  height: 100%;
}

.pagination {
  margin-top: 20px;
}

.partner_section {
  background-color: var(--rv-primary-light);
}

.inner_banner {
  background: linear-gradient(90deg, var(--rv-primary-light-two) 0%, rgb(243, 244, 255) 60%);
  padding: 130px 0 50px 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 120px 0;
}

.inner_banner .banner_content {
  padding: 70px 0;
  text-align: center;
}

.inner_banner .banner_content .title {
  font-size: 32px;
  font-weight: 600;
}

.inner_banner .banner_img img {
  width: 550px;
}

.breadcrumb {
  display: block;
  padding: 0;
}

.breadcrumb .breadcrumb-item {
  display: inline-block;
}

.breadcrumb .breadcrumb-item a {
  color: #151515;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--rv-primary);
}

.content_box {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 12px 2px rgba(39, 38, 35, 0.12);
  padding: 30px;
}

.login-section .content_box {
  position: relative;
  overflow: hidden;
}

.login-section .content_box .form-control {
  background-color: #edf3f5;
  border: 1px solid #edf3f5;
}

.login-section .content_box .form-control:focus {
  border: 1px solid #00adee;
}

.login-section .content_box::after {
  content: "";
  position: absolute;
  background: #00adee;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
}

.login-section .content_text {
  height: 100%;
  display: flex;
  align-items: center;
}

.login-section .content_text .login-panel-main h3 {
  font-size: 28px;
  font-weight: 600;
}

.login-section .content_box img {
  position: relative;
  z-index: 9;
}

.login_panel {
  padding: 70px 30px;
}

.login_panel .forget-pw {
  text-align: right;
}

.mv-section {
  margin-top: 60px;
}

.mv-box {
  background-color: #ffffff;
  padding: 20px;
  min-height: 120px;
  border-radius: 25px;
  margin-bottom: 30px;
  display: flex;
  box-shadow: 0 10px 15px 1px rgba(0, 0, 0, 0.1411764706);
}

.mv-box .icon {
  background: var(--rv-primary);
  border-radius: 100%;
  padding: 10px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-box .icon img {
  width: 100px;
}

.text {
  padding-left: 20px;
}

.text h4 {
  font-size: 24px;
  font-weight: 600;
}

.contact-box {
  background-color: var(--rv-primary);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
}

.contact-box .col-md-4:nth-child(2) {
  border-left: 1px solid #22c3ff;
  border-right: 1px solid #22c3ff;
}

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

.contact-box h5 i::before {
  font-size: 24px;
}

.contact-box p,
.contact-box a {
  color: #fff;
}

.contact_map .content_box {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.investor_awareness .image img {
  width: 100%;
}

.awareness_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  align-items: center;
}

.awareness_box.not_planned {
  background-color: rgba(255, 0, 0, 0.0431372549);
  border-radius: 35px 35px 0 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.awareness_box.planned {
  background-color: #eef9f2;
  border-radius: 0 0 35px 35px;
  -webkit-clip-path: polygon(0% 0, 100% 15%, 100% 100%, 0 100%);
          clip-path: polygon(0% 0, 100% 15%, 100% 100%, 0 100%);
  z-index: 999;
  margin-top: -60px;
}

.awareness_box .content h2 {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 50px;
}

.aboutus-section h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.aboutus-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: #454545;
  margin-top: 25px;
  letter-spacing: -1px;
}

.service_section h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.service_section h4 {
  font-size: 22px;
  font-weight: 600;
  color: #454545;
  margin-top: 25px;
  letter-spacing: -1px;
}

.about_section .image_section img {
  width: 100%;
  margin-left: auto;
  display: block;
}

ul.list-items {
    margin-top: 20px;
}

.service_box.inner_box {
  min-height: 315px;
}

.service_box.inner_box.box1 h5 {
  color: #7f73fa;
}

.service_box.inner_box.box1:hover {
  background-color: rgba(127, 115, 250, 0.1411764706);
}

.service_box.inner_box.box2 h5 {
  color: #ea6a3c;
}

.service_box.inner_box.box2:hover {
  background-color: rgba(234, 106, 60, 0.1411764706);
}

.service_box.inner_box.box3 h5 {
  color: #e683a9;
}

.service_box.inner_box.box3:hover {
  background-color: rgba(230, 131, 169, 0.1411764706);
}

.service_box.inner_box.box4 h5 {
  color: #462887;
}

.service_box.inner_box.box4:hover {
  background-color: rgba(70, 40, 135, 0.1411764706);
}

.table {
  border-color: #d5d4d0;
}

.table td {
  vertical-align: middle;
  padding: 10px;
}

.table th {
  vertical-align: middle;
  padding: 10px;
}

.amfi_tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--rv-primary) !important;
}

.investor_awareness_section {
  background-color: var(--rv-primary-light);
}

.getintouch_section .image img {
  width: 85%;
  margin: 0 auto;
  display: block;
}

.footer_top .disclaimer {
  margin-top: 20px;
}

.footer_top .disclaimer p {
  font-size: 15px;
}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  padding: 10px;
}

textarea.form-control {
  height: 120px;
}

.diclaimer-amfi .amfi-item {
  display: flex;
  align-items: center;
  height: 85px;
}

.diclaimer-amfi .amfi-item span {
  margin-left: 15px;
  color: var(--rv-text-color);
}

.diclaimer-amfi .amfi-item img {
  border-radius: 5px;
}

/* TICKER */
.calname a {
  background: var(--rv-primary) !important;
}

.calname a:hover {
  background: var(--rv-secondary) !important;
}

/* TAB */
.rvTab {
  padding: 0;
  margin: 0;
  display: flex;
}

.rvTab .tab_item {
  display: block;
  width: 100%;
}

.rvTab .tab_item .tab_link {
  background-color: var(--rv-primary);
  display: block;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  border: 1px solid var(--rv-primary);
  width: 100%;
}

.rvTab .tab_item .tab_link.activelink {
  display: block;
  background-color: var(--rv-secondary);
  color: #fff;
  border: 1px solid var(--rv-secondary);
}

.rvTabContent .tab_list {
  width: 100%;
  padding: 10px;
}

.rvTabContent .tab_list.hide {
  display: none;
}

.about_section {
  position: relative;
}

.about_section::after {
  content: "";
  position: absolute;
  background: #29a4e1;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  filter: blur(50px);
  opacity: 0.2;
  bottom: 15%;
}

/* .about_section .text_section {
    margin-top: 50px;
} */
.list-items {
  list-style-type: none;
  padding: 0;
}

.list-items .item {
  background: linear-gradient(300deg, var(--rv-primary), #29baf1);
  padding: 18px;
  border-radius: 50px 50px 0px;
  margin-bottom: 15px;
  color: #fff;
  padding-left: 80px;
  min-height: 60px;
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 26px;
}

.list-items .item .icon {
    background: #bd3628;
    border-radius: 100%;
    position: absolute;
    left: -30px;
    top: 7px;
    display: flex;
    width: 100px;
    height: 100px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 0 #777;
}

.list-items .item .icon img {
  width: 90%;
  padding: 10px;
}

.about_section .normal-text p::first-letter {
  font-size: 30px;
  color: var(--rv-primary);
  font-weight: 600;
}

.normal-text .btn-primary {
  margin: 40px auto 0 auto;
  width: 150px;
  display: block;
}

.service-image {
  text-align: center;
  margin-bottom: 30px;
}

.service-image img {
  height: 500px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-items {
  /* display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(5, 1fr); */
  position: relative;
}

.service-items .item {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
  min-height: 225px;
  color: var(--rv-black);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 14px;
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
  transition: 0.4s;
}

.service-items .item .title-icon {
  display: flex;
  align-items: center;
}

/* .service-items .item:nth-child(1) {
    transform: translateY(-140px);
}
.service-items .item:nth-child(2) {
    transform: translate(-25px, -20px);
}
.service-items .item:nth-child(3) {
    transform: translateY(50px);
}
.service-items .item:nth-child(4) {
    transform: translate(25px, -20px);
}
.service-items .item:nth-child(5) {
    transform: translateY(-140px);
} */
.service-items .item .title {
  font-size: 20px;
  color: #11111b;
  font-weight: 600;
  line-height: 24px;
  width: calc(100% - 65px);
  text-align: left;
}

.service-items .item .icon {
    background: #900f74;
    border-radius: 100%;
    display: flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 10px;
    padding: 4px;
}

.service-items .item .icon img {
    padding: 10px;
    width: 100%;
    height: 100%;
    filter: brightness(999);
}

.service-items .item p {
  margin: 0;
  line-height: 22px;
  margin-top: 10px;
}

.process-section {
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.process-section::after {
  content: "";
  position: absolute;
  background: #29a4e1;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  filter: blur(50px);
  opacity: 0.15;
  bottom: -100px;
  right: -100px;
}

.process-image {
  margin-top: 50px;
}

.process-text .item {
  background: #ffffff;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.0784313725);
  display: flex;
  align-items: center;
}

.process-text .item .icon {
  display: flex;
  background: #00adee;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.process-text .item .icon img {
  width: 70%;
}

.process-text .item .text {
  font-size: 22px;
  font-weight: 600;
}

.process-section .note-bar {
  background: rgb(45, 56, 151);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px 0px rgba(0, 0, 0, 0.0705882353);
  padding: 15px 10px;
  text-align: center;
  transform: translateY(-120px);
}

.process-section .note-bar h4 {
  color: #fff;
}

/* Slider container */
#slider {
  position: relative;
  width: 60%;
  height: 485px;
  margin: 60px auto;
  perspective: 1400px;
  transform-style: preserve-3d;
  border-radius: 12px;
}

#slider input[type=radio] {
  position: relative;
  top: 108%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  background: #ccc;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  transform: translateX(-83px);
  transition: background 300ms ease, border 300ms ease;
}

#slider input[type=radio]:checked {
  background: var(--rv-primary);
  border: 2px solid var(--rv-primary);
}

#slider label {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 20px;
  transition: transform 400ms ease, opacity 400ms ease;
  overflow: hidden;
}

.zoom-container {
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.zoom-container.can-zoom {
  position: relative;
}

.zoom-container.can-zoom::after {
  content: "";
  position: absolute;
  background: #29a4e1;
  width: 460px;
  height: 460px;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  filter: blur(50px);
  opacity: 0.1;
  bottom: -100px;
  right: -100px;
}

.zoom-container:hover {
  cursor: default;
}

#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3,
#s4:checked ~ #slide4,
#s5:checked ~ #slide5,
#s6:checked ~ #slide6,
#s7:checked ~ #slide7 {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translate3d(0%, 0, 0px);
}

#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide4,
#s4:checked ~ #slide5,
#s5:checked ~ #slide6,
#s6:checked ~ #slide7,
#s7:checked ~ #slide1 {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translate3d(20%, 0, -100px);
}

#s1:checked ~ #slide3,
#s2:checked ~ #slide4,
#s3:checked ~ #slide5,
#s4:checked ~ #slide6,
#s5:checked ~ #slide7,
#s6:checked ~ #slide1,
#s7:checked ~ #slide2 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate3d(40%, 0, -250px);
}

#s1:checked ~ #slide4,
#s2:checked ~ #slide5,
#s3:checked ~ #slide6,
#s4:checked ~ #slide7,
#s5:checked ~ #slide1,
#s6:checked ~ #slide2,
#s7:checked ~ #slide3 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate3d(-40%, 0, -250px);
}

#s1:checked ~ #slide5,
#s2:checked ~ #slide6,
#s3:checked ~ #slide7,
#s4:checked ~ #slide1,
#s5:checked ~ #slide2,
#s6:checked ~ #slide3,
#s7:checked ~ #slide4 {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translate3d(-20%, 0, -250px);
}

#s1:checked ~ #slide6,
#s2:checked ~ #slide7,
#s3:checked ~ #slide1,
#s4:checked ~ #slide2,
#s5:checked ~ #slide3,
#s6:checked ~ #slide4,
#s7:checked ~ #slide5 {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translate3d(-20%, 0, -250px);
}

#s1:checked ~ #slide7,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2,
#s4:checked ~ #slide3,
#s5:checked ~ #slide4,
#s6:checked ~ #slide5,
#s7:checked ~ #slide6 {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translate3d(-20%, 0, -100px);
}

.testimonil {
  height: 100%;
  text-align: center;
  padding: 30px;
}

.testimonil .client-info img {
  width: 100px !important;
  height: auto !important;
  position: static !important;
  border-radius: 100%;
}

.testimonil .text h4 {
  font-size: 26px;
  font-weight: 600;
  color: #00adee;
  margin: 0;
}

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
  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: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  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;
  color: #fff;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  width: 140px;
  float: none;
  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%;
  }
  a.blantershow-chat {
    display: none;
  }
}
.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: #fff;
}

.iSpIQi .form-control {
  margin-bottom: 5px;
}

.btnSubmit.btn-block {
  background: #095e54 !important;
  color: #fff;
  padding: 8px 15px;
}

.rv-listing {
  list-style-type: none;
  padding: 0;
}

.rv-listing li {
  position: relative;
  padding-left: 25px;
  line-height: 20px;
  margin-bottom: 15px;
  font-size: 16px;
}

.rv-listing li::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/check.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  top: 2px;
  left: 0;
  background-size: contain;
}

.rv-listing ul li {
  padding: 0;
}

.rv-listing ul li::after {
  display: none;
}

#rvLoginModal .modal-content {
  background: #00adee;
  border-radius: 0;
}

#rvLoginModal .modal-content .modal-header {
  padding: 15px;
}

#rvLoginModal .modal-content .modal-body {
  padding: 15px;
}

#rvLoginModal .modal-content .modal-header h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

#rvLoginModal .modal-content .modal-header .btn-close {
  color: #ffffff;
  opacity: 1;
  font-size: 22px;
  background: #db1c1c;
  border-radius: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
  transform: translate(-10px, 8px);
}

#rvLoginModal .modal-content .btn-primary {
  background: #2c3897;
  color: #fff;
}

.thankyou_section {
  padding: 180px 0 70px 0;
}

.thankyou-box {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2588235294);
  border-radius: 30px;
  padding: 30px;
  text-align: center;
}

.thankyou-box img {
  width: 200px;
}

.bubool {
  width: var(--data-width);
  height: var(--data-width);
  position: absolute;
  top: var(--data-position-top);
  border-radius: 50%;
  left: var(--data-position-left);
}
.bubool.rv-c-1 {
  background: radial-gradient(circle, #3dbf4a 0%, rgba(62, 191, 75, 0.09) 100%);
}
.bubool.rv-c-2 {
  background: radial-gradient(circle, rgba(225, 74, 66, 0.5490196078) 0%, rgba(62, 191, 75, 0.09) 100%);
}
.bubool.rv-c-3 {
  background: radial-gradient(circle, #3dbf4a 0%, rgba(62, 191, 75, 0.09) 100%);
}
.bubool.rv-c-4 {
  background: radial-gradient(circle, #f3c01b 0%, rgba(62, 191, 75, 0.09) 100%);
}
.bubool.rv-c-5 {
  background: radial-gradient(circle, #0e84fb 0%, rgba(62, 191, 75, 0.09) 100%);
}
.bubool.rv-c-6 {
  background: radial-gradient(circle, #3f3f3f 0%, rgba(62, 191, 75, 0.09) 100%);
}

.main-heading {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
.main-heading .title-box {
  position: relative;
  display: block;
  font-size: 38px;
  margin: 0;
}
.main-heading .title-box::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 10px;
  background-image: url(../images/decore-new.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: contain;
}

.partnerCarousel .partner-item {
  padding: 10px;
}
.partnerCarousel .partner-item a {
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: saturate(200%) blur(30px);
          backdrop-filter: saturate(200%) blur(30px);
}

.rv-bg-section {
    background: #fff4f6;
}

.home-testimonial-section .item {
  padding: 40px 30px 30px;
}
.home-testimonial-section .item .testimonial-card {
  -webkit-backdrop-filter: saturate(200%) blur(30px);
          backdrop-filter: saturate(200%) blur(30px);
  padding: 20px;
  background: rgba(255, 255, 255, 0.3098039216);
  box-shadow: 0 0 10px 0 #eee;
  border-radius: 10px;
}
.home-testimonial-section .item .testimonial-card .image {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.home-testimonial-section .item .testimonial-card .image img {
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 10px;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.3882352941);
}
.home-testimonial-section .item .testimonial-card .image .title {
  margin: 0;
  margin-left: 50px;
  font-size: 20px;
}

.blog-section .single-blog {
  color: var(--rv-white);
  justify-content: space-between;
  position: relative;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 14px;
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
}
.blog-section .single-blog .single-blog-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .single-blog .single-blog-content {
  padding: 20px;
  color: var(--rv-black);
}
.blog-section .single-blog .blog-page-button {
  color: var(--rv-primary);
  font-weight: 600;
}

.rv-row .rv-col a .single_feature_seven {
  color: var(--rv-black);
}

.rv-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.rv-row .rv-col {
  padding: 15px;
  max-width: 50%;
  width: 100%;
}
.rv-row .rv-col a {
  color: var(--rv-white);
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  padding: 6px 5px 5px 20px;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 14px;
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
  transition: 0.4s;
}
.rv-row .rv-col a:hover {
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  transition: 0.4s;
  -webkit-backdrop-filter: saturate(200%) blur(30px);
          backdrop-filter: saturate(200%) blur(30px);
}
.rv-row .rv-col a .single_feature_seven {
  display: flex;
  gap: 20px;
  align-items: center;
}
.rv-row .rv-col a .single_feature_seven .icon {
  width: 50px;
  height: 50px;
}
.rv-row .rv-col a .single_feature_seven .icon img {
  width: 100%;
}
.rv-row .rv-col a .single_feature_seven h4 {
  margin: 0;
}

body .login-part {
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
  transition: 0.4s;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.contact-row .contact-boxcard {
  padding: 15px;
  max-width: 33.33%;
  width: 100%;
  margin-bottom: 30px;
}
.contact-row .contact-boxcard .contactbox {
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
  height: 100%;
  padding: 20px;
  border: 2px solid transparent;
  transition: 0.4s;
}
.contact-row .contact-boxcard .contactbox .icon {
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 50%;
  height: 55px;
  padding: 0;
  border: 2px solid transparent;
  transition: 0.4s;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row .contact-boxcard .contactbox .icon i {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .contact-row .contact-boxcard {
    max-width: 100%;
  }
}

.contact-cards {
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
  backdrop-filter: var(--tw-backdrop-filter);
  background-color: hsla(0, 0%, 100%, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
  border-color: #fff;
  border-radius: 8px;
  height: 100%;
  padding: 20px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.table tr td {
  background: rgba(0, 0, 0, 0.1294117647);
}

.about-teem-section .team-block {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 700ms ease-out 0s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px 0px rgba(0, 0, 0, 0.0705882353);
  background: rgba(255, 255, 255, 0.4);
}
.about-teem-section .team-block:hover {
  background: linear-gradient(92deg, rgba(225, 74, 66, 0.1), rgba(243, 192, 27, 0.1), rgba(61, 191, 74, 0.1), rgba(14, 132, 251, 0.1)) !important;
}
.about-teem-section .team-block:hover .team-upper-part img {
  margin-left: 10px;
}
.about-teem-section .team-block:hover .team-bottom-part .designation {
  color: var(--rv-black);
}
.about-teem-section .team-block .team-upper-part img {
  border-radius: 8px 0px 0 40px;
  transition: all 500ms ease-out 0s;
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-teem-section .team-block .team-bottom-part {
  padding: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.about-teem-section .team-block .team-bottom-part .designation {
  color: #0c59db;
  transition: all 400ms ease-out 0s;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background: var(--rv-primary);
}
.marquee .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 100%;
  animation: scroll 100s linear infinite;
}
.marquee .marquee__group h4,
.marquee .marquee__group h5,
.marquee .marquee__group h6,
.marquee .marquee__group p {
  margin: 0;
  color: var(--rv-white);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}


.news-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.news-container {
    display: flex;
    justify-content: flex-start;
    animation: scroll-news 15s linear infinite;
}

.stories-carousel {
    display: flex;
    white-space: nowrap;
    background: linear-gradient(300deg, var(--rv-primary), #29baf1);
}

.news-item {
    padding: 10px;
    /* background-color: #f4f4f4; */
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    margin: 5px 15px;
    color: #fff;
}

.news-item p {
    margin: 0;
    padding: 0;
}

.news-item p:hover {
    transition: transform 0.3s ease;
}

.news-title {
    font-weight: bold;
}

/* Continuous scrolling effect */
@keyframes scroll-news {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.tuia-card .content {
    margin-left: 40px;
}



.tabs-container .nav-tabs {
    border-bottom: 2px solid #3764a1;
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.tabs-container .nav-item {
    list-style: none;
    width: 33%;
    text-align: center;
    /* color: #fff; */
    margin-bottom: 5px;
}

.tabs-container .nav-link {
    color: #3764a1;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 10px;
	/*box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161); */
}



.tabs-container .nav-link:hover {
    background-color: #f4f9f0; 
    color: #070707; 
}

.tabs-container .nav-link.active {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--rv-primary);
    background: transparent;
    color: var(--rv-primary);
    border-radius: 15px;
}


.tabs-container .nav-tabs .nav-link {
    font-weight: 500;
}

.tabs-container .nav-tabs .nav-item .nav-link .active {
    color: #ffffff;
}

.tab-content .tab-pane .row {
    display: flex;
    justify-content: center;
}

.blog-card-container {
    padding: 15px 0;
}
.blogs-inner {
    display: flex;
    gap: 15px;
}



.floating-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.5s ease-in-out;
    top: 55%;
    height: 3px;
}

/* Show the floating button when page loads or on hover */
.floating-btn.show {
    right: 20px; /* slide in position */
}

/* Wrapper for each button to handle animation */
.btn-wrapper {
    opacity: 0; /* buttons start hidden */
    animation: fadeInUp 0.5s ease-out forwards; /* fade-in and slide-up effect */
}

/* Delayed animation for each button */
.btn-wrapper:nth-child(1) {
    animation-delay: 0.2s;
}

.btn-wrapper:nth-child(2) {
    animation-delay: 0.4s;
}

.floating-btn .btn {
    background: #7441d0;
    color: #ffffff;
    padding: 5px;
    /* border-radius: 25px 0 0 25px; */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
    transition: all 0.3s ease;
    word-wrap: break-word;
    width: 110px;
    border: 2px solid transparent;
}

.floating-btn .btn:hover {
    background: #7441d0;
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.161), 0 2px 8px rgba(0, 0, 0, 0.161);
	
    transform: translateY(-5px); /* slightly lift the button */
}

/* Keyframe animation for sliding in and fading the buttons */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* start from below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* end at original position */
    }
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
.floating-btn {
    right: 0px;
    bottom: 85px;
    top: unset;
}
    .floating-btn.show {
        right: 10px;
    }

   .floating-btn .btn {
    font-size: 10px;
    padding: 6px;
    width: auto;
}
}

a.navbar-brand p {
    font-size: 10px;
    position: absolute;
    top: 78px;
    left: 60px;
    color: #000;
    display: none;
}


.rv-language-selector {
  position: absolute;
  top: 0;
  right: 0;
}
#google_translate_element {
  display: none;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.rv-language-selector .dropdown-button {
    background-color: #0e84fb00;
    color: #0e84fb;
    /* padding: 10px 20px; */
    border: none;
    /* border-radius: 35px; */
    /* cursor: pointer; */
    font-size: 16px;
    position: absolute;
    z-index: 99;
    width: 100px;
    right: 0;
    top: 0;
    text-decoration: underline;
}

.rv-language-selector .dropdown-content {
    display: none;
    position: relative;
    background: #fff;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    top: 0;
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
    text-align: left;
}

.rv-language-selector .dropdown-content button {
  background-color: white;
  color: black;
  padding: 6px 14px;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.rv-language-selector .dropdown-content button:hover {
  background-color: #ddd;
}
.notranslate {
  display: inline-block;
}
.singup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.thanks-section {
    padding-top: 100px;
}
.whatsapp {
    font-size: 25px;
    color: #e7e7e7;
}
.tebHendlers  a {
    color: var(--rv-primary);
}
.tebHendlers.active  a {
    color: #fff;
}
.tebHendlers:hover  a {
    color: #fff;
}
a.social-img img {
    height: 40px !important;
    width: 40px !important;
    background: #00000000;
}

.fund-performance  {
    position: relative;
    padding-top: 40%;
    iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}
.legal-links {
    text-align: center;
    padding: 10px 5px;
    font-size: 13px;
}

.legal-links a {
    color: #333;
    text-decoration: none;
    margin: 0 ;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #6bb543;
    /* your primary green */
    text-decoration: underline;
}

.list-items .item strong ,.list-items .item p {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-image img{
  box-shadow: 0 1px 10px -7px;
  border-radius: 25px;
}
.images img , .services-page-section .image img {
    border-radius: 25px;
    box-shadow: 2px 1px 14px -6px;
}