:root {
  --rv-primary: #4a3093;
  --rv-bg-primary: #462e8d;
  --rv-primary-light: #d6dbf7;
  --rv-secondary: #e11b22;
  --rv-dark: #2b1863;
  --body-text-primary: #4a3093;
  --rv-white: #ffffff;
  --bg-white: #ffffff;
  --slider-dots-color: #bfc4da;
  --light-bg: #eef0fb;
  --rv-black: #000;
}
/* ------Common-Css------------- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.7;
  font-family: "poppins";
  background-color: #07001b;
  color: #bfbfbf;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #bfbfbf;
}
p {
  font-size: 16px !important;
  color: #ffffffb8;
}
.page_wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--rv-secondary);
  font-size: 16px;
}

a:hover {
  text-decoration: none;
  color: var(--rv-primary);
}

ul,
li {
  padding: 0;
  list-style-type: none;
  margin: 0;
  font-size: 16px !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 30px;
}
button:focus,
.btn.focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}
span {
  font-size: 16px;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

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

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
  position: absolute;
  width: 100%;
  z-index: 99999;
  transition: 0.4s all;
  background: #07001b;
}

header.fix_style {
  position: fixed;
  top: 0;
  backdrop-filter: blur(5px);
  background-color: rgb(5 5 5 / 61%);
  padding: 15px 0;
  transition: none;
  opacity: 0;
  pointer-events: none;
}

header.fixed {
  pointer-events: all;
  opacity: 1;
  transition: 0.4s all;
}

header.fixed .navbar {
  padding: 0;
}

/* navigation bar */
.navbar {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0px;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 15px 15px;
  font-weight: 500;
  color: var(--rv-white);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: center;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--rv-primary-light);
}

.header-button .box .dark_btn {
  color: var(--rv-white);
  background-color: var(--rv-bg-primary);
  font-size: 14px;
  padding: 9px 30px 11px;
  border-radius: 6px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 400;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
  animation: pulse-blue-medium-sm 3.5s infinite;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  animation: pulse-blue-small-sm 3.5s infinite;
}
.btn-primary {
  color: var(--rv-black);
  background-color: var(--rv-bg-primary);
  font-size: 14px;
  padding: 9px 30px 11px;
  border-radius: 6px;
  position: relative;
  font-weight: 400; /* matches your .dark_btn */
  text-transform: uppercase;
  overflow: hidden; /* ensures pseudo-elements don't spill */
}

.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.btn-primary::before {
  animation: pulse-blue-medium-sm 3.5s infinite;
}

.btn-primary::after {
  animation: pulse-blue-small-sm 3.5s infinite;
}
.btnRefresh {
  padding: 14px 37px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    background: transparent;
    border-radius: 10px;
    padding: 5px 10px;
}
.navbar-brand img {
  width: auto;
  height: 100px;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
  background-color: var(--bg-white);
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
  position: relative;
  right: 15px;
  color: var(--rv-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
  position: absolute;
  top: 100%;
  background-color: var(--bg-white);
  border-radius: 0 10px 10px 10px;
  min-width: 210px;
  max-width: 230px;
  margin-top: -10px;
  transition: 0.4s all;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
  margin-left: 0;
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
  font-size: 15px;
  position: relative;
  transition: 0.4s all;
  line-height: 35px;
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 2px solid var(--rv-primary);
  border-radius: 10px;
  margin-right: 5px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
  padding-left: 15px;
  color: var(--rv-primary);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover > a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover > .drp_btn {
  color: var(--rv-primary);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
  opacity: 1;
  pointer-events: all;
  margin-top: -1px;
}

/* navigation toggle menu */
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 25px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid var(--bg-white);
  display: block;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: var(--bg-white);
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Show the dropdown menu when the parent item is hovered over */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: to fix any margin issues */
}
.nav-item.dropdown:hover .dropdown-menu a {
  background-color: transparent;
  color: #fff;
}
/* Ensure the dropdown menu is positioned correctly */
.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute; /* Important for positioning */
  top: 100%;
}
.dropdown-menu a {
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 30px;
  color: #fff;
  /*margin-bottom:10px;*/
}
.dropdown-menu {
  background-color: #000;
  border: 1px solid #ffffff17;
  margin-top: 0px;
  margin-left: 15px;
  border-radius: 15px;
  box-shadow: 0px 1px 5px 0px #30303017;
  padding: 20px 0;
}
.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show the dropdown menu with a transition effect */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 0; /* Optional: to fix any margin issues */
}
img {
  max-width: 100%;
}
.hero-banner {
  padding: 150px 0 50px 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 76% 53%;
}
.hero-banner:before {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: #00000038;
  left: 0;
  content: "";
}
.hero-banner .content-box {
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.hero-banner .content-box .quote.hero-quote {
  width: 60%;
  margin: 0 auto;
  color: var(--rv-primary-light);
  font-weight: 600;
  line-height: 26px;
  margin-top: 25px;
  text-transform: uppercase;
}
.hero-banner .content-box .quote.hero-quote span {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}
.hero-banner .content-box .title {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-banner .content-box p {
  color: #ffffff6e;
}
.hero-banner .content-box .banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner .content-box .banner-img img {
  width: 75%;
}

.hero-banner .about-content .content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 45px;
}
.hero-banner .about-content {
  border-radius: 60px;
  padding: 65px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  margin-top: -105px;
}
.hero-banner .about-content::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to right,
    #d7d7d724 4.1%,
    rgba(215, 215, 215, 0) 105.01%
  );
  z-index: -1;
  border-radius: 60px;
}
.primary {
  color: var(--rv-secondary);
}
.hero-banner .content-box .sub-title {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 22px;
}
.hero-banner .about-content .content-box p {
  color: #fff;
}
.hero-banner .dark_btn {
  display: inline-block;
  width: 160px;
  text-align: center;
}
.hero-banner .banner-img img {
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-top: -50px;
}
.quote-box {
  display: flex;
  align-items: center;
}
.quote-box .logo {
  width: 220px;
}
.quote-box .logo img {
  border-radius: 100%;
}
.quote-box .quote {
  width: 100%;
  margin-left: 15px;
  color: #e5e1db;
  font-weight: 300;
  font-size: 24px;
}
.quote-box .quote span {
  display: block;
  font-size: 26px;
  margin-top: 15px;
  font-weight: 500;
  color: var(--rv-primary);
}

.quote-box.team-box {
  margin-bottom: 40px;
}
.quote-box.team-box .logo {
  width: 400px;
}
.quote-box.team-box .quote {
  font-size: 18px;
}
.quote-box.team-box .quote span {
  font-size: 20px;
}
.title-gradient {
  background: linear-gradient(to right, #ffffff0f 0%, #ffffff14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 85px;
  margin: 35px 0 0;
  font-weight: 700;
  letter-spacing: -4px;
}
.dark_btn {
  color: var(--rv-white);
  background-color: var(--rv-bg-primary);
  border: 1px solid var(--rv-bg-primary);
  font-size: 14px;
  padding: 9px 35px 11px;
  border-radius: 6px;
  position: relative;
  font-weight: 700;
}
.featured-box {
  margin-top: 40px;
}
.featured-area1 {
  padding: 35px 30px 45px 35px;
  margin: 0 15px;
  position: relative;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
  min-height: 450px;
}

.featured-area1::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background: linear-gradient(
    to right,
    var(--rv-primary) 25%,
    var(--rv-primary) 33 75%
  );
  animation: rotate 4s linear infinite;
}
.featured-area1:hover::before {
  background: var(--rv-primary);
}
.featured-area1::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--rv-dark);
  border-radius: 15px;
}
/* .featured-area1:hover::after{
    background-color: var(--rv-dark);
} */
/* .featured-area1::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to right, var(--rv-primary) 25%, var(--rv-primary)33 75%);
    z-index: -1;
    border-radius: 15px;
} */
@keyframes border-rotation {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 100deg;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.featured-area1 .icon {
  margin-bottom: 20px;
  display: flex;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.featured-area1 .icon img {
  width: 70%;
}
.featured-area1 h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.featured-area1 p {
  color: #fff;
  font-size: 13px;
  margin-bottom: 30px;
}
.featured-area2 {
  border-radius: 26px;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 40px 30px;
  margin-bottom: 30px;
}
.featured-area2 h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.featured-area2 h4 .ft-count {
  font-size: 27px;
  font-weight: 700;
}
.featured-area2 p {
  color: #000;
  font-size: 13px;
}
.featured-area2 .icon img {
  width: 50%;
}
.featured-area3 {
  border-radius: 15px;
  border: 1px solid var(--rv-dark);
  background-color: var(--rv-dark);
  padding: 38px 20px 37px 20px;
  margin-bottom: 30px;
}
.featured-area3:hover {
  background: #1f1f1f;
}
.featured-area3 .content-area {
  display: flex;
  align-items: center;
  justify-content: start;
}
.featured-area3 .content-area .icon {
  margin-right: 10px;
}
.featured-area3 .content-area .icon img {
  width: 100%;
}
.featured-area3 .content-area h4 {
  color: var(--rv-white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.4em;
  margin-bottom: 0;
}
.featured-area3 .content-area .icon {
  margin-right: 15px;
  width: 55px;
}
.featured-area3 .content-area .icon img {
  width: 100%;
}
.featured-area3 .content-area {
  display: flex;
  align-items: center;
  justify-content: start;
}

.featured-area3 h4 .ft-count {
  font-size: 27px;
  font-weight: 700;
}
.featured-area4 {
  border-radius: 26px;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 30px 30px 0;
  margin-bottom: 30px;
  height: 447px;
}
.featured-area4 h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
}
.featured-area4 p {
  color: #000;
  font-size: 13px;
  margin-bottom: 25px;
}
.featured-area4 .img-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.featured-area4 .img-box img {
  width: 80.5%;
}

.featured-box .owl-nav {
  text-align: center;
  position: absolute;
  top: 45%;
  width: 100%;
}
.featured-box .owl-nav .owl-prev {
  position: absolute;
  left: -70px;
}
.featured-box .owl-nav .owl-next {
  position: absolute;
  right: -70px;
}
.featured-box .owl-nav span {
  background: var(--rv-primary);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-weight: 200;
  margin: 0 20px;
}

.title-right h4 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
}
.title-right {
  margin-top: 20px;
  text-align: right;
}
.section-team {
  /* background-image: url(../images/bg-team.png); */
  position: relative;
  background-position: center;
  /* height: 100vh;
     */

  padding-bottom: 200px;
  background-repeat: no-repeat;
  background: radial-gradient(ellipse 43% 44%, var(--rv-primary) 54, #df313100);
  background-position: top;
}
.team-box-img {
  position: absolute;
  top: -150px;
  right: 8%;
  width: 41%;
  display: flex;
  justify-content: flex-end;
  z-index: 0;
}
.team-box-img img {
  width: 100%;
}
.section-team .team-box .content-area h4 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.section-team .team-box .content-area p {
  color: #fff;
}
.section-team .team-box .content-area .gradient-title-2 {
  background: linear-gradient(to right, #ffffff24 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 140px;
  margin: 50px 0 0;
  font-weight: 700;
  letter-spacing: -4px;
  z-index: 2;
}
.section-team .team-box .content-area {
  padding-left: 50px;
  position: relative;
  z-index: 1;
}
.course {
  position: relative;
  padding-top: 155px;
}
.course .course-area {
  border-radius: 60px;
  padding: 65px;
  border: 1px solid #ffffff36;
  position: relative;
  border-radius: 60px;
  padding: 65px;
  border: 1px solid transparent;
  background: linear-gradient(0deg, black, #0000008c);
  background-clip: padding-box;
  position: relative;
}
.course .course-area::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to bottom,
    #d7d7d70f 4.1%,
    rgb(215 215 215 / 0%) 105.01%
  );
  z-index: -1;
  border-radius: 60px;
}
.course .course-area .title {
  color: #fff;
  font-size: 47px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.course .course-area p {
  color: #fff;
}
.course-features {
  margin: 60px 0;
}
.course-features .featured-area3 {
  border-radius: 26px;
  border: 1px solid #090909;
  background-color: #090909;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.course-features .featured-area3 .content-area h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4em;
  margin-bottom: 0;
}
.title-tag {
  background-color: #101010;
  padding: 7px 20px;
  border-radius: 42px;
  margin-bottom: 20px;
  color: #fff;
  width: 198px;
  font-size: 13px;
  font-weight: 600;
}
.button-enroll .btn-enquire {
  background-color: #fff;
  padding: 16px 45px;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  border: 1px solid #fff;
}
.membership-card img {
  width: 100%;
}
.membership-card {
  position: absolute;
  width: 37%;
  top: -70px;
  right: 75px;
}

.testimonial .title h4 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.testimonial .para-testimonial {
  margin: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 25px;
  color: #fff;
}
.testimonial_block {
  overflow: hidden;
  padding: 15px;
}

.testimonial_block .item {
  border-radius: 26px;
  padding: 30px 30px 20px 30px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
}
.testimonial_block .item::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
      179.3deg,
      #ffffff0f 0.6%,
      rgba(24, 24, 24, 0) 206.76%
    ),
    linear-gradient(
      172.68deg,
      #ffffff -170.25%,
      rgba(255, 255, 255, 0.02) 94.72%
    );

  z-index: -1;
  border-radius: 26px;
}
.testimonial_slide_box .testimonial-title h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}
.testimonial_slide_box .review {
  color: #ffffffba;
  margin-bottom: 20px;
}
.client-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.client-detail .testimonial_img {
  margin-right: 20px;
  width: 20%;
}
.client-detail .testimonial_img img {
  width: 100%;
}
.client-detail .details {
  color: #fff;
  line-height: 30px;
}
.client-detail .details h5 {
  margin: 0;
}
.client-detail .details .designation {
  color: var(--rv-primary);
  line-height: 18px;
}
.testimonial_block .item:hover {
  background-color: #1f1f1f;
}

.feedack-overlay .item {
  border-radius: 26px;
  padding: 40px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
}
.feedack-overlay .item::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
      179.3deg,
      #ffffff00 0.6%,
      rgba(24, 24, 24, 0) 206.76%
    ),
    linear-gradient(
      172.68deg,
      #ffffff3b -170.25%,
      rgba(255, 255, 255, 0.02) 94.72%
    );
  z-index: -1;
  border-radius: 26px;
}

.feedack-overlay .item h4,
.feedack-overlay .item .review,
.feedack-overlay .details {
  color: #ffffff57;
}
.feedack-overlay {
  position: relative;
}
.feedack-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, black, #000000ad, transparent);
  top: 0;
  left: 0;
  z-index: 1;
}
.testimonial-gradient-title .title-gradient {
  font-size: 115px;
  background: linear-gradient(to right, #ffffff03 0%, #ffffff0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-gradient-title {
  padding: 50px 0;
}

.footer-wrapper {
  background:#000;
  padding: 50px 0 0px 0;
}
.site-footer__bottom {
  margin: 10px 0;
}
.legal-links {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.legal-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
  font-size: 13px;
}

.legal-links a:hover {
  color: #6bb543;
  /* your primary green */
  text-decoration: underline;
}
.audit a {
  color: var(--rv-primary-light);
  list-style: none;
}
.audit li,
.audit ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* .footer-content-box{
    padding: 65px 65px 25px;
    border: 1px solid transparent;
    background: var(--rv-dark)bf;
    background-clip: padding-box;
    position: relative;
    border-radius: 57px;
    margin-bottom: 60px;
}
.footer-content-box::after{
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(179.3deg, #ffffff00 0.6%, rgba(24, 24, 24, 0) 206.76%), linear-gradient(172.68deg, #ffffff3b -170.25%, rgba(255, 255, 255, 0.02) 94.72%);
    z-index: -1;
    border-radius: 57px;
} */

.footer-content-box .content-area .title {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.footer-content-box .content-area p {
  /* color: #fff; */
  line-height: 1.5em;
  margin-bottom: 50px;
}
.footer-content-box .content-area {
  padding-top: 30px;
}
.footer-content-box .footer-img-box img {
  width: 100%;
}
.footer-separator img {
  width: 100%;
}
.footer-separator {
  padding: 100px 0;
}
.footer-img-box {
  padding-top: 30px;
}
.footer-widget-1 img {
  height: 115px;
  margin-bottom: 15px;
  width: auto;

}
.footer-widget-1 img {
    background: transparent;
    border-radius: 10px;
	padding:5px 10px;
}
.footer-widget-2 {
  padding-left: 20%;
  margin-top: 65px;
}
.footer-widget-2 h6 {
  color: #ffffffc9;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-widget-2 ul li a {
  color: #d7d7d7;
  font-size: 15px;
  transition: all 0.2s;
}
.footer-widget-2 ul li a:hover {
  color: var(--rv-primary);
  transition: all 0.2s;
  padding-left: 5px;
}
.footer-widget-2 ul li {
  line-height: 2.5em;
}
.footer-widget-3 {
  position: relative;
}
.footer-widget-3 h6 {
  color: #7171716e;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-widget-3 .applinks ul {
  display: flex;
}
.footer-widget-3 .applinks ul li img {
  width: 95%;
}
.footer-separator2 {
  padding: 50px 0 0px;
}
.footer-separator2 img {
  width: 100%;
}
.footer-widget-3 .app-mockup {
  margin-top: 25px;
  position: relative;
  width: 100%;
}
.footer-widget-3 .app-mockup img {
  position: absolute;
  width: 75%;
  left: 39px;
  top: 0;
  height: auto;
  z-index: 1;
}
.footer-copyright {
  padding-top: 30px;
  color: #ffffffb8;
  font-size: 14px;
  border-top: 1px solid #242424;
  margin-top: 30px;
}
.footer-social {
  display: flex;
  padding-top: 13px;
}
.footer-social li {
  margin-right: 5px;
}
.footer-social a {
  background: #141414;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  font-size: 13px;
}
.footer-social a:hover {
  background: #050505;
  color: var(--rv-primary);
}
.footer-social li img {
  width: 100%;
}
a.ex-link {
  color: #ffffff47;
}
.page-gradient {
  background: radial-gradient(ellipse 66% 50%, var(--rv-primary) 4a, #df313100);
  width: 100%;
  height: 555px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.dark_btn:hover {
  color: #fff !important;
  background-color: transparent !important;
  border: 1px solid var(--rv-primary);
  transition: 0.6s all;
}
.btn-form:hover {
  background-color: var(--rv-primary);
  border-color: var(--rv-primary);
  color: var(--rv-black);
  transition: 0.6s all;
}
.btn-form-two:hover {
  background-color: var(--rv-white);
  border-color: var(--rv-white);
  color: var(--rv-black);
}
.btn-enquire:hover {
  color: #ffffff !important;
  background-color: #14c32100 !important;
  transition: 0.6s all;
  border: 1px solid var(--rv-primary);
}

.section-blog {
  padding: 150px 0 40px;
}
.section-blog .content-area {
  text-align: center;
  margin-bottom: 100px;
}
.section-blog .content-area h1 {
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-blog .content-area p {
  color: #fff;
}
.featured-blog {
  display: flex;
  align-items: center;
}
.featured-blog .blog-img-box {
  width: 820px;
}
.featured-blog .blog-img-box img {
  width: 100%;
  border-radius: 24px 0 0 24px;
}
.featured-blog {
  padding: 0;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  border-radius: 24px;
}
.featured-blog::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to right,
    #d7d7d724 4.1%,
    rgba(215, 215, 215, 0) 105.01%
  );
  z-index: -1;
  border-radius: 24px;
}
.featured-blog .details {
  margin-left: 50px;
}
.featured-blog .details .blog-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}
.featured-blog .details .blog-meta .blog-cat {
  font-weight: 700;
  margin-right: 5px;
  color: #ffffff8c;
  font-size: 14px;
}
.featured-blog .details .blog-meta .pub_date {
  font-size: 13px;
  color: #ffffff3b;
  position: relative;
  margin-left: 5px;
}
.featured-blog .details .blog-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.4em;
}
.featured-blog .details p {
  font-size: 14px;
  margin-bottom: 20px;
}
/*
.page-gradient1-blog {
  background: radial-gradient(ellipse 31% 51%, var(--rv-primary) 54, #df313100);
  width: 100%;
  height: 16%;
  position: absolute;
  left: 0;
  top: 6%;
  z-index: -1;
}*/
.blog-grid {
  margin-top: 80px;
}
.blog-box {
  padding: 0px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  border-radius: 24px;
  margin-bottom: 35px;
}
.blog-box .img {
  height: 300px;
}
.blog-box .img img {
  width: 100%;
  border-radius: 24px 24px 0 0;
  height: 100%;
  object-fit: cover;
}
.blog-box::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to right,
    #d7d7d724 4.1%,
    rgba(215, 215, 215, 0) 105.01%
  );
  z-index: -1;
  border-radius: 24px;
}
.blog-box .details {
  padding: 30px;
}
.blog-box .details .blog-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}
.blog-box .details .blog-meta .blog-cat {
  font-weight: 700;
  margin-right: 5px;
  color: #ffffff8c;
  font-size: 14px;
}
.blog-box .details .blog-meta .pub_date {
  font-size: 13px;
  color: #ffffff3b;
  position: relative;
  margin-left: 5px;
}
.blog-box .details .blog-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.6em;
}
.blog-box .details p {
  font-size: 14px;
  margin-bottom: 20px;
}
.btn-blog {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.btn-blog:hover {
  color: #fff;
}
/* blog-detail */

.section-blog-detail {
  padding: 150px 0 50px;
}
.blog-detail {
  text-align: center;
  padding-bottom: 60px;
}
.blog-detail .details .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.blog-detail .details {
  margin-bottom: 60px;
}
.blog-detail .details .blog-meta .blog-cat {
  font-weight: 700;
  margin-right: 5px;
  color: #ffffff8c;
  font-size: 14px;
}
.blog-detail .details .blog-meta .pub_date {
  font-size: 13px;
  color: #ffffff3b;
  position: relative;
  margin-left: 5px;
}
.blog-detail .details .blog-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.4em;
}
.blog-detail .blog-img-box {
  width: 100%;
  height: 340px;
}
.blog-detail .blog-img-box img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.blog-detail .blog-content {
  text-align: left;
  padding: 60px;
  color: #fff;
  font-size: 15px;
}
.section-blog-detail .blog-grid {
  margin-top: 60px;
}
.title-related-blog h4 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 0;
}

/* contact */

.section-contact {
  padding: 170px 0 100px;
}

.section-contact .content-area h1 {
  color: #fff;
  font-size: 47px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.section-contact .content-area p {
  color: #fff;
}
.contact-list li a .icon {
  width: 35px;
  height: 35px;
  background-color: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 15px;
}
ul.contact-list li {
  padding: 10px 0;
}
.contact-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
}
.contact-list li a:hover {
  color: #fff;
}

.section-contact .contact-box {
  border-radius: 60px;
  padding: 0px;
  border: 1px solid transparent;
  background: var(--rv-dark) a6;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.section-contact .contact-box::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to right,
    #d7d7d724 4.1%,
    rgba(215, 215, 215, 0) 105.01%
  );
  z-index: -1;
  border-radius: 60px;
}

.section-contact .contact-box .content-form input {
  background-color: transparent;
  height: 50px;
  border: 1px solid #ffffff21;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.section-contact .contact-box .content-form input:focus,
.section-contact .contact-box .content-form textarea:focus,
.section-contact .contact-box .content-form select:focus {
  border: 1px solid var(--rv-primary);
  box-shadow: none;
  outline: none;
}
.section-contact .contact-box .content-form select {
  background-color: transparent;
  height: 50px;
  border: 1px solid #ffffff21;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.section-contact .contact-box .content-form select option {
  background: #000;
}
.section-contact .contact-box .content-form textarea {
  background-color: transparent;
  height: 133px;
  border: 1px solid #ffffff21;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  padding: 20px;
  border-radius: 6px;
}
.section-contact .content-form {
  padding: 45px 50px 40px 20px;
}
.btn-form {
  background-color: transparent;
  border: 1px solid var(--rv-primary);
  color: #fff;
  padding: 9px 40px;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 400;
}
.btn-form-two {
  background-color: transparent;
  border: 1px solid var(--rv-white);
  color: #fff;
  padding: 5px 14px;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
}
.mt-30 {
  margin-top: 20px;
}
.featured-contacts {
  padding: 100px 0;
  background-color: #080808;
}
.featured-contacts .title {
  text-align: center;
  margin-bottom: 20px;
}
.featured-contacts .title h2 {
  color: #fff;
  font-size: 47px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.featured-contacts .title p {
  color: #fff;
}
.featured-grid {
  padding: 65px;
}

.featured-grid .featured-area {
  border-radius: 26px;
  padding: 30px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  min-height: 250px;
}
.featured-grid .featured-area::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
      179.3deg,
      #ffffff14 0.6%,
      rgb(24 24 24 / 0%) 206.76%
    ),
    linear-gradient(142deg, #ffffff0f -170.25%, rgb(255 255 255 / 0%) 94.72%);
  z-index: -1;
  border-radius: 26px;
}
.featured-grid .featured-area .icon {
  margin-bottom: 20px;
}
.featured-grid .featured-area .icon img {
  width: 50px;
}
.featured-grid .featured-area .title {
  text-align: left;
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}
.featured-grid .featured-area p {
  font-size: 13px;
  line-height: 1.66em;
  margin-bottom: 15px;
}
.featured-grid .featured-area a {
  color: #fff;
  font-size: 14px;
}
.featured-grid .featured-area a:hover {
  color: var(--rv-primary);
}
.featured-grid .featured-area:hover {
  border: 1px solid #ffffff1f;
}

/* faq */

.faq-contact {
  padding: 100px 0;
}
.faq-contact .title h2 {
  color: #fff;
  font-size: 47px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.faq-contact .title p {
  color: #fff;
}
.faq_panel .card:first-child {
  border-top: 1px solid #222222 !important;
}
.faq_panel .card {
  border: 1px solid #222222 !important;
  border-top: none !important;
  border-radius: 16px;
  background-color: var(--rv-dark);
}

.faq_panel .card-header {
  background-color: var(--rv-dark);
  padding: 20px 25px;
  /* border: 1px solid #ffffff1c; */
  border: none;
  margin-bottom: 0 !important;
  position: relative;
}
.faq_panel .card-body {
  background-color: var(--rv-dark);
  padding: 20px 35px;
}
.faq_panel .card-header h2 button {
  color: #fff;
  font-size: 15px;
}
.faq_panel .card-header i {
  position: absolute;
  right: 30px;
  top: 35px;
  font-size: 12px;
  color: #ffffff96;
}
.faq_panel .card-header h2 button:hover {
  color: var(--rv-primary);
  text-decoration: none;
}
.faq_panel .card-header i:hover {
  color: var(--rv-primary);
}
.faq_panel .card-body p {
  font-size: 14px;
}
.faq-contact .title {
  padding-left: 35px;
}

/* info pages */

.page-info {
  padding: 150px 0 50px;
}
.page-info .title h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 40px;
  text-align: center;
}
.page-info .content-area {
  padding: 65px;
  color: #fff;
}
.page-info .content-area ul li {
  list-style-type: disclosure-closed;
  line-height: 3em;
}
.page-info .content-area ul li p {
  line-height: 2em;
  color: #fff;
  font-size: 14px;
}
.page-info .content-area .p-single-box p {
  color: #fff;
  font-size: 14px;
}
.page-info .content-area .p-single-box ul {
  margin-bottom: 20px;
}
.page-info .content-area .p-single-box ul li {
  list-style-type: disc;
  line-height: 2.5em;
  font-size: 14px;
}
.page-info .content-area .p-single-box ul {
  padding-left: 40px;
}
.page-info .content-area .p-single-box h6 {
  font-size: 23px;
  margin: 30px 0;
}
.page-gradient1-pp {
  background: radial-gradient(ellipse 39% 22%, #00ff4d47, #df313100);
  width: 100%;
  height: 16%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/* who we are */

/* .team-grid { */
/* padding: 65px; */
/* } */
.meet-the-team {
  padding: 100px 0;
}
.meet-the-team .title {
  text-align: center;
  margin-bottom: 80px;
}
.meet-the-team .title h4 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.meet-the-team .title p {
  color: #fff;
}
.team-grid .team-box {
  position: relative;
  height: 360px;
  /* border: 1px solid #ffffff12; */
}
.team-grid .team-box .team-image {
  width: 100%;
  height: 360px;
}
.team-grid .team-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .team-grid .team-box:hover .team-grid .team-box img { */
/* -webkit-transform: scale(1.08); */
/* transform: scale(1.08); */
/* }  */
.team-grid .team-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(360deg, #000000, #00000042, transparent);
  width: 100%;
  height: 100%;
}

.team-grid .team-box .team-details {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 1;
  padding: 0 30px;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.team-details h6 {
  font-size: 20px;
  margin-bottom: 6px;
}
.team-details p {
  color: var(--rv-primary);
  margin-bottom: 0;
  font-size: 13px;
}
.p0 {
  padding: 0;
}
.team-border-radius {
  border: 1px solid #ffffff12;
  border-radius: 24px;
  overflow: hidden;
}
.pr-0 {
  border-right: none !important;
}
.team-border-radius .p0 {
  border-bottom: 1px solid #ffffff12;
  border-right: 1px solid #ffffff12;
}

.who-we-are {
  padding: 150px 0 100px;
}
.who-we-are .title h1 {
  text-align: center;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}
.who-we-are .title p {
  text-align: center;
  color: #fff;
}
.video-area {
  border-radius: 60px;
  padding: 85px 85px 65px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  margin-top: 260px;
}
.video-area::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
    to right,
    #d7d7d724 4.1%,
    rgba(215, 215, 215, 0) 105.01%
  );
  z-index: -1;
  border-radius: 60px;
}
.page-gradient-who-we-are {
  background: radial-gradient(ellipse 66% 50%, var(--rv-primary) 54, #df313100);
  width: 100%;
  height: 600px;
  position: absolute;
  left: 0;
  top: 5%;
  z-index: 0;
}

.video-thumb {
  width: 90%;
  height: 500px;
  margin-bottom: 50px;
  z-index: 1;
  margin-top: -285px;
}
.video-thumb #about_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.video-area .content-area {
  margin-bottom: 35px;
}
.video-area .content-area p {
  color: #fff;
  font-size: 17px;
}
.video-area .featured-area {
  width: 50%;
  margin: 40px auto;
}
.video-area .featured-area {
  width: 50%;
  margin: 40px auto;
  border-radius: 26px;
  padding: 40px;
  border: 1px solid #ffffff;
  background: #ffffff;
  background-clip: padding-box;
  position: relative;
}

.about-area {
  background: var(--rv-dark);
  border-radius: 50px;
  padding: 60px;
}
.team-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 2px 15px -6px #f6c958;
}
.about-area .title h3 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3em;
  margin-bottom: 20px;
}
.about-area .title p {
  color: #fff;
}

.grid-about .col-lg-6 {
  padding: 0;
  border: 1px solid #ffffff1f;
}
.grid-about .pr-0 {
  border-right: none !important;
}
.grid-about .pb-0 {
  border-bottom: none !important;
}
.about-area .grid-about .about-data {
  padding: 40px;
}
.about-area .grid-about {
  padding: 0 30px;
}
.about-area .grid-about .about-data .counter {
  text-align: center;
  margin-top: 20px;
}
.about-area .grid-about .about-data .counter h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-area .grid-about .about-data .counter p {
  color: #ffffffa1;
  font-size: 14px;
}
#counter .counter-value.ft-count {
  color: #fff;
  font-size: 30px;
}
.video-area .featured-area .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-area .featured-area .icon {
  width: 55px;
  margin-bottom: 20px;
}
.video-area .featured-area .content-box h4 {
  color: #000;
  margin-bottom: 10px;
}

.video-area .featured-area .content-box .para-high {
  font-size: 15px;
  color: var(--rv-primary);
  font-style: italic;
  line-height: 1.4em;
  margin-top: 20px;
}
.video-area .featured-area .content-box p {
  color: #000;
  font-size: 14px;
}
.br-top {
  border-radius: 16px 0 0 0;
}
.br-right {
  border-radius: 0 16px 0 0;
}
.br-bottom {
  border-radius: 0 0 16px 0;
}
.br-left {
  border-radius: 0 0 0 16px;
}

.timeline .title h3 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3em;
  margin-bottom: 20px;
}
.timeline {
  padding: 100px 0;
  background-color: #080808;
}
.timeline_slider {
  margin-top: 50px;
  margin-left: 15px;
}
.timeline_slider .item {
  border: 1px solid #ffffff1c;
  padding: 50px;
}
.timeline_slider .item.item1 {
  border-radius: 16px 0 0 16px;
  border-right: none;
}
.timeline_slider .item.item2 {
  border-right: none;
}
.timeline_slider .item.item-last {
  border-radius: 0 16px 16px 0;
}
.timeline_slider .item .timeline-item h4 {
  font-size: 32px;
  color: var(--rv-primary);
  margin-bottom: 12px;
}
.timeline_slider .item .timeline-item p {
  color: #fff;
}
.team-grid .team-box .social ul li img {
  width: 100%;
}
.team-grid .team-box .social ul {
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}
.media-featured {
  padding: 100px 0;
}
.media-featured .title h4 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.media-featured .title {
  color: #fff;
}
.media-featured .para-testimonial {
  margin: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 25px;
  color: #fff;
}
.media-grid {
  margin-top: 40px;
}
.media-grid .video-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.media-grid .video-box {
  width: 100%;
  height: 320px;
  margin-bottom: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.hide-me[aria-expanded="true"] {
  display: none;
}
.media-grid .video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.mt-0 {
  margin-top: 0;
}
.timeline_slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: -120px;
  background-color: #14c32100 !important;
  border: 1px solid #ffffff9e !important;
  width: 45px;
  border-radius: 50%;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 18px !important;
}
.timeline_slider .owl-nav .owl-prev {
  position: absolute;
  right: 55px;
  top: -120px;
  background-color: #14c32100 !important;
  border: 1px solid #ffffff9e !important;
  width: 45px;
  border-radius: 50%;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 18px !important;
}

.floating-icons {
  position: relative;
}
.floating-icons .whatsapp-icon {
  bottom: 95px;
  position: fixed;
  right: 50px;
  z-index: 999;
  padding: 14px;
  background-color: var(--rv-primary);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  line-height: 20px;

  box-shadow: 0px 1px 20px #14c32145;
}
.floating-icons a img {
  width: 100%;
  height: 100%;
}
.floating-icons .call-icon {
  bottom: 30px;
  position: fixed;
  right: 50px;
  z-index: 999;
  padding: 14px;
  background-color: var(--rv-primary);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  line-height: 20px;
  box-shadow: 0px 1px 20px #14c32145;
}

.floating-icons .call-icon a img {
  width: 100%;
  height: 100%;
}

.blog-detail .blog-content h4 {
  margin: 20px 0;
}
.blog-detail .blog-content h5 {
  font-size: 18px;
}
.blog-detail .blog-content .blog-ul {
  padding-left: 30px;
  margin: 30px 0;
}

.section {
  padding: 80px 0;
}
.top-section {
  padding: 200px 0 60px 0;
}
.section-title {
  position: relative;
  margin-bottom: 30px;
}
.section-title .title {
  font-size: 42px;
  color: #fff;
}
.section-title .title .primary {
  font-size: 42px;
}
.section-title .title-light {
  font-size: 64px;
  color: #ffffff0d;
  position: absolute;
  top: -15px;
  left: 5px;
}

/* Contact Form */

.contact-form .cc-groups {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form .cc-groups #captcha {
  margin: 0 !important;
}
.contact-form .cc-groups #captcha-btn {
  margin: 0 10px;
}
.contact-form .cc-groups #captcha_code {
  border-radius: 6px;
  height: 51px !important;
}
.contact-form .cc-groups .btn-form {
  height: 48px;
  margin-left: 10px;
}

.section-title.text-center .title-light {
  left: 0;
  right: 0;
}

.section.about-main {
  padding: 170px 0 0px;
}

/* Login Panel */
.login-panel-section {
  padding: 170px 0 60px 0;
}
.rv-login-panel {
  margin: 0 auto;
  width: 100%;
  background-color: var(--rv-secondary-light);
  background: var(--rv-dark);
  border-radius: 50px;
  padding: 60px 100px;
}
.rv-login-panel label {
  color: #fff;
}
.rv-login-panel .form-control {
  padding: 15px;
  background-color: transparent;
  height: 50px;
  border: 1px solid #ffffff21;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.rv-login-panel .form-group {
  margin-bottom: 20px;
}

.rv-login-panel .form-check-label {
  margin: 0 5px;
}
.rv-login-panel .form-check-input:checked[type="radio"] {
  background: var(--rv-primary);
  border: 1px solid var(--rv-primary);
}
.rv-login-panel .form-check-input[type="radio"] {
  margin: 5px 5px;
  background: #fff;
  border: 1px solid;
}
.rv-login-panel input:not([type="radio"]) {
  width: 100%;
}
.rv-login-panel .clickhendler {
  text-align: right;
  display: block;
  cursor: pointer;
}
.form-check-input {
  position: unset;
  margin-top: unset;
  margin-left: unset;
}
.form-check-input:checked {
  background-color: var(--color-theme);
  border-color: var(--color-theme);
}
.mb-25 {
  margin-bottom: 25px;
}
.rv-modal-open {
  overflow: hidden !important;
}
.rv-modal-open .ticker_sticky {
  position: relative;
  z-index: -3;
}
.rv-modal-open footer.footer_main {
  position: relative;
  z-index: -3;
}
.rv-modal-open .rv-modal {
  z-index: 99;
  visibility: visible;
  pointer-events: visible;
}
.rv-modal-open .rv-modal .bg-show {
  background: rgba(0, 0, 0, 0.5803921569);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rv-modal {
  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;
}
.rv-modal .close-i {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  line-height: 30px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  background: var(--rv-primary);
  color: #fff;
  border-radius: 100%;
  font-weight: 300;
}
.rv-modal .cm-body {
  max-width: 400px;
  width: 100%;
  background-color: var(--bs-white);
  border-radius: 3px;
  position: relative;
  z-index: 999;
}
.rv-modal .cm-body .m-hadding {
  background-color: var(--color-theme);
  border-radius: 3px 3px 0 0;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.rv-modal .cm-body .m-hadding h4 {
  margin-bottom: 0;
  color: var(--bs-white);
}
.rv-modal .cm-body .cm-cards {
  padding: 20px;
}

/* MY RADIO */
.rv-radio-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* label container */
.rv-radio-group .form-check-label {
  color: #fff;
  display: block;
  position: relative;
  padding-left: 25px;
  line-height: 25px;
  margin-bottom: 12px;
  margin-left: 30px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.rv-radio-group .form-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.rv-radio-group .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  border: 2px solid rgb(255 255 255);
  transition: all 0.3s;
}

/* On mouse-over, add a grey background color */
.rv-radio-group .form-check-label:hover input ~ .checkmark {
  border-color: #fff;
}

/* When the radio button is checked */
.rv-radio-group .form-check-label input:checked ~ .checkmark {
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--rv-primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rv-radio-group .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.rv-radio-group .form-check-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.rv-radio-group .form-check-label .checkmark:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rv-primary);
}

/* TAB */
.rvTab {
  padding: 0;
  margin: 0;
  display: flex;
}
.rvTab .tab_item {
  display: inline-block;
  width: 100%;
  margin: 0 10px;
}
.rvTab .tab_item .tab_link {
  background-color: #1e1e1e;
  display: block;
  padding: 6px 20px;
  text-align: center;
  color: #fff;
  border: 1px solid var(--rv-dark);
  width: 100%;
  border-radius: 15px;
  font-size: 17px;
}
.rvTab .tab_item .tab_link.activelink {
  display: block;
  background-color: var(--rv-primary);
  color: #000;
  border: 1px solid var(--rv-primary);
}
.rvTabContent {
  background: #1e1e1e;
  border-radius: 30px;
  margin-top: 20px;
  padding: 20px 0;
}
.rvTabContent .tab_list {
  width: 100%;
  padding: 10px;
}
.rvTabContent .tab_list.hide {
  display: none;
}
#download1 {
  color: #fff;
}
#download1 select {
  background: #1e1e1e;
  border: 1px solid #1e1e1e;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 20px;
}

.rvTabContent tr {
  border-bottom: 1px solid #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rvTabContent td {
  color: #fff;
  margin: 5px 0;
}
.rvTabContent a {
  color: var(--rv-primary) !important;
}

.rv-tabs.calculator-tabs .calculator-list a {
  display: block;
  border: 1px solid #000000 !important;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  color: #fff !important;
  background: #000000 !important;
  max-width: 100% !important;
}
.rv-tabs.calculator-tabs .calculator-list a:hover,
.rv-tabs.calculator-tabs .calculator-list .active {
  border: 1px solid var(--rv-primary) !important;
  color: #000 !important;
  background: var(--rv-primary) !important;
}
.rv-tabs.calculator-tabs .calculator-show {
  color: #fff;
}
.rv-tabs.calculator-tabs .calculator-show .color-red {
  color: #e32828;
}

.pay-premium-section .title {
  padding: 0px;
  color: var(--rv-primary);
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 500;
}
.pay-premium-section .logo-part {
  display: grid;
  grid-gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 50px;
}
.pay-premium-section .logo-part .logo {
  display: block;
  background-color: #1c1c1c;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}
.pay-premium-section .logo-part .logo:hover {
  box-shadow: 0 10px 20px 0px #00000024;
  transition: all 0.3s;
}
.pay-premium-section .logo-part .logo img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.rv-dark-box {
  background: var(--rv-dark);
  border-radius: 50px;
  padding: 30px 30px;
  margin-bottom: 30px;
}

.buymf-section .buy_mf {
  text-align: center;
  margin-bottom: 40px;
}
.buymf-section .buy_mf p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
}
.buymf-section img {
  width: 200px;
  max-width: 200px;
  border-radius: 10px;
}

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

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

.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: #000;
  position: relative;
  box-shadow: 0 0 15px 0 #141414;
  border-radius: 30px;
}
.modalbody .Cmodalcard .maincontentmodal .cmodalclose {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  box-shadow: 0 0 15px 0 #ddd;
  cursor: pointer;
  right: -15px;
  top: -15px;
  border-radius: 5px;
  display: flex;
  z-index: 9;
}
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span {
  position: relative;
  transform: rotate(45deg);
}
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::before,
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  background: #000;
  top: 2px;
  left: 2px;
}
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  transform: rotate(90deg);
}
.modalbody .Cmodalcard .maincontentmodal .modalheader {
  position: relative;
  width: 100%;
  background: #f00;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}
.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
}
.modalbody .Cmodalcard .maincontentmodal .pop-head h3 {
  color: #fff;
  font-weight: 500;
}
div#thnkbox {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.168627451);
}

div#thnkbox .card-boxs {
  box-shadow: 0 0 15px 0 #000;
  text-align: center;
  padding: 50px;
  max-width: 400px;
  width: 100%;
  background: #000;
  border-radius: 10px;
  border: 2px solid var(--rv-primary);
}
.test-content {
  padding: 20px;
}
div#thnkbox .card-boxs p.btn-netx {
  display: flex;
  justify-content: center;
}

div#thnkbox .card-boxs h2 {
  color: var(--rv-primary);
}

#showformdata {
  display: none;
}

.showformdata {
  overflow: none;
}

.showformdata #showformdata {
  display: block;
}

.showformdata .calculator-section.download-forms .calculator-body {
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}

.showformdata
  .calculator-section.download-forms
  .calculator-body
  a#submitdatashow {
  cursor: pointer;
}

.service-list-items .list-items {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-list-items .list-items .item {
  border-radius: 26px;
  padding: 40px;
  border: 1px solid transparent;
  background: var(--rv-dark);
  background-clip: padding-box;
  position: relative;
  margin: 0;
}
.service-list-items .list-items .item::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(
      179.3deg,
      #ffffff0f 0.6%,
      rgba(24, 24, 24, 0) 206.76%
    ),
    linear-gradient(
      172.68deg,
      #ffffff -170.25%,
      rgba(255, 255, 255, 0.02) 94.72%
    );
  z-index: -1;
  border-radius: 26px;
}
.service-list-items .list-items .item:hover {
  background-color: #1f1f1f;
}
.service-list-items .list-items .item h4 {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
}
.service-list-items .list-items .item:hover h4 {
  color: var(--rv-primary);
}

.service-content-section .content-box h4 {
  color: #fff;
}

.service-tabs .rvTabContent {
  background: transparent;
}

.diclaimer-amfi .amfi-item {
  display: flex;
  align-items: center;
  height: 85px;
}
.diclaimer-amfi .amfi-item span {
  margin-left: 15px;
}
.diclaimer-amfi .amfi-item img {
  border-radius: 5px;
}

.mobile_tabs {
  list-style-type: none;
  padding: 0;
}
.mobile_tabs .mobileapp-tab-item {
  background: var(--rv-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--rv-white);
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}
.mobile_tabs .mobileapp-tab-item.active,
.mobile_tabs .mobileapp-tab-item:hover {
  background: var(--rv-primary);
}
.mobile_tabs .mobileapp-tab-item.active h4,
.mobile_tabs .mobileapp-tab-item.active p,
.mobile_tabs .mobileapp-tab-item:hover h4,
.mobile_tabs .mobileapp-tab-item:hover p {
  color: var(--rv-white);
}
.mobile_tabs .mobileapp-tab-item.active img,
.mobile_tabs .mobileapp-tab-item:hover img {
  filter: brightness(999);
}
.mobile_tabs .mobileapp-tab-item .icon-title {
  display: flex;
  margin-bottom: 5px;
}
.mobile_tabs .mobileapp-tab-item .icon-title img {
  width: 40px;
  margin-right: 10px;
}
.mobile_tabs .mobileapp-tab-item .icon-title p {
  margin: 0;
}

.mobile_tabs_content {
  text-align: center;
}
.mobile_tabs_content img {
  width: 56%;
  margin-top: -15px;
}
.download-apps h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.download-apps img {
  margin: 20px 5px;
  transition: all 0.3s ease-in-out;
}
.download-apps a:hover img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

/* TICKER */
.ticker_section {
  padding: 10px 0 0 0;
  background: linear-gradient(0deg, #000, #000);
}
.ticker_section .tickers {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-content: center;
  margin: 0;
}
.tickers .ticker_item {
  position: relative;
  border-radius: 0px;
  padding: 0px 7px;
  display: flex;
  background: linear-gradient(0deg, #000, #000);
  text-align: center;
  margin: 0px 2px;
  justify-content: space-around;
  align-items: center;
}
.tickers .ticker_item::after {
  content: "";
  position: absolute;
  background: #222;
  width: 80%;
  height: 100%;
  border-radius: 30px;
  top: 0;
  left: 0;
}
.tickers .ticker_item:last-child {
  border: none;
}

.tickers .ticker_item .name {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
  color: #ababab;
  position: relative;
  z-index: 9;
}
.tickers .ticker_item .price {
  display: block;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  margin: 0px 8px;
  position: relative;
  z-index: 9;
}
.tickers .ticker_item .difference_percent {
  position: relative;
  color: #fff;
  display: block;
  line-height: 18px;
  font-size: 13px;
  margin-top: 0px;
  background: #51c948;
  padding: 5px 25px 5px 5px;
  border-radius: 30px;
  z-index: 9;
}
.tickers .ticker_item .difference_percent::after {
  content: "\F144";
  font-family: "bootstrap-icons";
  position: absolute;
  font-size: 18px;
  bottom: 8px;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  right: 5px;
  font-size: 15px;
}
.tickers .ticker_item .difference_percent.negative {
  color: #fff;
  background-color: #e91f1f;
}
.tickers .ticker_item .difference_percent.negative::after {
  content: "\F11E";
}
/* TICKER */

.partner-section .partners img {
  margin: 0 5px;
  border-radius: 5px;
  width: auto;
}
.item.channel-partner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default: Hide mobile logo */
.mobile-logo {
  display: none;
}

/* Default: Show desktop logo */
.desktop-logo {
  display: block;
}

/* Media query for mobile view (max-width: 768px) */
@media (max-width: 768px) {
  /* Hide desktop logo on mobile */
  .desktop-logo {
    display: none;
  }

  /* Show mobile logo on mobile */
  .mobile-logo {
    display: block;
  }

  img.mobile-logo {
    height: auto;
    width: 92px;
  }
}

.header-button-moblie {
  display: none;
}
/* Clamp review text to 3 lines */
.testimonial_slide_box .review {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

section#loginsection {
  padding: 160px 80px 80px;
}
div#clientCarousel .image {
  background: transparent;
  padding: 15px;
}
div#clientCarousel .image img {
  border-radius: 18px;
}
.banner-logo {
  height: 200px;
  width: auto;
}
.banner-logo img {
    height: 100%;
    width: auto;
    filter: drop-shadow(3px 7px 10px black) brightness(1.2);
    background: transparent;
    padding: 10px;
    border-radius: 15px;
}

.team-image {
  width: 250px;
  height: auto;
}

.team-image img {
  width: 100%;
  height: auto;
}

.copyright,
.credits {
  color: #fff;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limit to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.news-content {
  background: var(--rv-dark);
  padding: 10px;
}

/* Reusable line-clamp utilities */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-category {
  position: absolute;
  top: 0;
  background: #000000f2;
  padding: 5px 10px;
}
.blog-content {
  /* margin: 15px; */
  background: var(--rv-dark);
}
.featured-area1 .dark_btn:hover {
  background: #363e6f !important;
}
.text-muted {
  color: #8c9dab !important;
}

.time a,
.category a {
  color: #fff;
}

.social-list li span:hover i,
.social-list li a:hover i {
  color: var(--rv-white);
}
@media only screen and (min-width:767px)
{
		.content-map  {
    height: 100%;
			 
}
	.content-map iframe {
    height: 100%;
}
}
@media only screen and (max-width:767px){
	.featured-box .owl-nav .owl-prev{
	left: 0;
	}
		.content-map  {
    height: 100%;
			 min-height: 500px;
}
	.content-map iframe {
    height: 100%;
}
	.featured-box .owl-nav{
	top:100%
	}
	.featured-box .owl-nav .owl-next{
	    right: 0%;
		left:65px
	}
	
	.content-form.aos-init.aos-animate {
    padding: 0;
}
	.section{
		padding: 40px 0;
	}
.about-box-img {
    margin-bottom: 40px;
}
	.section-title .title{
	line-height: 38px;
		font-size: 30px;
	}
	.header-button-moblie a.dark_btn {
    display: block;
    padding: 10px;
    margin-top: 10px;
}
	.section-title .title-light{
	font-size: 44px;
	}
	.section-title .title .primary{
		font-size: 30px;
	}
}
