:root {
  --rv-primary: #ca48ac;
  --rv-primary-light: #e7edf2;
  --rv-bg-primary: #ca48ac;
  --rv-secondary: #8e27b4;
  --rv-secondary-light: #f2f5fa;
  --rv-bg-secondary: #8e27b4;
  --rv-white: #fff;
  --rv-black: #000;
  --rv-gray: #726d7b;
  --rv-color1: var(--rv-primary);
  --rv-color2: #6dc605;
  --rv-color3: var(--rv-secondary);
}

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

body {
  font-family: "Gilroy" !important;
  font-weight: 500;
  font-size: 16px;
  color: #000248;
}

a {
  text-decoration: none !important;
}

p {
  color: #202039;
}

.white {
  color: #fff;
}

.dark {
  color: #000248 !important;
}

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

.secondary {
  color: #000248 !important;
}

.yellow {
  color: #ff9600;
}

.green {
  color: #81ce74;
}

.blue {
  color: #007eff;
}

.purple {
  color: #6e55ff;
}

.orange {
  color: #ff802c;
}

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

.bg-dark {
  background-color: #000248 !important;
}

.bg-light {
  background-color: #f9f9ff !important;
}

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

.bg-secondary {
  background-color: #000248;
}

.bg-yellow {
  background-color: #ff9600;
}

.bg-green {
  background-color: #81ce74;
}

.bg-blue {
  background-color: #007eff;
}

.bg-purple {
  background-color: #6e55ff;
}

.bg-orange {
  background-color: #ff802c;
}

.btn {
  border-radius: 0;
  padding: 10px 30px;
  color: #000248;
  font-weight: 600;
  font-size: 18px;
}

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

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

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

.btn-secondary {
  background-color: #000248;
  border: 1px solid #000248;
  color: #fff;
}

.btn-line-secondary {
  background-color: transparent;
  border: 1px solid #000248;
  color: #000248;
}

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

.btn-read {
  background-color: transparent;
  border: none;
  position: relative;
}

.section {
  padding: 80px 0;
}

.overlay-primary {
  background-color: rgba(205, 72, 173, 0.9);
}

.overlay-dark {
  background-color: rgba(0, 2, 72, 0.85);
  padding: 80px 0;
}

.heading small {
  font-size: 16px;
  font-weight: 600;
}

.heading {
  margin-bottom: 35px;
}

.heading small {
  font-size: 16px;
  font-weight: 600;
}

.heading h2 {
  font-size: 38px;
  font-weight: 600;
}

.dark-mode .heading small {
  color: #fff;
}

.dark-mode .heading h2 {
  color: #fff;
}

.main_banner {
  background-image: linear-gradient(to right top, #fff1f2, #ffefec, #ffede5, #ffecdd, #ffecd6);
  padding-top: 200px;
}

.header_main {
  width: 100%;
  top: 37px;
  position: absolute;
  left: 0;
  z-index: 99;
}
.header_main .navbar-brand img {
  height: 80px;
}

.navbar-light .navbar-nav .nav-link {
  color: #000248;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 17px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--rv-primary);
}

.nav-item.dropdown .dropdown-menu {
  border-radius: 0;
  border: none;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 0.3s ease-in-out;
  padding: 0;
}

.navbar-nav .dropdown-item {
  padding: 10px 30px;
}

.navbar-nav .dropdown-item {
  font-weight: 600;
  color: #000248;
}

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

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}

.main_banner .banner {
  position: relative;
}
.main_banner .banner .img {
  position: relative;
}
.main_banner .banner .img img {
  position: relative;
  z-index: 9;
}
.main_banner .banner .img::after {
  content: "";
  position: absolute;
  background-image: url(../images/shape2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  height: 550px;
  top: 0;
  right: 40px;
  z-index: 0;
}
.main_banner .banner .img::before {
  content: "";
  position: absolute;
  background-color: #ffe2c1;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  top: 80px;
  right: 180px;
  z-index: 9;
}
.main_banner .banner .text {
  padding-top: 50px;
}
.main_banner .banner .text .btn-white {
  margin-top: 30px;
}
.main_banner .banner .text h2 {
  font-size: 48px;
  width: 80%;
  line-height: 54px;
  margin: 30px 0;
}
.main_banner .banner small::after {
  content: "";
  position: absolute;
  background-color: #ffd9f1;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  bottom: -20px;
  left: -20px;
  z-index: 0;
}
.main_banner .banner small em {
  position: relative;
  z-index: 1;
  font-style: normal;
}

small {
  color: var(--rv-primary);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
}

.service-section .heading {
  width: 30%;
}

.service-box {
  background-color: #fff;
  padding: 35px;
  margin-bottom: 25px;
  border: 1px solid #eee;
  transition: all 0.3s ease-in-out;
}
.service-box .btn-read {
  padding: 0;
  display: flex;
}
.service-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
.service-box .text p:last-child {
  margin-bottom: 0;
}

.service-box:hover {
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
  box-shadow: 0 0 15px 3px rgba(0, 2, 72, 0.1);
}

.service-box .icon {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}

.service-box .icon i {
  color: #fff;
  font-size: 38px;
}

.service-box h5 {
  padding: 15px 0;
  font-weight: 700;
  font-size: 22px;
}

.line-draw-animation {
  position: relative;
}

.line-draw-animation::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--rv-primary);
  right: 0;
  top: 0;
  transition-delay: 0.2s;
}

.service2.line-draw-animation::before {
  background: #ff9600;
}

.service3.line-draw-animation::before {
  background: #007eff;
}

.service4.line-draw-animation::before {
  background: #ff802c;
}

.service5.line-draw-animation::before {
  background: #81ce74;
}

.service6.line-draw-animation::before {
  background: #6e55ff;
}

.line-draw-animation:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}

.line-draw-animation::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--rv-primary);
  left: 0;
  bottom: 0;
  transition-delay: 0.6s;
}

.service2.line-draw-animation::after {
  background: #ff9600;
}

.service3.line-draw-animation::after {
  background: #007eff;
}

.service4.line-draw-animation::after {
  background: #ff802c;
}

.service5.line-draw-animation::after {
  background: #81ce74;
}

.service6.line-draw-animation::after {
  background: #6e55ff;
}

.line-draw-animation:hover::after {
  width: 100%;
  transition-delay: 0s;
}

.line-draw-inner::before {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--rv-primary);
}

.service2 .line-draw-inner::before {
  background: #ff9600;
}

.service3 .line-draw-inner::before {
  background: #007eff;
}

.service4 .line-draw-inner::before {
  background: #ff802c;
}

.service5 .line-draw-inner::before {
  background: #81ce74;
}

.service6 .line-draw-inner::before {
  background: #6e55ff;
}

.line-draw-animation .line-draw-inner::before {
  transition-delay: 0s;
  left: 0;
  top: 0;
}

.line-draw-animation:hover .line-draw-inner::before {
  height: 100%;
  transition-delay: 0.6s;
}

.line-draw-inner::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--rv-primary);
}

.service2 .line-draw-inner::after {
  background: #ff9600;
}

.service3 .line-draw-inner::after {
  background: #007eff;
}

.service4 .line-draw-inner::after {
  background: #ff802c;
}

.service5 .line-draw-inner::after {
  background: #81ce74;
}

.service6 .line-draw-inner::after {
  background: #6e55ff;
}

.line-draw-animation .line-draw-inner::after {
  transition-delay: 0.4s;
  right: 0;
  bottom: 0;
}

.line-draw-animation:hover .line-draw-inner::after {
  height: 100%;
  transition-delay: 0.2s;
}

.aboutus-section {
  position: relative;
}

.aboutus-section::after {
  content: "";
  position: absolute;
  background-image: url(../images/shape1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 640px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.aboutus-section .heading {
  width: 60%;
}

.aboutus-section .img img {
  position: relative;
  z-index: 9;
  width: 85%;
}

.investor-corner {
  position: relative;
  overflow: hidden;
}

.investor-corner::before {
  content: "";
  position: absolute;
  border: 160px solid transparent;
  border-left: none;
  border-right: 160px solid #3829c3;
  left: -54px;
  top: -105px;
  transform: rotate(45deg);
  z-index: 1;
}

.investor-corner::after {
  content: "";
  position: absolute;
  border: 200px solid transparent;
  border-left: none;
  border-right: 200px solid #bbb6eb;
  left: -59px;
  top: -131px;
  transform: rotate(45deg);
  z-index: 0;
}

.investor-box {
  background-color: #f9f9ff;
  padding: 30px 25px 0 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.investor-box:hover {
  background-color: #000248;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
  box-shadow: 0 0 15px 3px rgba(0, 2, 72, 0.1);
}

.investor-box .icon {
  transition: all 0.3s ease-in-out;
}

.investor-box .icon i {
  font-size: 54px;
  color: var(--rv-primary);
}

.investor-box h5 {
  transition: all 0.3s ease-in-out;
  font-size: 22px;
  font-weight: 600;
  padding: 6px 0;
}

.investor-box p {
  transition: all 0.3s ease-in-out;
}

.investor-box:hover .icon {
  transform: translateY(-90px);
  transition: all 0.3s ease-in-out;
}

.investor-box:hover h5 {
  color: #fff;
  transform: translateY(-50px);
}

.investor-box:hover p {
  color: #fff;
  transform: translateY(-50px);
}

.investor-box .btn-read {
  color: var(--rv-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.3s ease-in-out;
  padding: 10px 0 0;
  display: inline-block;
}

.investor-box:hover .btn-read {
  opacity: 1;
  visibility: visible;
  padding-left: 0;
  transform: translateY(-40px);
  transition: all 0.3s ease-in-out;
}

.contact-home-section {
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 70px;
}

.contact-home-section .form-card {
  background-color: #f9f9ff;
  min-height: 600px;
  margin-top: -160px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group select,
.form-group input {
  height: 45px;
}
.form-group.captcha-code {
  display: flex;
  gap: 10px;
}
.form-group.captcha-code img#captcha_code {
  width: 100px;
}
.form-group.captcha-code .form-control {
  width: 100%;
  max-width: 100%;
}
.form-group.captcha-code .captcha-box {
  width: 100%;
  display: flex;
  gap: 10px;
}

footer.footer-main.bg-light {
  background: linear-gradient(90deg, rgba(131, 58, 180, 0.1) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(252, 176, 69, 0.1) 100%);
}

.contact-home-section .contact-info .item {
  padding: 10px 0;
}

.contact-home-section .contact-info .item a,
.contact-home-section .contact-info .item p {
  color: #fff;
}

.testimonial-box {
  display: block !important;
}

.testimonial-box .image {
  width: 100px;
  display: inline-block;
  position: relative;
}
.testimonial-box .image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-box .image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000248;
  border: 3px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.testimonial-box .image::after {
  content: "\f10e";
  font-family: fontawesome;
  position: absolute;
  right: 11px;
  bottom: 4px;
  font-size: 18px;
  z-index: 9;
  color: #fff;
}

.testimonial-box .content {
  display: inline-block;
  width: calc(100% - 155px);
  padding-left: 30px;
}

.testimonial-box .content h4 {
  font-weight: 700;
  font-size: 22px;
}

.testimonial-box .content h6 {
  font-weight: 500;
  color: var(--rv-primary);
  font-size: 18px;
}

#carouselTest {
  position: relative;
}

#carouselTest .owl-nav {
  position: absolute;
  top: -100px;
  right: 0px;
}

#carouselTest .owl-nav button {
  font-size: 40px;
  color: var(--rv-primary);
  font-weight: 300;
  border: 1px solid var(--rv-primary);
  width: 45px;
  height: 45px;
  border-radius: 0;
  line-height: 20px;
}

#carouselTest .owl-nav button:hover {
  background-color: var(--rv-primary);
  color: #fff;
  border: 1px solid var(--rv-primary);
}

.blog-box {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-box:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.blog-box .img {
  position: relative;
}

.blog-box .img::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 2, 72, 0.5);
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease-in-out;
}

.blog-box:hover .img::after {
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  transition: all 0.3s ease-in-out;
}

.blog-box .img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.blog-box:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.blog-box .content {
  position: relative;
  background-color: #fff;
  padding: 20px;
}

.blog-box .category {
  position: absolute;
  top: -15px;
  left: 15px;
  background-color: #cd48bf;
  padding: 2px 6px;
  color: #fff;
}

.blog-box .content h4 {
  padding-top: 25px;
  font-size: 24px;
  font-weight: 700;
}

.blog-box .content h4 a {
  color: #000248;
}

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

.blog-box .content h4 a:hover {
  color: var(--rv-primary);
}

.blog-box .content p {
  margin: 0;
}

.blog-section.bg-light .btn-line-primary {
  display: block;
  width: 200px;
  margin: 35px auto 0px auto;
}

.amc-section img {
  width: 180px;
  padding: 5px;
}

.top-header {
  padding: 60px 0 40px 0;
}

.top-header .social {
  text-align: right;
}

.footer-main .top-header img {
  height: 80px;
}

.top-header .social i {
  background-color: #000248;
  color: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  margin: 2px;
}

.top-header .social a:hover i {
  background-color: var(--rv-primary);
}

.middle-header {
  border-top: 1px solid #e2e2f7;
  padding: 50px 0 30px 0;
  border-bottom: 1px solid #e2e2f7;
}

.footer-widget.links .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-menu {
  list-style-type: none;
  padding: 0;
}

.footer-menu .link {
  color: #41415a;
  font-weight: 500;
  font-size: 17px;
  padding: 3px !important;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.footer-menu .link:hover {
  color: var(--rv-primary) !important;
  transition: all 0.3s ease-in-out;
  padding-left: 12px !important;
}

.footer-menu .link::after {
  content: "\f101";
  font-family: fontawesome;
  position: absolute;
  left: 0px;
  bottom: 4px;
  font-size: 18px;
  z-index: 9;
  color: var(--rv-primary);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.footer-menu .link:hover::after {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.footer-widget .contact-info .item {
  padding: 5px 0;
}

.footer-widget .contact-info .item a {
  color: #41415a;
}

.footer-widget .contact-info .item p {
  color: #41415a;
}

.bottom-header {
  padding: 20px 0;
  background-color: #2b023a;
}
.bottom-header a {
  color: var(--rv-white);
}
.bottom-header p {
  margin: 0;
  color: var(--rv-white);
}

.bottom-header .privacy-text {
  text-align: right;
}

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

.home-page .navbar-light .navbar-nav a.nav-link.home {
  color: var(--rv-primary);
}

.about-page .navbar-light .navbar-nav a.nav-link.about-us {
  color: var(--rv-primary);
}

.mutual-funds-page .navbar-light .navbar-nav ul li .dropdown-item.mutual-funds {
  color: #fff;
  background-color: var(--rv-primary);
}
.mutual-funds-page .navbar-light .navbar-nav a.nav-link.services {
  color: var(--rv-primary);
}

.equity-page .navbar-light .navbar-nav ul li .dropdown-item.equity {
  color: #fff;
  background-color: var(--rv-primary);
}
.equity-page .navbar-light .navbar-nav a.nav-link.services {
  color: var(--rv-primary);
}

.nps-page .navbar-light .navbar-nav ul li .dropdown-item.nps {
  color: #fff;
  background-color: var(--rv-primary);
}
.nps-page .navbar-light .navbar-nav a.nav-link.services {
  color: var(--rv-primary);
}

.p2p-page .navbar-light .navbar-nav ul li .dropdown-item.p2p {
  color: #fff;
  background-color: var(--rv-primary);
}
.p2p-page .navbar-light .navbar-nav a.nav-link.services {
  color: var(--rv-primary);
}

.financial-planning-page .navbar-light .navbar-nav ul li .dropdown-item.financial-planning {
  color: #fff;
  background-color: var(--rv-primary);
}
.financial-planning-page .navbar-light .navbar-nav a.nav-link.services {
  color: var(--rv-primary);
}

.calculators-page .navbar-light .navbar-nav ul li .dropdown-item.calculators {
  color: #fff;
  background-color: var(--rv-primary);
}
.calculators-page .navbar-light .navbar-nav a.nav-link.tools {
  color: var(--rv-primary);
}

.download-forms-page .navbar-light .navbar-nav ul li .dropdown-item.download-forms {
  color: #fff;
  background-color: var(--rv-primary);
}
.download-forms-page .navbar-light .navbar-nav a.nav-link.tools {
  color: var(--rv-primary);
}

.pay-premium-online-page .navbar-light .navbar-nav ul li .dropdown-item.pay-premium-online {
  color: #fff;
  background-color: var(--rv-primary);
}
.pay-premium-online-page .navbar-light .navbar-nav a.nav-link.tools {
  color: var(--rv-primary);
}

.useful-links-page .navbar-light .navbar-nav ul li .dropdown-item.useful-links {
  color: #fff;
  background-color: var(--rv-primary);
}
.useful-links-page .navbar-light .navbar-nav a.nav-link.tools {
  color: var(--rv-primary);
}

.blogs-page .navbar-light .navbar-nav a.nav-link.blogs {
  color: var(--rv-primary);
}

.contact-us-page .navbar-light .navbar-nav a.nav-link.contact-us {
  color: var(--rv-primary);
}

.login-page .navbar-light .navbar-nav a.nav-link.login {
  color: var(--rv-primary);
}
.login-part .btn-box .extra-btn {
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
}

.investor-corner-card {
  height: 100%;
  padding-bottom: 30px;
}
.investor-corner-card a {
  height: 100%;
}
.investor-corner-card a .investor-box {
  height: 100%;
  margin: 0;
}
.investor-corner-card a .investor-box:hover h5 {
  color: var(--rv-white);
}
.investor-corner-card a .investor-box h5 {
  color: var(--rv-secondary);
}

.contact-us {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .contact-us .col-sm-12.col-md-4 {
    margin-bottom: 30px;
  }
  .contact-us .col-sm-12.col-md-4:last-child {
    margin-bottom: 0;
  }
}
.contact-us .card {
  height: 100%;
  position: relative;
  transition: 0.5s;
}

.contact-us .card:hover {
  transition: 0.5s;
  box-shadow: 0 15px 15px 0 #ddd;
}

.contact-us .card:hover::before {
  left: 0;
  transition: 0.5s;
  top: 0;
  border-top-color: var(--rv-primary);
  border-left-color: var(--rv-primary);
}

.contact-us .card:hover::after {
  transition: 0.5s;
  right: 0;
  bottom: 0;
  border-bottom-color: var(--rv-primary);
  border-right-color: var(--rv-primary);
}

.contact-us .card .contect-box {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: var(--rv-white);
}

.contact-us .card .contect-box .icone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 0 50px 0 #ddd;
  display: flex;
  justify-content: center;
  border: 1px solid var(--rv-primary);
  align-items: center;
  margin-bottom: 10px;
  font-size: 40px;
}

.contact-us .card .contect-box .icone i {
  align-items: center;
  background-image: linear-gradient(180deg, var(--rv-secondary) 0%, var(--rv-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-us .card .contect-box .text {
  width: 100%;
  text-align: center;
}
.contact-us .card .contect-box .text a {
  color: var(--rv-black);
}

.contactus-section {
  position: relative;
}

.contactus-section .iframe {
  position: relative;
  padding-top: 56%;
  height: 100%;
}

.contactus-section .iframe iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.contactus-section .contectus-form {
  box-shadow: 0 0 15px 0 #ddd;
  padding: 30px;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  transition: 0.5s;
}

.contactus-section .contectus-form:hover {
  transition: 0.5s;
}

.contactus-section .contectus-form:hover::before {
  border-top-color: var(--rv-secondary);
  border-left-color: var(--rv-secondary);
}

.contactus-section .contectus-form:hover::after {
  border-bottom-color: var(--rv-secondary);
  border-right-color: var(--rv-secondary);
}

.contactus-section .contectus-form::after,
.contactus-section .contectus-form::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 10px solid transparent;
}

.contactus-section .contectus-form::before {
  left: 0;
  top: 0;
  border-top-color: var(--rv-primary);
  border-left-color: var(--rv-primary);
}

.contactus-section .contectus-form::after {
  right: 0;
  bottom: 0;
  border-bottom-color: var(--rv-primary);
  border-right-color: var(--rv-primary);
}

.contactus-section .contectus-form .captcha-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contactus-section .contectus-form .captcha-code img {
  width: 80px;
  display: block;
}

.contactus-section .contectus-form .captcha-code .captcha-box {
  display: flex;
  width: calc(100% - 100px);
  position: relative;
}

.contactus-section .contectus-form .captcha-code .captcha-box .form-control {
  padding-right: 80px;
}

.contactus-section .contectus-form .captcha-code .captcha-box button {
  position: absolute;
  top: 0;
  min-width: 70px;
  right: 0;
  height: 100%;
}

.contactus-section .contectus-form .btn-box {
  display: flex;
  justify-content: center;
}

.header_main .menubarm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_main .menubarm nav {
    width: 100%;
}
.header_main .menubarm .arv-none {
    display: none;
}
.aboutus-section .text {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 110px;
	    z-index: 1;
    position: relative;
}

.wizard-stape-body {
  background: var(--rv-white);
  box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  max-width: 767px;
  margin: 0 auto;
}
.wizard-stape-body .back-links {
  padding: 20px 30px;
  border-bottom: 1px solid #F3F3F3;
}
.wizard-stape-body .back-links a {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #2A2A2A;
}
.wizard-stape-body .content-box {
  padding: 30px;
}
.wizard-stape-body .content-box h3 {
  margin-bottom: 20px;
}
.wizard-stape-body .content-box ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.wizard-stape-body .content-box ul li {
  width: 100%;
  margin-bottom: 10px;
  list-style: none;
}
.wizard-stape-body .content-box ul li label {
  color: var(--rv-black);
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
.wizard-stape-body .content-box ul li label::before {
  content: "";
  width: 20px;
  display: block;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: absolute;
  left: 0;
  margin-top: 4px;
}
.wizard-stape-body .content-box ul li label::after {
  content: "";
  width: 10px;
  display: block;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
  margin-top: 4px;
}
.wizard-stape-body .content-box ul li input[type=radio] {
  display: none;
}
.wizard-stape-body .content-box ul li input[type=radio]:checked + label::before {
  border: 2px solid var(--rv-primary);
}
.wizard-stape-body .content-box ul li input[type=radio]:checked + label::after {
  background: var(--rv-primary);
}
.wizard-stape-body .content-box.active .btn-netx {
  pointer-events: visible;
  opacity: 1;
}
.wizard-stape-body .content-box .btn-netx {
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  opacity: 0.5;
}

#riskinfo {
  z-index: 9999;
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}
#riskinfo .modalbg {
  background: rgba(0, 0, 0, 0.5411764706);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: auto;
  top: 0;
}
#riskinfo .form-control {
  margin-bottom: 20px;
}
#riskinfo input {
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 5px;
}
#riskinfo .captcha_code {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
#riskinfo .captcha_code #captcha_code {
  width: 70px;
}
#riskinfo .captcha_code .btn-refresh {
  background: var(--rv-secondary);
  border: unset;
  
  border-radius: 5px;
  color: var(--rv-white);
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
#riskinfo .captcha_code .captcha_box {
  width: 100%;
  gap: 15px;
  display: flex;
}
#riskinfo .captcha_code .captcha_box input {
  width: 100%;
}

.modalbody {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.modalbody .modalbg {
    background: rgba(0, 0, 0, 0.5411764706);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
    top: 0;
}

.modalbody .Cmodalcard {
    max-width: 600px;
    width: 100%;
    z-index: 9;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal {
    background: #fff;
    position: relative;
    box-shadow: 0 0 15px 0 #bbb;
    padding: 30px;
    border-radius: 10px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    box-shadow: 0 0 15px 0 #ddd;
    cursor: pointer;
    right: -15px;
    top: -15px;
    border-radius: 5px;
    display: flex;
    z-index: 9;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span {
    position: relative;
    transform: rotate(45deg);
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::before,
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    content: "";
    width: 15px;
    height: 2px;
    position: absolute;
    background: #000;
    top: 2px;
    left: 2px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    transform: rotate(90deg);
}

.modalbody .Cmodalcard .maincontentmodal .modalheader {
    position: absolute;
    width: 100%;
    background: #f00;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    padding: 10px 15px;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
@media only screen and (max-width:1200px){
	.navbar-light .navbar-nav .nav-link{
	padding: 10px 15px;
	}

}
@media only screen and (max-width:992px){
	.section.blog-section .blog-box {
		margin-bottom: 30px;
	}
	.features-section .features-list{
	    padding-top: 50px;
	}
	.header_main .menubarm .navbar-collapse {
		background: var(--rv-black);
		padding: 20px;
	}
	.header_main .menubarm .navbar-light .navbar-nav .nav-link{
	color:var(--rv-white);
	}
	.header_main .menubarm .nav-item.dropdown .dropdown-menu {
		opacity: 1;
		visibility: visible;
		background: #000;
		transform: unset;
	}
	.header_main .menubarm .nav-item.dropdown .dropdown-menu .dropdown-item {
  	color:var(--rv-white);
	}
	.header_main .menubarm .navbar-light .navbar-nav .nav-link.btn-login {
		width: fit-content;
		color: #000;
		margin-left: 15px;
	}
}

@media only screen and (max-width:767px){
	.aboutus-section::after{
		    content: unset;
	}
	.aboutus-section .heading {
    width: 100%;
}
	.aboutus-section .img img {
   
    width: 100%;
    margin-bottom: 30px;
}
	.investor-corner .container {
    position: relative;
    z-index: 1;
}
	.about-page .main-section .card {
    margin-bottom: 30px;
}
	.contact-us .card {
    border: unset;
}
	.contactus-section .contectus-form{
	margin-top: 30px;
	}
	.bottom-header .privacy-text,
	.bottom-header p{
		    text-align: center;
}
}

.booster_btn , .booster_btn:hover
{
background: #009688;
  background: none;
  color: #fff;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 9999;
  bottom: 80px;
  right: 18px;
  font-size: 19px;
  padding: 10px 14px;
  border-radius: 5px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  float: r;
  float: right;
  background: #191919;
 text-decoration: none;
}

.booster_btn img
{
    padding-right: 4px;
}
.booster_btn
{
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}