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

.disclaimer-sec .content-b {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.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 h5 {
  margin-bottom: 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 .difference_percent {
  background: rgba(81, 201, 72, 0.3);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  color: #51c948;
}

.ticker_section .tickers .ticker_item .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  right: 7px;
  background-image: url("../images/web-img/trend.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  top: 5px;
}

.ticker_section .tickers .ticker_item .difference_percent.negative {
  background: rgba(255, 0, 0, 0.3);
  color: red;
}

.ticker_section .tickers .ticker_item .difference_percent.negative::after {
  background-image: url("../images/web-img/decrease.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}

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

.whatsapp-boxchat .hide {
  display: none;
}

.whatsapp-boxchat .blantershow-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--rv-secondary);
  box-shadow: 0 0 15px 0 #bbb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--rv-secondary);
  z-index: 99;
}

.whatsapp-boxchat .blantershow-chat svg {
  position: relative;
  right: -2px;
}

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

.whatsapp-boxchat .whatsapp-chat.hide {
  animation-name: showhide;
  animation-duration: 1s;
  transform: scale(1);
}

.whatsapp-boxchat .whatsapp-chat .header-chat {
  background: #095e54;
  color: var(--rv-white);
  padding: 20px;
}

.whatsapp-boxchat .whatsapp-chat .header-chat .info-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--rv-white);
  border-radius: 50%;
  box-shadow: 0 0 15px 0 #999;
  margin-right: 20px;
}

.whatsapp-boxchat .whatsapp-chat .header-chat .info-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.whatsapp-boxchat .whatsapp-chat .header-chat .close-chat {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--rv-white);
  font-size: 28px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-boxchat .whatsapp-chat .header-chat .head-home {
  display: flex;
  align-items: center;
}

.whatsapp-boxchat .whatsapp-chat .header-chat .head-home span {
  display: block;
  line-height: 20px;
}

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

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

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box {
  position: relative;
  padding: 0 15px;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .hading {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--rv-primary);
  margin-bottom: 10px;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .form-group {
  margin-bottom: 15px;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .form-control {
  height: 50px;
  background-color: var(--rv-white);
  border-color: transparent;
  transition: 0.5s;
  border: 1px solid #e6e6e6;
  padding: 6px 20px;
  box-shadow: none;
  border-radius: 5px;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .btn {
  width: 100%;
  text-align: center;
  background: var(--rv-primary);
  color: #fff;
  border-radius: 5px;
  border: 2px solid var(--rv-primary);
  padding: 10px 20px;
  transition: 0.5s;
  font-weight: 600;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .btn:hover {
  transition: 0.5s;
  background-color: var(--rv-white);
  color: var(--rv-primary);
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .form-check.check-box {
  margin-bottom: 10px;
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .form-check.check-box input[type=checkbox] {
  accent-color: var(--rv-primary);
}

.whatsapp-boxchat .whatsapp-chat .wapp-main-box .wapp-box .form-check.check-box label {
  color: var(--rv-primary);
  line-height: 20px;
}

.whatsapp-boxchat .whatsapp-chat .blanter-msg {
  display: none;
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
.social-midia-f ul li {
  list-style: none;
  background: var(--rv-secondary);
  padding: 5px;
  border-radius: 50px 0 0 50px;
  transform: translateY(-50%) translateX(110px);
  border: 1px solid #ddd;
  max-width: 150px;
  width: 100%;
  transition: 0.5s;
  position: fixed;
  right: 0;
  z-index: 999;
  top: 50%;
}

.social-midia-f ul li:nth-child(1) {
  margin-top: -100px;
}

.social-midia-f ul li:nth-child(2) {
  margin-top: -50px;
}

.social-midia-f ul li:nth-child(4) {
  margin-top: 50px;
}

.social-midia-f ul li:nth-child(5) {
  margin-top: 100px;
}

.social-midia-f ul li:hover {
  transition: 0.5s;
  transform: translateY(-50%) translateX(0);
  background: var(--white);
  border-right: unset;
}

.social-midia-f ul li:hover a .icone {
  transition: 0.5s;
  background: #ddd;
}

.social-midia-f ul li:hover a .name-links {
  transition: 0.5s;
  color: var(--rv-primary);
  opacity: 1;
}

.social-midia-f ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.5s;
}

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

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

.social-midia-f ul li a .name-links {
  transition: 0.5s;
  font-weight: 600;
  opacity: 0;
  margin-left: 5px;
}

.sip-card .text_input {
  width: 100%;
  max-width: 150px;
  height: 45px;
  border-radius: 50px;
  border: 1px solid #ddd;
  padding: 8px 20px;
  color: var(--rv-black);
}

.sip-card .text_input:focus {
  outline: unset;
  box-shadow: unset;
  border-color: var(--rv-primary);
}

.sip-card .hide-span {
  display: none;
}

.sip-card .form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rv-transparent);
  height: 1rem;
  padding: 0 !important;
  width: 100%;
}

.sip-card .form-range:focus {
  outline: 0;
}

.sip-card .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0;
}

.sip-card .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0;
}

.sip-card .form-range::-moz-focus-outer {
  border: 0;
}

.sip-card .form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--rv-primary);
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(22, 28, 45, 0.1);
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 1rem;
}

.sip-card .form-range::-webkit-slider-thumb:active {
  background-color: var(--rv-secondary);
}

.sip-card .form-range::-webkit-slider-runnable-track {
  background-color: var(--rv-gray);
  border-color: var(--rv-transparent);
  border-radius: 1rem;
  box-shadow: inset 0 1px 2px rgba(22, 28, 45, 0.075);
  color: var(--rv-transparent);
  cursor: pointer;
  height: 0.5rem;
  width: 100%;
}

.sip-card .form-range::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  background-color: var(--rv-primary);
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(22, 28, 45, 0.1);
  height: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 1rem;
}

.sip-card .form-range::-moz-range-thumb:active {
  background-color: var(--rv-secondary);
}

.sip-card .form-range::-moz-range-track {
  background-color: var(--rv-secondary-light);
  border-color: var(--rv-transparent);
  border-radius: 1rem;
  box-shadow: inset 0 1px 2px rgba(22, 28, 45, 0.075);
  color: var(--rv-transparent);
  cursor: pointer;
  height: 0.5rem;
  width: 100%;
}

.sip-card .form-range:disabled {
  pointer-events: none;
}

.sip-card .form-range:disabled::-webkit-slider-thumb {
  background-color: var(--rv-secondary-light);
}

.sip-card .form-range:disabled::-moz-range-thumb {
  background-color: var(--rv-secondary-light);
}

@media (prefers-reduced-motion: reduce) {
  .sip-card .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
  .sip-card .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.sip-card .sip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}

.sip-card .sip-row .sipod {
  width: 100%;
}

.sip-card .sip-row .sip-cols {
  padding: 10px;
}

.sip-card .sip-row .sip-cols.cols-input {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .sip-card .sip-row .sip-cols.cols-input {
    width: 100%;
  }
}
.sip-card .sip-row .sip-cols.cols-chart {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .sip-card .sip-row .sip-cols.cols-chart {
    width: 100%;
  }
}
.sip-card .sipodata .sip-cols {
  max-width: 33.3%;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .sip-card .sipodata .sip-cols {
    max-width: 100%;
  }
}
.sip-card .sipodata .sip-cols:nth-child(1) .sipo-card {
  background: var(--rv-color1);
}

.sip-card .sipodata .sip-cols:nth-child(2) .sipo-card {
  background: var(--rv-color2);
}

.sip-card .sipodata .sip-cols:nth-child(3) .sipo-card {
  background: var(--rv-color3);
}

.sip-card .sipodata .sip-cols .sipo-card {
  box-shadow: 0 0 15px 0 #bbb;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: var(--rv-primary);
}

.sip-card .sipodata .sip-cols .sipo-card .display_result,
.sip-card .sipodata .sip-cols .sipo-card .result_text {
  color: var(--rv-white);
}

.sip-card .sipc-body .sip-cols {
  width: 100%;
}

.sip-card .sipc-body .sip-cols .sipc-items .slider_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.features-section .features-list li.active a .tuia-card::before {
  opacity: 1;
}

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

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

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

.features-section .features-list li a .tuia-card:hover::before {
  opacity: 0.5;
}

.features-section .features-list li a .tuia-card::before {
  content: "";
  width: 100px;
  height: 150px;
  right: -35px;
  top: -61px;
  position: absolute;
  background: var(--rv-primary);
  transition: 0.5s;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.2;
  transform: rotate(-45deg);
}

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

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

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

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

.features-section .features-list li a .tuia-card .ih-card .icone .services_rv,
.features-section .features-list li a .tuia-card .ih-card .icone .flaticonhiw {
  font-size: 30px;
}

.features-section .features-list li a .tuia-card .ih-card .haddings h5 {
  font-weight: 600;
  color: #666;
  margin: 0;
  margin-bottom: 0;
}

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

@media only screen and (max-width: 767px) {
  .features-section .stores {
    justify-content: center;
  }
}
.features-section .stores .stors {
  padding: 15px;
}

.features-section .stores .stors:hover {
  transition: 0.5s;
  filter: unset;
}

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

.features-section .tyi-items {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .features-section .tyi-items {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .features-section .tyi-items img {
    width: 100%;
  }
}
.testimonial_area #testimonial_list .single_testimonial {
  padding: 30px 10px;
}

.calculator-section .calculator-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: -10px;
  padding-top: 20px;
  min-height: 500px;
  max-height: 60vh;
  background: #eee;
  overflow-y: scroll;
}

.calculator-section .calculator-list li {
  padding: 0 10px 0 10px;
  list-style: none;
}

.calculator-section .calculators-reslultbox {
  position: relative;
  height: 100%;
}

.calculator-section .calculators-reslultbox .loading-box {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ddd;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.stick_option {
  top: 32%;
}
.stick_option a[onclick="generate_pdf();"] {
  max-width: 100% !important;
  padding: 0 !important;
  float: unset !important;
  background: unset !important;
}

.calculator-section .sip-o-meter,
.calculator-section .presales-cal,
.calculator-section .cal-result,
.calculator-section .reslultbox {
  float: unset;
}

.calculator-section .calculator-list li a {
  float: unset;
  margin: 0;
  border-radius: 0;
  display: block;
  color: var(--rv-black);
  background-color: rgba(0, 0, 0, 0);
  max-width: 100%;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}

.calculator-section .calculator-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  height: 2px;
  background: #bbb;
}

.calculator-section .calculator-list li a::before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--rv-secondary);
  position: absolute;
  left: -15px;
  top: -15px;
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.calculator-section .calculator-list li a.active {
  transition: 0.5s;
  background: var(--rv-white);
  color: var(--rv-primary);
}

.calculator-section .calculator-list li a.active::after {
  transition: 0.5s;
  background: var(--rv-secondary);
}

.calculator-section .calculator-list li a.active::before {
  transition: 0.5s;
  opacity: 1;
}

.calculator-section .calculator-list li a:hover {
  transition: 0.5s;
  background: var(--rv-white);
  color: var(--rv-primary);
}

.calculator-section .stick_option {
  display: none  !important;
}

.calculator-section .caclulator {
  padding: 20px 0px;
}
.cal-result label{
    color: var(--rv-black);
}
.calculator-section .calname {
  float: unset;
  width: unset;
}

.calculator-section .cal-name,
.calculator-section .summary-heading,
.calculator-section .cal-type,
.calculator-section .fundperfonmance .blue,
.calculator-section .blue a:link,
.calculator-section .fundperfonmance .blue > a,
.calculator-section .fundname:hover .whythismf,
.calculator-section .fundname:hover .closewhythismf {
  color: #030303;
}

.calculator-section .btn.submit,
.calculator-section .cal-result .summary .table th,
.calculator-section .cal-result .sip-tg .nav li,
.calculator-section .pre-inputbox #removeButton > span,
.calculator-section .presales-cal .summary table th {
  background: var(--rv-primary);
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  max-width: 33%;
}

.calculator-section .presales-container .ins-amt,
.calculator-section .presales-result .lc-box {
  background: var(--rv-primary);
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
}

.calculator-section .presales-cal .sip-tg .nav li {
  padding: 10px;
}
.calculator-section .presales-cal .sip-tg .nav li:hover a, .calculator-section .presales-cal .sip-tg .nav li.active a {
  background: var(--rv-secondary);
}
.calculator-section .presales-cal .sip-tg .nav li a {
  background: var(--rv-primary);
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0;
  max-width: 100%;
}

.calculator-section .cal-name {
  border-bottom: 1px solid var(--rv-primary);
}

.calculator-section .fundname:hover .whythismf,
.calculator-section .fundname:hover .closewhythismf {
  border: 1px solid var(--rv-primary);
}

.calculator-section .amount-text,
.calculator-section .fundperfonmance .green {
  color: #a4d035;
}

.calculator-section #sipbarchart {
  overflow: unset !important;
}

.calculator-section #sipbarchart .highcharts-container {
  width: 100%;
}

.download-section .TabbedPanels {
  border: unset;
}

.download-section .TabbedPanels .TabbedPanelsTabGroup {
  background: var(--rv-primary);
  border: unset;
}

.download-section .TabbedPanels .TabbedPanelsTabGroup .TabbedPanelsTabHover {
  background: var(--rv-primary);
}

.download-section .TabbedPanels .TabbedPanelsTab {
  background: var(--rv-primary);
  font-family: inherit;
  border: 2px solid var(--rv-primary);
  font-weight: 600;
}

.download-section .TabbedPanels .TabbedPanelsTab.TabbedPanelsTabSelected {
  color: var(--rv-primary);
  background-color: var(--rv-white);
}

.logo-container ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.logo-container ul li {
  padding: 10px;
  list-style: none;
}

.logo-container ul li .logo-holder {
  background: var(--rv-white);
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-container ul li .logo-holder img {
  height: 70px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-container ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.logo-container ul li {
  padding: 10px;
  list-style: none;
}

.logo-container ul li .logo-holder {
  background: var(--rv-white);
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-container ul li .logo-holder img {
  height: 70px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.loginpanel_section .top-banner-section {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
}

@media only screen and (max-width: 992px) {
  .loginpanel_section .top-banner-section {
    padding: 80px 0 !important;
  }
}
.loginpanel_section .top-banner-section .banner-box h1 {
  color: var(--rv-white);
  margin-bottom: 0;
}

.loginpanel_section .login-part.signup-part {
  max-width: 100%;
}

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

.loginpanel_section .login-part .form-control {
  padding: 15px;
}

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

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

.loginpanel_section .login-part input[type=radio] {
  margin-right: 8px;
  accent-color: var(--rv-secondary);
}

.loginpanel_section .form-check-input:checked {
  background-color: var(--color-theme);
  border-color: var(--color-theme);
}

.loginpanel_section .login-part .form-check-label {
  padding: 10px;
  border: 1px solid #2a3644;
  color: var(--rv-primary);
  border-radius: 5px;
  padding-left: 30px;
}

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

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

.loginpanel_section .page-title-heading {
  text-align: center;
  margin-bottom: 30px;
}

.loginpanel_section .page-title-heading h3 {
  color: var(--rv-primary);
}

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

.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: #fff;
  box-shadow: 0 0 15px 0 #777;
  border-radius: 5px;
}

.top-banner-section {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  position: relative;
}

.top-banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
}

.top-banner-section .banner-box {
  position: relative;
  z-index: 1;
}

.top-banner-section .banner-box h1 {
  color: var(--rv-white);
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .top-banner-section {
    padding: 80px 0 !important;
  }
}
.bg-color {
  background: var(--rv-bg-primary);
}

.disclaimer-sec,
.contentb h6,
.content-b h6 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.ppo-section .title-two {
  background: var(--rv-secondary);
  margin-bottom: 20px;
  margin-top: 40px;
  padding: 10px 15px;
  color: var(--rv-white);
}

.ppo-section .title-two:first-child {
  margin-top: 0;
}

.ppo-section .logo-container ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding: 0;
  margin: -10px;
}

.ppo-section .logo-container ul li {
  padding: 10px;
  list-style: none;
}

.ppo-section .logo-container ul li .logo-holder {
  background: var(--rv-white);
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ppo-section .logo-container ul li .logo-holder img {
  height: 70px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.choosing__img {
  position: relative;
}

.choosing__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #042132;
  top: 0;
  left: 0;
  opacity: 0.6;
}

.choosing__img-inner.st-3 {
  margin-right: 30px;
}

.video-icon-white {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px), (max-width: 767px) {
  .choosing__img-inner.st-3 {
    margin-right: 0;
  }
}
.choosing__img3-main {
  max-width: 570px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .choosing__img3-main {
    margin-bottom: 50px;
  }
}
.choosing__img-inner-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.choosing-3-s1 {
  position: absolute;
  left: -75px;
  top: 10%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .choosing-3-s1 {
    display: none;
  }
}
.choosing-3-s2 {
  position: absolute;
  left: -50px;
  top: 40%;
  animation-name: choosing-3-s2;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choosing-3-s2 {
    left: -25px;
  }
}
@media (max-width: 767px) {
  .choosing-3-s2 {
    display: none;
  }
}
@keyframes choosing-3-s2 {
  0% {
    top: 40%;
  }
  50% {
    top: 70%;
  }
  100% {
    top: 40%;
  }
}
.choosing__information {
  background: #042132;
  padding: 38px 34px;
  margin-left: -115px;
  position: relative;
  z-index: 5;
}

.choosing__information p {
  color: var(--rv-white);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choosing__information {
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .choosing__information {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .choosing__information {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .choosing__information {
    padding: 30px 25px;
  }
}
.choosing__information ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choosing__information ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .choosing__information ul li {
    display: inherit;
  }
}
.choosing__information ul li:last-child {
  margin-bottom: 0;
}

.choosing__number {
  margin-right: 28px;
}

@media (max-width: 767px) {
  .choosing__number {
    margin-bottom: 30px;
  }
}
.choosing__number span {
  border: 1px solid #8f98a8;
  color: #ffffff;
  height: 60px;
  width: 60px;
  display: inline-block;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  position: relative;
  transition: all 0.5s ease-out 0s;
}

.video-icon-white .fa.fa-play {
  padding: 20px 30px !important;
}

.video-icon-white a {
  width: 75px;
  height: 75px;
  line-height: 75px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #45be43;
  animation: ripple-white 1s linear infinite;
  -webkit-transition: 0.5s;
  background: #fff;
  font-size: 28px;
  z-index: 44;
}

.choosing__number span:before {
  position: absolute;
  content: "";
  width: 76px;
  height: 76px;
  border: 1px solid #8f98a8;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes ripple-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes ripple-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
.choosing__text h5 {
  color: #ffffff;
  font-size: 18px;
}

.choosing__text p {
  color: #c4c4c4;
}

.section-title .border-left:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 16px;
  background: #45be43;
  left: 0;
  top: 2px;
}

.section-title .border-left {
  border-left: 1px solid #ffffff !important;
}

.home-testimonials ul li {
  display: inline-block;
}

.home-testimonials .marquee {
  /*background: #ffb400;*/
  /*padding: 25px;*/
  /*width: 100%;*/
}

.home-testimonials ul li img {
  width: 150px;
  padding: 10px;
}

.home-testimonials ul {
  margin-bottom: 0px;
}

.main-section ul li {
  white-space: inherit !important;
}

.service-block-one-area {
  position: relative;
  padding-left: 40px;
}

.service-block-one {
  position: relative;
}

.service-block-one .inner-box {
  position: relative;
  margin-bottom: 30px;
}

.service-block-one .inner-box .image {
  position: relative;
  overflow: hidden;
}

.service-block-one .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.service-block-one .inner-box .caption {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
}

.service-block-one:hover .inner-box .caption {
  opacity: 0;
  visibility: hidden;
}

.service-block-one .icon-box {
  color: #fff;
  font-size: 55px;
  margin-bottom: 30px;
}

.service-block-one h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.service-block-one .inner-box .overlay-box {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: perspective(400px) rotateX(-60deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(32, 42, 119, 0.5);
}

.service-block-one .inner-box:hover .overlay-box {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}

.service-block-one .inner-box .overlay-box .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
}

.service-block-one .inner-box .overlay-box .overlay-inner .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.service-block-one .inner-box .overlay-box .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
}

.service-block-one .inner-box .overlay-box h2 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.service-block-one .inner-box .overlay-box h2 a {
  position: relative;
  color: #ffffff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.service-block-one .inner-box .overlay-box h2 a:hover {
  color: #17b6e6;
}

.service-block-one .inner-box .overlay-box .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 25px;
}

.service-block-one .inner-box .overlay-box .read-more {
  position: relative;
  background: #fff;
  color: #222;
  font-weight: 600;
  padding: 5px 15px;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 45px;
  margin: 10px auto;
}

.service-block-one .inner-box .overlay-box .read-more:hover {
  color: var(--rv-primary);
}

.rd-row-card {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.rd-row-card .rdrc-card {
  padding: 15px;
  max-width: 33.3%;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .rd-row-card .rdrc-card {
    max-width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .rd-row-card .rdrc-card {
    max-width: 100%;
  }
}
.rd-row-card .rdrc-card .rdrc-card-body {
  background: var(--rv-white);
  padding: 30px;
  position: relative;
  border-radius: 3px;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: 0.4s;
}

.rd-row-card .rdrc-card .rdrc-card-body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
  background: var(--rv-primary);
  left: -50%;
  z-index: 0;
  transform: rotate(90deg) translateX(14%) translateY(119%);
  top: -50%;
}

.rd-row-card .rdrc-card .rdrc-card-body:hover {
  transition: 0.4s;
  box-shadow: 0 15px 15px 0 #ddd;
}

.rd-row-card .rdrc-card .rdrc-card-body:hover::after {
  opacity: 0.1;
  transition: 0.4s;
  transform: rotate(0) translateX(0%) translateY(0%);
  top: 0;
  left: 0;
}

.rd-row-card .rdrc-card .rdrc-card-body .icones {
  font-size: 50px;
  color: var(--rv-secondary);
}

.rd-row-card .rdrc-card .rdrc-card-body .text-content {
  margin-top: 10px;
  z-index: 1;
  position: relative;
}

.rd-row-card .rdrc-card .rdrc-card-body .text-content h5 {
  color: var(--rv-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rd-row-card .rdrc-card .rdrc-card-body .text-content p {
  margin-top: 10px;
  display: -webkit-box;
  color: var(--rv-black);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rd-row-card .rdrc-card .rvwcu-card-body {
  position: relative;
  display: block;
  padding: 30px 15px;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: 0.5s;
}

.rd-row-card .rdrc-card .rvwcu-card-body:hover {
  box-shadow: 0px 29px 49px 0px rgba(0, 0, 0, 0.15);
}

.rd-row-card .rdrc-card .rvwcu-card-body .icones {
  width: 80px;
  height: 80px;
  border: 3px solid var(--rv-white);
  box-shadow: 0 0 5px 0 #ddd;
  background: var(--rv-secondary);
  font-size: 40px;
  color: var(--rv-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 5px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.rd-row-card .rdrc-card .rvwcu-card-body .text-content h5 {
  margin-bottom: 20px;
}

.founder-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.founder-row .founder-col {
  position: relative;
  display: block;
  padding: 30px 15px;

  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
}

.founder-row .founder-col:hover {
  box-shadow: 0px 29px 49px 0px rgba(0, 0, 0, 0.15);
}

.founder-row .founder-col .image {
    overflow: hidden;
    /* border-radius: 50%; */
    width: 300px;
    margin: 0 auto;
    float: left;
    height: 300px;
    box-shadow: 0 0 15px 0 #eee;
    border: 8px solid var(--rv-white);
    background-color: var(--rv-secondary);
    padding: 5px;
	    margin-right: 30px;
    margin-bottom: 30px;
}
@media only screen and (max-width:767px){
	.founder-row .founder-col .name{
	  text-align: center;
	}
	.founder-row .founder-col .image {
	  	float: unset;
		margin-right: 0;
    	margin: 0 auto;
		margin-bottom: 30px;
	}
}
.founder-row .founder-col .image img {
  border-radius: 50%;
  width: 100%;
  background-color: var(--rv-secondary);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*.founder-row .founder-col .name {
  text-align: center;
}*/

.founder-row .founder-col .name h5 {
  color: var(--rv-primary);
}

.content-page ul {
  padding-left: 30px;
  padding-bottom: 20px;
}

.content-page ul li {
  list-style: none;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.content-page ul li::before {
  content: "\f0a4";
  color: var(--rv-primary);
  font-family: "FontAwesome";
  font-size: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
}

.single_testimonial_content_text .text-c {
  display: -webkit-box;
  color: var(--rv-black);
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single_testimonial_content_text .copenModal {
  color: var(--rv-secondary);
  font-size: 14px;
  font-weight: 600;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

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

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

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

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

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

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

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  transform: rotate(90deg);
}
.modalbody .Cmodalcard .maincontentmodal .risk-risult-data {
    text-align: center;
}
.modalbody .Cmodalcard .maincontentmodal .risk-risult-data h3 {
    color: #ea6019;
    margin: 15px 0;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader {
  position: absolute;
  width: 100%;
  background: #3e4095;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow {
  display: none;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow.show {
  display: block;
}

.rd-row-card .rdrc-card .rvwcu-card-body .icones.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  position: absolute;
  left: 0;
  top: 0;
  height: 90px;
  border-top: 2px solid #fedcd1;
  border-left: 2px solid #fedcd1;
  background-color: #fedcd1;
  border-radius: 0px 0 50px 0;
  padding: 15px;
  transition: 0.3s;
  z-index: 9;
  float: left;
  top: 0;
  position: absolute;
  left: 0;
  border-radius: 0;
  color: #000;
}