:root {
  --rv-primary: #00b2ee;
  --rv-secondary: #82cb3c;
  --rv-primary-light: #f4f9f0;
  --rv-secondary-light: #f4f5f8;
  --rv-bg-secondary: #8e8e8e;
  --rv-white: #fff;
  --rv-black: #070707;
  --rv-gray: #726d7b;
  --rv-font-light: "agilesans-light", sans-serif;
  --rv-font-semilight: "agilesans-semilight", sans-serif;
  --rv-font-medium: "agilesans-medium", sans-serif;
  --rv-font-regular: "agilesans-regular", sans-serif;
  --rv-font-bold: "agilesans-bold", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  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);
}

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

.btn {
  color: var(--rv-white);
  border-radius: 50px;
  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;
  border: 1px solid var(--rv-secondary);
  box-shadow: 0 3px 6px 0 #000;
  transition: 0.5s;
}
.btn i {
  line-height: 0;
  margin-left: 5px;
}
.btn:hover {
  box-shadow: unset;
  transition: 0.5s;
}
.btn.btn-primary {
  background-color: var(--rv-secondary);
}
.btn.btn-primary:hover {
  background: var(--rv-primary);
  border: 1px solid var(--rv-white);
}
.btn.btn-secondary {
  background: var(--rv-primary);
}
.btn.btn-secondary:hover {
  background-color: var(--rv-secondary);
  border: 1px solid var(--rv-secondary);
}

.main-heading {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
.main-heading .title-box {
  font-size: 20px;
  font-weight: 600;
}
.main-heading .title-box span {
  position: relative;
}
.main-heading .title-box span::before, .main-heading .title-box span::after {
  content: "";
  position: absolute;
  width: 50px;
  top: 50%;
  transform: translateY(50%);
  height: 2px;
  background-color: #7A7A7A;
}
.main-heading .title-box span::before {
  left: -60px;
}
.main-heading .title-box span::after {
  right: -60px;
}
.main-heading .main-title {
  color: var(--rv-secondary);
  font-size: 42px;
  font-family: "Playfair", serif;
}

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

.section {
  padding: 80px 0;
}

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

.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;
  margin-top: 25px;
}
.disclaimer-sec h5,
.disclaimer-sec h6,
.disclaimer-sec p {
  margin-bottom: 0;
  color: var(--rv-white);
  margin: 0;
}
.disclaimer-sec h5 a,
.disclaimer-sec h6 a,
.disclaimer-sec p a {
  color: var(--rv-white);
}
.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;
}

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

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

.showmodal .modalbody {
  z-index: 99999;
  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: var(--rv-primary);
  position: relative;
  box-shadow: 0 0 15px 0 #bbb;
  border-radius: 10px;
}
.modalbody .Cmodalcard .maincontentmodal .pop-body {
  background: var(--rv-white);
}
.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%;
  border-radius: 10px 10px 0 0;
  padding: 8px 20px;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader h4,
.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
  color: var(--rv-white);
  margin-bottom: 0;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader h6 {
  color: var(--rv-white);
}
.modalbody .Cmodalcard .maincontentmodal .modaldatashow {
  display: none;
  text-align: center;
  padding-top: 10px;
}
.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;
}
.modalbody .Cmodalcard .form-group {
  margin-bottom: 20px;
}
.modalbody .Cmodalcard .form-group .iti {
  width: 100%;
}
.modalbody .Cmodalcard .form-group select {
  color: var(--rv-primary);
  background: var(--rv-white);
}
.modalbody .Cmodalcard .form-group .form-control {
  color: var(--rv-black);
  background: unset;
  border: unset;
  border-radius: 0;
  border-bottom: 2px solid var(--rv-white);
  padding: 10px 15px;
  border-radius: 3px;
  background: var(--rv-white);
}
.modalbody .Cmodalcard .form-group .form-control:focus, .modalbody .Cmodalcard .form-group .form-control:focus-visible {
  box-shadow: unset;
  border: unset;
  border-bottom: 2px solid var(--rv-white);
  outline: unset;
}
.modalbody .Cmodalcard .form-group .form-control::-moz-placeholder {
  color: var(--rv-black);
}
.modalbody .Cmodalcard .form-group .form-control::placeholder {
  color: var(--rv-black);
}

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

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

.top-banner-section {
  padding: 15px 0 15px;
  position: relative;
  background-image: linear-gradient(270deg, rgba(15, 213, 128, 0.3) 0%, hsl(155, 84%, 29%) 100%);
}
.top-banner-section .banner-box {
  position: relative;
  z-index: 1;
  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-white);
}
.top-banner-section .banner-box ul li a {
  color: var(--rv-white);
  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;
}

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

.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-left: 60px;
  position: relative;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  color: var(--rv-white);
  transition: 0.5s;
  background: var(--rv-primary);
}
.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(40deg);
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::before {
  transition: 0.5s;
  transform: rotate(-44deg);
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione::before, .rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 25px;
  width: 2px;
  height: 11px;
  transition: 0.5s;
  background: var(--rv-white);
  transform: rotate(-38deg);
}
.rv-faq-section .tebBar-box .tebBar-card .tebActione::before {
  transform: rotate(221deg);
  left: 27px;
}
.rv-faq-section .tebBar-box .tebBar-card .disc-box {
  display: none;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Rubik";
}

body {
  font-size: 16px;
  color: var(--rv-black);
  line-height: 24px;
}

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

a:hover {
  text-decoration: none;
}

p {
  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;
}

.btn-primary {
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 3px;
  border: 0;
  text-decoration: none !important;
}

.bannersec img {
  width: 100%;
}

.btn-secondary {
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
  margin: 0 3px;
  background-color: var(--rv-secondary);
  border-color: var(--rv-secondary);
  text-transform: uppercase;
  text-decoration: none !important;
}

.dark {
  color: #24285b;
}

.dark_bg {
  background-color: #181818;
}

.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%;
  border-bottom: 1px solid #eee;
}

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

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

body[data-page=home] .footer_main {
  padding-top: 180px;
}

.footer_main {
  padding-top: 70px;
  /*border-radius: 250px 250px 0 0;*/
  background-color: var(--rv-black);
}

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

.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.social-footer {
  padding-left: 0;
}

.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;
  padding: 20px 0;
  margin-top: 30px;
}
.footer_bottom p {
  color: var(--rv-white);
}
.footer_bottom p a {
  color: var(--rv-white);
}

.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 a.nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  border-top: 1px solid var(--rv-black);
  border-right: 1px solid var(--rv-black);
  top: 26px;
}

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

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

.footer_top img {
  background: var(--rv-white);
  padding: 7px;
  width: 100%;
  border-radius: 5px;
}
.footer_top p {
  color: var(--rv-white);
}

.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) {
  .navbar-light .navbar-nav .nav-link {
    padding: 0px;
  }
  .navbar-collapse .navbar-nav .nav-item {
    padding-bottom: 3px;
    padding-top: 3px;
  }
  #navbarCollapse {
    padding: 19px;
  }
}
.mobile-menu {
  display: none;
}

.bg-section {
  background-color: rgba(238, 238, 238, 0.4784313725);
}

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

.section-content {
  margin-top: 48px;
}
.section-content .latest-blog-loop a {
  text-decoration: none;
  border: 1px solid #ddd;
  display: block;
  margin-bottom: 20px;
}
.section-content .latest-blog-loop .blog-wrapper {
  display: flex;
}
.section-content .latest-blog-loop .blog-wrapper .img-full {
  height: 120px;
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-content .latest-blog-loop .blog-details {
  padding: 10px 20px;
}
.section-content .latest-blog-loop .blog-details .entry-category {
  font-size: 16px;
  color: var(--rv-primary);
  font-weight: 600;
}
.section-content .latest-blog-loop .blog-details .entry-date {
  font-size: 14px;
  display: block;
}
.section-content .latest-blog-loop .blog-details h4 {
  font-size: 16px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  justify-content: space-between;
}
.contact-row .contact-items {
  max-width: 33.3%;
  width: 100%;
  position: relative;
  padding: 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-row .contact-items {
    max-width: 100%;
  }
}
.contact-row .contact-items .content-item {
  box-shadow: 0 0 10px 0 #bbb;
  border-radius: 10px;
  border-top: 5px solid var(--rv-primary);
  background: var(--rv-white);
  padding: 20px;
  height: 100%;
}
.contact-row .contact-items .content-item a {
  color: var(--rv-primary);
  text-decoration: none;
  font-size: 16px;
}
.contact-row .contact-items .content-item a:hover {
  color: var(--rv-primary);
}

.form-control {
  background: var(--rv-white);
  -webkit-appearance: visibal;
     -moz-appearance: visibal;
          appearance: visibal;
  position: relative;
  z-index: 1;
}

body[data-page=home] .about-us-section .main-row .main-col-right .under-box {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

body[data-page=aboutus] .about-us-section .main-row {
  display: block;
}
body[data-page=aboutus] .about-us-section .main-row .main-col {
  float: left;
}
body[data-page=aboutus] .about-us-section .main-row .main-col-right {
  max-width: 100%;
  width: 100%;
}

.about-us-section .main-section:nth-child(even) .main-row {
  flex-direction: row-reverse;
}
.about-us-section .main-section:nth-child(even) .main-row .main-col .about-image-block::before {
  background: #abc5de;
}
.about-us-section .main-row {
  display: flex;
  justify-content: space-between;
  margin: -20px;
  align-items: self-start;
}
@media only screen and (max-width: 768px) {
  .about-us-section .main-row {
    flex-wrap: wrap;
  }
}
.about-us-section .main-row .main-col {
  padding: 20px;
  max-width: 40%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .about-us-section .main-row .main-col {
    max-width: 100%;
  }
}
.about-us-section .main-row .main-col .about-image-block {
  padding: 30px 0 0 30px;
  position: relative;
}
.about-us-section .main-row .main-col .about-image-block img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.about-us-section .main-row .main-col .about-image-block::before {
  content: "";
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 80%;
  border: 10px solid var(--rv-secondary);
  z-index: 1;
}
.about-us-section .main-row .main-col-right {
  max-width: 60%;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .about-us-section .main-row .main-col-right {
    max-width: 100%;
  }
}

.banner-section .item img {
  display: block;
  width: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner-section .item .cover {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  bottom: 0;
  width: 100%;
}
.banner-section .item .cover .header-content {
  max-width: 550px;
  width: 100%;
}
.banner-section .item .cover .header-content .text-i {
  font-size: 54px;
  line-height: 54px;
  font-weight: 300;
}
.banner-section .item .cover .header-content .text-i b {
  font-weight: 600;
}
.banner-section .item .cover .header-content h2 {
  color: var(--rv-white);
}
.banner-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner-section .owl-carousel .owl-nav button span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rv-white);
  z-index: 11;
  font-size: 40px;
}
.banner-section .owl-carousel .owl-nav button.owl-next {
  right: 20px;
}
.banner-section .owl-carousel .owl-nav button.owl-prev {
  left: 20px;
}

.partner_section {
  background: var(--rv-primary);
  padding: 40px;
  padding-bottom: 80px;
  position: relative;
  top: 120px;
  margin-top: -40px;
}
.partner_section .main_heading h2 {
  color: var(--rv-white);
  margin: 0;
}
.partner_section .item {
  margin: 10px;
}
.partner_section .item .image {
  background: var(--rv-white);
  border-radius: 3px;
  box-shadow: 0 0 5px 0 #ddd;
  border: 1px solid var(--rv-secondary);
  padding: 5px;
}
.partner_section .item .image img {
  height: 65px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog_section .item {
  position: relative;
  transition: 0.5s;
  padding: 20px 25px;
  background: transparent;
}
.blog_section .item::after, .blog_section .item::before {
  content: "";
  width: calc(100% - 55px);
  height: calc(100% - 55px);
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.blog_section .item::before {
  background: var(--rv-secondary);
}
.blog_section .item::after {
  background: var(--rv-primary);
}
.blog_section .item:hover {
  transition: 0.5s;
}
.blog_section .item:hover a {
  transition: 0.5s;
  box-shadow: 0 15px 15px 0 rgba(79, 79, 79, 0.4392156863);
}
.blog_section .item:hover::before {
  transition: 0.5s;
  transform: scale(1.01) rotate(8deg);
}
.blog_section .item:hover::after {
  transition: 0.5s;
  transform: scale(1.01) rotate(3deg);
}
.blog_section .item a {
  position: relative;
  z-index: 1;
  display: block;
}
.blog_section .item a .blog_body .images img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.blog_section .item a .blog_body .blog-content {
  border: 1px solid #bbb;
  padding: 15px;
  background: var(--rv-white);
}
.blog_section .item a .blog_body .blog-content .client_info ul {
  padding: 0;
}
.blog_section .item a .blog_body .blog-content .client_info li {
  font-size: 14px;
  list-style: none;
}
.blog_section .item a .blog_body .blog-content .read-more {
  font-weight: 600;
  color: var(--rv-secondary);
}
.blog_section .blog_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .blog_section .blog_row {
    flex-wrap: wrap;
  }
}
.blog_section .blog_row .item {
  max-width: 33.3%;
  width: 100%;
  background: var(--rv-white);
}

.testimonial-section .item {
  transition: 0.5s;
  margin: 0px;
  position: relative;
  transition: 0.5s;
}
.testimonial-section .item::after, .testimonial-section .item::before {
  content: "";
  width: calc(100% - 50px);
  height: calc(100% - 10px);
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.testimonial-section .item::before {
  background: var(--rv-secondary);
}
.testimonial-section .item::after {
  background: var(--rv-primary);
}
.testimonial-section .item:hover {
  transition: 0.5s;
}
.testimonial-section .item:hover a {
  transition: 0.5s;
  box-shadow: 0 15px 15px 0 rgba(79, 79, 79, 0.4392156863);
}
.testimonial-section .item:hover::before {
  transition: 0.5s;
  transform: scale(1.01) rotate(8deg);
}
.testimonial-section .item:hover::after {
  transition: 0.5s;
  transform: scale(1.01) rotate(3deg);
}
.testimonial-section .item .investor_box {
  margin: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px 0 #ddd;
  position: relative;
  padding: 20px;
  background-color: var(--rv-white);
  justify-content: space-between;
  z-index: 1;
}
.testimonial-section .item .investor_box .content-d span {
  font-weight: 600;
  color: var(--rv-primary);
}
.testimonial-section .item .investor_box .icon {
  position: relative;
  transition: 0.5s;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-section .item .investor_box .icon img {
  height: 100px;
  width: 100px;
  background: var(--rv-white);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid #bbb;
  padding: 5px;
}

.investor-corner .ic_box {
  position: relative;
  transition: 0.5s;
  padding: 20px 0px;
  background: transparent;
  height: 100%;
  position: relative;
  transition: 0.5s;
}
.investor-corner .ic_box::after, .investor-corner .ic_box::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 40px);
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.investor-corner .ic_box::before {
  background: var(--colordata);
}
.investor-corner .ic_box::after {
  background: var(--rv-primary);
}
.investor-corner .ic_box:hover {
  transition: 0.5s;
}
.investor-corner .ic_box:hover a {
  transition: 0.5s;
  box-shadow: 0 15px 15px 0 rgba(79, 79, 79, 0.4392156863);
}
.investor-corner .ic_box:hover::before {
  transition: 0.5s;
  transform: scale(1.01) rotate(8deg);
}
.investor-corner .ic_box:hover::after {
  transition: 0.5s;
  transform: scale(1.01) rotate(3deg);
}
.investor-corner .ic_box a {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 20px;
  background: var(--rv-white);
  border-radius: 5px;
  border: 1px solid #ddd;
  height: 100%;
  align-items: center;
  gap: 20px;
}
.investor-corner .ic_box a .icon {
  font-size: 50px;
}
.investor-corner .ic_box a .icon i {
  color: var(--colordata);
  filter: drop-shadow(2px 2px #ddd);
}
.investor-corner .ic_box a h5 {
  color: var(--rv-primary);
}

.service-section .rvservice-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  justify-content: space-between;
}
.service-section .rvservice-row .rvsr-cols1 {
  max-width: 66%;
  width: 100%;
  padding: 15px;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .service-section .rvservice-row .rvsr-cols1 {
    max-width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .rvservice-row .rvsr-cols1 {
    max-width: 100%;
    justify-items: center;
  }
}
.service-section .rvservice-row .rvsr-cols1 .images {
  display: flex;
  height: 420px;
  max-width: 420px;
  border: 1px solid #ddd;
  padding: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  align-items: center;
}
@media only screen and (min-width: 767px) and (max-width: 992px) {
  .service-section .rvservice-row .rvsr-cols1 .images {
    height: 70%;
    max-width: 60%;
  }
}
.service-section .rvservice-row .rvsr-cols1 .images img {
  height: 400px;
  max-width: 400px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 767px) and (max-width: 992px) {
  .service-section .rvservice-row .rvsr-cols1 .images img {
    height: 100%;
    max-width: 100%;
  }
}
.service-section .rvservice-row .rvsr-cols2 {
  padding: 15px;
  max-width: 33%;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .service-section .rvservice-row .rvsr-cols2 {
    max-width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .rvservice-row .rvsr-cols2 {
    max-width: 100%;
  }
}
.service-section .service-card {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -10px;
}
.service-section .service-card .item {
  position: relative;
  padding: 15px 10px;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.service-section .service-card .item.items1 a::before {
  width: 238px;
}
.service-section .service-card .item.items2 a::before {
  width: 238px;
  background-position: top right;
  height: 92px;
  overflow: hidden;
}
.service-section .service-card .item.items3 a::before {
  width: 238px;
  background-position: top right;
  height: 78px;
  overflow: hidden;
}
.service-section .service-card .item.items4 a::before, .service-section .service-card .item.items5 a::before, .service-section .service-card .item.items6 a::before {
  width: 138px;
  background-position: top right;
  height: 68px;
  overflow: hidden;
  background-size: 160% 260%;
  top: -20px;
  left: -77%;
}
.service-section .service-card .item.items8 a::before {
  width: 238px;
  background-position: top right;
  height: 92px;
  transform: rotateX(190deg);
  top: -138%;
  overflow: hidden;
}
.service-section .service-card .item.items7 a::before {
  width: 238px;
  background-position: top right;
  height: 78px;
  top: -100%;
  transform: rotateX(190deg);
  overflow: hidden;
}
.service-section .service-card .item.items9 a::before {
  width: 238px;
  transform: rotateX(190deg);
  top: -138%;
}
.service-section .service-card .item a {
  padding: 0;
  background-color: var(--rv-white);
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  border-radius: 5px;
  align-items: center;
  margin-left: 30px;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  gap: 10px;
  transition: 0.5s;
}
@media only screen and (min-width: 767px) {
  .service-section .service-card .item a::before {
    width: 238px;
    content: "";
    top: 40%;
    left: -113%;
    position: absolute;
    height: 100px;
    z-index: 0;
    background-image: url("../images/arrow.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.service-section .service-card .item a:hover .icone {
  box-shadow: 0 0 15px 0 #ddd;
  background: var(--rv-primary);
  transform: rotateY(19deg) translateX(-12px);
  transition: 0.5s;
}
.service-section .service-card .item a:hover .title {
  transition: 0.5s;
  transform: rotateY(19deg) translateX(-12px);
}
.service-section .service-card .item a .title {
  margin-bottom: 0;
  padding: 10px 0;
  transition: 0.5s;
  padding-left: 50px;
}
.service-section .service-card .item a .images {
  background: var(--rv-white);
  border-radius: 5px;
  border: 1px solid #bbb;
  max-width: 100%;
  width: 100%;
}
.service-section .service-card .item a .images img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-section .service-card .item a .icone {
  padding: 10px;
  background: var(--rv-white);
  border-radius: 50%;
  padding: 5px;
  position: absolute;
  left: -20px;
  width: 65px;
  height: 65px;
  display: flex;
  transition: 0.5s;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px 0 #ddd;
}
.service-section .service-card .item a .icone img {
  transition: 0.5s;
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-section .service-card .item .service {
  position: relative;
  position: relative;
  transition: 0.5s;
  border-radius: 10px;
  height: 100%;
}
.service-section .service-card .item .service::after, .service-section .service-card .item .service::before {
  content: "";
  width: calc(100% - 5px);
  height: calc(100% - 4px);
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.service-section .service-card .item .service::before {
  background: var(--rv-secondary);
}
.service-section .service-card .item .service::after {
  background: var(--rv-primary);
}
.service-section .service-card .item .service:hover {
  transition: 0.5s;
}
.service-section .service-card .item .service:hover a {
  transition: 0.5s;
  box-shadow: 0 15px 15px 0 rgba(79, 79, 79, 0.4392156863);
}
.service-section .service-card .item .service:hover::before {
  transition: 0.5s;
  transform: scale(1.01) rotate(8deg);
}
.service-section .service-card .item .service:hover::after {
  transition: 0.5s;
  transform: scale(1.01) rotate(3deg);
}

.rv-ftac-section .rv-ftac-teb-row1 {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  .rv-ftac-section .rv-ftac-teb-row1 {
    border-bottom: unset;
    max-width: unset;
  }
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card {
  padding: 15px;
  padding-bottom: 0;
  text-align: center;
  max-width: 33.3%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card {
    max-width: 100%;
  }
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card .rv-ftac-card {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  color: var(--rv-primary);
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card .rv-ftac-card h5 {
  margin-bottom: 0;
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card .rv-ftac-card h6 {
  color: var(--rv-black);
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card .rv-ftac-card.active {
  background: var(--rv-primary);
  color: var(--rv-white);
}
.rv-ftac-section .rv-ftac-teb-row1 .rv-ftac-teb-card .rv-ftac-card.active h6 {
  color: var(--rv-white);
}
.rv-ftac-section .rv-ftactr2 {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  margin: 0 auto;
  align-items: center;
  justify-content: start;
  padding-top: 20px;
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card {
  padding: 10px;
  text-align: center;
  display: none;
  max-width: 25%;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .rv-ftac-section .rv-ftactr2 .rv-ftactr2-card {
    max-width: 33.3%;
  }
}
@media only screen and (max-width: 757px) {
  .rv-ftac-section .rv-ftactr2 .rv-ftactr2-card {
    max-width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .rv-ftac-section .rv-ftactr2 .rv-ftactr2-card {
    max-width: 100%;
  }
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card.active {
  display: block;
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body {
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--rv-primary);
  box-shadow: 0 0 10px 0 #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body i {
  font-size: 30px;
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body h6 {
  margin-bottom: 0;
  text-align: left;
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body.active {
  background: linear-gradient(360deg, var(--rv-secondary) 0%, var(--rv-primary) 100%);
}
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body.active i,
.rv-ftac-section .rv-ftactr2 .rv-ftactr2-card .rv-ftactr2-body.active h6 {
  color: var(--rv-white);
}
.rv-ftac-section .rv-content-body {
  position: relative;
  padding-top: 80%;
  height: 100%;
}
.rv-ftac-section .rv-content-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.rv-ftac-section .page-financial-calculators {
  display: flex;
  margin: -10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.rv-ftac-section .page-financial-calculators .right-tebsincontet {
  max-width: calc(100% - 300px);
  width: 100%;
}
.rv-ftac-section .page-financial-calculators .left-tebsin {
  max-width: 300px;
  width: 100%;
}
.rv-ftac-section .page-financial-calculators .left-tebsin .rv-ftactr2 .rv-ftactr2-card {
  max-width: 100%;
}
.rv-ftac-section.financial-calculators-in {
  background: var(--rv-white);
}

.home-content-section .iframe {
  padding-top: 115%;
  box-shadow: 0 0 10px 0 #ddd;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.home-content-section .iframe iframe {
  padding: 5px;
}

.home-content-section .form-group .form-control,
.home-content-section .form-group select {
  border: 1px solid #ddd;
}
.home-content-section .captcha-code-form {
  display: flex;
  gap: 10px;
}
.home-content-section .captcha-code-form .boxbtn {
  width: 100%;
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
}

.rv-features-section .rvp-hadding {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  background: var(--rv-white);
}
.rv-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
}
.rv-features-section .features-row .features-icon {
  width: 100%;
}
.rv-features-section .features-row .features-icon .icone-row {
  display: flex;
  margin: -15px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .rv-features-section .features-row .features-icon .icone-row {
    justify-content: center;
  }
}
.rv-features-section .features-row .features-icon .icone-row .icone {
  padding: 15px;
  text-align: center;
}
.rv-features-section .features-row .features-icon .icone-row .icone a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-white);
  border: 1px solid #ddd;
  box-shadow: 0 0 10px 0 #ddd;
  padding: 15px;
}
.rv-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-black);
}
.rv-features-section .features-row .features-icon .icone-row .icone a.active img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.rv-features-section .features-row .features-icon .icone-row .icone a img {
  width: 100%;
}
.rv-features-section .features-row .features-image {
  padding: 15px;
  max-width: 35%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .rv-features-section .features-row .features-image {
    max-width: 100%;
  }
}
.rv-features-section .features-row .features-image .image img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  filter: drop-shadow(2px 4px 6px #888);
}
.rv-features-section .features-row .features-content {
  padding: 15px;
  max-width: 65%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .rv-features-section .features-row .features-content {
    max-width: 100%;
    text-align: center;
  }
}
.rv-features-section .features-row .features-content .text {
  min-height: 120px;
}
.rv-features-section .features-row .features-content h5 {
  text-transform: capitalize;
}

.about-services ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding-bottom: 30px;
}
.about-services ul li {
  width: 100%;
  max-width: 50%;
  list-style: none;
  padding: 10px;
}
.about-services ul li .aositems {
  border: 1px solid #ddd;
  padding: 10px;
  background: var(--rv-white);
  transition: 0.5s;
  position: relative;
}
.about-services ul li .aositems::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 3px;
  transition: 0.5s;
  background: var(--rv-primary);
}
.about-services ul li .aositems:hover {
  transition: 0.5s;
  box-shadow: 0 0 15px 0 #ddd;
  transform: rotateY(19deg) translateX(-12px);
}
.about-services ul li .aositems:hover::before {
  transition: 0.5s;
  width: 100%;
}
.about-services ul li .aositems p {
  margin-bottom: 0;
}

.about-home-section .rv-apsitems {
  display: flex;
  margin: -15px;
  align-items: center;
  justify-content: space-between;
}
.about-home-section .rv-apsitems .images {
  max-width: 40%;
  width: 100%;
  padding: 15px;
}
.about-home-section .rv-apsitems .images img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-home-section .rv-apsitems .rv-apstext {
  max-width: 60%;
  width: 100%;
  padding: 15px;
}
.foot_widget .item.phone a {
    display: inline-flex;
}
.footer_top .navbar-brand img {
    height: 150px;
    object-fit: contain;
    width: auto;
}