@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --rv-primary: #0065b7;
  --rv-secondary: #003c6c;
  --rv-primary-light: #122a541a;
  --rv-secondary-light: #1a573517;
  --rv-white: #fff;
  --rv-black: #000;
  --rv-font: "Roboto", sans-serif;
}

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

body {
  position: relative;
  font-size: 16px;
  font-family: var(--rv-font);
  color: var(--rv-text-color);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
p {
    color: var(--rv-black);
    font-size: 16px;
    padding: 0;
    margin-bottom: 5px;
	text-align:justify;
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--rv-primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rv-primary);
}

.main-heading {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
.main-heading h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--rv-primary);
}
.main-heading h1 {
  font-weight: 600;
  margin: 0;
  font-size: 42px;
  line-height: 48px;
}
.main-heading .title-box {
  position: relative;
  display: block;
  font-size: 38px;
  margin: 0;
}
.main-heading .title-box span {
  color: var(--rv-secondary);
}
.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;
}

.text-line {
  display: -webkit-box;
  -webkit-line-clamp: var(--textline);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn {
  color: var(--rv-white);
  border-radius: 2px;
  text-align: center;
  position: relative;
  padding: 8px 25px;
  font-weight: 600;
  display: flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
  align-items: center;
  justify-content: center;
}
.btn i {
  line-height: 0;
  margin-left: 5px;
}
.btn.btn-primary {
  background-color: var(--rv-primary);
  border: 2px solid var(--rv-primary);
}
.btn.btn-primary:hover {
  background-color: var(--rv-secondary);
  color: var(--rv-white);
}
.btn.btn-secondry {
  background: var(--rv-secondary);
  border: 2px solid var(--rv-secondary);
  color: var(--rv-black);
}
.btn.btn-secondry:hover {
  background: var(--rv-black);
  color: var(--rv-white);
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

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

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.section {
  padding: 80px 0;
}

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

.ticker_section {
  padding: 5px 15px;
  background-color: var(--rv-black);
  display: flex;
}
.ticker_section .tickers {
  display: flex;
  margin: -10px;
  align-items: center;
  justify-content: center;
}
.ticker_section .tickers .ticker_item {
  padding: 10px;
  color: var(--rv-white);
  list-style: none;
  display: flex;
  position: relative;
  align-items: center;
}
.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.mrdown .difference_percent {
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid #ff0000;
  color: var(--rv-white);
}
.ticker_section .tickers .ticker_item.mrdown .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  right: 7px;
  top: 5px;
  background-image: url("../images/decrease.webp");
  background-size: 100%;
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
}
.ticker_section .tickers .ticker_item .difference_percent {
  background: rgba(81, 201, 72, 0.2);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #51c948;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  color: var(--rv-white);
}
.ticker_section .tickers .ticker_item .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  right: 7px;
  background-image: url("../images/trend.webp");
  background-size: 100%;
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
  top: 5px;
}
.ticker_section .tickers .ticker_item::after {
  content: "";
  position: absolute;
  right: 0;
  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;
}

.disclaimer-sec {
  padding-top: 25px;
  border-top: 1px solid #999;
}
.disclaimer-sec h5,
.disclaimer-sec h6,
.disclaimer-sec p {
  margin-bottom: 0;
  color: var(--rv-white);
  margin: 0;
}
.disclaimer-sec .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.disclaimer-sec .footer-content img {
  height: 67px;
}
.disclaimer-sec .footer-list {
  display: flex;
  padding: 10px;
  align-items: center;
}
.disclaimer-sec .footer-list .contentb {
  text-align: left;
  padding-left: 15px;
}

.social-list {
  display: flex;
  margin: -8px;
  flex-wrap: wrap;
  padding: 0;
}
.social-list li {
  list-style: none;
  padding: 8px;
}
.social-list li span,
.social-list li a {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: var(--rv-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.5s;
  color: var(--rv-white);
}
.social-list li span:hover,
.social-list li a:hover {
  transition: 0.5s;
  background: var(--rv-primary);
  color: var(--rv-white);
}

.form-group .captcha-code-form {
  display: flex;
  gap: 10px;
}
.form-group .captcha-code-form .btnRefresh {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group .captcha-code-form .boxbtn {
  display: flex;
  position: relative;
  width: 100%;
}
.form-group .captcha-code-form .boxbtn #captcha {
  width: 100%;
  padding-right: 75px;
}
.form-group .captcha-code-form .boxbtn .btnRefresh {
  position: absolute;
  right: 0;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}

.modal-open .modalbody {
  z-index: 1;
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}

.showmodal .modalbody {
  z-index: 99;
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}

.modalbody {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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: 500px;
  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;
  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;
  border: unset;
  font-size: 28px;
  top: -15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  z-index: 9;
  align-items: center;
}
.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: -1px;
  left: -6px;
}
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  transform: rotate(90deg);
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards {
  padding: 20px;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdForm .form-group:last-child {
  margin-bottom: 0;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify {
  text-align: center;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div p {
  font-size: 16px;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div:last-child {
  width: 100% !important;
  max-width: 90%;
  margin: 0 auto;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify label {
  display: block;
  -moz-text-align-last: left;
       text-align-last: left;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button {
  background-color: var(--rv-primary);
  border: 1px solid var(--rv-primary);
  color: #fff;
  display: inline-block !important;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.5s;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button :hover {
  transition: 0.5s;
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify #mobileOtp {
  display: block;
  width: 100%;
  background-color: #fff;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  margin-bottom: 20px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader {
  width: 100%;
  background: var(--rv-primary);
  border-radius: 10px 10px 0 0;
  padding: 8px 20px;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader h4,
.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
  color: var(--rv-white);
  font-size: 20px;
  margin-bottom: 0;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader h6 {
  color: var(--rv-white);
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow {
  display: none;
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow.show {
  display: block;
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image {
  margin-bottom: 15px;
  text-align: center;
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
  margin: 0 auto;
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow .content {
  padding: 25px;
}

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

.home-contact {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

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

.top-banner-section {
  padding: 20px 0 15px;
  position: relative;
}
.top-banner-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(45deg, var(--rv-secondary) 10%, var(--rv-primary-light) 100%);
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 1;
}
.top-banner-section .banner-box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.top-banner-section .banner-box ul {
  display: flex;
  margin: -10px;
  justify-content: start;
  padding: 0;
  flex-wrap: wrap;
}
.top-banner-section .banner-box ul li {
  list-style: none;
  padding: 10px;
  position: relative;
  color: var(--rv-black);
}
.top-banner-section .banner-box ul li a {
  color: var(--rv-black);
  font-weight: 600;
}
.top-banner-section .banner-box ul li::before {
  content: "";
  height: 30%;
  width: 2px;
  opacity: 0.3;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rv-white);
  position: absolute;
  left: 0;
}
.top-banner-section .banner-box ul li:first-child::before {
  content: unset;
}
.top-banner-section .banner-box h1,
.top-banner-section .banner-box h2,
.top-banner-section .banner-box h3 {
  color: var(--rv-white);
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.nevdisc-box {
  display: none;
}
.nevdisc-box.show {
  display: block;
}

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

.text-lin-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-lin-2 p:last-child {
  margin-bottom: 0;
}

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

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

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

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

#error_msg span {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

#mail-status .success {
  background: rgba(0, 128, 0, 0.1215686275);
  color: #008000;
  border-radius: 5px;
  border: 2px solid #008000;
  margin-bottom: 15px;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

#mail-status .error {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

.main_heading {
  margin-bottom: 30px;
}

.blog-section .blog-card.blog-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.blog-section .blog-card.blog-row .item {
  padding: 15px;
  max-width: 25%;
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 1200px) {
  .blog-section .blog-card.blog-row .item {
    max-width: 33.3%;
  }
}
@media only screen and (max-width: 992px) {
  .blog-section .blog-card.blog-row .item {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section .blog-card.blog-row .item {
    max-width: 100%;
  }
}
.blog-section .blog-card.blog-row .item .blog .client-info {
  border: 1px solid #ddd;
}
.blog-section .blog-card .item {
  margin: 30px 15px;
}
.blog-section .blog-card .item .blog {
  position: relative;
  background: var(--rv-white);
  transition: 0.5s;
  border-radius: 5px;
}
.blog-section .blog-card .item .blog::after {
  content: "";
  position: absolute;
  width: 0;
  transition: 0.5s;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--rv-primary);
}
.blog-section .blog-card .item .blog:hover {
  transition: 0.5s;
  box-shadow: 0 10px 15px 0 #ddd;
  transform: translateY(-10px);
}
.blog-section .blog-card .item .blog:hover::after {
  transition: 0.5s;
  width: 100%;
}
.blog-section .blog-card .item .blog:hover .images {
  transition: 0.5s;
}
.blog-section .blog-card .item .blog:hover .images img {
  transition: 0.5s;
  transform: scale(1.08) rotate(5deg);
}
.blog-section .blog-card .item .blog .images {
  transition: 0.5s;
  overflow: hidden;
}
.blog-section .blog-card .item .blog .images img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.5s;
}
.blog-section .blog-card .item .blog .client-info {
  transition: 0.5s;
  padding: 10px 20px 20px;
}
.blog-section .blog-card .item .blog .client-info ul {
  padding: 0;
  margin: 10px;
  display: flex;
  margin: -10px;
  list-style: none;
}
.blog-section .blog-card .item .blog .client-info ul li {
  padding: 10px;
  color: var(--rv-black);
  opacity: 0.7;
  position: relative;
  font-size: 12px;
  font-weight: 600;
}
.blog-section .blog-card .item .blog .client-info ul li:first-child::before {
  content: unset;
}
.blog-section .blog-card .item .blog .client-info ul li::before {
  content: "";
  width: 1px;
  height: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #aaa;
}
.blog-section .blog-card .item .blog .client-info h3 {
  margin: 0;
  margin-top: 10px;
}

.related-section-content .latest-blog-loop {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0;
}
.related-section-content .latest-blog-loop .item {
  padding: 10px 0;
  width: 100%;
}
.related-section-content .latest-blog-loop .item a {
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background: var(--rv-white);
  transition: 0.4s;
}
.related-section-content .latest-blog-loop .item a:hover {
  transition: 0.4s;
  box-shadow: 10px 10px 15px 0 #ddd;
  transform: translateY(5px) translateX(5px);
}
.related-section-content .latest-blog-loop .item a .blog {
  display: flex;
  align-items: self-start;
}
.related-section-content .latest-blog-loop .item a .blog .images img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.related-section-content .latest-blog-loop .item a .blog .client-info {
  padding: 0 15px;
}
.related-section-content .latest-blog-loop .item a .blog .client-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: -1px;
}
.related-section-content .latest-blog-loop .item a .blog .client-info ul li {
  width: 100%;
  font-size: 12px;
  padding: 1px;
  color: #bbb;
}
.related-section-content .latest-blog-loop .item a .blog .client-info ul li:first-child {
  color: var(--rv-black);
}
.related-section-content .latest-blog-loop .item a .blog .client-info h4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.rv-faq-section .tebBar-box .tebBar-card {
  border: 1px solid #ddd;
  border-bottom: unset;
  margin-bottom: 20px;
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione {
  padding: 20px;
  padding-right: 60px;
  position: relative;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.5s;
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione .rv-faq-title {
  color: var(--rv-bg-primary);
  margin: 0;
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione.active {
  transition: 0.5s;
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::after {
  transition: 0.5s;
  transform: rotate(90deg);
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione::before, .rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 25px;
  width: 2px;
  height: 20px;
  transition: 0.5s;
  background: var(--rv-primary);
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione::before {
  transform: rotate(90deg);
}
.rv-faq-section .tebBar-box .tebBar-card .disc-box {
  display: none;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

.single_blog {
  border-radius: 10px 10px 3px 3px;
  transition: 0.5s;
}
.single_blog:hover {
  transition: 0.5s;
  box-shadow: 0 10px 10px 0 #ddd;
  transform: translateY(-10px);
}
.single_blog:hover .single_blog_thumb {
  transition: 0.5s;
}
.single_blog:hover .single_blog_thumb img {
  transition: 0.5s;
  transform: scale(1.1) rotate(5deg);
}
.single_blog .single_blog_thumb {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
.single_blog .single_blog_thumb img {
  transition: 0.5s;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.single_blog .single_blog_thumb .category-title {
  border: 1px solid var(--rv-primary);
  padding: 5px;
  border-radius: 0 15px 0 0;
  background-color: var(--rv-white);
  color: var(--rv-primary);
  font-weight: 600;
  position: absolute;
  left: 0;
}
.single_blog .single_blog_thumb span {
  background: var(--rv-secondary);
  padding: 5px 10px;
  position: absolute;
  color: var(--rv-white);
  left: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 5px -5px 10px 0 #fff;
  border-radius: 0 10px 0 0;
}
.single_blog .single_blog_content {
  border-bottom: 1px solid var(--rv-primary);
  border-left: 1px solid var(--rv-primary);
  border-right: 1px solid var(--rv-primary);
  background: var(--rv-white);
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
.single_blog .single_blog_content .temp_theme_blog_meta {
  font-size: 12px;
  color: var(--rv-black);
}
.single_blog .single_blog_content .temp_theme_blog_meta .meta-date {
  color: #212529;
  font-weight: 600;
  display: block;
  padding-bottom: 10px;
}
.single_blog .single_blog_content .temp_theme_blog_meta .meta-date i {
  color: var(--rv-primary);
  margin-right: 5px;
}
.single_blog .single_blog_content .temp_theme_blog_meta h6 {
  color: var(--rv-primary);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.single_blog .single_blog_content .temp_theme_blog_meta h6 i {
  position: relative;
  top: 2px;
  left: 5px;
}
.single_blog .single_blog_content .blog_page_title {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 0;
}
.single_blog .single_blog_content .blog_page_button span {
  color: var(--rv-black);
  text-decoration: underline;
}

p {
  color: var(--rv-black);
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--rv-primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rv-primary);
}

.bg_gray {
  background: #f0eeee;
}

.main_section.bannersec {
  padding: 0;
}

.bannersec img {
  width: 100%;
}

.main_heading h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--rv-primary);
}

.main_heading h1 {
  font-weight: 600;
  margin: 0;
  font-size: 42px;
  line-height: 48px;
}

.main_section {
  padding: 80px 0;
}

.dark {
  color: #24285b;
}

.primary {
  color: #fe6347;
}

.secondary {
  color: #24285b;
}

.dark_bg {
  background-color: #181818;
}

.primary_bg {
  background-color: #fe6347;
}

.secondary_bg {
  background-color: #24285b;
}

.dark_bg h1,
.dark_bg h2,
.dark_bg h3,
.dark_bg h4,
.dark_bg h5,
.dark_bg h6 {
  color: var(--rv-white) !important;
}

.dark_bg p,
.dark_bg a,
.dark_bg li,
.dark_bg span {
  color: var(--rv-white) !important;
}

.header-main .navbar.navbar-expand-lg.navbar-light {
  padding: 5px;
  width: 100%;
}
.header-main .navbar.navbar-expand-lg.navbar-light .navbar-nav .dropdown-menu .dropdown-item .dropdown-link {
  font-weight: 600;
}
.header-main .navbar.navbar-expand-lg.navbar-light .navbar-nav .dropdown-menu .dropdown-item .dropdown-link:hover {
  color: var(--rv-secondary);
}

.main_banner {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  height: 800px;
}

.main_banner::after {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/shape1.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: left;*/
  /*background-size: contain;*/
  /*width: 1000px;*/
  /*height: 100%;*/
  /*top: 122px;*/
  /*left: 0px;*/
}

.main_banner::before {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/img1.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: right;*/
  /*background-size: contain;*/
  /*width: 1000px;*/
  /*height: 100%;*/
  /*top: 0px;*/
  /*right: 0px;*/
  /*transform: rotate(0deg);*/
}

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

.main_banner .banner_content h1 {
  font-weight: 700;
  color: var(--rv-white);
}

.investor_corner {
  position: relative;
}

.investor_corner .main_heading h2 {
  color: var(--rv-primary);
  line-height: 24px;
}

.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 .whyus-section {
  margin: 0;
  padding: 0;
}

.investor_corner .whyus-section .col-md-6 {
  padding: 0 10px;
}

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

.investor_box {
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 8px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.investor_box:hover {
  background-color: var(--rv-primary);
  text-decoration: none;
  box-shadow: 0px 5px 8px 3px rgba(0, 0, 0, 0.2);
}

.about-section .investor_box {
  background-color: unset;
  position: relative;
  overflow: hidden;
}

.about-section .investor_box:hover {
  background-color: unset;
}

.about-section .investor_box:before {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  transform: rotate(45deg);
  left: -25px;
  margin: auto;
  background: rgba(252, 117, 9, 0.5803921569);
  /* border-radius: 50%; */
  transition: 0.5s;
}

.about-section .investor_box:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 0;
  background: var(--rv-primary);
  transition: 0.5s;
  z-index: -1;
  transform: rotate(0);
}

.about-section .investor_box:hover .icon {
  transition: 0.5s;
  border-color: var(--rv-white);
}

.about-section .investor_box:hover .icon .rv-image-icon i {
  background: unset;
  color: var(--rv-white);
  -webkit-text-fill-color: unset;
}

.about-section .investor_box .icon img {
  transition: 0.5s;
}

.about-section .investor_box:hover .icon img {
  filter: brightness(0) invert(1);
  transition: 0.5s;
}

.about-section .investor_box .icon {
  border: 2px solid var(--rv-primary);
  transition: 0.5s;
}

.about-section .investor_box:hover h5,
.about-section .investor_box:hover p {
  color: var(--rv-white);
}

.investor_box img {
  margin: 0 auto;
  padding: 9px;
}

.investor_box h5 {
  font-weight: 600;
  font-size: 17px;
  padding: 14px 0 5px 0;
  height: 50px;
  line-height: 18px;
}

.investor_box p {
  margin: 0;
}

.investor_corner .aboutus-section {
  padding-top: 80px;
  padding-left: 40px;
}

.why_chooseus {
  position: relative;
}

.why_chooseus .main_heading {
  margin-bottom: 15px;
}

.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 var(--rv-white);
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 var(--rv-white);
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: 80%;
  height: 80%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.why_chooseus {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, var(--rv-secondary) 33%);
}
.why_chooseus .main_heading h5 {
  color: var(--rv-black);
}
.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;
}
.why_chooseus::after {
  content: "";
  position: absolute;
  background-image: url(../images/up.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  width: 100%;
  height: 100%;
  top: -20px;
  z-index: -1;
  left: 0px;
}

.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_box {
  background-color: var(--rv-white);
  text-decoration: none;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 25px 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

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

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

.service_box .icon {
  background-color: var(--rv-primary);
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}

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

.service_box:hover .icon {
  background-color: var(--rv-primary);
}

.service_box .icon img:nth-child(2) {
  display: none;
}

.service_box:hover .icon img:nth-child(1) {
  /*display: none;*/
}

.service_box:hover .icon img:nth-child(2) {
  display: block;
}

.service_box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  /*height: 48px;*/
}

.service_box:hover h5 {
  /*color: var(--rv-white);*/
  /*margin-top: -8px;*/
}

.service_box:hover h5,
.service_box:hover p,
.service_box:hover a {
  color: var(--rv-black) !important;
  text-decoration: none;
}

.testimonial_card {
  background-color: rgba(0, 0, 0, 0);
  /*border-radius: 15px;*/
  /*box-shadow: 0 0 12px 2px rgba(0,0,0,0.1);*/
  /*padding: 40px 40px 80px 40px;*/
  position: relative;
}

.testimonials {
  text-align: center;
}

.testimonial_card {
  overflow: hidden;
}

.testimonials p {
  color: var(--rv-black);
  font-size: 17px;
}

.testimonials .images {
  width: 120px;
  margin: 0 auto;
  border: 3px solid var(--rv-white);
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--rv-white);
  height: 120px;
  padding-top: 25px;
}

.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: #fe6347 !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

#testimonialCar .owl-nav button span {
  color: var(--rv-white);
  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%;
}

header.header-main .navbar-brand img {
  height: 120px;
  width: auto;
}

.footer_top .navbar-brand {
  display: block;
}

.footer_main {
  padding: 80px 0 0 0;
  /*border-radius: 250px 250px 0 0;*/
  background-color: #101010;
}

.foot_widget h4 {
  color: var(--rv-white);
}

.card {
  border: 1px solid var(--rv-secondary);
  height: 100%;
}

.foot_widget .foot_title {
  font-size: 20px;
  font-weight: 500;
  color: var(--rv-white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.foot_widget ul {
  list-style-type: none;
  padding-left: 10px;
}

.foot_widget ul li a {
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  padding: 5px 0;
  color: #aaa;
  display: block;
  transition: all 0.3s ease-in-out;
}

.foot_widget ul li a:hover {
  color: var(--rv-primary) !important;
  padding-left: 5px;
  transition: all 0.3s ease-in-out;
}

.foot_widget a {
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  color: #aaa;
  display: block;
  transition: all 0.3s ease-in-out;
}

.foot_widget a:hover {
  color: #615c58 !important;
  padding-left: 5px;
  transition: all 0.3s ease-in-out;
}

.footer_bottom {
  text-align: center;
  background: #121212;
}
.footer_bottom .rv-footer-b {
  padding: 15px 0 15px 0;
  display: flex;
  border-top: 1px solid #999;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_bottom .rv-footer-b p {
  color: var(--rv-white);
}
.footer_bottom .rv-footer-b p a {
  color: var(--rv-white);
}

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

#captcha_code {
  width: 90px !important;
  height: 55px !important;
  border-radius: 5px;
}

.btnRefresh {
  height: 55px;
  border-radius: 5px;
  background-color: #24285b;
  color: var(--rv-white);
}

.getintouch_section .main_heading h1 {
  margin-bottom: 5px;
  font-size: 42px;
}

.getintouch_section .main_heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.newsletter {
  margin-bottom: 50px;
}

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

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

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

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

.sip_section .val-body .outer_div {
  margin-bottom: 15px;
}

.sip_section .val-body .outer_div .slider_box {
  text-align: right;
}

.sip_section canvas#myChart {
  max-height: 400px;
}

.sip_section .ui-slider.ui-slider-horizontal {
  border: 1px solid #fe6347;
  border-radius: 30px;
  height: 10px;
}

.sip_section .ui-slider-handle {
  background: #fe6347 !important;
  border-radius: 100%;
  width: 22px !important;
  height: 22px !important;
  border: 1px solid #fe6347 !important;
  outline: none !important;
}

.sip_section .ui-slider-range {
  background-color: #fe6347;
  border: 1px solid #fe6347 !important;
  height: 12px !important;
  margin-top: -1px;
  border-radius: 30px 0 0 20px !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--rv-black);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 20px;
}

.navbar-light .navbar-nav a.nav-link.dropdown-toggle {
  padding-right: 30px;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--rv-secondary);
}

.navbar-light .navbar-nav a.nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  border-top: 1px solid var(--rv-white);
  border-right: 1px solid var(--rv-white);
  top: 26px;
}

.main_banner .banner_content h1 span {
  color: var(--rv-primary);
  display: block;
}

.icon1-hover {
  display: none;
}

.investor_box:hover .icon1-hover {
  display: block;
}

.aboutus_section {
  position: relative;
}

.aboutus_section::after {
  content: "";
  position: absolute;
  background-image: url(../images/aboutus_section.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 100%;
  height: 1040px;
  top: 0px;
  left: 0px;
  transform: rotate(0deg);
}

.why_chooseus ul {
  padding-left: 0px;
}

.why_chooseus ul li {
  list-style-type: none;
  float: left;
  margin-top: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why_chooseus ul li img {
  /*float: left;*/
  width: 33px;
}

.why_chooseus ul li p span {
  display: block;
  color: var(--rv-black);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.why_chooseus ul li p {
  width: calc(100% - 104px);
  float: right;
}

.why_chooseus ul li .why_chooseus_icon {
  float: left;
  width: 90px;
  text-align: center;
}

.rv-bg-color {
  background: #eaf0f8;
}

.service_section {
  position: relative;
}

.service_section .service_box .icon {
  background-color: var(--rv-white);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service_section .service_box {
  text-align: center;
}

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

.testimonial_section {
  position: relative;
}

.testimonial_section.mt-seaction .item {
  padding: 15px;
  max-width: 600px;
  width: 100%;
  margin: 10px auto;
}

.testimonial_section.mt-seaction .item .investor_box {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.testimonial_section.mt-seaction .item .investor_box:hover {
  background-color: var(--rv-primary);
  transition: 0.5s;
}

.testimonial_section.mt-seaction .item .investor_box:hover::before {
  transition: 0.5s;
  background: var(--rv-primary);
  z-index: 0;
  width: 300px;
  height: 300px;
}

.testimonial_section.mt-seaction .item .investor_box:hover .icon,
.testimonial_section.mt-seaction .item .investor_box:hover p,
.testimonial_section.mt-seaction .item .investor_box:hover h5 {
  color: var(--rv-white);
  position: relative;
}

.testimonial_section::before {
  /*background: var(--rv-primary);*/
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/icon/testimonial-bg.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: top left;*/
  /*background-size: auto;*/
  /*width: 78%;*/
  /*height: 70%;*/
  /*top: 0%;*/
  /*left: 0;*/
}

.testimonial_section .main_heading {
  /*margin-top: 4rem;*/
}

.testimonial_section .main_heading h2,
.testimonial_section .main_heading p {
  color: var(--rv-black);
}

.form-group .form-control {
  border: 1px solid rgba(202, 202, 202, 0.8);
  min-height: 55px;
}
.form-group .form-control::-moz-placeholder {
  color: #222;
}
.form-group .form-control::placeholder {
  color: #222;
}
.form-group select.form-control {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.social {
  float: right;
}

.social-footer {
  padding: 0px;
}

.social-footer li {
  display: inline-block;
}

.footer_bottom p {
  margin: 0;
}

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

#homeSlider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--rv-white);
  border-radius: 10px;
  font-size: 40px;
  line-height: 0;
}
#homeSlider .owl-nav button span {
  position: relative;
  top: -3px;
}
#homeSlider .owl-nav button.owl-prev {
  left: 20px;
}
#homeSlider .owl-nav button.owl-next {
  right: 20px;
}

.banner-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.banner-section .header-content {
  position: relative;
  z-index: 1;
}
.banner-section .header-content .subtitle {
  color: var(--rv-white);
}
.banner-section .header-content .description {
  color: var(--rv-white);
}
.banner-section::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5019607843);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-section .item {
  position: relative;
  height: 100%;
}

.banner-section .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-section .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.banner-section .item .cover .image {
  position: relative;
}
.banner-section .item .cover .image img {
  width: 75%;
}
.banner-section .item .cover .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.svg");
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
  opacity: 1;
}

.banner-section .item .cover .header-content h3 {
  color: var(--rv-primary);
}
.banner-section .item .cover .header-content h3 span {
  color: var(--rv-black);
}
.banner-section .item .cover .header-content h2 {
  font-size: 22px;
  font-weight: 400;
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
}
.banner-section .item .cover .header-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rv-primary);
}

.banner-section .item .cover .header-content h1 {
  font-size: 48px;
  margin: 5px 0 20px;
  word-spacing: 3px;
}

.banner-section .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
}

.banner-section .owl-item.active h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner-section .owl-item.active h2 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner-section .owl-item.active h4 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.banner-section .owl-item.active .line {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

er-section .owl-nav .owl-prev:hover {
  background: var(--rv-black) !important;
}

.banner-section .owl-nav button {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  transition: all 0.4s ease-out;
  background: var(--rv-primary) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.banner-section .owl-nav button span {
  font-size: 40px;
  color: var(--rv-white);
  line-height: 34px;
}
.banner-section .owl-nav button:focus {
  outline: 0;
}
.banner-section .owl-nav button:hover {
  background: var(--rv-black) !important;
}

.banner-section :hover .owl-prev {
  left: 0px;
  opacity: 1;
}

.banner-section :hover .owl-next {
  right: 0px;
  opacity: 1;
}

#frame1 {
  margin-top: -124px;
  display: block;
  padding: 17px;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 29px 49px 0px rgba(0, 0, 0, 0.15);
  /*margin-bottom: 35px;*/
  /*margin-bottom: 120px;*/
}

.investor_corner .investor_box p {
  display: none;
}

.about_section .icon-box::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.about_section .icon-box::before {
  bottom: 0;
  right: 0;
}

.about_section .icon-box::before,
.about_section .icon-box::after {
  content: "";
  position: absolute;
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border: 1px solid #e5e7e9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  pointer-events: none;
  transition: 0.33s all ease;
}

.about_section .icon-box {
  text-align: center;
  cursor: default;
  max-width: 308px;
  padding: 67px 40px 61px;
}

.about_section .icon-box .box-icon {
  min-height: 46px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.about_section .icon-box * + .box-header {
  margin-top: 5px;
}

.about_section .icon-box .divider {
  max-width: 100%;
  margin: 13px auto;
  transition: 0.33s all ease;
}

.about_section .divider {
  width: 49px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.about_section .bg-accent {
  background: #cca876;
  fill: #cca876;
}

.icon-box .box-body {
  max-width: 100%;
}

.icon-box .box-top,
.icon-box .box-body {
  position: relative;
  will-change: transform;
  transition: 0.33s all ease;
  -webkit-filter: blur(0);
}

.investor_box_mt {
  margin-top: 12rem;
}

.investor_corner ul {
  list-style-type: none;
  padding-left: 0px;
}

.investor_corner ul li {
  color: var(--rv-white);
}

.testimonials {
  background: var(--rv-white);
  padding: 40px 20px;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
}

.testimonials:hover {
  transition: all 0.3s ease-in-out;
  background: var(--rv-primary);
}

.testimonials:hover h3,
.testimonials:hover p {
  color: var(--rv-black) !important;
}

.testimonials a {
  text-decoration: none;
}

.service_section .owl-carousel .owl-item img {
  width: 52px;
  margin-bottom: 10px;
  margin: 0px auto;
  padding-top: 10px;
}

.testimonials h3 {
  font-size: 18px;
  height: 44px;
}

.testimonials p {
  color: var(--rv-black);
  font-size: 17px;
}

.service_section .testimonials p.view {
  color: var(--rv-black);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 30px;
  font-weight: 600;
  margin: 10px auto;
}

.service_section .testimonials p.view i {
  top: 2px;
  right: 0;
  position: absolute;
}

.foot_widget a i {
  color: #615c58;
  margin-right: 5px;
}

.why_chooseus_icon span {
  background: var(--rv-primary);
  color: var(--rv-white);
  padding: 14px;
  border-radius: 66%;
  width: 80px;
  height: 80px;
  display: block;
  font-size: 33px;
}

.foot_widget ul li a img {
  width: 30px;
}

.investor_box .icon {
  padding: 10px 0;
  border-radius: 50%;
  width: 100px;
  position: relative;
  overflow: hidden;
  height: 100px;
  margin: 0px auto;
}

.investor_box .icon img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.investor_box .icon img {
  width: 100%;
}

.mission-vision .mv_box {
  background-color: var(--rv-white);
  text-align: center;
  padding: 80px 20px 20px 20px;
  border-radius: 10px;
  border: 3px solid var(--rv-primary);
  position: relative;
}

.mission-vision .mv_box h3 {
  background-color: var(--rv-primary);
  padding: 8px;
  border-radius: 12px;
  color: var(--rv-white);
  display: block;
  width: 60%;
  position: absolute;
  top: -25px;
  left: 20%;
  font-size: 26px;
  font-weight: 600;
}

.mission-vision .mv_box {
  background-color: var(--rv-white);
  text-align: center;
  padding: 60px 20px 20px 20px;
  border-radius: 10px;
  border: 3px solid var(--rv-primary);
  position: relative;
  min-height: 190px;
}

.mission-vision .mv_box p {
  font-size: 19px;
  line-height: 24px;
  margin: 0;
  color: #151515;
}

.journey-section {
  position: relative;
  background-image: url(../images/map.png);
  background-size: contain;
  background-position: center;
}

.journey-section .main_heading {
  margin-top: 100px;
}

.journey-section .journey_img {
  margin-top: 40px;
}

.journey-section .journey_img img {
  width: 100%;
}

.journey-section .journey_text {
  position: relative;
}

.journey-section .journey_text .journey_years {
  display: flex;
  margin-bottom: 10px;
}

.journey-section .journey_text .journey_years .year {
  background-color: #615c58;
  padding: 6px 20px;
  position: relative;
  width: 100px;
  height: 40px;
}

.journey-section .journey_text .journey_years .year h3 {
  color: var(--rv-white);
  margin: 0;
}

.journey-section .journey_text .journey_years .year::after {
  content: "";
  border: 20px solid transparent;
  border-right: none;
  border-left: 20px solid #615c58;
  right: -20px;
  top: 0;
  position: absolute;
}

.journey-section .journey_text .journey_years .year::before {
  content: "";
  background-color: #615c58;
  width: 30px;
  height: 3px;
  right: -48px;
  top: 18px;
  position: absolute;
}

.journey-section .journey_text .journey_years .text {
  padding-left: 80px;
  margin-top: 5px;
}

.journey-section .journey_text .journey_years .text h4 {
  line-height: 20px;
}

.blog_section .item {
  margin: 15px;
}

.team {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.team .bg {
  width: 92%;
  height: 92%;
}

.team .bg::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgb(128, 196, 35);
  background: linear-gradient(45deg, rgba(128, 196, 35, 0.93) 0%, rgba(20, 58, 138, 0.93) 90%);
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transition: 0.4s ease-in-out;
}

.team:hover .bg::after {
  width: 90%;
  height: 92%;
  top: 4%;
  left: 5%;
  transition: 0.4s ease-in-out;
}

.team .bg .text {
  position: absolute;
  width: 100%;
  top: 65%;
  left: 0;
  text-align: center;
  z-index: 9;
  transition: 0.4s ease-in-out;
}

.team:hover .bg .text {
  top: 35%;
  transition: 0.4s ease-in-out;
}

.team .bg .text hr {
  display: block;
  width: 50%;
  margin: 15px auto;
  background: #b0c0d1;
}

.team .bg .text h3,
.team .bg .text h5 {
  margin: 0;
  color: var(--rv-white);
}

.team .bg .text .social {
  float: none;
  display: block;
  text-align: center;
  padding: 0;
}

.team .bg .text .social li {
  display: inline-block;
}

.team .bg .text .social img {
  width: 24px;
  margin: 4px;
}

.main_heading h1.inner_title {
  background: var(--rv-primary);
  font-size: 23px;
  color: var(--rv-white);
  padding: 1px;
}

.right_conatct_social_icon {
  background: linear-gradient(to top right, var(--rv-primary) -5%, #615c58 100%);
}

.contact_us {
  /*background-color: #f1f1f1;*/
  /*padding: 120px 0px;*/
}

.contact_inner {
  background-color: var(--rv-white);
  position: relative;
  box-shadow: 20px 22px 44px rgba(204, 204, 204, 0.8);
  border-radius: 25px;
}

.contact_field {
  padding: 60px 340px 90px 100px;
}

.right_conatct_social_icon {
  height: 100%;
}

.contact_field h3 {
  color: var(--rv-black);
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact_field p {
  color: var(--rv-black);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.contact_field .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #1325e8;
}

.contact_field .form-control::-moz-placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_info_sec {
  position: absolute;
  background-color: #2d2d2d;
  right: 1px;
  top: 18%;
  height: 440px;
  width: 340px;
  padding: 40px;
  border-radius: 25px 0 0 25px;
}

.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 15px;
  color: var(--rv-white);
}

.info_single {
  margin: 30px 0px;
  color: var(--rv-white);
}
.info_single a {
  color: var(--rv-white);
}

.info_single i {
  margin-right: 15px;
}

.info_single span {
  font-size: 14px;
  letter-spacing: 1px;
}

.info_single span a {
  color: var(--rv-white);
  text-decoration: none;
}

button.contact_form_submit {
  background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
  border: none;
  color: var(--rv-white);
  padding: 10px 15px;
  width: 100%;
  margin-top: 25px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
}

.socil_item_inner li {
  list-style: none;
}

.socil_item_inner li a {
  color: var(--rv-white);
  margin: 0px 15px;
  font-size: 14px;
}

.socil_item_inner {
  padding-bottom: 10px;
}

.map_sec {
  padding: 50px 0px;
}

.map_inner h4,
.map_inner p {
  color: var(--rv-black);
  text-align: center;
}

.map_inner p {
  font-size: 13px;
}

.map_bind {
  margin-top: 50px;
  border-radius: 30px;
  overflow: hidden;
}

.row.pp-logo img {
  text-align: center;
  margin: 0px auto;
  display: block;
  border: 1px solid var(--rv-black);
  padding: 7px;
  margin: 5px;
}

.footer_top .navbar-brand img {
  /*filter: brightness(0) invert(1);*/
}

.footer_top p {
  color: var(--rv-white);
}
.footer_top .navbar-brand {
  filter: brightness(0) invert(1);
}
.footer_top img {
  padding: 7px;
  border-radius: 5px;
  height: 150px;
}

.nav-item.dropdown:hover ul {
  display: block;
  opacity: 1;
}

.social-footer img {
  background: var(--rv-black);
}

@media (min-width: 992px) {
  .navbar-nav .dropdown > .dropdown-menu {
    left: 50%;
    transform: translate(-50%, 0px);
  }
}
@media (max-width: 992px) {
  .whyus-section .main_heading {
    text-align: center;
  }
  .banner-section .item .cover .header-content h1 {
    font-size: 33px;
  }
  .banner-section .item .cover .header-content {
    width: 100%;
  }
  .banner-section .item .btn-group img {
    width: 150px;
    height: auto;
  }
  .main_section {
    padding: 30px 0;
  }
  .navbar-light .navbar-nav .nav-link {
    padding: 0px;
  }
  .navbar-collapse .navbar-nav .nav-item {
    padding-bottom: 3px;
    padding-top: 3px;
  }
  #navbarCollapse {
    padding: 19px;
  }
  /*.why_chooseus img:first-child*/
  /*{*/
  /*    width: 60%;*/
  /*    margin: 0px auto;*/
  /*    display: block;*/
  /*    margin-bottom: 20px;*/
  /*}*/
}
.single-blog {
  border: 1px solid var(--rv-black);
  padding: 13px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.single-blog h4 {
  font-size: 18px;
  padding-top: 10px;
}

.mobile-menu {
  display: none;
}

.ourclients-section .testimonials {
  padding: 0;
}

.ourclients-section .testimonials:hover {
  transition: 0.5s;
  background-color: var(--rv-primary);
  transform: translateY(-10px);
}

.ourclients-section .testimonials:hover img {
  transition: 0.5s;
  filter: brightness(0) invert(1);
}

.ourclients-section .testimonials:hover .images {
  border: 3px solid var(--rv-white);
  position: relative;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0);
}

.ourclients-section .testimonials:hover .images .rv-image-icon i {
  background: unset;
  color: var(--rv-white);
  -webkit-text-fill-color: unset;
}

.ourclients-section .testimonials .images {
  border: 3px solid var(--rv-primary);
  transition: 0.5s;
}

.ourclients-section .testimonials img {
  position: relative;
  transition: 0.5s;
}

.ourclients-section .testimonials h3 {
  font-size: 18px;
  height: auto;
  color: var(--rv-black);
  position: relative;
}

.ourclients-section .testimonials p {
  color: var(--rv-black);
  position: relative;
  font-size: 17px;
}

.ourclients-section .testimonials a {
  position: relative;
  overflow: hidden;
  padding: 40px 20px 20px;
  display: block;
  transition: 0.5s;
}

.sipc-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -15px;
  text-align: center;
  flex-wrap: wrap;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .sipc-body {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sipc-body .sipcb-card {
  padding: 15px;
}

.sipc-body .card {
  background: var(--datacolor);
  text-align: center;
  padding: 15px;
  color: var(--rv-white);
  width: 100%;
}

.blog_section .blog_body {
  background: var(--rv-white);
  border: 1px solid #eee;
  border-radius: 5px;
  transition: 0.5s;
}

.blog_section .blog_body:hover {
  box-shadow: 0 0 15px 0 #444;
  transition: 0.5s;
}

.blog_section .blog_body:hover .images {
  transition: 0.5s;
}

.blog_section .blog_body:hover .images img {
  transition: 0.5s;
  transform: scale(1.2) rotate(5deg);
}

.blog_section .blog_body .images {
  border-radius: 5px;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}

.blog_section .blog_body .images img {
  transition: 0.5s;
  height: 250px;
}

.blog_section .blog_body .blog-content {
  padding: 20px;
}

.blog_section .blog_body .blog-content h4 {
  font-size: 16px;
  overflow: hidden;
}

.blog_section .blog_body .blog-content .client_info ul {
  padding-left: 0;
}

.blog_section .blog_body .blog-content .client_info ul li {
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: start;
}

.blog_section .blog_body .blog-content .client_info ul li i {
  padding-right: 5px;
}

.blog_section .blog_body .blog-content .client_info ul li img {
  width: 14px;
  margin-right: 10px;
}

.blog_section .blog_body .blog-content a {
  margin-top: 10px;
  color: var(--rv-primary);
}

.nav-top ul {
  display: flex;
  padding-left: 0px;
  margin: 0;
}
.nav-top ul.social li {
  padding: 5px;
}
.nav-top ul li {
  display: inline-block;
  margin-right: 5px;
  color: var(--rv-white);
  padding: 4px 0px;
}
.nav-top ul li img {
  padding-right: 3px;
  width: 22px;
}
.nav-top ul li a {
  color: var(--rv-white);
}
.nav-top ul li a svg {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot_widget .social-footer li a {
  padding: 5px;
}

.foot_widget .social-footer li a svg {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.disclaimer-sec .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
  flex-wrap: wrap;
}

.disclaimer-sec .footer-content img {
  height: 67px;
}

.disclaimer-sec .footer-content .footer-list {
  display: flex;
  padding: 10px;
  align-items: center;
}

.disclaimer-sec .footer-content .footer-list .contentb {
  text-align: left;
  padding-left: 15px;
}

.disclaimer-sec .footer-content .footer-list .contentb h6 {
  color: var(--rv-white);
  margin-bottom: 0;
}

.aomv-section .aomv-box {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  height: 100%;
  padding: 25px;
  background: var(--rv-white);
  border-radius: 5px;
  box-shadow: 0 0 15px 0 #ddd;
}

.aomv-section .aomv-box:hover {
  background-color: var(--rv-primary);
  transition: 0.5s;
}

.aomv-section .aomv-box:hover H3 {
  color: var(--rv-white);
}

.aomv-section .aomv-box:hover p {
  color: var(--rv-white);
}

.aomv-section .aomv-box:hover::before {
  transition: 0.5s;
  transition: 0.5s;
  background: var(--rv-primary);
  z-index: 0;
  width: 300px;
  height: 300px;
}

.aomv-section .aomv-box::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(252, 117, 9, 0);
  transition: 0.5s;
}

.aomv-section .aomv-box h3 {
  font-weight: 600;
  color: var(--rv-black);
  position: relative;
}

.aomv-section .aomv-box p {
  color: var(--color-p);
  position: relative;
}

@media only screen and (min-width: 1360px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
.login-sections {
  padding: 50px 0;
}

.login-part {
  box-shadow: 0 0 15px 0 #eee;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
  background-color: var(--rv-white);
  border: 1px solid #eee;
  max-width: 550px;
  margin: 0 auto;
}

.login-part h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-part .form-group {
  margin-bottom: 20px;
}

.form-check-input:checked {
  background-color: var(--rv-primary);
  border: 2px solid var(--rv-primary);
}

.login-part .form-check-label {
  padding: 10px;
  border: 1px solid #2a3644;
  padding-left: 10px;
  border-radius: 5px;
}

.login-part input:not([type=radio]) {
  width: 100%;
}

.mb-25 {
  margin-bottom: 25px;
}

.modal-open {
  overflow: hidden !important;
}

.modal-open .ticker_sticky,
.modal-open footer.footer_main {
  position: relative;
  z-index: -3;
}

.modal-open .costom-modal-a {
  z-index: 99;
  visibility: visible;
  pointer-events: visible;
}

.modal-open .costom-modal-a .bg-show {
  background: rgba(0, 0, 0, 0.5803921569);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.form-check-input[type=radio] {
  border-radius: 50%;
  margin-right: 8px;
}

.form-group .form-control {
  border: 1px solid var(--rv-primary);
  background: unset;
  padding: 10px 15px;
  border-radius: 3px;
}

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

.costom-modal-a .close-i {
  position: absolute;
  top: 0;
  right: 0;
}

.costom-modal-a .cm-body {
  max-width: 400px;
  width: 100%;
  background-color: var(--rv-white);
  border-radius: 3px;
  position: relative;
  z-index: 999;
}

.costom-modal-a .cm-body .m-hadding {
  background-color: #2a3644;
  border-radius: 3px 3px 0 0;
  padding: 10px 15px;
}

.costom-modal-a .cm-body .m-hadding h4 {
  margin-bottom: 0;
  color: var(--rv-white);
}

.costom-modal-a .cm-body .cm-cards {
  padding: 30px;
}

.costom-modal-a .close-i {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  line-height: 29px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  background: var(--rv-white);
  box-shadow: 0 0 15px 0 #777;
  border-radius: 5px;
}

.whyus-section .investor_box .icon {
  border-color: var(--rv-primary);
}

.whyus-section .investor_box h5 {
  color: var(--rv-primary);
}

.whyus-section .investor_box:hover::before {
  background: var(--rv-primary);
}

.whyus-section .investor_box::before {
  background: var(--rv-primary);
}

.service_section .service_box .icon {
  border: 2px solid var(--rv-primary);
}

.service_section .service_box h5 {
  color: var(--rv-black);
}

.service_section .service_box:hover {
  background: var(--rv-primary);
}

.service_section .service_box:hover::before {
  background: var(--rv-primary);
}

.rvpl-2 {
  padding-left: 10px;
}

.capitalServicesCard .csc-items {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
}

.capitalServicesCard .csc-items:hover {
  transition: 0.5s;
}

.capitalServicesCard .csc-items:hover .csc-item {
  border-color: var(--rv-primary);
  box-shadow: 15px 25px 25px 0px #aaa;
  transition: 0.5s;
}

.capitalServicesCard .csc-items:hover .csc-item h3 {
  transition: 0.5s;
  color: var(--rv-secondary);
}

.capitalServicesCard .csc-items:hover .csc-item .images {
  border-color: var(--rv-primary);
  transition: 0.5s;
}

.capitalServicesCard .csc-items .csc-item {
  position: relative;
  height: 100%;
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  padding-top: 20px;
  background: var(--rv-white);
  box-shadow: 0 0px 5px 0px #eee;
  transition: 0.5s;
}

.capitalServicesCard .csc-items a {
  text-decoration: none;
}

.capitalServicesCard .csc-items .csc-item h3 {
  padding-left: 80px;
  transition: 0.5s;
  color: var(--rv-primary);
}

.capitalServicesCard .csc-items .csc-item .images {
  width: 90px;
  height: 90px;
  border-radius: 0 0 50px;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -2px;
  top: -2px;
  background: rgba(153, 0, 0, 0.2);
  transition: 0.5s;
}

.capitalServicesCard .csc-items .csc-item .images img {
  position: relative;
  z-index: 1;
}

.capitalServicesCard .csc-items .csc-item .content {
  padding-top: 35px;
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 3;*/
  /*-webkit-box-orient: vertical;*/
}

/*.capitalServicesCard .csc-items .csc-item .images::after {*/
/*  content: "";*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  border-radius: 50%;*/
/*  background: var(--rv-primary);*/
/*  top: 5px;*/
/*  left: 5px;*/
/*  z-index: 0;*/
/*}*/
.client-section .item,
.partner_section .item {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  background: var(--rv-white);
}

.client-section .item img,
.partner_section .item img {
  transition: 0.5s;
  -o-object-fit: contain;
     object-fit: contain;
  height: 70px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.client-section .item:hover,
.partner_section .item:hover {
  transition: 0.5s;
}

.client-section .item:hover img,
.partner_section .item:hover img {
  transition: 0.5s;
}

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

.stores .stors {
  padding: 15px;
}

.stores .stors img {
  transition: 0.5s;
  height: 45px;
}

.home-content-section .iframe {
  position: relative;
  height: 100%;
  padding-top: 56.5%;
}

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

.home-content-section .contact_form {
  border-radius: 10px;
  border: 1px solid #ddd;
  background: var(--rv-white);
  padding: 30px;
}

.page-about-section .images img {
  width: 100%;
}

.about-page .home-content-section {
  background-color: rgba(153, 0, 0, 0.04);
}

.our-team-section .our-team-card {
  height: 100%;
  padding-bottom: 30px;
}

.our-team-section .our-team-card .otc-item {
  border: 1px solid #ddd;
  transition: 0.5s;
  height: 100%;
  padding: 20px;
}

.our-team-section .our-team-card .otc-item:hover {
  transition: 0.5s;
  border-color: var(--rv-primary);
  box-shadow: 0 20px 20px 0 #ddd;
}

.our-team-section .our-team-card .otc-item:hover .image {
  transition: 0.5s;
  border-color: var(--rv-primary);
}

.our-team-section .our-team-card .otc-item:hover .image,
.our-team-section .our-team-card .otc-item:hover .content {
  transition: 0.5s;
  transform: translateY(-30px);
}

.our-team-section .our-team-card .otc-item:hover .content {
  transition: 0.5s;
}

.our-team-section .our-team-card .otc-item:hover .content .social {
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  transform: translateY(0);
}

.our-team-section .our-team-card .otc-item .image {
  width: 100px;
  height: 100px;
  transition: 0.5s;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #eee;
}

.our-team-section .our-team-card .otc-item .image img {
  width: 100%;
  height: 100%;
}

.our-team-section .our-team-card .otc-item .content {
  transition: 0.5s;
  text-align: center;
}

.our-team-section .our-team-card .otc-item .content h3 {
  color: var(--rv-primary);
}

.our-team-section .our-team-card .otc-item .content .social {
  float: unset;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.5s;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  right: 0;
  margin: 0 auto;
  transform: translateY(50px);
}

.our-team-section .our-team-card .otc-item .content .social ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-team-section .our-team-card .otc-item .content .social ul li {
  list-style: none;
  padding: 5px;
}

.our-team-section .our-team-card .otc-item .content .social ul li a {
  display: block;
}

.our-team-section .our-team-card .otc-item .content .social ul li a svg {
  width: 35px;
  height: 35px;
}

.page-service-section .main_heading h1 {
  color: var(--rv-primary);
}

.page-service-section .image img {
  width: 100%;
}

.page-service-section .content-service ul {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 767px) {
  .page-service-section .content-service ul li {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 767px) {
  .page-service-section .content-service ul li:nth-child(odd) {
    background-color: rgba(153, 0, 0, 0.04);
  }
  .page-service-section .content-service ul li:nth-child(odd) .s-content {
    flex-direction: row-reverse;
    text-align: right;
  }
}
.page-service-section .content-service ul li .image img {
  width: 350px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .page-service-section .content-service ul li .image img {
    width: 100%;
  }
}
.page-service-section .content-service ul li .content {
  padding: 30px;
}

@media only screen and (max-width: 767px) {
  .page-service-section .content-service ul li .content {
    padding: 30px 0;
  }
}
.page-service-section .content-service ul li .content h3 {
  color: var(--rv-primary);
}

.page-service-section .content-service ul li .s-content {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-service-section .content-service ul li .s-content {
    flex-wrap: wrap;
  }
}
.careers-form {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 5px;
  background: var(--rv-white);
}

.rv-image-icon {
  position: relative;
  z-index: 1;
}
.rv-image-icon .services {
  font-size: 50px;
  background: linear-gradient(179deg, rgb(0, 153, 51) 0%, rgb(0, 0, 102) 35%, rgb(153, 0, 0) 53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px;
}

.ourclients-section .testimonials:hover .images .rv-image-icon .services {
  filter: brightness(0) invert(1);
}

.rv-image-icon i {
  font-size: 50px;
  background: linear-gradient(179deg, rgb(0, 153, 51) 0%, rgb(0, 0, 102) 35%, rgb(153, 0, 0) 53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px;
}

.navbar-btn i {
  display: none;
}

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

@media only screen and (max-width: 1200px) {
  .navbar-btn i {
    display: block;
    font-family: "FontAwesome";
  }
  .nav-top {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .banner-section .item {
    height: auto;
  }
  .contact_field {
    padding: 20px 245px 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .login-part .form-check-label {
  }
  .investor_corner .aboutus-section {
    padding-top: 10px;
  }
  #homeSlider.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    min-height: 400px;
  }
  .aomv-section .col-md-6 {
    margin-bottom: 30px;
  }
  .home-content-section .home-contact {
    margin-top: 30px;
  }
  .usfl-links .useful-links {
    justify-content: center;
  }
  .blog_section .blog_body .images img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact_info_sec {
    position: unset;
    background-color: #2d2d2d;
    right: unset;
    top: unset;
    height: 340px;
    width: 100%;
    padding: 40px;
    border-radius: 0;
  }
  .contact_field {
    padding: 20px;
  }
  .mobile-revers {
    flex-direction: column-reverse;
    padding: 0 30px;
  }
  .main_heading h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .banner-section .item .cover .header-content h1 {
    font-size: 30px;
  }
  .banner-section .item .cover .header-content h2 {
    font-size: 26px;
  }
}
#error_msg span {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

#mail-status .success {
  background: rgba(0, 128, 0, 0.1215686275);
  color: #008000;
  border-radius: 5px;
  border: 2px solid #008000;
  margin-bottom: 15px;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

#mail-status .error {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

li.nav-item a.navbar-btn.btn.btn-sm.btn-primary.lift {
  margin-top: 8px;
}

.genrate-tickets .contact_info_sec {
  width: 450px;
  height: 450px;
  border-radius: 40px 0px 0 40px;
  padding: 10px;
  padding-right: 5px;
  background: linear-gradient(to right, #60100b, black);
}

.contact_info_sec img {
  height: 100%;
  width: 100%;
  border-radius: 34px 0 0 34px;
  filter: brightness(0.7);
}

#adModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: none;
}

/* Modal content */
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 800px;
  max-height: 80vh;
  /* Limit height to 80% of the viewport */
  padding: 20px;
  overflow-y: auto;
  /* Enable scrolling if content exceeds height */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  font-size: xx-large;
}

/* Content styling */
.modal-content h5 {
  color: #990000;
}

.modal-content a {
  color: #990000;
  text-decoration: underline;
}

.modal-content p {
  color: #000;
}

.modal-content ul {
  margin: 0;
  padding-left: 20px;
}

.modal-content ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.social-list {
  padding-bottom: 30px;
}
.social-list li a i {
  margin: 0;
  color: var(--rv-white);
}

#homeSlider {
  overflow: hidden;
}
#homeSlider .slider-text {
  opacity: 0;
  transform: translateY(20px);
}
#homeSlider .owl-item.active .slider-text.title {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
#homeSlider .owl-item.active .slider-text.subtitle {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
#homeSlider .owl-item.active .slider-text.description {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}
#homeSlider .owl-item.active .image.slider-image {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.counter-stats {
  padding-top: 0;
}
.counter-stats .rv-counter-stats {
  background: var(--rv-secondary);
  padding: 40px;
  border-radius: 20px;
}
.counter-stats .haddings {
  color: var(--rv-white);
}
.counter-stats .haddings .title-names {
  font-size: 36px;
  line-height: 50px;
}
.counter-stats .counter-card {
  display: flex;
  margin: -15px;
  flex-wrap: wrap;
}
.counter-stats .counter-card .counter-items {
  padding: 15px;
  text-align: center;
  max-width: 33.3%;
  width: 100%;
}
.counter-stats .counter-card .counter-items:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.counter-stats .counter-card .counter-items .counter-box .conut-b {
  font-size: 56px;
  font-weight: 600;
  color: var(--rv-white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.counter-stats .counter-card .counter-items .counter-box .conut-b span {
  font-family: bootstrap-icons !important;
  font-size: 40px;
  margin-left: 10px;
  position: relative;
  top: 10px;
}
.counter-stats .counter-card .counter-items .counter-box .name {
  color: var(--rv-white);
  width: 100%;
  font-size: 16px;
}

.about-home-section {
  position: relative;
  background-image: url("../images/about.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: right center;
}
.about-home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96deg, rgb(227, 204, 235) 33%, rgba(9, 9, 121, 0) 100%);
}
.about-home-section .main_heading {
  padding-bottom: 0;
  text-align: left;
}
.about-home-section .main_heading h5 {
  color: var(--rv-primary);
}
.about-home-section p {
  color: var(--rv-black);
}
.about-home-section .icones {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.about-home-section .icones .icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-primary);
  margin: auto;
  font-size: 50px;
  color: var(--rv-white);
  position: relative;
}
.about-home-section .icones .icone a {
  position: absolute;
  opacity: 1;
  z-index: 1;
  color: var(--rv-white);
}
.about-home-section .icones .icone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rv-secondary);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
  animation: smallScale 2s linear infinite;
}
.about-home-section .icones .icone::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rv-secondary);
  opacity: 0.1;
  z-index: 0;
  border-radius: 50%;
  animation: smallScale 5s linear infinite;
}

@keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.home-service-section .image img {
  width: 100%;
}
.home-service-section .rv-services-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.home-service-section .rv-services-row .item {
  max-width: 280px;
  width: 100%;
  padding: 15px;
}
.home-service-section .rv-services-row .item .service-items a {
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.home-service-section .rv-services-row .item .service-items a:hover {
  transform: scale(1.05);
}
.home-service-section .rv-services-row .item .service-items a:hover .images {
  transform: scale(1.05);
  background: var(--rv-white);
}
.home-service-section .rv-services-row .item .service-items a:hover .images img {
  filter: unset;
}
.home-service-section .rv-services-row .item .service-items a:hover .titles {
  color: var(--rv-primary);
}
.home-service-section .rv-services-row .item .service-items a .images {
  max-width: 60px;
  transition: 0.5s;
  width: 100%;
  height: 60px;
  background: var(--rv-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  outline: 1px solid var(--rv-primary);
  border: 2px solid var(--rv-white);
}
.home-service-section .rv-services-row .item .service-items a .images img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.home-service-section .rv-services-row .item .service-items a .titles {
  transition: 0.5s;
  font-size: 18px;
}

.titleline {
  position: relative;
}
.titleline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25px;
  width: 100px;
  height: 2px;
  border-radius: 50%;
  background: var(--rv-primary);
}
.titleline::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url("../images/favicon.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}

.rv-why-choose {
  position: relative;
}
.rv-why-choose .rv-wc-row {
  display: flex;
  margin: -15px;
  flex-wrap: wrap;
}
.rv-why-choose .rv-wc-row .rv-wcr-col {
  max-width: 33.3%;
  width: 100%;
  padding: 15px;
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items {
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  transition: 0.5s;
  background: var(--rv-white);
  border-bottom: 3px solid var(--rv-primary);
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.3);
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items:hover .image {
  transform: scale(1.05);
  background: var(--rv-white);
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items:hover .image img {
  filter: unset;
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items .image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  outline: 1px solid var(--rv-primary);
  transition: 0.5s;
  margin-bottom: 10px;
}
.rv-why-choose .rv-wc-row .rv-wcr-col .items .image img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.5s;
}

.home-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
}
.home-features-section .features-row .features-icon {
  width: 100%;
}
.home-features-section .features-row .features-icon .icone-row {
  display: flex;
  margin: -15px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.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-white);
  padding: 15px;
  border: 1px solid #ddd;
}
.home-features-section .features-row .features-icon .icone-row .icone a img {
  width: 100%;
}
.home-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-secondary);
}
.home-features-section .features-row .features-icon .icone-row .icone a.active img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.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;
  border-radius: 41px;
  padding: 2px;
}
.home-features-section .features-row .features-content {
  padding: 15px;
  max-width: 65%;
  width: 100%;
}
.home-features-section .features-row .features-content .text {
  min-height: 100px;
}
.home-features-section .features-row .features-content .text h5 {
  color: var(--rv-black);
  text-transform: capitalize;
}

.rv-testimonial-section .nev-btn {
  display: flex;
  justify-content: end;
  height: 100%;
  align-items: center;
}
.rv-testimonial-section .nev-btn button {
  border: 2px solid var(--rv-primary);
  border-radius: 5px;
  padding: 10px;
  background: var(--rv-white);
  margin-left: 15px;
  font-size: 20px;
  color: var(--rv-primary);
  transition: 0.5s;
}
.rv-testimonial-section .nev-btn button i {
  font-weight: 600;
}
.rv-testimonial-section .rvt-item {
  padding: 15px;
  padding-top: 40px;
}
.rv-testimonial-section .rvt-item .rvt-card {
  position: relative;
  background: var(--rv-white);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px;
}
.rv-testimonial-section .rvt-item .rvt-card::before {
  content: "\f6b0";
  font-family: bootstrap-icons !important;
  font-size: 40px;
  color: var(--rv-primary);
}
.rv-testimonial-section .rvt-item .rvt-card .icon {
  border-radius: 5px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.rv-testimonial-section .rvt-item .rvt-card .icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rv-testimonial-section .rvt-item .rvt-card .icon h5 {
  color: var(--rv-secondary);
}

.home-content-section .images img {
  width: 100%;
  transform: rotateY(180deg);
}

.rv-teem-section .rv-team-row {
  display: flex;
  width: 100%;
  align-items: center;
}
.rv-teem-section .rv-team-row .rv-team-cols {
  flex-shrink: 3;
  transition: all 300ms ease-in-out;
  height: 380px;
  width: 50%;
  margin: 10px 8px;
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
  transform: translate3d(0, 0, 0);
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items {
  border: 1px solid var(--rv-primary);
  height: 100%;
  border-radius: 10px;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  display: flex;
  justify-content: center;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .image img {
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  -o-object-position: center top;
     object-position: center top;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .image::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(25, 73, 31, 0) 23.31%, rgba(15, 48, 20, 0.8) 100%);
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .content {
  background: linear-gradient(180deg, rgba(119, 42, 142, 0.5215686275) 10%, #3b0f48 60%);
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  right: 0;
  left: 0;
  min-width: 220px;
  width: 100%;
  padding: 20px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .content .name {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--rv-white);
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .content .designation {
  font-size: 15px;
  color: var(--rv-white);
  margin-bottom: 10px;
}
.rv-teem-section .rv-team-row .rv-team-cols .rv-team-items .content .description {
  color: var(--rv-white);
  font-size: 14px;
  margin-bottom: 0;
}
.rv-teem-section .rv-team-row .rv-team-cols.active, .rv-teem-section .rv-team-row .rv-team-cols:hover {
  flex-shrink: 1;
  width: 50%;
}
.rv-teem-section .rv-team-row .rv-team-cols.active .rv-team-items .content, .rv-teem-section .rv-team-row .rv-team-cols:hover .rv-team-items .content {
  transform: translateY(0);
  opacity: 1;
  max-height: 100%;
  overflow-y: auto;
}

.hadding-sirol h3 {
  font-size: 46px;
  color: var(--rv-black);
  font-weight: 600;
  margin-bottom: 20px;
}
.hadding-sirol h3 span {
  color: var(--rv-primary);
}

.investing-section .image {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 40px;
  width: 100%;
}
.investing-section .image img {
  width: 100%;
}

.how-it-works .container {
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 45% 65%;
}
.how-it-works .hiw-row {
  padding: 40px 0 50px;
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.how-it-works .hiw-row .hiw-col {
  padding: 15px;
  max-width: 20%;
  width: 100%;
}
.how-it-works .hiw-row .hiw-col{
  position: relative;
}
.how-it-works .hiw-row .hiw-col:nth-child(1) {
  top: 20px;
}
.how-it-works .hiw-row .hiw-col:nth-child(2) {
  top: -40px;
}
.how-it-works .hiw-row .hiw-col:nth-child(4) {
  top: 30px;
}
.how-it-works .hiw-row .hiw-col .hiw-items {
  padding: 15px;
  text-align: center;
}
.how-it-works .hiw-row .hiw-col .hiw-items .hiw-image {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  position: relative;
}
.how-it-works .hiw-row .hiw-col .hiw-items .hiw-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rv-primary);
  border-radius: 50%;
  opacity: 0.1;
}
.how-it-works .hiw-row .hiw-col .hiw-items .hiw-image img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.how-it-works .hiw-row .hiw-col .hiw-items .hiw-content h3 {
  font-size: 18px;
  color: var(--rv-black);
  margin-top: 10px;
  margin-bottom: 0;
}
.how-it-works .hiw-row .hiw-col .hiw-items .hiw-content p {
  margin-bottom: 0;
	text-align: center;
}

.rv-home-tools .rvt-cols {
  padding: 30px 15px;
}
.rv-home-tools .rvt-cols .tools-items {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}
.rv-home-tools .rvt-cols .tools-items:hover {
  transition: 0.5s;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px 0 #ddd;
}
.rv-home-tools .rvt-cols .tools-items .rv-image-icon {
  transition: 0.5s;
}
.rv-home-tools .rvt-cols .tools-items .rv-image-icon img {
  height: 200px;
  transition: 0.5s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rv-home-tools .rvt-cols .tools-items h5 {
  text-align: center;
  padding: 10px 0;
  transition: 0.5s;
}
.rv-home-tools .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rv-white) !important;
  border: 1px solid #ddd !important;
  transition: 0.5s;
}
.rv-home-tools .owl-carousel .owl-nav button span {
  font-size: 34px;
  line-height: 30px;
}
.rv-home-tools .owl-carousel .owl-nav button.owl-prev {
  left: 0px;
}
.rv-home-tools .owl-carousel .owl-nav button.owl-next {
  right: 0px;
}

.services-section {
  position: relative;
}
.services-section .services-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-top: 40px;
}
.services-section .services-row .services-cols {
  padding: 15px;
  max-width: 33.3%;
  width: 100%;
}
.services-section .services-row .services-cols a {
    display: block;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: 0.5s;
    background: #ffffff;
}
.services-section .services-row .services-cols a .images {
    position: relative;
    margin-bottom: 30px;
    height: 64px;
}
.services-section .services-row .services-cols a .images img {
    height: 100%;
    width: auto;
}
.services-section .services-row .services-cols a .images::before {
  content: "";
  background-image: url("../images/icone/icone.svg");
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.2;
  top: 0;
}
.services-section .services-row .services-cols a h3 {
  font-size: 20px;
  color: var(--rv-black);
  margin-bottom: 10px;
}
.services-section .services-row .services-cols a:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px 0 #ddd;
}

.nri-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.nri-image {
    box-shadow: 0px 0px 9px -2px #484646;
    border-radius: 15px;
}

.nri-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}
a.navbar-brand span b {
    font-weight: 600;
    font-size: 35px;
    color: var(--rv-primary);
    position: relative;
    top: 5px;
}


.card-body h3 {
    text-align: center;
}
.card-body h5 {
    font-size: 17px;
    text-align: center;
}
.card-body {
    display: block;
    flex-grow: 0;
    padding: 15px;
}



.mutual-fund-services {
    font-family: "Roboto", sans-serif;
}

.mutual-fund-services p {
    margin-bottom: 0;
}

.mutual-fund-services p b {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--rv-primary, #6bb543);
}

.mutual-fund-services ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.mutual-fund-services ul li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
}

.mutual-fund-services ul li::before {
    position: absolute;
    left: -1.2rem;
    color: var(--rv-primary, #6bb543);
    font-size: 1rem;
}

.mutual-fund-services table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.mutual-fund-services table th,
.mutual-fund-services table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.mutual-fund-services table thead {
    background-color: var(--rv-secondary-light, #f4f5f8);
}

.mutual-fund-services table th {
    color: var(--rv-secondary, #3764a1);
    font-weight: 600;
}

.mutual-fund-services table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.mutual-fund-services table tbody tr:hover {
    background-color: #f1f1f1;
}

.mutual-fund-services b {
    color: var(--rv-black, #070707);
}

@media (max-width: 768px) {

    .mutual-fund-services table tr {
        margin-bottom: 1rem;
    }
    .mutual-fund-services table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }

}
.info-box {
    min-height: 240px;
}
p.descliam {
    font-size: 12px;
    text-align: center;
}


.team-modern-wrapper {
    margin-top: 25px;
}
.team-modern-wrapper .team-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
	position:relative;
}

.team-modern-wrapper .team-card:hover {
    box-shadow: 2px 5px 10px -3px;
}

.team-modern-wrapper .team-image {
    height: 450px;
    width: auto;
}

.team-modern-wrapper .team-image img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    object-fit: cover;
}
.team-modern-wrapper .team-name {
    text-align: center;
    padding: 0px;
    margin-top: 15px;
}
.team-modern-wrapper .team-content {
    display: none;
    position: absolute;
    bottom: -410px;
    padding: 16px;
    color: var(--rv-white);
    background: #2b2b2b75;
    height: 100%;
}
 .team-modern-wrapper .team-card:hover  .team-content {
    display: block;
}

 .team-modern-wrapper .team-content h5 {
    color: var(--rv-white);
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.1rem;
}

.team-modern-wrapper .team-content p {
	    color: var(--rv-white);
    line-height: 1.5;
    margin: 0;
}