:root {
  --rv-primary: #061840;
  --rv-bg-primary-light: #e6e7ee;
  --rv-secondary: #eebf3e;
  --rv-bg-secondary-light: #ffe9e9;
  --rv-white: #fff;
  --rv-black: #000;
  --rv-bdr-radius: 8px;
  --rv-gray: #726d7b;
  --rv-light: #f9f9f1;
  --rv-font: "DM Sans", sans-serif;
  --rv-color1: var(--rv-primary);
  --rv-color2: var(--rv-black);
  --rv-color3: var(--rv-secondary);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

a:hover {
  color: #2a2af0;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--rv-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #8080f6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--rv-primary);
}

#header .logo img {
  max-height: 90px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rv-primary);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--rv-primary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--rv-primary);
  border: 2px solid var(--rv-primary);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--rv-secondary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--rv-primary);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--rv-primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(48, 47, 84, 0.9);
  transition: 0.3s;
	    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--rv-primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--rv-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--rv-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 65vh;
  background: white;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .container {
  padding-top: 0px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: var(--rv-white);
  font-family: "Poppins", sans-serif;
	text-align: center;
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--rv-primary);
}

#hero .btn-get-started,
#hero .btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
}

#hero .btn-get-started {
  background: var(--rv-primary);
  color: #fff;
  border: 2px solid var(--rv-secondary);
  margin-right: 10px;
}

#hero .btn-get-started:hover {
  background: var(--rv-secondary);
  border-color: var(--rv-secondary);
}

#hero .btn-get-quote {
  color: var(--rv-white);
  border: 2px solid var(--rv-white);
}

#hero .btn-get-quote:hover {
  background: var(--rv-primary);
  color: #fff;
}

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

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

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero {
    text-align: center;
  }
  #hero ul {
    text-align: left;
    font-size: 14px;
  }
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started,
  #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #eeeef5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--rv-primary);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--rv-primary);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: var(--rv-primary);
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--rv-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 0;
}

.why-us .box {
  padding: 50px 30px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--rv-primary);
}

.why-us .box span i::before {
  font-size: 35px;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--rv-primary);
}

.why-us .box p {
  color: #000;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--rv-primary);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--rv-primary);
  color: #fff;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0c0ca8;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon i::before {
  font-size: 30px;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services a {
  color: var(--rv-primary);
  transition: ease-in-out 0.3s;
}

.services a:hover {
  transition: ease-in-out 0.3s;
  color: var(--rv-primary);
}

.services a:hover .icon-box {
  transition: ease-in-out 0.3s;
  box-shadow: 0 0 15px 0 #ddd;
}

.services a:hover .icon-box::before {
  transition: ease-in-out 0.3s;
  width: 100%;
}

.services a:hover .icon-box p b {
  background: var(--rv-secondary);
  border-color: var(--rv-secondary);
  color: var(--rv-primary);
}

.services a .icon-box {
  transition: ease-in-out 0.3s;
  position: relative;
  overflow: hidden;
}

.services a .icon-box::before {
  transition: ease-in-out 0.3s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 3px;
  background: var(--rv-secondary);
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  display: -webkit-box;
  min-height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.services .icon-box p:last-child {
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--rv-white);
  transition: ease-in-out 0.3s;
  margin-bottom: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box i.bx-link {
  font-size: 50px;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: var(--rv-primary);
  transition: ease-in-out 0.3s;
}

.features .icon-box:hover h3 a {
  color: var(--rv-primary);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--rv-primary);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--rv-primary);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--rv-primary);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--rv-primary);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #1313ee;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--rv-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--rv-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(67, 65, 117, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img img {
  opacity: 0.1;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: var(--rv-primary);
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: var(--rv-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--rv-primary);
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #000;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: var(--rv-primary);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: var(--rv-primary);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .btn-buy {
  background: var(--rv-primary);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
  border: none;
}

.pricing .btn-buy:hover {
  background: var(--rv-primary);
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .btn-buy {
  background: var(--rv-primary);
}

.pricing .featured .btn-buy:hover {
  background: var(--rv-secondary);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #bbb;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: var(--rv-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #2a2af0;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: var(--rv-primary);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
  height: 100%;
  position: relative;
  transition: 0.5s;
}

/*
.contact .info-box:hover::before {
  border-top: 8px double var(--rv-primary);
  border-left: 8px double var(--rv-primary);
  transform: translate3d(4px, 4px, 4px);
}
.contact .info-box:hover::after {
  border-bottom: 8px double var(--rv-primary);
  border-right: 8px double var(--rv-primary);
  transform: translate3d(-4px, -4px, -4px);
}
.contact .info-box::before {
  transition: 0.5s;
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 5px;
  top: 5px;
  transform: translate3d(-4px, -4px, -4px);
  border-top: 8px double #eee;
  border-left: 8px double #eee;
  border-right: 8px double transparent;
  border-bottom: 8px double transparent;
}
.contact .info-box::after {
  transition: 0.5s;
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  transform: translate3d(4px, 4px, 4px);
  border-bottom: 8px double #eee;
  border-right: 8px double #eee;
  border-left: 8px double transparent;
  border-top: 8px double transparent;
}
*/
.contact .info-box i {
  font-size: 32px;
  color: var(--rv-primary);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--rv-primary);
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--rv-primary);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--rv-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--rv-secondary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f1f1f7;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--rv-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565396;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #eeeef5;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact .about-f img {
  height: 90px;
  margin-bottom: 15px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: var(--rv-primary);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--rv-primary);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--rv-primary);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--rv-primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--rv-primary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--rv-primary);
  transition: 0.3s;
  transform: translateX(10px);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #b9b9fa;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--rv-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--rv-secondary);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #deddec;
  color: var(--rv-primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--rv-primary);
  color: #fff;
  text-decoration: none;
}

.services-section ul li {
  list-style-type: disc;
  padding-bottom: 10px;
}

.testimonial_section .item {
  padding: 15px;
}

.testimonial_section .item .investor_box {
  padding-top: 60px;
}

.testimonial_section .item .investor_box .icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  width: 90px;
  height: 90px;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 50%;
  background: var(--rv-white);
  margin: 0 auto;
}

.testimonial_section .item .investor_box .icon img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial_section .item .investor_box .content {
  box-shadow: 0 6px 15px 0 #ddd;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  padding-top: 60px;
  text-align: center;
}

.testimonial_section .item .investor_box .content .text .titext {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial_section .item .investor_box .content .text .titext p:last-child {
  margin: 0;
}

.testimonial_section .item .investor_box .content .text .copenModal {
  color: var(--rv-primary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial_section .item .investor_box .content .text .copenModal i {
  font-size: 10px;
  font-weight: 600;
}

.owl-theme .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  box-shadow: 0 0 15px 0 #ddd;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: var(--rv-white) !important;
  border-radius: 3px;
  transition: 0.5s;
  border: 1px solid var(--rv-secondary);
}

.owl-theme .owl-nav button:focus {
  outline: unset;
}

.owl-theme .owl-nav button:hover {
  transition: 0.5s;
  color: var(--rv-primary);
  background: var(--rv-secondary) !important;
}

.owl-theme .owl-nav button span {
  font-size: 50px;
  line-height: 60px;
  position: relative;
  top: -4px;
}

.owl-theme .owl-nav button.owl-prev {
  left: -25px;
}

.owl-theme .owl-nav button.owl-next {
  right: -25px;
}

.home-about-section .text-about {
  display: -webkit-box;
 /* -webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 30px;
}

.home-about-section .image {
  position: relative;
  padding: 60px 0 0 60px;
}

.home-about-section .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  width: 80%;
  height: 80%;
  /*border-top: 15px double var(--rv-primary);
  border-left: 15px double var(--rv-primary);
  border-right: 15px double transparent;
  border-bottom: 15px double transparent;*/
  background-color: #eee;
  z-index: 0;
}

.home-about-section .image img {
  width: 90%;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.home-about-section .box {
  border: 1px solid #eee;
  padding: 10px 20px;
  box-shadow: 0 0 5px 0 #ddd;
  margin-bottom: 20px;
}

.home-about-section .box span {
  display: flex;
  gap: 20px;
  align-items: center;
}

.home-about-section .box span i {
  color: var(--rv-primary);
  font-size: 30px;
}

.home-about-section .box span i::before {
  font-size: 30px;
}

.home-about-section .box p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.iccb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: -15px;
}

.iccb-row .ic-card-body {
  padding: 15px;
}

.iccb-row .ic-card-body .icon-box {
  margin-bottom: 0;
  flex-wrap: wrap;
  position: relative;
  transition: 0.5s;
}

.iccb-row .ic-card-body .icon-box:hover {
  transition: 0.5s;
}

/*.iccb-row .ic-card-body .icon-box:hover::before {
  border-top: 8px double var(--rv-primary);
  border-left: 8px double var(--rv-primary);
  transform: translate3d(4px, 4px, 4px);
}
.iccb-row .ic-card-body .icon-box::before {
  transition: 0.5s;
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 5px;
  top: 5px;
  transform: translate3d(-4px, -4px, -4px);
  border-top: 8px double #eee;
  border-left: 8px double #eee;
  border-right: 8px double transparent;
  border-bottom: 8px double transparent;
}*/
.iccb-row .ic-card-body .icon-box i {
  margin: 0 auto;
  padding: 0;
  margin-bottom: 20px;
}

.iccb-row .ic-card-body .icon-box h3 {
  transition: 0.5s;
  width: 100%;
  text-align: center;
}

#footer .footer-top .footer-contact .about-f .stores {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

@media only screen and (max-width: 767px) {
  #footer .footer-top .footer-contact .about-f .stores {
    justify-content: center;
  }
}
#footer .footer-top .footer-contact .about-f .stores .stors {
  padding: 5px;
}

#footer .footer-top .footer-contact .about-f .stores .stors:hover {
  transition: 0.5s;
  filter: unset;
}

#footer .footer-top .footer-contact .about-f .stores .stors img {
  transition: 0.5s;
  height: 35px;
}

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: #fff;
  border-radius: 10px;
  border: 2px solid var(--rv-primary);
}

div#thnkbox .card-boxs p.btn-netx {
  display: flex;
  justify-content: center;
}

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

#showformdata .modalbody .Cmodalcard .maincontentmodal .modaldatashow {
  display: block;
}

#showformdata .modalbody .Cmodalcard .maincontentmodal {
  padding-top: 30px;
}

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

.faq-page-section .nevtebBar-bodys {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left {
  max-width: 25%;
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 992px) {
  .faq-page-section .nevtebBar-bodys .nevtebBar-left {
    display: none;
  }
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--rv-secondary);
  position: relative;
  margin-bottom: 25px;
  cursor: pointer;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers::after {
  content: "";
  position: absolute;
  top: 0;
  border-left: 22px solid var(--rv-secondary);
  border-bottom: 25px solid #fff;
  border-top: 25px solid #fff;
  right: 0;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers.active {
  background-color: var(--rv-primary);
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers.active::after {
  border-left: 22px solid var(--rv-primary);
}
.faq-page-section .nevtebBar-bodys .nevtebBar-left .tebHendlers.active h4 {
  color: var(--rv-white);
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right {
  max-width: 75%;
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 992px) {
  .faq-page-section .nevtebBar-bodys .nevtebBar-right {
    max-width: 100%;
  }
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right .faq {
  padding: 0;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right .faq .faq-list ol,
.faq-page-section .nevtebBar-bodys .nevtebBar-right .faq .faq-list ul {
  padding-left: 60px;
  margin-top: 20px;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right .faq .faq-list ol li,
.faq-page-section .nevtebBar-bodys .nevtebBar-right .faq .faq-list ul li {
  border: unset;
  padding-bottom: 10px;
  margin: 0;
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right .nevdisc-box.tcbodys {
  display: none;
}
@media only screen and (max-width: 992px) {
  .faq-page-section .nevtebBar-bodys .nevtebBar-right .nevdisc-box.tcbodys {
    display: block;
  }
}
.faq-page-section .nevtebBar-bodys .nevtebBar-right .nevdisc-box.tcbodys.show {
  display: block;
}



 
 
.social-midia-f {
    position: fixed;
    bottom: 70px;
    right: 0;
    overflow: hidden;
    z-index: 99;
}

.social-midia-f ul li {
    list-style: none;
    background: #ddd;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 50px 0 0 50px;
    transform: translateX(62%);
    border: 1px solid #ddd;
    transition: 0.5s;
}

.social-midia-f ul li:hover {
    transition: 0.5s;
    transform: translateX(0);
    background: var(--rv-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: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
}

.social-midia-f ul li a .icone.baa {
    background: var(--rv-primary);
    padding: 5px;
}

.social-midia-f ul li a .icone.baa i {
    color: var(--rv-white);
}

.social-midia-f ul li a .icone img {
    width: 100%;
}

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


/* Sleek Modern Team Card Design with Framed Look and Enhanced Shadows */
.team-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.7);
}

 

.team-card .content {
    position: relative;
    z-index: 1;    margin-top: 20px;
}
.team-card .team-image {
      border-radius: 10px;
    width: 100%;
    height: 350px;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
}
@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateX(15px);
  }
  40% {
    transform: translate(0);
  }
}