@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --rv-primary: #FEA310;
    --rv-secondary: #15303F;
    --rv-primary-light: #122a541a;
    --rv-secondary-light: #1a573517;
    --rv-white: #fff;
    --rv-black: #000;
    --rv-font: "Barlow Condensed", sans-serif;
    --rv-gradient: linear-gradient(135deg, #15303F 0%, #FEA310 100%);
    --rv-gradient1: linear-gradient(90deg, var(--rv-primary) 0%, var(--rv-secondary) 100%);
    --rv-gradient2: linear-gradient(90deg, var(--rv-secondary) 0%, var(--rv-primary) 100%);
}

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

body {
  position: relative;
  font-size: 18px;
  font-family: var(--rv-font);
  font-weight: 300;
  color: var(--rv-black);
}

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

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

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
  line-height: 42px;
}

h3 {
  font-size: 42px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.rv-text {
  background-image: var(--rv-gradient1) !important;
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
}

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

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

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

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

.main-heading {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
.main-heading h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--rv-primary);
}
.main-heading h1 {
  font-weight: 600;
  margin: 0;
  font-size: 42px;
  line-height: 48px;
}
.main-heading .title-box {
  position: relative;
  display: block;
  font-size: 38px;
  margin: 0;
}
.main-heading .title-box span {
  color: var(--rv-secondary);
}
.main-heading .title-box::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 10px;
  background-image: url(../images/decore-new.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: contain;
}

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

.btn-primary {
  background: var(--rv-secondary);
  border: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 30px;
  transition: all 0.3s linear;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.1em;
}
.btn-primary:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--rv-primary);
  transform: scale(0);
  transition: all 0.2s linear;
  border-radius: 8px;
  opacity: 1;
  z-index: -1;
}
.btn-primary:hover {
  background: var(--rv-primary);
  color: var(--rv-black);
}
.btn-primary:hover:after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s linear;
}

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

.section {
  padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

.hover-text::before {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, var(--rv-primary) 0%, rgba(133, 206, 228, 0.2) 95%);
  transform: translateY(-41px) translateX(-365px);
  z-index: 0;
}
.hover-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60%;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, rgba(133, 206, 228, 0.2) 0%, var(--rv-secondary) 95%);
  transform: translateY(41px) translateX(365px);
  z-index: 0;
  transition: 0.5s;
}
.hover-text:hover {
  transition: 0.5s;
}
.hover-text:hover::before {
  transition: 0.5s;
  top: -60%;
}
.hover-text:hover::after {
  transition: 0.5s;
  bottom: 0%;
}

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

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

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

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

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

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

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

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

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

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

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

.main_heading {
  margin-bottom: 30px;
}

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

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

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

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

body {
  font-size: 15px;
  color: #777777;
  line-height: 1.8em;
  font-weight: 400;
  background: var(--rv-white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  font-family: "Work Sans", sans-serif;
}

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

.no-padding {
  padding: 0px !important;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
  font-family: "Montserrat", sans-serif;
  color: #111;
}

button:focus {
  outline: none;
}

p {
  position: relative;
  line-height: 1.8em;
  margin-bottom: 30px;
}

.text {
  font-size: 16px;
  color: #222;
}

.border-bottom {
  border-bottom: 1px solid #f4f4f4 !important;
}

.strike-through {
  text-decoration: line-through;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  background: var(--rv-white);
  z-index: 9;
  overflow: hidden;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

@media (min-width: 1200px) {
  .container,
  .container-fluid {
    padding: 0;
  }
}
.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.grey-bg {
  background-color: #f7f7f7 !important;
}

.grey-deep-bg {
  background-color: #f2f2f2 !important;
}

.grey-light-bg {
  background-color: #f8f8f8 !important;
}

.gradient-bg {
  background-image: linear-gradient(3deg, #000000 34%, #064e79 100%) !important;
}

.gradient-two-bg {
  background-image: linear-gradient(to top, #537895 0%, #09203f 100%) !important;
}

.image-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.black-bg {
  background-color: #000 !important;
}

.black-bg-2 {
  background-color: #222 !important;
}

.black-bg-3 {
  background-color: #151412 !important;
}

.theme-bg {
  background-color: #cc8a1d !important;
}

.bg-style-two {
  position: relative;
}

.bg-style-two:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-color: rgb(240, 240, 240);
}

.bg-style-two:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(240, 240, 240, 0.3);
}

/* section padding */
.sp-one {
  padding: 80px 0;
}

.sp-two {
  padding: 80px 0 60px;
}

.sp-three {
  padding: 80px 0 70px;
}

.sp-four {
  padding: 80px 0 0px;
}

.sp-five {
  padding: 0px 0 80px;
}

.sp-six {
  padding: 0px 0 60px;
}

.sp-seven {
  padding: 100px 0 20px;
}

.projects-block-one.mix {
  display: none;
}

.projects-block-two.mix {
  display: none;
}

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

img {
  display: inline-block;
  max-width: 100%;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: var(--rv-white);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.svg);
}

/*** Scroll To Top style ***/
.scroll-top {
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 18px;
  border-radius: 50%;
  z-index: 99;
  display: none;
  color: var(--rv-white);
  text-align: center;
  cursor: pointer;
  background: var(--rv-primary);
  animation: pulse 2s infinite;
}

.scroll-top span:before {
  font-size: 27px;
}

.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/* parallax-one */
.parallax-one {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-one:before {
  position: absolute;
  content: "";
  background: rgba(30, 67, 152, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* parallax-two */
.parallax-two {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.parallax-two:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* parallax-three */
.parallax-three {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.parallax-three:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/*Custom Select*/
.form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 14px;
  font-style: normal;
  height: 50px;
  padding: 7px 20px;
  line-height: 30px;
  color: #333333;
  border-radius: 0px;
  border: 1px solid #e5e5e5;
  background: var(--rv-white);
}

.form-group .ui-button .ui-icon {
  background: none;
  position: relative;
  top: 3px;
  text-indent: 0px;
  color: #333333;
}

.form-group .ui-button .ui-icon:before {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  right: 0px;
  top: 2px !important;
  top: 13px;
  width: 10px;
  height: 20px;
  display: block;
  color: #333333;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
}

.ui-widget.ui-widget-content {
  border: 1px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
}

.ui-menu .ui-menu-item {
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.ui-menu .ui-menu-item:last-child {
  border: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  background-color: var(--rv-primary);
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 24px;
}

.ui-menu-item:hover {
  background-color: #17519d;
}

/* owl controll */
.owl-dots-none .owl-dots {
  display: none;
}

/* style one */
.owl-dot-style-one .owl-dots {
  position: relative;
  text-align: center;
}

.owl-dot-style-one .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.owl-dot-style-one .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--rv-primary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.owl-dot-style-one .owl-dots .owl-dot.active span,
.owl-dot-style-one .owl-dots .owl-dot:hover span {
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/* style two */
.owl-dot-style-two .owl-dots {
  position: relative;
  text-align: center;
  line-height: 15px;
}

.owl-dot-style-two .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.owl-dot-style-two .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.owl-dot-style-two .owl-dots .owl-dot span:before {
  position: absolute;
  content: "";
  background: #e8e8e8;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
}

.owl-dot-style-two .owl-dots .owl-dot.active span,
.owl-dot-style-two .owl-dots .owl-dot:hover span {
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/* owl nav */
.owl-nav-none .owl-nav {
  display: none;
}

.owl-nav-style-one .owl-nav {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.owl-nav-style-one .owl-nav .owl-next,
.owl-nav-style-one .owl-nav .owl-prev {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 8px;
  display: inline-block;
  line-height: 56px;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 24px;
  color: #222222;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.owl-nav-style-one .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-one .carousel-outer:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
}

.owl-nav-style-one .owl-nav .owl-prev {
  left: 0px;
}

.owl-nav-style-one .owl-nav .owl-next {
  right: 0px;
}

.owl-nav-style-one .owl-nav .owl-next:hover,
.owl-nav-style-one .owl-nav .owl-prev:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background: var(--rv-primary);
}

/* nav style tow */
.owl-nav-style-two .owl-nav {
  padding: 0px;
  text-align: center;
  bottom: 100%;
  top: inherit;
  position: absolute;
  left: inherit;
  right: 0;
}

.owl-nav-style-two .owl-nav .owl-next,
.owl-nav-style-two .owl-nav .owl-prev {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 8px 30px;
  display: inline-block;
  line-height: 46px;
  border: 1px solid #f0f0f0;
  text-align: center;
  font-size: 24px;
  color: #949494;
  border-radius: 50%;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
}

.owl-nav-style-two .owl-nav .owl-prev {
  left: 0px;
}

.owl-nav-style-two .owl-nav .owl-next {
  right: 0px;
}

.owl-nav-style-two .owl-nav .owl-next:hover,
.owl-nav-style-two .owl-nav .owl-prev:hover {
  color: var(--rv-primary);
  border-color: var(--rv-primary);
}

/* nav style three */
.owl-nav-style-three .owl-nav {
  padding: 0px;
  text-align: center;
  bottom: 100%;
  top: inherit;
  position: absolute;
  right: -7%;
  top: -150px;
  transform: translateX(-50%) translateY(45px);
}

.owl-nav-style-three .owl-nav .owl-next,
.owl-nav-style-three .owl-nav .owl-prev {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 8px 0px;
  display: inline-block;
  line-height: 56px;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 24px;
  color: #222;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
}

.owl-nav-style-three .owl-nav .owl-prev {
  left: 0px;
}

.owl-nav-style-three .owl-nav .owl-next {
  right: 0px;
}

.owl-nav-style-three .owl-nav .owl-next:hover,
.owl-nav-style-three .owl-nav .owl-prev:hover {
  color: var(--rv-primary);
  border-color: var(--rv-primary);
}

/* nav style four */
.owl-nav-style-four .owl-nav {
  padding: 0px;
  top: 50%;
  margin-top: -40px;
  position: absolute;
  left: 0;
  right: 0;
}

.owl-nav-style-four .owl-nav .owl-next,
.owl-nav-style-four .owl-nav .owl-prev {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 8px 0px;
  display: inline-block;
  line-height: 56px;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 24px;
  color: #222;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
}

.owl-nav-style-four .owl-nav .owl-prev {
  left: 0px;
  float: left;
  transform: translateY(-50%);
}

.owl-nav-style-four .owl-nav .owl-next {
  right: 0px;
  float: right;
  transform: translateY(-50%);
}

.owl-nav-style-four .owl-nav .owl-next:hover,
.owl-nav-style-four .owl-nav .owl-prev:hover {
  color: var(--rv-primary);
  border-color: var(--rv-primary);
}

/*** Fancy Box ***/
.fancybox-next span,
.fancybox-prev span {
  background-image: none !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  text-align: center;
}

.fancybox-next span:before,
.fancybox-prev span:before {
  content: "";
  position: absolute;
  font-family: "FontAwesome";
  left: 0px;
  top: 0px;
  font-size: 12px;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  background-color: rgba(28, 28, 28, 0.4) !important;
  color: var(--rv-white);
  visibility: visible;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.fancybox-next span:before {
  content: "\f178";
}

.fancybox-prev span:before {
  content: "\f177";
}

.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
  background-color: #ffffff !important;
  color: var(--rv-black);
}

.fancybox-type-image .fancybox-close {
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  background: url(../images/icons/icon-cross.png) center center no-repeat;
  background-color: rgba(17, 17, 17, 0.5) !important;
}

.fancybox-type-image .fancybox-close:hover {
  background-color: #000000 !important;
}

.fancybox-type-image .fancybox-skin {
  padding: 0px !important;
}

/* margin */
.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

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

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

/* padding */
.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pt-145 {
  padding-top: 145px;
}

/*

element css

1- section title
2- button style
3- list style
4- social icon
6- tab style
7- accordion
8- page pagination
9- filter style
10- video-box
11- sidebar widget




/*
================================== 
1.section title 
==================================
*/
.sec-title {
  position: relative;
  margin-bottom: 50px;
  margin-top: -5px;
}

.sec-title.style-two {
  margin-top: 20px;
}

.sec-title.small {
  margin-bottom: 40px;
}

.sec-title.centered {
  text-align: center;
}

.sec-title .big-title {
  font-size: 65px;
  font-weight: 700;
  color: #eeeeee;
  text-transform: capitalize;
  position: absolute;
  width: 100%;
  bottom: 35px;
}

.sec-title.style-two .big-title {
  bottom: 30px;
}

.sec-title h1 {
  font-size: 42px;
  color: #222;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: capitalize;
}

.sec-title.light h1 {
  color: var(--rv-white);
}

.sec-title.light .big-title {
  color: #585859;
}

.sec-title.deep .big-title {
  color: #d9dbde;
}

.sec-title .text {
  margin-top: 30px;
}

.sec-title.light .text {
  color: rgba(255, 255, 255, 0.7);
}

/* welcome title */
.welcome-title {
  text-align: center;
  margin-bottom: 40px;
}

.welcome-title h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* inner page title */
.inner-page-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.inner-page-title h4 {
  font-size: 22px;
  color: var(--rv-black);
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
}

.inner-page-title:before {
  position: absolute;
  content: "";
  background: #ddd;
  height: 1px;
  width: 100%;
  bottom: 0;
}

.inner-page-title:after {
  position: absolute;
  content: "";
  background: var(--rv-primary);
  height: 2px;
  width: 40px;
  bottom: 0;
}

/*
================================== 
2.button Style One 
==================================
*/
.btn-style-one {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-black);
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: var(--rv-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-primary);
  font-family: "Montserrat", sans-serif;
}

.btn-style-one:hover {
  color: var(--rv-white);
  background: var(--rv-secondary);
  border-color: var(--rv-secondary);
}

/*Btn Style One*/
.btn-style-two {
  position: relative;
  padding: 11px 40px;
  border-radius: 25px;
  line-height: 24px;
  color: var(--rv-black);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--rv-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-primary);
  font-family: "Montserrat", sans-serif;
}

.btn-style-two:hover {
  color: var(--rv-black);
  background: var(--rv-secondary);
  border-color: var(--rv-secondary);
}

/*Btn Style three*/
.btn-style-three {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-primary);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-primary);
  font-family: "Montserrat", sans-serif;
}

.btn-style-three:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style four*/
.btn-style-four {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  border-radius: 25px;
  color: var(--rv-primary);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-primary);
  font-family: "Montserrat", sans-serif;
}

.btn-style-four:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style five*/
.btn-style-five {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-primary);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--rv-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-white);
  font-family: "Montserrat", sans-serif;
}

.btn-style-five:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/*Btn Style six*/
.btn-style-six {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-primary);
  text-align: center;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--rv-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-white);
  font-family: "Montserrat", sans-serif;
}

.btn-style-six:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/*Btn Style seven*/
.btn-style-seven {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-white);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-white);
  font-family: "Montserrat", sans-serif;
}

.btn-style-seven:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style eight*/
.btn-style-eight {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  border-radius: 25px;
  color: var(--rv-white);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-white);
  font-family: "Montserrat", sans-serif;
}

.btn-style-eight:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style nine*/
.btn-style-nine {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-primary);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: #f7f7f7;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #f7f7f7;
  font-family: "Montserrat", sans-serif;
}

.btn-style-nine:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/*Btn Style ten*/
.btn-style-ten {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-primary);
  text-align: center;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: #f7f7f7;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #f7f7f7;
  font-family: "Montserrat", sans-serif;
}

.btn-style-ten:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
}

/*Btn Style eleven*/
.btn-style-eleven {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: var(--rv-white);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
}

.btn-style-eleven:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style twelve*/
.btn-style-twelve {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  border-radius: 25px;
  color: var(--rv-white);
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
}

.btn-style-twelve:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style thirteen*/
.btn-style-thirteen {
  position: relative;
  padding: 12px 40px;
  line-height: 24px;
  color: #222;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.btn-style-thirteen:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style fourteen*/
.btn-style-fourteen {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  border-radius: 25px;
  color: #222;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  font-family: "Montserrat", sans-serif;
}

.btn-style-fourteen:hover {
  color: var(--rv-white);
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
}

/*Btn Style fifteen*/
.btn-style-fifteen {
  position: relative;
  padding: 0px 12px;
  line-height: 25px;
  color: var(--rv-white);
  text-align: center;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--rv-primary);
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--rv-primary);
  font-family: "Montserrat", sans-serif;
}

.btn-style-fifteen:hover {
  color: var(--rv-primary);
  background: transparent;
  border-color: var(--rv-primary);
}

/*
================================== 
3.list style
==================================
*/
.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  color: #848484;
  font-size: 16px;
  font-weight: 300;
  padding-left: 28px;
  margin-bottom: 10px;
}

.list-style-one li:before {
  position: absolute;
  content: "\f046";
  left: 0px;
  top: 0px;
  font-size: 16px;
  color: var(--rv-primary);
  font-family: "FontAwesome";
}

/*List Style Two*/
.list-style-two {
  position: relative;
  margin-bottom: 30px;
}

.list-style-two li {
  position: relative;
  color: #848484;
  font-size: 16px;
  font-weight: 300;
  padding-left: 20px;
  margin-bottom: 6px;
}

.list-style-two li:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  height: 5px;
  width: 5px;
  background: var(--rv-primary);
  font-family: "FontAwesome";
  transform: rotate(-45deg);
}

/*List Style Three*/
.list-style-three {
  position: relative;
  margin-bottom: 30px;
}

.list-style-three li {
  position: relative;
  color: #848484;
  font-size: 16px;
  font-weight: 300;
  padding-left: 20px;
  margin-bottom: 6px;
}

.list-style-three li:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--rv-primary);
  font-family: "FontAwesome";
}

.list-style-three li:nth-child(2):before {
  background-color: #fd5075;
}

.list-style-three li:nth-child(3):before {
  background-color: #11e6a2;
}

/*List Style four*/
.list-style-four {
  position: relative;
}

.list-style-four li {
  position: relative;
  margin-bottom: 12px;
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  padding-left: 35px;
  line-height: 2em;
}

.list-style-four li i {
  position: absolute;
  left: 0px;
  top: 4px;
  color: var(--rv-primary);
  font-size: 22px;
  line-height: 1.2em;
}

/*List Style five*/
.list-style-five {
  position: relative;
}

.list-style-five li {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  font-weight: 300;
  padding-left: 28px;
  margin-bottom: 10px;
}

.list-style-five li:before {
  position: absolute;
  content: "\f192";
  left: 0px;
  top: 0px;
  font-size: 16px;
  color: var(--rv-primary);
  font-family: "FontAwesome";
}

/*
================================== 
4.social icon
==================================
*/
/* social icon one */
.social-icon-one {
  position: relative;
}

.social-icon-one li {
  position: relative;
  margin: 0 7px;
  display: inline-block;
}

.social-icon-one li a {
  position: relative;
  color: #666;
  font-size: 16px;
  transition: all 300ms ease;
}

.social-icon-one li a:hover {
  color: var(--rv-primary);
}

/*Social Icon Two*/
.social-icon-two {
  position: relative;
}

.social-icon-two li {
  position: relative;
  margin: 0 7px;
  display: inline-block;
}

.social-icon-two li a {
  position: relative;
  color: var(--rv-primary);
  font-size: 16px;
  transition: all 300ms ease;
}

.social-icon-two li a:hover {
  color: var(--rv-primary);
}

/*Social Icon Three*/
.social-icon-three {
  position: relative;
}

.social-icon-three li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icon-three li a {
  position: relative;
  width: 40px;
  height: 40px;
  color: #848484;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: #f4f4f4;
  transition: all 300ms ease;
}

.social-icon-three li a:hover {
  color: var(--rv-white);
  background-color: var(--rv-primary);
}

/*Social Icon Four*/
.social-icon-four {
  position: relative;
}

.social-icon-four li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icon-four li a {
  position: relative;
  width: 40px;
  height: 40px;
  color: var(--rv-primary);
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: #f4f4f4;
  transition: all 300ms ease;
}

.social-icon-four li a:hover {
  color: var(--rv-white);
  background-color: var(--rv-primary);
}

/*Social Icon Five*/
.social-icon-five {
  position: relative;
}

.social-icon-five li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icon-five li a {
  position: relative;
  width: 40px;
  height: 40px;
  color: #848484;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #eee;
  transition: all 300ms ease;
}

.social-icon-five li a:hover {
  color: var(--rv-white);
  background-color: var(--rv-primary);
}

/*Social Icon Six*/
.social-icon-six {
  position: relative;
}

.social-icon-six li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icon-six li a {
  position: relative;
  width: 40px;
  height: 40px;
  color: var(--rv-primary);
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #eee;
  transition: all 300ms ease;
}

.social-icon-six li a:hover {
  color: var(--rv-white);
  background-color: var(--rv-primary);
}

/* social icon seven */
.social-icon-seven {
  position: relative;
}

.social-icon-seven li {
  position: relative;
  margin: 0 7px;
  display: inline-block;
}

.social-icon-seven li a {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  transition: all 300ms ease;
}

.social-icon-seven li a:hover {
  color: var(--rv-primary);
}

/*social icon eight*/
.social-icon-eight {
  position: relative;
}

.social-icon-eight li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.social-icon-eight li a {
  position: relative;
  width: 40px;
  height: 40px;
  color: var(--rv-white);
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--rv-white);
  transition: all 300ms ease;
}

.social-icon-eight li a:hover {
  color: var(--rv-white);
  background-color: var(--rv-primary);
  border-color: var(--rv-primary);
}

/* social-icon nine */
.social-icon-nine {
  display: flex;
  flex-wrap: wrap;
}

.social-icon-nine li {
  margin: 0 7px;
}

.social-icon-nine .fa {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.social-icon-nine .fa:hover {
  opacity: 0.7;
}

.social-icon-nine .fa-facebook {
  background: #3B5998;
  color: white;
}

.social-icon-nine .fa-twitter {
  background: #55ACEE;
  color: white;
}

.social-icon-nine .fa-google {
  background: #dd4b39;
  color: white;
}

.social-icon-nine .fa-linkedin {
  background: #007bb5;
  color: white;
}

.social-icon-nine .fa-youtube {
  background: #bb0000;
  color: white;
}

.social-icon-nine .fa-instagram {
  background: #125688;
  color: white;
}

.social-icon-nine .fa-pinterest {
  background: #cb2027;
  color: white;
}

.social-icon-nine .fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.social-icon-nine .fa-skype {
  background: #00aff0;
  color: white;
}

.social-icon-nine .fa-android {
  background: #a4c639;
  color: white;
}

.social-icon-nine .fa-dribbble {
  background: #ea4c89;
  color: white;
}

.social-icon-nine .fa-vimeo {
  background: #45bbff;
  color: white;
}

.social-icon-nine .fa-tumblr {
  background: #2c4762;
  color: white;
}

.social-icon-nine .fa-vine {
  background: #00b489;
  color: white;
}

.social-icon-nine .fa-foursquare {
  background: #45bbff;
  color: white;
}

.social-icon-nine .fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.social-icon-nine .fa-flickr {
  background: #f40083;
  color: white;
}

.social-icon-nine .fa-yahoo {
  background: #430297;
  color: white;
}

.social-icon-nine .fa-soundcloud {
  background: #ff5500;
  color: white;
}

.social-icon-nine .fa-reddit {
  background: #ff5700;
  color: white;
}

.social-icon-nine .fa-rss {
  background: #ff6600;
  color: white;
}

/* Social-icon Fourteen */
.social-icon-ten {
  display: flex;
  flex-wrap: wrap;
}

.social-icon-ten li {
  margin: 0 7px;
}

.social-icon-ten .fa {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.social-icon-ten .fa:hover {
  opacity: 0.7;
}

.social-icon-ten .fa-facebook {
  background: #3B5998;
  color: white;
}

.social-icon-ten .fa-twitter {
  background: #55ACEE;
  color: white;
}

.social-icon-ten .fa-google {
  background: #dd4b39;
  color: white;
}

.social-icon-ten .fa-linkedin {
  background: #007bb5;
  color: white;
}

.social-icon-ten .fa-youtube {
  background: #bb0000;
  color: white;
}

.social-icon-ten .fa-instagram {
  background: #125688;
  color: white;
}

.social-icon-ten .fa-pinterest {
  background: #cb2027;
  color: white;
}

.social-icon-ten .fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.social-icon-ten .fa-skype {
  background: #00aff0;
  color: white;
}

.social-icon-ten .fa-android {
  background: #a4c639;
  color: white;
}

.social-icon-ten .fa-dribbble {
  background: #ea4c89;
  color: white;
}

.social-icon-ten .fa-vimeo {
  background: #45bbff;
  color: white;
}

.social-icon-ten .fa-tumblr {
  background: #2c4762;
  color: white;
}

.social-icon-ten .fa-vine {
  background: #00b489;
  color: white;
}

.social-icon-ten .fa-foursquare {
  background: #45bbff;
  color: white;
}

.social-icon-ten .fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.social-icon-ten .fa-flickr {
  background: #f40083;
  color: white;
}

.social-icon-ten .fa-yahoo {
  background: #430297;
  color: white;
}

.social-icon-ten .fa-soundcloud {
  background: #ff5500;
  color: white;
}

.social-icon-ten .fa-reddit {
  background: #ff5700;
  color: white;
}

.social-icon-ten .fa-rss {
  background: #ff6600;
  color: white;
}

/*
================================== 
6.tab style
==================================
*/
.tab-list {
  position: relative;
  margin-top: 30px;
}

.tab-list li {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.tab-list li a {
  position: relative;
  color: #1b1c41;
  font-size: 17px;
  transition: 0.5s ease;
}

.tab-list li a.active-btn {
  color: var(--rv-primary);
  transition: 0.5s ease;
}

.tab-content .tab-item {
  position: relative;
  display: none;
  top: 20px;
  transition: 0.7s ease;
}

.tab-content .tab-item.active-tab {
  display: block;
  top: 0;
}

.tab-content h2 {
  color: #222;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tab-content .text {
  color: #aaaaaa;
  max-width: 900px;
}

/*
================================== 
7.accordion style 
==================================
*/
.accordion-box {
  position: relative;
}

.accordion-box .block {
  position: relative;
  padding-top: 0px;
  border: 1px solid #f2f2f2;
  margin-bottom: 11px;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  line-height: 1.2em;
  color: #222222;
  font-weight: 500;
  padding: 20px 30px 20px;
  padding-left: 50px;
  transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  font-family: "Montserrat", sans-serif;
}

.accordion-box .block .acc-btn.active {
  background: #f7f7f7;
}

.accordion-box .block .icon-outer {
  position: absolute;
  left: 20px;
  top: 36px;
  font-size: 25px;
  color: #222222;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.accordion-box .block .icon-outer .icon {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  font-size: 18px;
  color: #222222;
  line-height: 1em;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.accordion-box .block .icon-outer .icon_plus {
  opacity: 1;
}

.accordion-box .block .icon-outer .icon_minus {
  opacity: 0;
  color: var(--rv-primary);
  font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer .icon_minus {
  opacity: 1;
}

.accordion-box .block .acc-btn.active .icon-outer .icon_plus {
  opacity: 0;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: #11da61;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 0 20px;
  padding-left: 50px;
}

.accordion-box .block .acc-content .content-text {
  padding-bottom: 6px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .content {
  position: relative;
  font-size: 14px;
  padding: 15px 0px 0px 0px;
}

.accordion-box .block .content p {
  margin-bottom: 20px;
  line-height: 1.8em;
  font-size: 16px;
  color: #848484;
  font-weight: 300;
}

.accordion-box .block .content p:last-child {
  margin-bottom: 0px;
}

/*Accordian Style Two*/
.accordion-box.style-two {
  border: 0px;
}

.accordion-box.style-two .block {
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--rv-white);
}

.accordion-box.style-two .block .acc-btn {
  color: var(--rv-black);
}

.accordion-box.style-two .block .content p {
  color: #adadad;
  font-size: 16px;
  line-height: 1.9em;
}

/*Accordian Style Three*/
.accordion-box.style-three {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 70px;
}

.accordion-box.style-three .block {
  padding-left: 0px;
}

.accordion-box.style-three .block .acc-btn {
  font-weight: 400;
}

.accordion-box.style-three .block .icon-outer {
  right: 0px;
}

/*Accordian Style Four*/
.accordion-box.style-four {
  border: 0px;
}

.accordion-box.style-four .block {
  border: 0px;
  padding: 0px;
  margin-bottom: 10px;
}

.accordion-box.style-four .block .acc-btn {
  padding: 13px 20px;
  background-color: #f7f7f7;
}

.accordion-box.style-four .block .icon-outer .icon {
  font-size: 20px;
  margin-top: -20px;
}

.accordion-box.style-four .block .icon-outer {
  right: 30px;
  top: 36px;
}

.accordion-box.style-four .block .acc-btn.active .icon-outer .icon_plus {
  opacity: 1;
  transform: rotate(90deg);
}

.accordion-box.style-four .block .content {
  padding: 20px 20px;
  border: 1px solid #f4f4f4;
  border-top: 0px;
}

/*Accordian Style Five*/
.accordion-box.style-five {
  position: relative;
  padding: 0px 30px;
  border: 0px;
  background-color: #f7f7f7;
}

.accordion-box.style-five .block {
  padding: 0px 0px;
}

.accordion-box.style-five .block:last-child .acc-content {
  padding-bottom: 25px;
}

.accordion-box.style-five .block .acc-btn {
  padding-right: 0px;
  padding-left: 40px;
  padding-top: 19px;
  padding-bottom: 19px;
}

.accordion-box.style-five .block .acc-btn.active {
  color: var(--rv-primary);
}

.accordion-box.style-five .block .acc-btn.active .icon-outer {
  background-color: var(--rv-primary);
}

.accordion-box.style-five .block .icon-outer {
  left: 0px;
  top: 50%;
  right: auto;
  width: 20px;
  height: 20px;
  color: var(--rv-white);
  line-height: 21px;
  border-radius: 50%;
  text-align: center;
  margin-top: -10px;
  background-color: #cccccc;
}

.accordion-box.style-five .block .icon-outer .icon {
  left: 0px;
  top: 19px;
  width: 20px;
  height: 20px;
  color: var(--rv-white);
}

.accordion-box.style-five .block .content {
  background-color: var(--rv-white);
  margin-top: 0px;
  padding: 25px 40px;
}

/*
================================== 
8.page pagination
==================================
*/
.page_pagination {
  text-align: center;
  margin-bottom: 50px;
}

.page_pagination li {
  display: inline-block;
  margin: 0 4px;
}

.page_pagination li a {
  width: 55px;
  height: 55px;
  line-height: 55px;
  display: block;
  border: 1px solid rgba(229, 229, 229, 0.57);
  text-align: center;
  color: #848484;
  font-size: 18px;
}

.page_pagination li a.active,
.page_pagination li a:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
}

/*style tow*/
.page_pagination_two {
  text-align: center;
  margin-bottom: 50px;
}

.page_pagination_two li {
  display: inline-block;
  margin: 0 4px;
}

.page_pagination_two li a {
  width: 55px;
  height: 55px;
  line-height: 55px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(229, 229, 229, 0.57);
  text-align: center;
  color: #848484;
  font-size: 18px;
}

.page_pagination_two li a.active,
.page_pagination_two li a:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
}

/*style three*/
.page_pagination_three {
  text-align: center;
  margin-bottom: 50px;
}

.page_pagination_three li {
  display: inline-block;
  margin: 0 4px;
}

.page_pagination_three li a {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  display: block;
  text-align: center;
  background: #f7f8f9;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.page_pagination_three li a.active,
.page_pagination_three li a:hover {
  color: var(--rv-white);
  background: var(--rv-primary);
}

/*
================================== 
9.filter style
==================================
*/
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 40px;
}

.filter-tabs li {
  padding: 0;
  margin: 0px 0px 10px;
}

.filter-tabs li span {
  position: relative;
  color: #464646;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 8px 25px;
  background: #edeff2;
  font-family: "Poppins", sans-serif;
  display: block;
  cursor: pointer;
  transition: 0.5s ease;
}

.filter-tabs li:last-child span {
  border-right: 0px;
}

.filter-tabs.style-2 li span {
  color: var(--rv-white);
}

.filter-tabs li:hover span,
.filter-tabs li.active span {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
  transition: 0.5s ease;
}

.filter-tabs li span:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: var(--rv-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 55%, 0 0, 100% 0);
  clip-path: polygon(50% 55%, 0 0, 100% 0);
  opacity: 0;
  transition: 0.5s ease;
}

.filter-tabs li.active span:before {
  opacity: 1;
  bottom: -10px;
}

.filter-tabs li span i {
  font-size: 14px;
  margin-right: 5px;
}

/* style two */
.filter-tabs-two {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-tabs-two li {
  padding: 0;
  margin: 0px 7px 10px;
}

.filter-tabs-two li span {
  color: #464646;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 8px 25px;
  background: #e6e8eb;
  border-radius: 22px;
  font-family: "Poppins", sans-serif;
  display: block;
  cursor: pointer;
  transition: 0.5s ease;
}

.filter-tabs-two li:last-child span {
  border-right: 0px;
}

.filter-tabs-two li:hover span,
.filter-tabs-two li.active span {
  color: var(--rv-white);
  background: var(--rv-primary);
  border-color: var(--rv-primary);
  transition: 0.5s ease;
}

.filter-tabs-two li span i {
  font-size: 14px;
  margin-right: 5px;
}

.mix {
  display: none;
}

/*
================================== 
10.video box
==================================
*/
.video-image-box .image {
  position: relative;
}

.video-image-box img {
  display: block;
  width: 100%;
}

.video-image-box .image .overlay-link {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  display: flex;
  height: 100%;
  font-size: 50px;
  align-items: center;
  justify-content: center;
  color: var(--rv-primary);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.video-image-box .image .overlay-link:hover {
  background: rgba(0, 0, 0, 0.3);
}

.video-image-box .image .overlay-link .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  background: var(--rv-white);
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  font-size: 29px;
  color: var(--rv-primary);
  padding-left: 5px;
}

/* video-box */
.default-video-box {
  margin-bottom: 40px;
}

.default-video-box a {
  color: var(--rv-white);
  font-size: 60px;
  position: relative;
  display: inline-block;
}

/*
================================== 
11.sidebar widget
==================================
*/
.sidebar {
  position: relative;
}

.sidebar .sidebar-title h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar .sidebar-widget {
  margin-bottom: 40px;
  background: #f7f8f9;
  padding: 20px 20px 20px;
}

/* search widget */
.sidebar .search-widget .form-group {
  position: relative;
  margin: 0px;
}

.sidebar .search-widget .form-group input[type=text],
.sidebar .search-widget .form-group input[type=search] {
  position: relative;
  line-height: 26px;
  padding: 10px 50px 10px 20px;
  border: 1px solid var(--rv-white);
  background: var(--rv-white);
  font-style: italic;
  display: block;
  font-size: 16px;
  width: 100%;
  height: 60px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-widget .form-group input:focus {
  border-color: var(--rv-primary);
}

.sidebar .search-widget .form-group button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 60px;
  width: 60px;
  display: block;
  font-size: 16px;
  color: var(--rv-white);
  line-height: 100%;
  background: var(--rv-primary);
  font-weight: normal;
  cursor: pointer;
}

/* category widget */
.sidebar .category-widget li {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dadcdf;
}

.sidebar .category-widget li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}

.sidebar .category-widget li.active a {
  background: var(--rv-white);
  border-left: 3px solid var(--rv-primary);
  padding: 13px 25px;
  margin-bottom: 8px;
}

.sidebar .category-widget li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: block;
  color: #222;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .category-widget li a span {
  float: right;
}

.sidebar .category-widget li a:hover {
  color: var(--rv-primary);
}

/* link widget */
.sidebar .category-widget-two {
  position: relative;
}

.sidebar .category-widget-two li {
  position: relative;
  line-height: 24px;
}

.sidebar .category-widget-two li a {
  position: relative;
  display: block;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  padding: 5px 0px 5px 20px;
}

.sidebar .category-widget-two li a:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  left: 0;
  width: 20px;
  line-height: 24px;
  position: absolute;
  color: #777777;
}

.sidebar .category-widget-two li a:hover {
  color: var(--rv-primary);
}

/* news widget */
.sidebar .news-widget .post {
  position: relative;
  font-size: 14px;
  color: #666666;
  padding: 0px 0px;
  min-height: 75px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dadcdf;
}

.sidebar .news-widget .post:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}

.sidebar .news-widget .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
}

.sidebar .news-widget .post:hover .post-thumb img {
  opacity: 0.7;
}

.sidebar .news-widget .post .post-thumb img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .news-widget .post .text {
  position: relative;
  top: -4px;
  font-size: 16px;
  margin: 0px 0px 0px;
  font-weight: 500;
  color: #222;
  line-height: 1.4em;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.sidebar .news-widget .post .text a {
  color: #333;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.sidebar .news-widget .post a,
.sidebar .news-widget .post a:hover {
  color: var(--rv-primary);
}

.sidebar .news-widget .post-info {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

/* tag widget */
.sidebar .tag-widget a {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 7px 11px 7px;
  margin: 0px 6px 10px 0px;
  color: #929292;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  border: 1px solid var(--rv-white);
  background: var(--rv-white);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
}

.sidebar .tag-widget a:hover {
  border-color: var(--rv-primary);
  background-color: var(--rv-primary);
  color: var(--rv-white);
}

/* gallery widget */
.sidebar .gallery-widget .image {
  position: relative;
  float: left;
  width: 33.333%;
  padding: 0px 10px 10px 0px;
}

.sidebar .gallery-widget .image img {
  position: relative;
  display: block;
  width: 100%;
}

/* pricefilter widget */
.sidebar .pricefilter-widget .val-box {
  position: relative;
  display: inline-block;
  margin: 7px 5px 7px 0px;
  line-height: 24px;
  font-size: 14px;
  background: #d9dfe6;
  padding: 9px 10px;
  width: 70px;
  color: #222;
  text-align: center;
}

.sidebar .pricefilter-widget button {
  position: relative;
  display: inline-block;
  line-height: 24px;
  border: 1px solid var(--rv-primary);
  padding: 8px 25px;
  background: var(--rv-primary);
  color: var(--rv-white);
  font-weight: 800;
  border-radius: 3px;
  margin-top: 5px;
  float: right;
}

.sidebar .pricefilter-widget .noUi-connect {
  background: #909090 !important;
}

.sidebar .pricefilter-widget .noUi-background {
  background: #d9dfe6 !important;
  border: 0px;
}

.sidebar .pricefilter-widget .noUi-handle {
  background: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: none;
  border: 4px solid var(--rv-primary);
  cursor: pointer;
}

.sidebar .rangeslider-widget .form-group {
  margin-bottom: 0px;
}

/* product widget */
.sidebar .product-widget .single-product {
  position: relative;
  font-size: 16px;
  margin-bottom: 15px;
  min-height: 88px;
  padding: 7px 0px 12px 100px;
  color: #cccccc;
}

.sidebar .product-widget .single-product .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 88px;
  height: 88px;
}

.sidebar .product-widget .single-product .post-thumb img {
  width: 100%;
  display: block;
}

.sidebar .product-widget .single-product h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0px 0px 4px;
  line-height: 1.4em;
  color: #1c1c1c;
}

.sidebar .product-widget .single-product h4 a {
  color: #272727;
}

.sidebar .product-widget .single-product a:hover,
.sidebar .product-widget .single-product a:hover {
  color: var(--rv-primary);
}

.sidebar .product-widget .single-product .rating {
  font-size: 12px;
  color: var(--rv-primary);
  letter-spacing: 0px;
}

.sidebar .product-widget .product-price {
  font-size: 16px;
  font-weight: 700;
  color: #777777;
}

.sidebar .product-widget .strike-through {
  color: #9e9e9e;
  padding-left: 10px;
}

/* Quote Widget */
.sidebar .quote-widget {
  position: relative;
}

.sidebar .quote-widget .inner-box {
  position: relative;
  text-align: center;
  padding: 10px 0 20px;
  background: #f7f8f9;
}

.sidebar .quote-widget .inner-box h2 {
  position: relative;
  color: #181818;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.sidebar .quote-widget .inner-box h2:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0px;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  margin-left: -25px;
  background-color: var(--rv-primary);
}

.sidebar .quote-widget .inner-box .text {
  position: relative;
  color: #848484;
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 20px;
}

/*Brouchers Widget*/
.sidebar .brouchers {
  position: relative;
}

.sidebar .brouchers li {
  position: relative;
  margin-bottom: 6px;
}

.sidebar .brouchers li a {
  position: relative;
  padding: 8px 0px 12px 0px;
  color: #666666;
  font-size: 17px;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-bottom: 1px dashed #e3e3e3;
}

.sidebar .brouchers li a span {
  margin-right: 5px;
  color: #666666;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .brouchers li a .download-icon {
  position: absolute;
  right: 0px;
  top: 8px;
  color: #666666;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .brouchers li a:hover {
  color: var(--rv-primary);
}

.sidebar .brouchers li a:hover .icon,
.sidebar .brouchers li a:hover .download-icon {
  color: var(--rv-primary);
}

/*** 

====================================================================
  Main Header style
====================================================================

***/
.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

/*
=================================================
  header top
=================================================
*/
.header-top {
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #d0d1d6;
}

.header-top.grey {
  background: #edeff2;
}

.header-top.black-bg {
  background: #222;
}

.header-top.transparent {
  border: 0px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-top.transparent .links-nav li {
  color: var(--rv-white);
  border: 0px !important;
}

.header-top.transparent .links-nav li .fa {
  color: var(--rv-white);
}

.header-top.transparent .social-links a {
  color: var(--rv-white);
  border: 0px !important;
}

.header-top a {
  color: var(--rv-white);
  transition: all 300ms ease;
}

.header-top .links-nav li {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: inline-block;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 1px solid #d0d1d6;
}

.header-top.light .links-nav li {
  color: #d4dae3;
  border-color: rgba(255, 255, 255, 0.3);
}

.header-top .links-nav li:last-child {
  border-right: 1px solid #d0d1d6;
}

.header-top.light .links-nav li:last-child {
  border-color: rgba(255, 255, 255, 0.3);
}

.header-top .top-right .links-nav li {
  margin-right: 0px;
  margin-left: 25px;
}

.header-top .links-nav li a {
  position: relative;
  line-height: 26px;
  font-size: 13px;
  color: var(--rv-black);
  font-weight: 400;
  transition: 0.5s;
}

.header-top.black-bg .links-nav li a {
  color: var(--rv-white);
}

.header-top .links-nav li a:hover {
  color: var(--rv-primary);
  transition: 0.5s;
}

.header-top .links-nav li .fa {
  padding-right: 8px;
  font-size: 16px;
  color: var(--rv-primary);
}

.header-top .link-btn,
.header-top .text,
.header-top .social-links {
  display: inline-block;
}

.header-top .text,
.header-top .link-btn {
  margin-left: 25px;
}

.header-top .text {
  color: #111;
}

.header-top .social-links a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: #111;
  padding: 0px 16px;
  line-height: 45px;
  border-left: 1px solid #d0d1d6;
}

.header-top.light .social-links a {
  color: #d4dae3;
}

.header-top .social-links a:last-child {
  border-right: 1px solid #d0d1d6;
}

.header-top.light .social-links a,
.header-top.light .social-links a:last-child {
  border-color: rgba(255, 255, 255, 0.3);
}

.header-top a:hover {
  color: var(--rv-primary);
}

/* header top two */
.header-top-two {
  position: relative;
}

.header-top-two .top-content-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-top-two .top-content-area:before {
  position: absolute;
  content: "";
  left: 20%;
  bottom: 0px;
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-top-two .top-content-area:after {
  position: absolute;
  content: "";
  right: 25%;
  bottom: 0px;
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-top-two .main-logo {
  margin: 8px 0;
}
.header-top-two .main-logo .navbar-brand img {
    height: 100px;
}
.header-top-two .links-nav li {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: inline-block;
  line-height: 45px;
}

.header-top-two .links-nav li a {
  position: relative;
  line-height: 26px;
  font-size: 13px;
  color: var(--rv-black);
  font-weight: 400;
  transition: 0.5s;
}

.header-top-two.black-bg .links-nav li a {
  color: var(--rv-white);
}

.header-top-two .links-nav li a:hover {
  color: var(--rv-primary);
  transition: 0.5s;
}

.header-top-two .links-nav li .fa {
  padding-right: 8px;
  font-size: 16px;
  color: var(--rv-primary);
}

.header-top-two .social-links a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: #111;
  padding: 0px 16px;
  line-height: 45px;
}

.header-top-two a:hover {
  color: var(--rv-primary);
}

/* header lower */
.header-info {
  padding: 31px 0;
}

.header-info .main-logo a {
  display: block;
  line-height: inherit;
  height: inherit;
  padding: 0;
}

.header-contact-info ul li {
  display: inline-block;
  float: left;
  margin-right: 25px;
  padding-left: 50px;
  position: relative;
}

.header-contact-info ul li:last-child {
  margin-right: 0;
  border-right: none;
  padding-right: 0;
}

.header-contact-info ul li .iocn-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #d3d4d8;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: var(--rv-primary);
  font-size: 27px;
}

.header-contact-info ul li .iocn-holder span.top-envelop {
  font-size: 40px;
}

.header-contact-info ul li:hover .iocn-holder span {
  color: #2b2c36;
}

.header-contact-info ul li .text-holder {
  padding-left: 10px;
}

.header-contact-info ul li .text-holder h6 {
  color: #151515;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 5px;
}

.header-contact-info ul li .text-holder p {
  color: #9f9f9f;
  font-size: 17px;
  font-weight: 400;
  margin: 0;
  line-height: 16px;
}

/*Sticky Header*/
.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  background: var(--rv-white);
  z-index: 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header .logo {
  padding: 5px 0px;
}
.sticky-header .logo a img {
  height: 70px;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -op-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -op-animation-duration: 500ms;
  animation-duration: 500ms;
  -op-animation-timing-function: linear;
  animation-timing-function: linear;
  -op-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header.fixed-header .main-menu {
  padding-top: 0px;
}

.main-header .header-upper {
  position: relative;
  z-index: 5;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .header-upper .logo img {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.main-header .logo-outer {
  position: relative;
  z-index: 25;
  padding: 34px 0px;
}

.main-header .logo-outer .logo img {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.main-header .header-upper .upper-right {
  position: relative;
}

.main-header .header-info {
  position: relative;
  top: 0px;
  width: 100%;
  z-index: 5;
}

.main-header .nav-outer {
  position: relative;
}

.main-menu {
  position: relative;
  float: left;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
}

.main-header .sticky-header .main-menu .navigation > li {
  margin: 0px;
  border: 0px;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #262626;
  line-height: 30px;
  font-weight: 600;
  opacity: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 18px 24px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li.current > a {
  color: var(--rv-primary) !important;
}

.header-upper.dark .main-menu .navigation > li > a {
  color: var(--rv-white);
}

.main-menu .navigation > li:first-child > a {
  padding-left: 0px;
}

.main-menu .navigation > li.dropdown:before {
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #1d1d1d;
  right: 5px;
  top: 50%;
  margin-top: -13.5px;
  content: "\f107";
  transition: all 0.25s ease;
}

.header-upper.dark .main-menu .navigation > li.dropdown:before {
  color: var(--rv-white);
}

.main-menu .navigation > li.current:before {
  color: #cc8a1d !important;
}

.main-header .sticky-header .main-menu .navigation > li.current a {
  color: var(--rv-secondary) !important;
}
.main-header .sticky-header .main-menu .navigation > li > a {
  color: #181818;
  padding: 26px 25px !important;
  line-height: 30px;
  font-size: 15px;
  font-weight: 600;
  min-height: 0px;
  background: none;
  border: 0px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a {
  color: var(--rv-primary);
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: auto;
}

.main-header .sticky-header .main-menu .navigation > li:hover > a,
.main-header .sticky-header .main-menu .navigation > li.current > a,
.main-header .sticky-header .main-menu .navigation > li.current-menu-item > a {
  color: var(--rv-primary);
}

.main-menu .navigation > li:hover > a:after {
  opacity: 1;
}

.main-header .sticky-header .main-menu .navigation > li > ul:before {
  display: none;
}

.main-header .sticky-header .main-menu .navigation > li > ul {
  top: 100% !important;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 270px;
  padding: 20px 0px;
  z-index: 100;
  display: none;
  background: var(--rv-white);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0px 35px;
}

.main-menu .navigation > li > ul > li.dropdown:before {
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #1d1d1d;
  right: 12px;
  top: 50%;
  margin-top: -13.5px;
  content: "\f105";
  transition: all 0.25s ease;
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #262626;
  text-align: left;
  padding-right: 0px !important;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: "Montserrat", sans-serif;
}

.main-menu .navigation > li > ul > li > a:hover {
  color: var(--rv-black);
  background: var(--rv-primary);
  padding-left: 20px;
}

.main-menu .navigation > li > ul > li ul {
  position: absolute;
  left: 100%;
  top: 0%;
  padding: 20px 0;
  width: 250px;
  z-index: 100;
  display: none;
  background: var(--rv-white);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul > li > ul:before {
  position: absolute;
  content: "";
  right: 100%;
  top: 0px;
  width: 20px;
  height: 100%;
}

.main-menu .navigation > li > ul > li > ul li {
  position: relative;
  width: 100%;
  padding: 0px 35px;
}

.main-menu .navigation > li > ul > li > ul li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #262626;
  text-align: left;
  padding-right: 0px !important;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li a:hover {
  color: var(--rv-white);
  background: #e5202d;
  padding-left: 20px;
}

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
}

.main-menu .navigation li > ul > li.dropdown:hover ul {
  visibility: visible;
  opacity: 1;
  left: 100%;
  top: 0%;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 0;
  width: 50px;
  height: 43px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 16px;
  line-height: 43px;
  color: var(--rv-white);
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .outer-box {
  position: relative;
  float: left;
  margin-left: 15px;
  margin-top: 7px;
}

.navbar-header {
  display: none;
}

/* ====================== search box btn ===========================*/
.main-header .search-box-outer {
  position: relative;
  left: 3px;
  display: inline-block;
  padding: 3px 0;
  padding-left: 30px;
}

.main-header .search-box-btn {
  position: relative;
  font-size: 20px;
  line-height: 28px;
  color: #222;
  cursor: pointer;
  display: inline-block;
  padding: 7px 0px 6px;
  background: transparent;
  border-radius: 50px 0px 0px 50px;
}

.main-header .header-upper.dark .search-box-btn {
  color: var(--rv-white);
}

.main-header .search-box-outer .dropdown-menu {
  top: 15px !important;
  padding: 0px;
  width: 280px;
  border-radius: 0px;
  background: #f7f8f9;
}

.main-header .search-panel .form-container {
  padding: 25px 20px;
}

.main-header .search-panel .form-group {
  position: relative;
  margin: 0px;
}

.main-header .search-panel input[type=text],
.main-header .search-panel input[type=search],
.main-header .search-panel input[type=password],
.main-header .search-panel select {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 9px 50px 9px 15px;
  height: 44px;
  border: 1px solid var(--rv-white);
  border-radius: 3px;
  background: var(--rv-white);
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
  border-color: var(--rv-primary);
}

.main-header .search-panel .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  height: 42px;
  text-align: center;
  color: var(--rv-primary);
  background: var(--rv-white);
  font-size: 14px;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

/* header-upper style two */
.header-upper.style-two .main-menu .navigation > li:first-child > a {
  padding-left: 40px;
}

.main-header .header-upper.style-two {
  margin-bottom: 0px;
}

.main-header .header-upper.style-two .outer-box {
  margin-top: 0px;
}

.main-header .header-upper.style-two .outer-box .theme-btn {
  padding: 19px 40px;
}

.hmx-35 {
  margin-top: -35px;
  top: 35px;
}

/* header upper style three */
.main-header .header-upper.style-three .logo-outer {
  padding: 32.5px 0;
}

.header-upper.style-three .main-menu .navigation > li > a {
  padding: 45px 24px;
}

.main-header .header-upper.style-three .outer-box {
  margin: 32px 0;
  margin-left: 15px;
}

.main-header .header-upper.style-three .search-box-outer {
  border-left: 1px solid #efefef;
}

/* header upper style four */
.main-header .header-upper.style-four {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
}

.main-header .header-upper.style-four .box-menu-bg {
  background-color: var(--rv-white);
  padding: 0 30px;
}

.main-header .header-upper.style-four .logo-outer {
  padding: 17.5px 0;
}

.header-upper.style-four .main-menu .navigation > li > a {
  padding: 30px 24px;
}

.main-header .header-upper.style-four .outer-box {
  margin: 21px 0;
  margin-left: 15px;
}

.main-header .header-upper.style-four .search-box-outer {
  border-left: 1px solid #efefef;
}

/* header upper style five */
.main-header .header-upper.style-five {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
}

.main-header .header-upper.style-five .box-menu-bg {
  background-color: #e5202d;
  padding: 0 30px;
}

.main-header .header-upper.style-five .logo-outer {
  padding: 17.5px 0;
}

.header-upper.style-five .main-menu .navigation > li > a {
  padding: 30px 24px;
  color: #fff !important;
}

.main-header .header-upper.style-five .outer-box {
  margin: 21px 0;
  margin-left: 15px;
}

.main-header .header-upper.style-five .search-box-outer {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.main-header .header-upper.style-five .main-menu .navigation > li.dropdown:before {
  color: var(--rv-white);
}

.main-header .header-upper.style-five .search-box-btn {
  color: var(--rv-white);
}

.main-header .header-upper.style-five .main-menu .navigation > li.current:before {
  color: #fff !important;
}

/* header upper style six */
.main-header .header-upper.style-six {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .header-upper.style-six .logo-outer {
  padding: 17.5px 0;
}

.header-upper.style-six .main-menu .navigation > li > a {
  padding: 30px 24px;
  color: var(--rv-white);
}

.main-header .header-upper.style-six .outer-box {
  margin: 21px 0;
  margin-left: 15px;
}

.main-header .header-upper.style-six .search-box-outer {
  border-left: 1px solid rgba(255, 255, 255, 0.27);
}

.main-header .header-upper.style-six .main-menu .navigation > li.dropdown:before {
  color: var(--rv-white);
}

.main-header .header-upper.style-six .search-box-btn {
  color: var(--rv-white);
}

/* header upper style seven */
.main-header .header-upper.style-seven .outer-box {
  margin-top: 0px;
}

.main-header .header-upper.style-seven .outer-box .theme-btn {
  padding: 19px 40px;
}

/* header upper style eight */
.main-header .header-upper.style-eight {
  padding: 0 50px;
}

.main-header .header-upper.style-eight .social-links,
.main-header .header-upper.style-eight .links-nav {
  display: inline-block;
  vertical-align: middle;
  padding: 37px 0;
  padding-left: 50px;
  margin-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header .header-upper.style-eight .links-nav li {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: inline-block;
  line-height: 45px;
}

.main-header .header-upper.style-eight .links-nav li a {
  position: relative;
  line-height: 26px;
  font-size: 13px;
  color: var(--rv-white);
  font-weight: 400;
  transition: 0.5s;
}

.main-header .header-upper.style-eight .links-nav li a:hover {
  color: var(--rv-primary);
  transition: 0.5s;
}

.main-header .header-upper.style-eight .links-nav li .fa {
  padding-right: 8px;
  font-size: 16px;
  color: var(--rv-primary);
}

.main-header .header-upper.style-eight .social-links a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: var(--rv-white);
  padding: 0px 16px;
  line-height: 45px;
}

.main-header .header-upper.style-eight .social-links a:hover {
  color: var(--rv-primary);
}

.main-header .header-upper.style-eight .upper-left {
  float: left;
}

.main-header .header-upper.style-eight .upper-right {
  float: right;
}

.main-header .header-upper.style-eight .main-logo,
.main-header .header-upper.style-eight .nav-outer {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.main-header .header-upper.style-eight .nav-outer {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 30px;
}

.main-header .header-upper.style-eight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .header-upper.style-eight .main-logo {
  padding: 17.5px 0;
}

.header-upper.style-eight .main-menu .navigation > li > a {
  padding: 45px 24px;
  color: var(--rv-white);
}

.header-upper.style-eight .main-menu .navigation > li.dropdown:before {
  color: var(--rv-white);
}

/* header upper style ten */
.main-header .header-upper.style-ten {
  padding: 0 50px;
}

.main-header .header-upper.style-ten .social-links,
.main-header .header-upper.style-ten .links-nav {
  display: inline-block;
  vertical-align: middle;
  padding: 37px 0;
  padding-left: 50px;
  margin-left: 50px;
  border-left: 1px solid #e5e5e5;
}

.main-header .header-upper.style-ten .links-nav li {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: inline-block;
  line-height: 45px;
}

.main-header .header-upper.style-ten .links-nav li a {
  position: relative;
  line-height: 26px;
  font-size: 15px;
  color: #222;
  font-weight: 500;
  transition: 0.5s;
}

.main-header .header-upper.style-ten .links-nav li a:hover {
  color: var(--rv-primary);
  transition: 0.5s;
}

.main-header .header-upper.style-ten .links-nav li .fa {
  padding-right: 8px;
  font-size: 16px;
  color: var(--rv-primary);
}

.main-header .header-upper.style-ten .social-links a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: #222;
  padding: 0px 16px;
  line-height: 45px;
}

.main-header .header-upper.style-ten .social-links a:hover {
  color: var(--rv-primary);
}

.main-header .header-upper.style-ten .upper-left {
  float: left;
}

.main-header .header-upper.style-ten .upper-right {
  float: right;
}

.main-header .header-upper.style-ten .main-logo,
.main-header .header-upper.style-ten .nav-outer {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.main-header .header-upper.style-ten .nav-outer {
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}

.main-header .header-upper.style-ten {
  position: relative;
}

.main-header .header-upper.style-ten .main-logo {
  padding: 17.5px 0;
}

.header-upper.style-ten .main-menu .navigation > li > a {
  padding: 45px 24px;
}

/* =============== Mobile menu ===================== */
/* header upper style eight */
@media only screen and (max-width: 1600px) {
  /* header upper eight */
  .main-header .header-upper.style-eight .upper-right,
  .main-header .header-upper.style-eight .upper-right {
    width: 100%;
  }
  .main-header .header-upper.style-eight .upper-right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .main-header .header-upper.style-eight .social-links,
  .main-header .header-upper.style-eight .links-nav {
    padding: 5px 0;
    border: 0px;
    margin-left: 0px;
  }
  /* header upper ten */
  .main-header .header-upper.style-ten .upper-right,
  .main-header .header-upper.style-ten .upper-right {
    width: 100%;
  }
  .main-header .header-upper.style-ten .social-links,
  .main-header .header-upper.style-ten .links-nav {
    padding: 5px 0;
    border: 0px;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-header .search-box-outer .dropdown-menu {
    left: inherit !important;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .fixed-header .sticky-header {
    display: none !important;
  }
  .main-menu .navbar-header {
    position: relative;
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    top: 0px;
    z-index: 12;
  }
  .main-header .logo-outer {
    padding: 15px 0 0;
    text-align: center;
    width: 100%;
  }
  .main-header .header-upper .upper-right {
    position: relative;
    width: 100%;
    padding-top: 0px;
  }
  .main-header .main-menu {
    width: 100%;
  }
  .main-menu .navbar-header .navbar-toggle {
    display: inline-block;
    z-index: 7;
    float: none;
    padding: 4px 5px;
    cursor: pointer;
    margin: 10px 0px 10px 0px;
    border-radius: 0px;
    background: var(--rv-white);
  }
  .main-menu .navbar-header .navbar-toggle .icon-bar {
    background: var(--rv-primary);
    height: 2px;
    width: 29px;
    display: block;
    margin: 7px 5px;
  }
  .main-menu .collapse {
    max-height: 310px;
    overflow: auto;
    float: none;
    width: 100%;
    padding: 0px 0px 0px;
    border: none;
    margin: 0px;
    border-radius: 3px;
  }
  .main-menu .navbar-collapse > .navigation {
    float: none !important;
    margin: 0px !important;
    width: 100% !important;
    border-top: none;
  }
  .main-menu .navbar-collapse > .navigation > li {
    margin: 0px !important;
    float: none !important;
    width: 100%;
  }
  .main-menu .navigation > li.dropdown:before {
    display: none;
  }
  .main-menu .navigation > li > a,
  .main-menu .navigation > li > ul:before {
    border: none;
  }
  .main-menu .navbar-collapse > .navigation > li > a {
    padding: 10px 10px !important;
    border: none !important;
  }
  .main-menu .navigation li.dropdown > a:after,
  .main-menu .navigation > li.dropdown > a:before,
  .main-menu .navigation > li > ul > li > a::before,
  .main-menu .navigation > li > ul > li > ul > li > a::before {
    color: #ffffff !important;
    right: 15px;
    font-size: 16px;
    display: none !important;
  }
  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    position: relative;
    border: none;
    float: none;
    visibility: visible;
    opacity: 1;
    display: none;
    margin: 0px;
    padding: 0px;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    background: rgba(29, 34, 46, 0.8509803922);
    border-radius: 0px;
    transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    -moz-transition: none !important;
    box-shadow: none !important;
  }
  .main-menu .navbar-collapse > .navigation > li > ul,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    /* border-top:1px solid rgba(255,255,255,1) !important; */
  }
  .main-menu .navbar-collapse > .navigation > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    opacity: 1 !important;
    top: 0px !important;
    padding-top: 0;
    padding-bottom: 0;
    left: 0px !important;
    visibility: visible !important;
    border-bottom: none;
    padding-left: 0px !important;
  }
  .main-menu .navbar-collapse > .navigation > li:first-child {
    border: none;
  }
  .main-menu .navbar-collapse > .navigation > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
    padding: 11px 25px !important;
    line-height: 22px;
    color: var(--rv-white);
    text-align: left;
    min-height: 0px;
  }
  .main-menu .navbar-collapse > .navigation > li > a {
    padding-left: 0px !important;
  }
  .main-menu .navbar-collapse > .navigation > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
  .main-menu .navbar-collapse > .navigation > li.current > a,
  .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
    color: #ffffff !important;
  }
  .main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn {
    display: block;
  }
  .main-menu .navbar-collapse > .navigation li.dropdown:after,
  .main-menu .navigation > li > ul:before,
  .main-header .info-box:after,
  .services-section-two .owl-dots {
    display: none !important;
  }
  /* dark menu */
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    background-color: var(--rv-white);
  }
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
    color: #222 !important;
  }
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li:hover > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li.current > a,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
    color: #222 !important;
  }
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li,
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li {
    border-color: #f1f1f1 !important;
  }
  .main-header .header-upper.dark-color .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    color: #222;
    border-color: #f1f1f1;
  }
  /* search outer */
  .main-header .outer-box {
    position: absolute;
    right: 0px;
    top: 4px;
    margin-top: 0px;
    z-index: 15;
  }
  /* header upper style two */
  .main-header .header-upper.style-two .outer-box {
    top: 0px;
  }
  .main-header .header-upper.style-two .outer-box .theme-btn {
    padding: 17px 25px;
  }
  .header-upper.style-two .main-menu .navigation > li > a {
    padding-left: 30px !important;
  }
  /* header upper style three */
  .main-header .header-upper.style-three .outer-box {
    margin: 0px;
    margin-left: 15px;
  }
  .main-header .header-upper.style-three .logo-outer {
    padding: 20px 0 0;
  }
  /* header upper style four */
  .main-header .header-upper.style-four .outer-box {
    margin: 0px;
    margin-left: 15px;
  }
  .main-header .header-upper.style-four .logo-outer {
    padding: 20px 0 0;
  }
  /* header upper style five */
  .main-header .header-upper.style-five .outer-box {
    margin: 0px;
    margin-left: 15px;
  }
  .main-header .header-upper.style-five .logo-outer {
    padding: 20px 0 0;
  }
  .main-header .header-upper.style-five .main-menu .navbar-collapse > .navigation > li > ul,
  .main-header .header-upper.style-five .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
    background-color: #e5202d;
  }
  /* header upper style six */
  .main-header .header-upper.style-six .outer-box {
    margin: 0px;
    margin-left: 15px;
  }
  .main-header .header-upper.style-six .logo-outer {
    padding: 20px 0 0;
  }
  .main-header .header-upper.style-six {
    background-color: #151412;
  }
  /* header upper seven */
  .main-header .header-upper.style-seven .outer-box {
    top: 0px;
  }
  .main-header .header-upper.style-seven .outer-box .theme-btn {
    padding: 17px 25px;
  }
  /* header upper eight */
  .main-header .header-upper.style-eight {
    position: relative;
    padding: 0px;
    background-color: #151412;
  }
  .main-header .header-upper.style-eight .upper-left {
    float: none;
  }
  .main-header .header-upper.style-eight .main-logo,
  .main-header .header-upper.style-eight .nav-outer {
    width: 100%;
  }
  .main-header .header-upper.style-eight .nav-outer {
    padding-left: 0px;
    border-left: 0px;
  }
  .main-menu .header-upper.style-eight .navbar-header .navbar-toggle {
    margin: 0px 0px 25px 0px;
  }
  /* header upper ten */
  .main-header .header-upper.style-ten {
    padding: 0px;
  }
  .main-header .header-upper.style-ten .upper-left {
    float: none;
  }
  .main-header .header-upper.style-ten .main-logo,
  .main-header .header-upper.style-ten .nav-outer {
    width: 100%;
    padding: 0px;
  }
  .main-header .header-upper.style-ten .nav-outer {
    padding-left: 0px;
    border-left: 0px;
  }
  .main-menu .header-upper.style-ten .navbar-header .navbar-toggle {
    margin: 0px 0px 25px 0px;
  }
  /* end header upper */
  .main-header .search-box-outer .dropdown-menu {
    top: 7px !important;
  }
  /* header info */
  .header-contact-info ul li {
    margin-top: 20px;
  }
  .main-header .header-info .float-left {
    width: 100%;
    text-align: center;
  }
  .main-header .header-info {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-top .top-left,
  .header-top .top-right {
    width: 100%;
    text-align: center;
  }
  .header-top .links-nav li {
    border: 0px !important;
    line-height: 26px;
  }
  .header-top .links-nav {
    padding: 20px 0;
  }
  .header-top .social-links a {
    border-top: 1px solid #d0d1d6;
  }
}
/***

====================================================================
	Main Slider style
====================================================================

***/
/* style two */
.main-slider2 {
  min-height: 600px;
}

.main-slider2 .container-fluid {
  padding: 0px;
}

.main-slider2 .slider-wrapper {
  position: relative;
}

.main-slider2 .slider-wrapper .image img {
  min-height: 500px;
  width: 100%;
  max-width: none;
}

.main-slider2 .slider-caption {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.main-slider2 .slider-caption .inner-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.main-slider2 .slider-caption-bg {
  max-width: 570px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px;
}

.main-slider2 h1 {
  position: relative;
  color: var(--rv-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 20px;
}

.main-slider2 .dark h1 {
  color: #222;
}

.main-slider2 h2 {
  position: relative;
  color: var(--rv-white);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2em;
  font-family: "Montserrat", sans-serif;
}

.main-slider2 .dark h2 {
  color: #222;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 42px;
}

.main-slider2 .link-btn {
  padding-top: 30px;
  margin: 0 -10px;
}

.main-slider2 .theme-btn {
  margin: 0 10px 20px;
}

.main-slider2 .text {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  max-width: 600px;
  color: var(--rv-white);
  line-height: 1.7em;
  margin-bottom: 30px;
}

.main-slider2 .dark .text {
  color: #222;
  margin-bottom: 0;
}

.main-slider2 .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.main-slider2.style-two .slide-overlay {
  background-color: rgba(20, 22, 26, 0.1);
}

/* slide animation */
.main-slider2 .owl-item .slider-caption * {
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  color: var(--rv-white);
  animation-fill-mode: both;
}

.main-slider2 .owl-item.active .slider-caption h1 {
  animation-delay: 0.5s;
  animation-name: fadeInDown;
}

.main-slider2 .owl-item.active .slider-caption h2 {
  animation-delay: 0.9s;
  animation-name: fadeIn;
}

.main-slider2 .owl-item.active .slider-caption .text {
  animation-delay: 0.5s;
  animation-name: fadeIn;
}

.main-slider2 .owl-item .slider-caption .theme-btn {
  color: var(--rv-white);
}

.main-slider2 .owl-item.active .slider-caption .link-btn {
  animation-delay: 1s;
  animation-name: fadeInUp;
}

.main-slider2 .owl-item.active .slider-caption .slider-caption-bg {
  animation-delay: 1s;
  animation-name: fadeInDown;
}

/* slide nav */
.slide-nav .owl-nav {
  padding: 0px;
  top: 50%;
  transform: translateY(-50%) scale(0.97);
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s ease;
}

.slide-nav:hover .owl-nav {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.slide-nav .owl-nav .owl-next,
.slide-nav .owl-nav .owl-prev {
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 56px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 24px;
  color: var(--rv-white);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.slide-nav .carousel-outer:hover .owl-nav .owl-next,
.slide-nav .carousel-outer:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
}

.slide-nav .owl-nav .owl-prev {
  left: 20px;
  float: left;
}

.slide-nav .owl-nav .owl-next {
  right: 20px;
  float: right;
}

.slide-nav .owl-nav .owl-next:hover,
.slide-nav .owl-nav .owl-prev:hover {
  color: var(--rv-primary);
  border-color: var(--rv-primary);
}

/***

==================================================================
	What We Do
==================================================================

***/
.what-we-do {
  position: relative;
}

.what-we-do:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/resource/map2.png) no-repeat center;
  left: 0;
  bottom: 0;
}

.what-we-do .text p {
  line-height: 29px;
}

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

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

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

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

.service-block-one .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}
.service-block-one .inner-box .image .bg-images img {
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

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

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

.service-block-one .icon-box {
  color: var(--rv-white);
  margin-bottom: 20px;
}
.service-block-one .icon-box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-block-one h4 {
  font-size: 20px;
  width: 100%;
  font-weight: 600;
  color: var(--rv-white);
}

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

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

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

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

.service-block-one .inner-box .overlay-box h2 {
  position: relative;
  color: var(--rv-white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.service-block-one .inner-box .overlay-box h2 a {
  position: relative;
  color: var(--rv-white);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

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

.service-block-one .inner-box .overlay-box .text {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 25px;
}

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

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

/* services block three */
.service-block-three-area {
  position: relative;
  margin-top: -50px;
}

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

.service-block-three .inner-box {
  position: relative;
  margin-bottom: 30px;
  z-index: 99;
}

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

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

.service-block-three .inner-box .caption {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(../images/resource/shape-one.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 1s;
}

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

.service-block-three .icon-box {
  color: var(--rv-primary);
  font-size: 55px;
  margin-bottom: 30px;
}

.service-block-three h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

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

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

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

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

.service-block-three .inner-box .overlay-box h2 {
  position: relative;
  color: var(--rv-white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.service-block-three .inner-box .overlay-box h2 a {
  position: relative;
  color: var(--rv-white);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

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

.service-block-three .inner-box .overlay-box .text {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 25px;
}

.service-block-three .inner-box .overlay-box .read-more {
  position: relative;
  background: var(--rv-white);
  color: #222;
  font-weight: 600;
  padding: 11px 18px;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

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

/* service block four */
.service-block-four {
  position: relative;
}

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

.service-block-four .inner-box .image {
  position: relative;
}

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

.service-block-four .inner-box .lower-content {
  position: relative;
}

.service-block-four .icon-box {
  position: absolute;
  right: 30px;
  top: -1px;
  color: var(--rv-white);
  background: var(--rv-primary);
  width: 60px;
  height: 60px;
  font-size: 36px;
  line-height: 60px;
  text-align: center;
  transform: translateY(-50%);
  z-index: 9;
  transition: 0.5s ease;
}

.service-block-four .inner-box:hover .icon-box {
  color: var(--rv-primary);
  background-color: var(--rv-white);
}

.service-block-four .lower-content {
  position: relative;
  border: 1px solid #e5e5e5;
  padding: 30px;
}

.service-block-four .lower-content h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.service-block-four .lower-content h4 a {
  position: relative;
  color: #222222;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.service-block-four .lower-content .text {
  position: relative;
  margin-top: 15px;
  transition: 0.5s ease;
}

.service-block-four .lower-content:before {
  position: absolute;
  content: "";
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  display: block;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--rv-primary);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.service-block-four .inner-box:hover .lower-content:before {
  transform: scale(1);
  opacity: 1;
}

.service-block-four .inner-box:hover .lower-content .text,
.service-block-four .inner-box:hover .lower-content h4 a {
  color: var(--rv-white);
}

/* What we do three */
.what-we-do-three {
  position: relative;
}

.what-we-do-three:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/resource/map2.png) no-repeat center;
  left: 0;
  bottom: 0;
}

.what-we-do-three .owl-nav-style-one .owl-nav {
  position: absolute;
  transform: translate(-407px, -180px);
}

/* Services Block eight */
.service-block-eight {
  position: relative;
  margin-bottom: 30px;
  z-index: 99;
}

.service-block-eight .inner-box {
  position: relative;
  padding: 45px;
  background: var(--rv-white);
  border: 1px solid #e5e9f2;
  transition: 0.5s ease;
}

.service-block-eight .inner-box .icon-box {
  position: relative;
  color: var(--rv-primary);
  line-height: 50px;
  font-size: 52px;
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transition: 0.5s ease;
}

.service-block-eight .inner-box h4 {
  position: relative;
  font-size: 20px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.service-block-eight .inner-box h4 a {
  color: #222;
  transition: 0.5s ease;
}

.service-block-eight .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.service-block-eight .inner-box .text {
  position: relative;
  color: #848484;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6em;
  transition: 0.5s ease;
}

.service-block-eight .inner-box .read-more-btn {
  position: relative;
  margin-top: 10px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.service-block-eight .inner-box .read-more-btn span {
  position: relative;
  margin-left: 10px;
  top: 2px;
}

.service-block-eight .hvr-bounce-to-bottom:before {
  background-color: var(--rv-primary);
}

.service-block-eight .inner-box:hover .icon-box,
.service-block-eight .inner-box:hover h4 a,
.service-block-eight .inner-box:hover .text,
.service-block-eight .inner-box:hover .read-more-btn {
  color: var(--rv-white);
}

/* service nine */
.service-block-nine {
  position: relative;
}

.service-block-nine .image {
  position: relative;
  overflow: hidden;
}

.service-block-nine .image:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 8;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(27, 27, 27, 0.68);
}

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

.service-block-nine .image img {
  width: 100%;
  transition: 0.7s ease;
  transition-delay: 0.3s;
}

.service-block-nine .inner-box:hover .image img {
  transform: scale(1.2);
}

.service-block-nine .lower-content {
  position: relative;
  padding: 20px 0 18px;
  padding-left: 95px;
  min-height: 60px;
  margin-bottom: 30px;
  background: var(--rv-white);
}

.service-block-nine .lower-content:before {
  position: absolute;
  content: "";
  background-color: var(--rv-primary);
  height: 4px;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.5s ease;
}

.service-block-nine .inner-box:hover .lower-content:before {
  height: 100%;
}

.service-block-nine .inner-box .icon-box {
  position: absolute;
  left: 0;
  top: 30px;
  width: 95px;
  color: var(--rv-primary);
  font-size: 45px;
  line-height: 50px;
  text-align: center;
  transition: 0.5s ease;
}

.service-block-nine .inner-box .icon-box span {
  display: block;
}

.service-block-nine .inner-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 5px;
  padding-top: 10px;
  font-family: "Montserrat", sans-serif;
}

.service-block-nine .inner-box h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.service-block-nine .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.service-block-nine .inner-box .service-text {
  position: relative;
  font-size: 15px;
  color: #777777;
  transition: 0.5s ease;
}

.service-block-nine .inner-box:hover .icon-box,
.service-block-nine .inner-box:hover .service-text,
.service-block-nine .inner-box:hover h4 a {
  color: var(--rv-white);
}

/* Service section two */
.service-section-two {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.service-section-two:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-section-two .service-block-six .inner-box {
  border: 0px;
}

.service-section-two .owl-nav-style-one .owl-nav .owl-next,
.service-section-two .owl-nav-style-one .owl-nav .owl-prev {
  color: var(--rv-white);
}

/* service details */
.service-details {
  position: relative;
}

.service-details .content {
  padding: 0px 0 30px;
}

.service-details .content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .content p {
  margin-bottom: 0px;
}

.service-details .content p + p {
  margin-top: 15px;
}

/*** 

====================================================================
	Stacked Image Carousel
====================================================================

***/
.stacked-image-carousel {
  position: relative;
  margin-left: 40px;
}

.stacked-image-carousel:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  background: url(../images/resource/shape-two.png) no-repeat center;
  left: 0;
  bottom: -120px;
}

.stacked-image-carousel .slides {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 410px;
  margin-bottom: 160px;
}

.stacked-image-carousel .slide {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 0;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}

.stacked-image-carousel .slide .image-box {
  position: relative;
  -ms-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.stacked-image-carousel .slides .image-box img {
  display: block;
  width: 100%;
}

.stacked-image-carousel .slides .slide:nth-child(1).active + .slide {
  left: 0px !important;
  top: 0px !important;
}

.stacked-image-carousel .slides .slide:nth-child(3) {
  position: absolute;
  left: 200px;
  top: 130px;
  z-index: 2;
}

.stacked-image-carousel .slide.active,
.stacked-image-carousel .slides .slide:nth-child(3).active {
  left: 200px !important;
  top: 130px !important;
  z-index: 5;
  box-shadow: 4px 13px 50px 2px rgba(0, 0, 0, 0.15);
}

/***

==================================================================
	Our Experience
==================================================================

***/
.our-experience {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.our-experience .row {
  align-items: center;
}

.our-experience .stacked-image-carousel:before {
  display: none;
}

.our-experience .video-image-box .image .overlay-link {
  z-index: 9;
}

.our-experience .video-image-box .overlay-link span {
  height: 81px;
  width: 81px;
  border-radius: 50%;
  background-color: var(--rv-white);
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  padding-left: 6px;
}

.video-image-box.mb-30 .ripple,
.video-image-box.mb-30 .ripple:before,
.video-image-box.mb-30 .ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  animation: ripple 3s infinite;
}

.video-image-box.mb-30 .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.video-image-box.mb-30 .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 70px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.our-experience .tab-list {
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d7d8;
}

.our-experience .tab-list li {
  position: relative;
  margin-right: 30px;
  margin-bottom: 0px;
}

.our-experience .tab-list li a {
  position: relative;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  display: inline-block;
}

.our-experience .tab-list li a:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--rv-primary);
  left: 0;
  bottom: 0;
  transition: 0.5s ease;
}

.our-experience .tab-list li a.active-btn:before {
  width: 100%;
}

.our-experience .tab-content .text {
  color: #222;
}

/* Experience two */
.our-experience-two {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.our-experience-two:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-block-one .text {
  margin-bottom: 30px;
}

.text-block-one .text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.text-block-one.dark .text p {
  color: #222;
}

/* our experience three */
.our-experience-three {
  position: relative;
}

.our-experience-three:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/resource/map2.png) no-repeat center;
  left: 0;
  bottom: 0;
}

.our-experience-three .service-block-three .inner-box .caption {
  background: var(--rv-white);
}

/***

==================================================================
	Why Choose us
==================================================================

***/
.why-chooseus .row {
  align-items: center;
}

.service-block-two-area .outer-box {
  position: relative;
  margin-left: -85px;
}

/* services block two */
.service-block-two {
  position: relative;
  margin-bottom: 60px;
}

.service-block-two:last-child {
  margin-bottom: 0px;
}

.service-block-two .inner-box {
  position: relative;
  padding-left: 130px;
  min-height: 60px;
}

.service-block-two .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0;
  width: 110px;
  height: 110px;
  color: var(--rv-primary);
  font-size: 50px;
  line-height: 110px;
  text-align: center;
  background-color: #fcf2f3;
  overflow: hidden;
  transition: 0.8s ease;
}

.service-block-two .inner-box .icon-box:before {
  position: absolute;
  content: "";
  background-color: var(--rv-primary);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0.5);
  opacity: 0;
  transition: 0.5s ease;
}

.service-block-two .inner-box:hover .icon-box:before {
  transform: scale(1);
  opacity: 1;
}

.service-block-two .inner-box:hover .icon-box {
  color: var(--rv-white);
}

.service-block-two .inner-box .icon-box span {
  position: relative;
  display: block;
}

.service-block-two .inner-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 12px;
  padding-top: 10px;
}

.service-block-two .inner-box h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.service-block-two .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.service-block-two .inner-box .service-text {
  font-size: 15px;
  color: #777777;
  padding-bottom: 12px;
}

/* Why choose us two */
.why-chooseus-two {
  position: relative;
}

/* .why-chooseus-two:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/resource/map2.png) no-repeat center;
	left: 0;
	bottom: 0;
} */
/* services block five */
.service-block-five {
  position: relative;
  margin-bottom: 30px;
}

.service-block-five:last-child {
  margin-bottom: 0px;
}

.service-block-five .inner-box {
  position: relative;
  padding: 19px 0;
  padding-left: 105px;
  background: #f8f8f8;
  transition: 0.5s ease;
}

.service-block-five .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  color: var(--rv-black);
  font-size: 50px;
  text-align: center;
  line-height: 60px;
  transition: 0.5s ease;
}

.service-block-five .inner-box .icon-box span {
  display: block;
}

.service-block-five .inner-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 12px;
  padding-top: 10px;
}

.service-block-five .inner-box h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.service-block-five .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.service-block-five .inner-box .service-text {
  font-size: 15px;
  color: #777777;
  padding-bottom: 12px;
  transition: 0.5s ease;
}

.service-block-five .inner-box:hover .icon-box,
.service-block-five .inner-box:hover .service-text,
.service-block-five .inner-box:hover h4 a,
.service-block-five .inner-box:hover {
  color: var(--rv-black);
}

.service-block-five .inner-box:hover {
  background-color: var(--rv-primary);
}

/* Services Block six */
.service-block-six {
  position: relative;
  margin-bottom: 30px;
  z-index: 99;
}

.service-block-six .inner-box {
  position: relative;
  padding: 15px 22px 40px;
  text-align: center;
  background: var(--rv-white);
  border: 1px solid #e5e9f2;
  transition: 0.5s ease;
}

.service-block-six .inner-box .icon-box {
  position: relative;
  color: var(--rv-primary);
  margin: 0 auto;
  font-size: 48px;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  transition: 0.5s ease;
}

.service-block-six .inner-box h4 {
  position: relative;
  font-size: 20px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.service-block-six .inner-box h4 a {
  color: #222;
  transition: 0.5s ease;
}

.service-block-six .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.service-block-six .inner-box .text {
  position: relative;
  color: #848484;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6em;
  transition: 0.5s ease;
}

.service-block-six .inner-box .read-more {
  position: relative;
  margin-top: 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
}

.service-block-six .hvr-bounce-to-bottom:before {
  background-color: var(--rv-primary);
}

.service-block-six .inner-box:hover .icon-box,
.service-block-six .inner-box:hover h4 a,
.service-block-six .inner-box:hover .text {
  color: var(--rv-white);
}

/* sersvice block seven*/
.service-block-seven {
  position: relative;
  padding: 0;
}

.service-block-seven .inner-box {
  position: relative;
}

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

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

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

.service-block-seven:nth-child(1) .inner-box .caption,
.service-block-seven:nth-child(3) .inner-box .caption {
  background-color: rgba(244, 34, 48, 0.85);
}

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

.service-block-seven .icon-box {
  color: var(--rv-white);
  font-size: 55px;
  margin-bottom: 30px;
}

.service-block-seven h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--rv-white);
}

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

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

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

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

.service-block-seven .inner-box .overlay-box h2 {
  position: relative;
  color: var(--rv-white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.service-block-seven .inner-box .overlay-box h2 a {
  position: relative;
  color: var(--rv-white);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

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

.service-block-seven .inner-box .overlay-box .text {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  line-height: 1.9em;
  margin: 0 auto;
  margin-bottom: 25px;
  max-width: 350px;
}

.service-block-seven .inner-box .overlay-box .read-more {
  position: relative;
  background: var(--rv-white);
  color: #222;
  font-weight: 600;
  padding: 11px 18px;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

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

/* Our Mission */
.our-mission {
  position: relative;
  margin-bottom: -170px;
}

.mission-block .inner-box {
  position: relative;
  padding: 40px 30px 39px;
  padding-left: 75px;
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
  background-color: var(--rv-white);
}

.mission-block .count {
  position: absolute;
  left: 40px;
  top: 44px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  color: var(--rv-primary);
  font-weight: 600;
}

.mission-block h4 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  color: #222;
  font-weight: 600;
  margin-bottom: 5px;
}

.mission-block h4 a {
  color: #222;
}

.list-style-six {
  position: relative;
  margin-top: 15px;
}

.list-style-six li {
  position: relative;
  color: #848484;
  font-size: 16px;
  font-weight: 300;
  padding-left: 25px;
  margin-bottom: 6px;
}

.list-style-six li:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  height: 12px;
  width: 12px;
  border: 2px solid var(--rv-primary);
  border-radius: 50%;
}

.mission-block .text p {
  margin-bottom: 0px;
}

.mission-block .text p + p {
  margin-top: 22px;
}

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

.image-block-one:before {
  position: absolute;
  content: "";
  background: url(../images/resource/shape-three.png) no-repeat center;
  width: 50px;
  height: 150px;
  left: -48px;
  top: 50px;
}

/***

==================================================================
	Testimonial
==================================================================

***/
.testimonial {
  position: relative;
}

/* .testimonial:before {
	position: absolute;
	content: '';
	background: url(../images/background/2.jpg) center no-repeat fixed;
	background-size: cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 420px;
}

.testimonial:after {
	position: absolute;
	content: '';
	background: rgba(0, 0, 0, 0.7);
	top: 0;
	left: 0;
	width: 100%;
	height: 420px;
} */
.testimonial .sec-title {
  z-index: 0;
}

.testimonial .owl-nav-style-three .owl-nav .owl-next,
.testimonial .owl-nav-style-three .owl-nav .owl-prev {
  color: #151412;
}

.testimonial-block {
  position: relative;
  margin-bottom: 30px;
}

.owl-nav-style-three .testimonial-block {
  margin-bottom: 0px;
}

.testimonial-block .inner-box {
  position: relative;
  padding: 25px;
  border: 1px solid #e5e5e5;
  background-color: var(--rv-white);
}

.testimonial-block .icon-box {
  position: relative;
  left: 0;
  font-size: 54px;
  color: #d4d6d9;
  display: block;
  transform: rotate(180deg);
  display: inline-block;
  line-height: 60px;
}

.testimonial-block .text {
  font-size: 17px;
  margin-bottom: 15px;
  margin-top: 25px;
}

.testimonial-block .info-box {
  position: relative;
  padding-left: 85px;
  padding-top: 8px;
  padding-bottom: 30px;
}

.testimonial-block .info-box .image {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-block .info-box .image img {
  border-radius: 50%;
}

.testimonial-block .info-box .name {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #222;
  font-weight: 600;
}

.testimonial-block .info-box .designation {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--rv-primary);
  font-weight: 400;
}

/* testiimonial block two */
.testimonial-two {
  position: relative;
}

.testimonial-two .owl-nav-style-four .owl-nav .owl-next,
.testimonial-two .owl-nav-style-four .owl-nav .owl-prev {
  background-color: var(--rv-white);
}

.testimonial-block-two {
  position: relative;
  margin-bottom: 30px;
}

.owl-nav-style-three .testimonial-block-two {
  margin-bottom: 0px;
  margin-top: 100px;
}

.testimonial-block-two .inner-box {
  position: relative;
  text-align: center;
}

.testimonial-block-two .icon-box {
  position: relative;
  left: 0;
  font-size: 54px;
  color: #d4d6d9;
  display: block;
  transform: rotate(180deg);
  display: inline-block;
  line-height: 60px;
}

.testimonial-block-two .text {
  font-size: 17px;
  margin: 0 auto;
  margin-bottom: 35px;
  margin-top: 25px;
  max-width: 900px;
}

.testimonial-block-two .info-box {
  position: relative;
  padding-left: 85px;
  padding-top: 8px;
  padding-bottom: 30px;
  max-width: 215px;
  text-align: left;
  margin: 0 auto;
}

.testimonial-block-two .info-box .image {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-block-two .info-box .image img {
  border-radius: 50%;
}

.testimonial-block-two .info-box .name {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #222;
  font-weight: 600;
}

.testimonial-block-two .info-box .designation {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--rv-primary);
  font-weight: 400;
}

/* testimonial block three */
.testimonial-three .sec-title {
  margin-bottom: -85px;
  z-index: 99;
}

.testimonial-three .owl-nav-style-one .owl-nav {
  margin-top: -60px;
  position: relative;
  top: -100px;
  left: 83px;
}

.testimonial-block-three {
  position: relative;
}

.testimonial-block-three .big-image {
  position: relative;
  text-align: center;
}

.testimonial-block-three .big-image img {
  width: auto;
  margin: 0 auto;
}

.testimonial-block-three .inner-box {
  position: relative;
  background-color: var(--rv-white);
  margin-top: 125px;
}

.testimonial-block-three .icon-box {
  position: relative;
  left: 0;
  font-size: 54px;
  color: #d4d6d9;
  display: block;
  transform: rotate(180deg);
  display: inline-block;
  line-height: 60px;
}

.testimonial-block-three .text {
  font-size: 17px;
  margin-bottom: 15px;
  margin-top: 25px;
}

.testimonial-block-three .info-box {
  position: relative;
  padding-top: 8px;
  padding-bottom: 30px;
}

.testimonial-block-three .info-box .image {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-block-three .info-box .image img {
  border-radius: 50%;
}

.testimonial-block-three .info-box .name {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #222;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-block-three .info-box .designation {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--rv-primary);
  font-weight: 400;
}

/***

==================================================================
	Feature Case
==================================================================

***/
.feature-case {
  position: relative;
}

.feature-case .inner-box {
  position: relative;
  margin-bottom: 30px;
  display: block;
}

.feature-case .inner-box .image {
  position: relative;
}

.feature-case .inner-box .image:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0%;
  display: block;
  z-index: 1;
  background-color: rgba(255, 223, 88, 0.4);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.feature-case .inner-box:hover .image:before {
  height: 100%;
}

.feature-case .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  height: 200px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-case .inner-box .lower-content {
  position: relative;
}
.feature-case .inner-box .lower-content p {
  color: var(--rv-black);
}

.feature-case .icon-box {
  position: absolute;
  right: 30px;
  top: -1px;
  color: var(--rv-black);
  background: var(--rv-primary);
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  transform: translateY(-50%);
  z-index: 9;
}

.feature-case .icon-box span {
  color: var(--rv-black);
}

.feature-case .lower-content {
  position: relative;
  border: 1px solid #e5e5e5;
  padding: 30px;
}

.feature-case .lower-content h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.feature-case .lower-content h4 a {
  position: relative;
  color: #222222;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.feature-case .lower-content h4 a:hover {
  color: var(--rv-primary);
}

.feature-case .lower-content .text {
  position: relative;
  margin-top: 15px;
}

/* feature-case-two */
.feature-case-two {
  margin-bottom: 100px;
}

.feature-case-two .inner-box {
  position: relative;
  min-height: 60px;
}

.feature-case-two .image {
  position: relative;
  overflow: hidden;
}

.feature-case-two .image img {
  width: 100%;
  transition: 0.7s ease;
  transition-delay: 0.3s;
}

.feature-case-two:hover .image img {
  transform: scale(1.2);
}

.feature-case-two .image:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 8;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(230, 32, 45, 0.8);
}

.feature-case-two:hover .image:before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}

.feature-case-two .inner-box .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  color: var(--rv-primary);
  font-size: 40px;
  line-height: 80px;
  text-align: center;
  background-color: #fcf2f3;
  margin-bottom: 25px;
}

.feature-case-two .inner-box .icon-box span {
  display: block;
}

.feature-case-two .inner-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 12px;
  padding-top: 10px;
}

.feature-case-two .inner-box h4 a {
  color: #333333;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.feature-case-two .inner-box h4 a:hover {
  color: var(--rv-primary);
}

.feature-case-two .inner-box .service-text {
  font-size: 15px;
  color: #222;
  padding-bottom: 12px;
}

/* Case details */
.case-details {
  position: relative;
}

.case-details .content {
  padding: 35px 0 90px;
}

.case-details .content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.case-details .content p + p {
  margin-top: 30px;
}

/***

==================================================================
	Parallax Section
==================================================================

***/
.parallax-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.parallax-section:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-section .client-logo-area {
  position: relative;
  border-top: 1px solid #ddd;
  padding-top: 65px;
}

.parallax-section .client-logo-area .owl-item img {
  width: auto;
  margin: 0 auto;
}

/***

==================================================================
	Our Team
==================================================================

***/
/* team block one */
.team-block-one {
  position: relative;
  margin-bottom: 30px;
}

.team-block-one .inner-box {
  position: relative;
}

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

.team-block-one .inner-box .overlay-box {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  color: var(--rv-white);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate(0, -30px);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.team-block-one .inner-box:hover .overlay-box {
  opacity: 1;
  transform: translate(0, 0px);
}

.team-block-one .inner-box .overlay-box .social-links {
  position: absolute;
  left: 0px;
  bottom: 40px;
  width: 100%;
}

.team-block-one .inner-box .overlay-box .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 4px;
  line-height: 24px;
}

.team-block-one .inner-box .overlay-box .social-links li a {
  position: relative;
  color: #848484;
  background: var(--rv-white);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.team-block-one .inner-box .overlay-box .social-links li a:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
}

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

.team-block-one .inner-box .lower-box {
  position: relative;
  padding-top: 32px;
  text-align: center;
}

.team-block-one .inner-box .lower-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.team-block-one .inner-box .lower-box h4 a {
  color: #222;
  transition: 0.5s ease;
}

.team-block-one .inner-box .lower-box h4 a:hover {
  color: #e41f2c;
}

.team-block-one .inner-box .lower-box .designation {
  position: relative;
  color: #9fa2a6;
  font-size: 16px;
}

/* team block two */
.team-block-two {
  position: relative;
  margin-bottom: 30px;
}

.team-block-two .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-block-two .inner-box .image {
  position: relative;
  overflow: hidden;
}

.team-block-two .inner-box .image img {
  transition: 0.7s ease;
  transition-delay: 0.4s;
}

.team-block-two .inner-box:hover .image img {
  transform: scale(1.2);
}

.team-block-two .inner-box .overlay-box {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  color: var(--rv-white);
  text-align: center;
  background: rgba(230, 32, 45, 0.75);
  opacity: 0;
  transform: translate(0, -90px);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.team-block-two .inner-box:hover .overlay-box {
  opacity: 1;
  transform: translate(0, 0px);
}

.team-block-two .social-links {
  position: relative;
  margin-top: 25px;
}

.team-block-two .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 8px;
  line-height: 24px;
}

.team-block-two .social-links li a {
  position: relative;
  text-align: center;
  color: #848484;
  background: var(--rv-white);
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 43px;
  font-size: 15px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.team-block-two .social-links li a:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
}

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

.team-block-two .inner-box .lower-box {
  position: relative;
  max-width: 300px;
  border: 1px solid #e5e5e5;
  padding: 40px 30px;
}

.team-block-two .inner-box .lower-box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-block-two .inner-box .lower-box h4 a {
  color: #222;
  transition: 0.5s ease;
}

.team-block-two .inner-box .lower-box h4 a:hover {
  color: #e41f2c;
}

.team-block-two .inner-box .lower-box .designation {
  position: relative;
  color: #e8303c;
  font-size: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

/***

==================================================================
	Funfact Section
==================================================================

***/
.contact-callback-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.contact-callback-section:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-callback-section .outer-box {
  overflow: hidden;
}

.counter-area {
  margin: -1px;
  position: relative;
}

.callback-box {
  position: relative;
  overflow: hidden;
  color: var(--rv-white);
}

.callback-box .column {
  position: relative;
  z-index: 5;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.callback-box .item {
  color: #222;
  width: 100%;
}

.callback-box .column .icon span {
  position: relative;
  top: 0px;
  font-size: 50px;
  position: absolute;
  line-height: 70px;
  top: -5px;
  left: 0;
  margin-bottom: 20px;
  color: #ab7442;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.callback-box .count-outer {
  margin-top: 10px;
  color: var(--rv-white);
  position: relative;
  font-size: 42px;
  font-weight: 500;
}

.callback-box .count-outer .count-text {
  margin-bottom: 5px;
  display: block;
}

.callback-box .item .inner-box {
  position: relative;
  padding-top: 15px;
}

.callback-box .item .inner-box .icon-box {
  line-height: 50px;
  display: inline-block;
  width: 100px;
}

.callback-box .item .inner-box .icon-box i {
  color: var(--rv-primary);
}

.callback-box .item .inner-box .icon-box i:before {
  margin: 0 0 0 25px;
  font-size: 48px;
}

.callback-box .item .inner-box .call-box {
  display: inline-block;
  width: calc(100% - 110px);
}

.callback-box .item .inner-box .call-box h3 {
  color: var(--rv-white);
  font-weight: 600;
}

.callback-box .item .inner-box p {
  font-weight: 400;
  font-size: 18px;
}
.callback-box .item .inner-box p a {
  color: rgba(255, 255, 255, 0.7019607843);
}
.callback-box .item .inner-box p a:hover {
  color: var(--rv-primary);
}

/*
====================================================================Contact Form Style====================================================================***/
/*Contact Form*/
.contact-form-section {
  position: relative;
}

.contact-form-section .row {
  margin: 0 -10px;
}

.contact-form-section .column {
  padding: 0 10px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=password],
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  height: 55px;
  font-size: 16px;
  color: #848484;
  line-height: 30px;
  padding: 12px 25px;
  font-weight: 300;
  background-color: var(--rv-white);
  border-radius: 0px;
  border: 1px solid #ececec;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff214f;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 12px 25px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff0000 !important;
}

.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0px 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  color: #ff0000;
  font-weight: 500;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--rv-primary);
}

/* form style two */
.contact-form.style-two input[type=text],
.contact-form.style-two input[type=email],
.contact-form.style-two input[type=password],
.contact-form.style-two select,
.contact-form.style-two textarea {
  background: #f7f8f9;
  border-color: #f7f8f9;
  box-shadow: none;
}

.contact-form.style-two textarea {
  height: 250px;
}

/* form style three */
.contact-form.style-three input[type=text],
.contact-form.style-three input[type=email],
.contact-form.style-three input[type=password],
.contact-form.style-three select,
.contact-form.style-three textarea {
  background: #f7f8f9;
  border-color: #f7f8f9;
  box-shadow: none;
  padding-left: 50px;
}

.contact-form.style-three span {
  position: absolute;
  left: 30px;
  top: 13px;
  font-size: 24px;
  color: #ff214f;
}

/* Contact info */
.contact-info {
  position: relative;
  padding: 60px 0;
}

.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info-list li {
  position: relative;
  color: #111111;
  font-size: 16px;
  font-weight: 400;
  padding: 23px 0;
  padding-left: 65px;
  max-width: 33.3%;
  width: 100%;
  padding-right: 70px;
}

.contact-info-list li:last-child {
  padding-right: 0px;
  border-right: 0px;
}

.contact-info-list li .icon {
  position: absolute;
  left: 0px;
  top: 26px;
  color: var(--rv-black);
  font-size: 45px;
  line-height: 1em;
}

/***

==================================================================
	Consultation Form
==================================================================

***/
.consultation {
  background: #edeff2;
  padding: 50px 30px 50px;
}

.consultation .sec-title .big-title {
  color: #d9dbde;
}

.consultation .row {
  margin: 0 -10px;
}

.consultation .column {
  padding: 0 10px;
}

.consultation .contact-form .form-group {
  margin-bottom: 20px;
}

.consultation .contact-form input[type=text],
.consultation .contact-form input[type=email],
.consultation .contact-form input[type=password],
.consultation .contact-form select {
  height: 45px;
}

.consultation .contact-form textarea {
  height: 82px;
}

/* consultation style two */
.consultation-two {
  position: relative;
  background: #edeff2;
  padding: 40px 40px 40px;
}

.consultation-two h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.consultation-two .contact-form .form-group {
  margin-bottom: 10px;
}

.consultation-two .contact-form input[type=text],
.consultation-two .contact-form input[type=email],
.consultation-two .contact-form input[type=password],
.consultation-two .contact-form select {
  height: 45px;
}

.consultation-two .contact-form textarea {
  height: 120px;
}

/***

==================================================================
	News Blog
==================================================================

***/
.news-block-one {
  position: relative;
}

.news-block-one .inner-box {
  margin-bottom: 30px;
}

.news-block-one .image {
  position: relative;
  overflow: hidden;
}

.news-block-one .image:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 8;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(230, 32, 45, 0.8);
}

.news-block-one:hover .image:before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}

.news-block-one img {
  width: 100%;
  transition: 0.7s ease;
  transition-delay: 0.3s;
}

.news-block-one:hover img {
  transform: scale(1.2);
}

.news-block-one .overlay a {
  background: rgba(255, 255, 255, 0.85) none repeat scroll 0 0;
  border-radius: 50%;
  color: #222;
  font-size: 20px;
  height: 60px;
  margin: 0 5px;
  line-height: 60px;
  opacity: 0;
  display: inline-block;
  text-align: center;
  transform: translateX(0%) translateY(-30%) scale(0.5);
  transition: all 0.4s ease 0s;
  width: 60px;
}

.news-block-one .overlay a:hover {
  background: rgb(255, 255, 255) none repeat scroll 0 0;
  color: var(--rv-primary);
}

.news-block-one:hover .overlay a {
  opacity: 1;
  transform: translateX(0) translateY(0%) scale(1);
}

.news-block-one .overlay {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease 0s;
  z-index: 10;
}

.news-block-one:hover .overlay {
  opacity: 1;
}

.news-block-one .lower-content {
  position: relative;
  z-index: 9;
  padding: 30px 36px;
  border: 1px solid #e5e5e5;
  background-color: var(--rv-white);
}

.news-block-one .lower-content .post-meta {
  margin-bottom: 8px;
}

.news-block-one .lower-content .post-meta li {
  position: relative;
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 500;
  padding-right: 8px;
  margin-right: 17px;
  margin-bottom: 8px;
  display: inline-block;
}

.news-block-one .lower-content .post-meta li:after {
  position: absolute;
  content: "/";
  color: #b8b8b8;
  right: -10px;
  top: 1px;
  font-size: 14px;
}

.news-block-one .lower-content .post-meta li:last-child::after {
  display: none;
}

.news-block-one .lower-content .post-meta li strong {
  color: #222;
  font-weight: 500;
}

.news-block-one .lower-content .post-meta li span {
  color: var(--rv-primary);
}

.news-block-one .lower-content.style-two {
  margin: 0 50px;
  margin-top: -70px;
}

.news-block-one h4 {
  font-size: 20px;
  font-weight: 600;
}

.news-block-one h4 a {
  color: #222;
}

.news-block-one h4 a:hover {
  color: #e41f2c;
}

.news-block-one .text {
  margin-bottom: 15px;
}

.news-block-one .read-more-btn {
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.news-block-one .read-more-btn:hover {
  color: var(--rv-primary);
}

/* news block two */
.news-block-two {
  position: relative;
}

.news-block-two .inner-box {
  margin-bottom: 30px;
}

.news-block-two .image {
  position: relative;
  overflow: hidden;
}

.news-block-two .image:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 8;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(230, 32, 45, 0.8);
}

.news-block-two:hover .image:before {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}

.news-block-two img {
  width: 100%;
  transition: 0.7s ease;
  transition-delay: 0.3s;
}

.news-block-two:hover img {
  transform: scale(1.2);
}

.news-block-two .overlay a {
  background: rgba(255, 255, 255, 0.85) none repeat scroll 0 0;
  border-radius: 50%;
  color: #222;
  font-size: 20px;
  height: 60px;
  margin: 0 5px;
  line-height: 60px;
  opacity: 0;
  display: inline-block;
  text-align: center;
  transform: translateX(0%) translateY(-30%) scale(0.5);
  transition: all 0.4s ease 0s;
  width: 60px;
}

.news-block-two .overlay a:hover {
  background: rgb(255, 255, 255) none repeat scroll 0 0;
  color: var(--rv-primary);
}

.news-block-two:hover .overlay a {
  opacity: 1;
  transform: translateX(0) translateY(0%) scale(1);
}

.news-block-two .overlay {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease 0s;
  z-index: 10;
}

.news-block-two:hover .overlay {
  opacity: 1;
}

.news-block-two .lower-content {
  position: relative;
  z-index: 9;
  padding: 30px 36px;
  border: 1px solid #e5e5e5;
  background-color: var(--rv-white);
}

.news-block-two .lower-content .category {
  margin-bottom: 15px;
}

.news-block-two .lower-content .category a {
  font-size: 13px;
  font-weight: 500;
  color: var(--rv-white);
  font-family: "Montserrat", sans-serif;
  padding: 5px 10px;
  background-color: var(--rv-primary);
}

.news-block-two .lower-content .post-meta {
  margin-bottom: 8px;
}

.news-block-two .lower-content .post-meta li {
  position: relative;
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 500;
  padding-right: 8px;
  margin-right: 17px;
  margin-bottom: 8px;
  display: inline-block;
}

.news-block-two .lower-content .post-meta li:after {
  position: absolute;
  content: "/";
  color: #b8b8b8;
  right: -10px;
  top: 1px;
  font-size: 14px;
}

.news-block-two .lower-content .post-meta li:last-child::after {
  display: none;
}

.news-block-two .lower-content .post-meta li strong {
  color: #222;
  font-weight: 500;
}

.news-block-two .lower-content .post-meta li span {
  color: var(--rv-primary);
}

.news-block-two h4 {
  font-size: 20px;
  font-weight: 600;
}

.news-block-two h4 a {
  color: #222;
}

.news-block-two h4 a:hover {
  color: #e41f2c;
}

.news-block-two .text {
  margin-bottom: 15px;
}

.news-block-two .link-btn {
  text-align: right;
}

.news-block-two .read-more-btn {
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.news-block-two .read-more-btn:hover {
  color: var(--rv-primary);
}

/* single post */
.single-post .news-block-three .lower-content {
  padding: 30px;
  padding-bottom: 50px;
  border: 1px solid #e5e5e5;
}

.single-post .news-block-three .lower-content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-post .news-block-three .lower-content .post-meta {
  margin-bottom: 20px;
}

.single-post .news-block-three .lower-content p {
  margin-bottom: 30px;
}

.single-post .news-block-three .lower-content p:last-child {
  margin-bottom: 0px;
}

.block-quote {
  border-left: 0px;
  border: 1px solid #e5e5e5;
  border-left: 3px solid var(--rv-primary);
  padding: 40px;
  margin: 35px 0;
}

/* share box */
.share-box {
  position: relative;
  border: 1px solid #e5e5e5;
  border-top: 0px;
  padding: 20px 40px;
}

.share-box li {
  display: inline-block;
  color: #222;
  font-size: 16px;
}

.share-box li a {
  color: #222;
  background: #edeff2;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.5s ease;
}

.share-box li a:hover {
  background-color: var(--rv-primary);
  color: var(--rv-white);
}

.share-box li span {
  color: #2c31ff;
}

/* Comments Area */
.single-post .comments-area {
  position: relative;
  margin-top: 50px;
}

.single-post .group-title {
  position: relative;
  margin-bottom: 38px;
}

.single-post .group-title h2 {
  position: relative;
  font-size: 25px;
  color: #222;
  font-weight: 700;
  padding-bottom: 0px;
}

.single-post .comments-area .comment-box {
  position: relative;
  padding: 0px 0px 0px;
  margin-bottom: 45px;
  transition: all 300ms ease;
}

.single-post .comments-area .comment-box.reply-comment {
  margin-left: 100px;
}

.single-post .comments-area .comment-box:last-child .comment .comment-inner {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border: 0px;
}

.single-post .comments-area .comment-box:hover {
  border-color: #222222;
}

.single-post .comments-area .comment {
  position: relative;
  font-size: 14px;
  padding: 0px 0px 40px 110px;
  border-bottom: 1px solid #ebebeb;
}

.single-post .comments-area .comment .comment-inner {
  position: relative;
}

.single-post .comments-area .comment .comment-reply {
  position: relative;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 300ms ease;
}

.single-post .comments-area .comment .comment-reply .icon {
  font-size: 13px;
  margin-right: 8px;
}

.single-post .comments-area .comment-box .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 86px;
  overflow: hidden;
  margin-bottom: 20px;
}

.single-post .comments-area .comment-box .author-thumb img {
  display: block;
}

.single-post .comments-area .comment-info {
  color: #3e5773;
  line-height: 24px;
  font-size: 13px;
}

.single-post .comments-area .comment-box strong {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  line-height: 16px;
  text-transform: uppercase;
}

.single-post .comments-area .comment-box .text {
  color: #848484;
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.8em;
  font-weight: 300;
  max-width: 510px;
}

.single-post .comments-area .comment-info .comment-time {
  position: relative;
  font-size: 16px;
  color: #848484;
}

.single-post .comments-area .comment-box .theme-btn {
  padding: 5px 30px;
  font-size: 12px;
  border: 1px solid #fbca00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*** 

====================================================================
	Map Style
====================================================================

***/
.map-section {
  position: relative;
}

.home-google-map .google-map {
  width: 100%;
  height: 480px;
}

.map-section.map-two .home-google-map .google-map {
  width: 100%;
  height: 555px;
}

.home-google-map .gmnoprint {
  display: none;
}

.map-section .consultation .sec-title .big-title {
  color: rgba(255, 255, 255, 0.25);
}

.map-section .container {
  position: relative;
}

.map-section .consultation {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 470px;
  padding: 68px 30px 50px;
  background-color: var(--rv-primary);
}

.map-section .contact-form button {
  color: var(--rv-white);
  background: var(--rv-secondary);
  border-color: var(--rv-secondary);
}

.map-section .contact-form button:hover {
  color: var(--rv-secondary);
  background: var(--rv-white);
  border-color: var(--rv-white);
}

/***

==================================================================
	Project Section
==================================================================

***/
.project-block-one {
  position: relative;
}

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

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

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

.project-block-one .inner-box .caption {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: center;
  transition: all 0.5s;
}

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

.project-block-one .icon-box {
  color: var(--rv-white);
  font-size: 55px;
  margin-bottom: 30px;
}

.project-block-one h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--rv-white);
}

.project-block-one h4 a {
  color: var(--rv-white);
}

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

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

.project-block-one .inner-box .overlay-box .overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  padding: 35px 30px;
  vertical-align: bottom;
}

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

.project-block-one .inner-box .overlay-box h2 {
  position: relative;
  color: var(--rv-white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.project-block-one .inner-box .overlay-box h2 a {
  position: relative;
  color: var(--rv-white);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

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

.project-block-one .inner-box .overlay-box .text {
  position: relative;
  color: var(--rv-white);
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 25px;
}

.project-block-one .inner-box .overlay-box .read-more {
  position: relative;
  background: var(--rv-white);
  color: #222;
  font-weight: 600;
  padding: 11px 18px;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

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

/* project block two */
.project-block-two {
  position: relative;
}

.project-block-two .inner-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.project-block-two .inner-box .image {
  position: relative;
  overflow: hidden;
}

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

.project-block-two .inner-box .lower-box {
  position: relative;
  background: var(--rv-white);
  transition: all 0.5s;
}

.project-block-two .inner-box .caption {
  position: relative;
  padding: 20px 30px 30px;
  margin-bottom: -71px;
  background-color: var(--rv-white);
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.5s;
}

.project-block-two .inner-box:hover .caption {
  transform: translateY(-70px);
}

.project-block-two h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.project-block-two h4 a {
  color: #222;
  transition: 0.5s ease;
}

.project-block-two h4 a:hover {
  color: var(--rv-primary);
}

.project-block-two .inner-box .text {
  position: relative;
  transition: 0.5s ease;
  margin-bottom: 15px;
  color: #848484;
}

.project-block-two .link-btn {
  position: relative;
  transform: translateY(0px);
  transition: 0.5s ease;
}

.project-block-two .inner-box:hover .link-btn {
  transform: translateY(0px);
}

.project-block-two .link-btn .theme-btn {
  padding: 6px 20px;
}

/* project info */
.project-info {
  position: relative;
  padding: 30px 0 15px;
  background-color: #151412;
}

.project-info h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: var(--rv-white);
  margin-bottom: 25px;
  margin-left: 40px;
}

.project-info-list {
  position: relative;
}

.project-info-list li {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 400;
  padding: 13px 0;
  padding-left: 80px;
  padding-right: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.project-info-list li strong {
  color: var(--rv-white);
  font-size: 17px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.project-info-list li:last-child {
  padding-right: 0px;
  border-right: 0px;
}

.project-info-list li .icon {
  position: absolute;
  left: 40px;
  top: 21px;
  color: var(--rv-white);
  font-size: 30px;
  line-height: 1em;
}

/* project details */
.project-details {
  position: relative;
}

.project-details .content {
  padding: 20px 0 70px;
}

.project-details .content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-details .content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-details .content p {
  margin-bottom: 0px;
}

.project-details .content p + p {
  margin-top: 15px;
}

/***

==================================================================
	Client Logo
==================================================================

***/
.client-logo {
  position: relative;
}

.client-logo .client-logo-area {
  position: relative;
  padding: 35px 0;
}

.client-logo .client-logo-area li {
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.client-logo .client-logo-area .owl-item img {
  width: 200px;
}

/***

==================================================================
	Pricing Plan
==================================================================

***/
.pricing-section .row {
  align-items: center;
}

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

.pricing-block-one .inner-box {
  position: relative;
  padding: 40px 30px;
  border: 1px solid #e5e5e5;
  background-color: var(--rv-white);
  margin-bottom: 30px;
}

.pricing-block-one .category {
  font-size: 20px;
  color: #222;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

.pricing-block-one .price {
  font-size: 24px;
  color: var(--rv-primary);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 25px;
}

.pricing-block-one .lower-box ul {
  position: relative;
  margin: 25px 0;
}

.pricing-block-one .lower-box ul li {
  font-size: 15px;
  color: #848484;
  padding-left: 18px;
  margin-bottom: 9px;
}

.pricing-block-one .lower-box ul li strong {
  position: relative;
  color: #222;
  font-weight: 500;
}

.pricing-block-one .lower-box ul li strong:before {
  content: "\f00c";
  position: absolute;
  left: -18px;
  top: 1px;
  line-height: 15px;
  font-size: 13px;
  font-family: "FontAwesome";
  color: var(--rv-primary);
}

.pricing-block-one .theme-btn {
  padding: 6px 22px;
  font-size: 13px;
}

/* standard plan */
.pricing-block-one.light .inner-box {
  padding: 70px 30px;
}

.pricing-block-one.standard .inner-box {
  background: #232936;
  padding: 70px 30px;
}

.pricing-block-one.standard .category {
  color: #c2c8d1;
}

.pricing-block-one.standard .text {
  color: #c2c8d1;
}

.pricing-block-one.standard .lower-box ul li {
  color: #c2c8d1;
}

.pricing-block-one.standard .lower-box ul li strong {
  color: #ddd;
}

.pricing-block-one .star {
  position: absolute;
  top: 0;
  right: 30px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: var(--rv-white);
  font-size: 16px;
  background-color: var(--rv-primary);
}

.pricing-block-one .star:before {
  position: absolute;
  content: "";
  top: 18px;
  left: 0;
  border: 19px solid transparent;
  border-top-color: var(--rv-primary);
  border-left-color: var(--rv-primary);
  border-right-color: var(--rv-primary);
}

.pricing-block-one .star span {
  position: relative;
}

/*** 

====================================================================
	Page Title Style
====================================================================

***/
.page-title {
  position: relative;
  color: var(--rv-white);
  background-color: #fafafa;
  background-size: cover;
  background-position: center center;
  text-align: center;
}

.page-title:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 250px;
}

.page-title h1 {
  position: relative;
  font-size: 52px;
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: var(--rv-white);
  text-transform: capitalize;
}

.page-title .bread-crumb {
  position: relative;
}

.page-title .bread-crumb li {
  position: relative;
  display: inline-block;
  line-height: 30px;
  margin-left: 20px;
  color: var(--rv-white);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.page-title .bread-crumb li span {
  margin-right: 10px;
}

.page-title .bread-crumb li:before {
  content: "\f101";
  position: absolute;
  right: -21px;
  top: 0px;
  width: 20px;
  text-align: center;
  line-height: 30px;
  font-family: FontAwesome;
}

.page-title .bread-crumb li:first-child {
  margin-left: 0px;
}

.page-title .bread-crumb li:last-child:before {
  display: none;
}

.page-title .bread-crumb li a {
  color: var(--rv-primary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.page-title .bread-crumb li a:hover {
  color: #fa2964;
}

/*** 

====================================================================
	Our History
====================================================================

***/
.timeline-container {
  position: relative;
  overflow: hidden;
}

.timeline-container .timeline-block:before {
  content: "";
  position: absolute;
  left: 150px;
  top: 34px;
  height: 150%;
  border-right: 3px solid #d4d6d9;
}

.timeline-container .timeline-block:last-child:before {
  margin-bottom: 0px;
}

.timeline-container .timeline-block:after {
  content: "";
  position: absolute;
  left: 142px;
  top: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--rv-primary);
}

.timeline-container .timeline-block {
  position: relative;
  margin-bottom: 50px;
}

.timeline-container .timeline-block:last-child {
  margin-bottom: 30px;
}

.timeline-container .timeline-block .inner-box {
  position: relative;
  padding-left: 260px;
  min-height: 144px;
  z-index: 1;
}

.timeline-container .timeline-block .inner-box .left-info {
  position: absolute;
  left: 0px;
  top: 15px;
  width: 200px;
  padding-left: 70px;
}

.timeline-container .timeline-block .date {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  color: var(--rv-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.timeline-container .timeline-block .date strong {
  font-size: 30px;
  font-weight: 700;
  display: block;
  color: #222;
}

.timeline-container .timeline-block h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
  color: #222;
}

.timeline-container .timeline-block .text-content {
  position: relative;
  line-height: 2em;
}

.broucher a {
  position: relative;
  padding: 20px 40px;
  padding-left: 90px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #222;
  line-height: 18px;
  display: block;
  margin-bottom: 40px;
}

.broucher a span {
  position: absolute;
  left: 40px;
  top: 30px;
  margin-right: 20px;
  color: var(--rv-primary);
  font-size: 32px;
}

/***

==================================================================
	Request Call Back
==================================================================

***/
.request-callback {
  position: relative;
  background-color: #151412;
}

.request-callback:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/resource/map3.png) no-repeat center;
  opacity: 0.4;
}

.request-callback .inner-box {
  position: relative;
  padding: 50px 40px;
  margin-bottom: 30px;
}

.request-callback h4 {
  color: var(--rv-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.request-callback .text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 23px;
}

.request-callback .phone-number {
  color: var(--rv-white);
  font-size: 17px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 35px;
}

.request-callback .phone-number span {
  margin-right: 10px;
  font-size: 24px;
  position: relative;
  top: 4px;
}

/* faq section */
.faq-section .accordion-box .block .icon-outer {
  top: 18px;
  font-size: 20px;
}

.faq-section .accordion-box .block .acc-btn.active .icon-outer {
  color: #222;
}

/*** 

====================================================================
					Error Page Section
====================================================================

***/
.error-page-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 220px 0;
}

.error-page-section .content-box {
  position: relative;
  display: block;
  text-align: center;
  left: 0;
  width: 100%;
}

.error-page-section .content-box h1 {
  position: relative;
  font-size: 240px;
  line-height: 1em;
  color: var(--rv-white);
  font-weight: 800;
  -webkit-text-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
  -moz-text-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
  -ms-text-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
  -o-text-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
  text-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
}

.error-page-section .content-box p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 27px;
  color: #141414;
  font-weight: 500;
  margin-bottom: 20px;
}

.error-page-section .content-box p strong {
  font-weight: 600;
  font-size: 19px;
}

/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: #191d26;
  background-repeat: no-repeat;
  background-position: center center;
  color: var(--rv-white);
}

.main-footer .widgets-section {
  position: relative;
  padding: 75px 0px 75px;
}

.main-footer .widgets-section:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/resource/map.png) no-repeat left center;
  left: 0;
  bottom: 0;
}

.main-footer .footer-column {
  position: relative;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .footer-logo {
  position: relative;
  margin-bottom: 34px;
}

.main-footer .footer-logo img {
  display: block;
  max-width: 100%;
}

.main-footer .footer-column .widget-title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 25px;
  color: var(--rv-white);
}

.main-footer .footer-column .widget-title:before {
  left: 0;
  bottom: 0;
  height: 2px;
  width: 15px;
  background-color: #b73637;
  content: "";
}

.main-footer .about-widget .text {
  font-size: 16px;
  color: #d4dae3;
  margin-bottom: 30px;
}

.social-icon-three {
  position: relative;
  display: block;
}

.social-icon-three li {
  position: relative;
  display: inline-block;
}

.social-icon-three li a {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: #2f333b;
  color: var(--rv-white);
  text-align: center;
  padding: 5px 0;
  line-height: 42px;
  font-size: 24px;
  margin-right: 0px;
  border-radius: 50%;
  transition: all 300ms ease;
}

.social-icon-three li a:hover {
  background-color: #b73637;
}

/*=== Services Widget ===*/
.main-footer .services-widget {
  position: relative;
  padding-left: 25px;
}

.main-footer .services-widget .list li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.main-footer .services-widget .list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  padding-left: 18px;
  color: #d4dae3;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 300ms ease;
}

.main-footer .services-widget .list li a:hover {
  color: var(--rv-primary);
}

.main-footer .services-widget .list li:last-child {
  margin-bottom: 0;
}

.main-footer .services-widget .list li a:before {
  content: "\f105";
  position: absolute;
  left: 0px;
  top: 3px;
  line-height: 15px;
  font-size: 16px;
  font-family: "FontAwesome";
}

/*=== Newsletter Widget ===*/
.main-footer .newsletter-widget .text {
  color: #d4dae3;
  margin-bottom: 25px;
  font-size: 15px;
}

.main-footer .newsletter-widget {
  background-color: #11141a;
  padding: 45px 40px 60px;
  margin-bottom: 0px;
}

.main-footer .newsletter-widget input {
  height: 50px;
  color: var(--rv-white);
  width: 100%;
  padding: 0 18px;
  background-color: #292c31;
  margin-bottom: 20px;
}

.main-footer .newsletter-widget input::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d4dae3;
}

.main-footer .newsletter-widget input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d4dae3;
}

.main-footer .newsletter-widget input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d4dae3;
}

.main-footer .newsletter-widget input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d4dae3;
}

/*=== Footer Bottom ===*/
.main-footer .footer-bottom {
  position: relative;
  padding: 18px 0px;
  background: #11141a;
}

.main-footer .footer-bottom p {
  line-height: 30px;
  color: #d4dae3;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.main-footer .footer-bottom p a {
  color: var(--rv-primary);
  transition: 0.5s ease;
}

.main-footer .footer-bottom p a:hover {
  text-decoration: underline;
}

/*
==================================================================Funfact Section==================================================================***/
.funfact-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.funfact-section:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.funfact-section .outer-box {
  overflow: hidden;
}

.counter-area {
  margin: -1px;
  position: relative;
}

.fact-counter {
  position: relative;
  overflow: hidden;
  color: var(--rv-white);
}

.fact-counter .column {
  position: relative;
  z-index: 5;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-counter .item {
  color: #222;
  width: 100%;
}

.fact-counter .column .icon span {
  position: relative;
  top: 0px;
  font-size: 50px;
  position: absolute;
  line-height: 70px;
  top: -5px;
  left: 0;
  margin-bottom: 20px;
  color: #ab7442;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fact-counter .count-outer {
  margin-top: 10px;
  color: var(--rv-white);
  position: relative;
  font-size: 42px;
  font-weight: 500;
}

.fact-counter .count-outer .count-text {
  margin-bottom: 5px;
  display: block;
}

.fact-counter .item .inner-box {
  position: relative;
  text-align: center;
  padding-top: 25px;
}

.fact-counter .item .inner-box .icon-box {
  line-height: 60px;
}

.fact-counter .item .inner-box .icon-box i {
  color: var(--rv-primary);
}

.fact-counter .item .inner-box .icon-box i:before {
  margin: 0;
  font-size: 48px;
}

.fact-counter .item .inner-box p {
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* style two */
.funfact-section-two .fact-counter .column {
  border: 0px;
  padding: 0 15px;
}

.funfact-section-two .fact-counter .item .inner-box {
  padding-left: 80px;
  text-align: left;
}

.funfact-section-two .fact-counter .item .inner-box .icon-box {
  position: absolute;
  left: 0;
}

.funfact-section-two .fact-counter {
  padding: 30px 0;
}

.yellow {
  color: var(--rv-black);
}

.full-btn {
  text-align: center;
}

.contact_bar .column {
  position: relative;
  z-index: 5;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-backdrop.fade.show {
  display: none;
}

.text_input {
  height: 40px;
  float: right;
  outline: 0;
  border: 1px solid #ccc;
  padding: 9px;
  border-radius: 55px;
}

.hide-span {
  display: none;
}

.outer_div {
  margin-bottom: 20px;
}

.calname .fa {
  font-size: 40px;
  margin-bottom: 12px;
}

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

.btn.submit,
.calname a,
.cal-result .summary .table th,
.cal-result .sip-tg .nav li,
.presales-container .ins-amt,
.pre-inputbox #removeButton > span,
.presales-result .lc-box,
.presales-cal .sip-tg .nav li,
.presales-cal .summary table th {
  background: #25303e;
}

.calname a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  padding: 25px 15px;
}

.cal-name {
  border-bottom: 1px solid #00418c;
}

.fundname:hover .whythismf,
.fundname:hover .closewhythismf {
  border: 1px solid #00418c;
}

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

.cal-result .nav-pills > li.active > a,
.cal-result .nav-pills > li.active > a:focus,
.cal-result .nav-pills > li.active > a:hover,
.pre-inputbox #btnAdd > span,
.presales-cal .nav-pills > li.active > a,
.presales-cal .nav-pills > li.active > a:focus,
.presales-cal .nav-pills > li.active > a:hover {
  background: #a4d035 !important;
}

#sipbarchart {
  overflow: unset !important;
}

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

.mart-0 {
  margin-top: 0px !important;
}

.marb-0 {
  margin-bottom: 0px !important;
}

.mart-5 {
  margin-top: 5px !important;
}

.mart-10 {
  margin-top: 10px !important;
}

.marb-10 {
  margin-bottom: 10px !important;
}

.mtb-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mart-15 {
  margin-top: 15px !important;
}

.mart-20 {
  margin-top: 20px !important;
}

.mart-25 {
  margin-top: 25px !important;
}

.padb-10 {
  padding-bottom: 10px;
}

.w-100 {
  width: 100%;
}

.bold {
  font-weight: bold;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.font-weight-normal {
  font-weight: normal !important;
}

.flot-left {
  float: left;
}

.color-red {
  color: red;
}

.reslultbox {
  margin-top: 20px;
  margin-bottom: 20px;
  float: left;
  width: 100%;
}

.cal-name {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.summary-heading {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.graphheading {
  color: #333333;
  font-size: 18px;
  margin: 15px 0px;
  float: left;
  width: 100%;
  text-align: center;
}

.btn.submit {
  padding: 10px 35px;
  color: white;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  border: 0px !important;
}

/*-- top calculator name --*/
.cal-type {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0px;
}

.calname {
  float: left;
  width: 100%;
}

.calname a {
  float: left;
  padding: 28px 15px;
  margin: 0px 10px 10px 0px;
  color: white;
  /*max-width: 212px;*/
  width: 100%;
  text-align: left;
}

.calname .fa {
  margin-right: 10px;
}

.calname a:hover {
  color: white;
}

/*-- /top calculator name --*/
/*-- Pre Sales Calculator --*/
.presales-cal {
  width: 100%;
  float: left;
}

.presales-cal .presales-container {
  background: #fafafa;
  border: 1px solid #dddddd;
  box-shadow: 0 0 4px rgba(206, 203, 203, 0.54);
  margin-top: 15px;
  overflow: hidden;
}

.presales-cal .pre-inputbox {
  border-bottom: 1px solid #dddddd;
  padding: 20px 35px;
}

.presales-cal .pre-inputbox .btn.submit {
  margin-top: 10px;
}

.presales-cal p {
  margin: 5px 0px 8px 0px;
  font-weight: bold;
  padding: 0px 0px;
}

.presales-cal input,
.presales-cal textarea,
.presales-cal select {
  border: 1px solid #cacaca;
  padding: 7px;
  margin: 0 0 5px 0;
}

.presales-cal .range {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 22px;
}

.presales-result {
  float: left;
  width: 100%;
}

.presales-container .ins-amt {
  color: white;
  padding: 5px;
  font-weight: bold;
  margin: 0px;
}

.prewhightbg {
  background: white;
  padding: 10px;
  width: 100%;
}

.prewhightbg p {
  margin-bottom: 0px;
}

.amount-text {
  font-size: 16px;
}

#sippiechart,
#emipiechart {
  float: left;
  height: 170px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.sip-o-meter {
  margin-top: 15px;
  text-align: center;
  float: left;
  width: 100%;
}

.pre-inputbox .goal-text {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}

.pre-inputbox .goal-text span {
  font-size: 14px;
  font-weight: normal;
}

.pre-inputbox #TextBoxContainer {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.pre-inputbox #btnAdd,
.pre-inputbox #removeButton {
  float: left;
}

.pre-inputbox #btnAdd > span {
  font-size: 19px;
  font-weight: 400;
  padding: 6px 20px;
  vertical-align: top;
  color: var(--rv-white);
}

.pre-inputbox #removeButton > span {
  font-size: 19px;
  font-weight: 400;
  padding: 6px 20px;
  vertical-align: top;
  color: var(--rv-white);
}

.pre-inputbox #TextBoxDiv1,
.pre-inputbox #TextBoxDiv2,
.pre-inputbox #TextBoxDiv3,
.pre-inputbox #TextBoxDiv4,
.pre-inputbox #TextBoxDiv5 {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.pre-inputbox #TextBoxesGroup label,
.pre-inputbox #TextBoxesGroup .form-control {
  display: inline-block;
  vertical-align: middle;
}

.pre-inputbox #TextBoxesGroup .form-control {
  max-width: 250px;
}

.pre-inputbox .pre-addmore {
  border: 1px solid #dddddd;
  box-shadow: 0 0 4px rgba(206, 203, 203, 0.54);
  margin-bottom: 10px;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  background: #f5f5f5;
  font-weight: bold;
}

.presales-result .lc-box {
  color: white;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

.presales-result .lc-text {
  font-size: 20px;
  color: white;
}

.presales-cal .sip-tg {
  margin-top: 10px;
  border: 1px solid #dddddd;
  overflow: hidden;
}

.presales-cal .sip-tg .nav li {
  width: 50% !important;
  margin-left: 0px;
}

.presales-cal .sip-tg .nav li a {
  padding: 10px 15px;
  border-radius: 0px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.presales-cal .nav > li > a:focus,
.presales-cal .nav > li > a:hover {
  background: rgba(238, 238, 238, 0) !important;
}

.presales-cal .summary table th {
  color: white;
}

.presales-cal .summary table,
.presales-cal .summary th,
.summary td {
  border: 1px solid #dddddd !important;
  border-collapse: collapse;
  font-size: 13px;
  font-family: arial;
  text-align: center;
  vertical-align: middle !important;
}

.presales-cal .summary table tr:nth-child(even) {
  background-color: #f1f1f1;
}

.presales-cal table > tbody > tr > td,
.presales-cal table > tbody > tr > th,
.presales-cal table > tfoot > tr > td,
.presales-cal table > tfoot > tr > th,
.presales-cal table > thead > tr > td,
.presales-cal table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
}

.presales-cal table {
  margin-bottom: 20px;
}

/*-- /Pre Sales Calculator --*/
.stick_option {
  width: 45px;
  height: auto;
  position: fixed;
  top: 35%;
  right: 0px;
  z-index: 999999999;
}

/*-- /pdf icon right --*/
.footer-list1 {
  display: flex;
  justify-content: center;
  color: var(--rv-white);
}

.footer-list1 img {
  width: 80px;
  margin-right: 10px;
}

.border-01 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
}
.home-features-section .features-row .features-icon {
  width: 100%;
}
.home-features-section .features-row .features-icon .icone-row {
  display: flex;
  margin: -15px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.home-features-section .features-row .features-icon .icone-row .icone {
  padding: 15px;
  text-align: center;
}
.home-features-section .features-row .features-icon .icone-row .icone a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-primary);
  padding: 15px;
}
.home-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-black);
}
.home-features-section .features-row .features-icon .icone-row .icone a.active img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.home-features-section .features-row .features-icon .icone-row .icone a img {
  width: 100%;
}
.home-features-section .features-row .features-image {
  padding: 15px;
  max-width: 35%;
  width: 100%;
}
.home-features-section .features-row .features-image .image img {
  height: 500px;
  filter: drop-shadow(2px 4px 6px #888);
}
.home-features-section .features-row .features-content {
  padding: 15px;
  max-width: 65%;
  width: 100%;
}
.home-features-section .features-row .features-content .text {
  min-height: 100px;
}
.home-features-section .features-row .features-content h5 {
  text-transform: capitalize;
}

.news-section .news-box img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-section .news-box a {
  color: var(--rv-black);
}

.fund-performance {
  position: relative;
  width: 100%;
  height: 730px;
}
.fund-performance iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width:767px){
	.contact-info-list li{
	max-width: 100%;
		padding-right: 0;
	}
}