@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/InterTight-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --rentzo-font: "Roboto", sans-serif;
  --rentzo-font-two: "Inter Tight", sans-serif;
  --rentzo-gray: #868689;
  --rentzo-gray-rgb: 134, 134, 137;
  --rentzo-base: #0056D2;
  --rentzo-base-rgb: 0, 86, 210;
  --rentzo-black: #131222;
  --rentzo-black-rgb: 19, 18, 34;
  --rentzo-extra: #E3E3E3;
  --rentzo-extra-rgb: 227, 227, 227;
  --rentzo-white: #ffffff;
  --rentzo-white-rgb: 255, 255, 255;
  --rentzo-bdr-color: #D9D9D9;
  --rentzo-bdr-color-rgb: 238, 239, 242;
  --rentzo-bdr-radius: 20px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  position: relative;
  display: block;
  font-family: var(--rentzo-font);
  color: var(--rentzo-gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--rentzo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rentzo-font-two);
  color: var(--rentzo-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--rentzo-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--rentzo-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--rentzo-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: var(--rentzo-base);
  font-weight: 400;
  text-transform: uppercase;
}

.section-tagline-shape {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 12px;
}

.section-tagline-shape::before,
.section-tagline-shape::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 100%;
  background-color: var(--rentzo-base);
  clip-path: polygon(27% 0, 100% 0%, 73% 100%, 0% 100%);
}

.section-tagline-shape::after {
  left: 18px;
}

.section-tagline-shape img {
  width: auto;
}

.section-title__title {
  color: var(--rentzo-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  margin: 7px 0 0;
  text-transform: uppercase;
}





/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  color: var(--rentzo-white);
  background-color: var(--rentzo-base);
  padding: 13px 30px 13px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

.thm-btn::after {
  content: "";
  background-color: var(--rentzo-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn:hover {
  color: var(--rentzo-white);
}

.thm-btn span {
  position: relative;
  top: -1px;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--rentzo-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--rentzo-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--rentzo-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--rentzo-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--rentzo-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--rentzo-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 120px 8px;
  background-color: var(--rentzo-black);
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--rentzo-white-rgb), .20);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 16px;
  color: var(--rentzo-base);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  color: var(--rentzo-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: var(--rentzo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--rentzo-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-login-reg-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu__top-login-reg-box a {
  color: var(--rentzo-white);
  font-weight: 500;
  position: relative;
  display: block;
}

.main-menu__top-login-reg-box a:hover {
  color: var(--rentzo-base);
}

.main-menu__top-login-reg-box p {
  color: var(--rentzo-base);
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  /* margin-left: 30px; */
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--rentzo-white-rgb), .20);
  border-radius: 5px;
  font-size: 14px;
  color: var(--rentzo-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--rentzo-white);
  border: 1px solid var(--rentzo-base);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--rentzo-base);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 10px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 120px 0;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 20px 0;
}

.main-menu__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--rentzo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--rentzo-base);
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rentzo-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--rentzo-base);
  border-radius: 50%;
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 7px;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--rentzo-font);
}

.main-menu__call-number a {
  color: var(--rentzo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--rentzo-base);
}


.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__main-menu-box .mobile-nav__toggler {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--rentzo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__main-menu-box .mobile-nav__toggler:hover .icon-dots-menu-one {
  width: 30px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--rentzo-base);
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__main-menu-box .mobile-nav__toggler:hover .icon-dots-menu-two {
  width: 25px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--rentzo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__main-menu-box .mobile-nav__toggler:hover .icon-dots-menu-three {
  width: 30px;
}


.stricky-header.main-menu {
  background-color: var(--rentzo-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: none;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 50px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--rentzo-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--rentzo-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--rentzo-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--rentzo-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--rentzo-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--rentzo-white);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--rentzo-bdr-radius);
  border-bottom-right-radius: var(--rentzo-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--rentzo-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--rentzo-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--rentzo-font-two);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: rgba(var(--rentzo-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--rentzo-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

/* @media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
} */

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--rentzo-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--rentzo-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--rentzo-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--rentzo-black);
}

@media (min-width: 769px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--rentzo-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--rentzo-base);
  color: var(--rentzo-white);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--rentzo-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--rentzo-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--rentzo-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--rentzo-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--rentzo-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__contact {
  margin-top: 20px;
}

.mobile-nav__contact h4 {
  color: var(--rentzo-white);
}

.mobile-nav__contact ul {
  margin-top: 15px;
}

.mobile-nav__contact li {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--rentzo-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--rentzo-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
  flex-shrink: 0;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

.bg-gray {
  background-color: rgba(var(--rentzo-base-rgb), .10);
}


.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--rentzo-black);
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 150px 0px;
  z-index: 15;
}

.page-header__inner h3 {
  font-size: 60px;
  color: var(--rentzo-white);
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: var(--rentzo-white);
  text-transform: uppercase;
  font-family: var(--rentzo-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: var(--rentzo-white);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--rentzo-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 12px;
  color: var(--rentzo-base);
}

.main-slider {
  position: relative;
  background-color: var(--rentzo-black);
  z-index: 1;
}

.main-slider .item {
  position: relative;
  padding: 200px 0;
  background-color: var(--rentzo-black);
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  opacity: .30;
  z-index: -1;
}

.active .main-slider__bg {
  transform: scale(1.1);
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__sub-title-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
  transform: perspective(400px) rotateY(0deg) translateX(200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider__sub-title-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider__sub-title {
  font-size: 50px;
  line-height: 1em;
  color: var(--rentzo-white);
  font-family: var(--rentzo-font-two);
  text-transform: uppercase;
  font-weight: 700;
}

.main-slider__title {
  position: relative;
  display: block;
  font-size: 110px;
  color: var(--rentzo-white);
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 9px;
  margin-bottom: 4px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider__title span {
  color: var(--rentzo-base);
}

.active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider__sub-title-two {
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 1.2em;
  color: var(--rentzo-white);
  font-family: var(--rentzo-font-two);
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
  transform: perspective(400px) rotateY(0deg) translateX(200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider__sub-title-two {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider__btn {
  position: relative;
  margin-top: 34px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider__btn {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn-box .thm-btn::after {
  background-color: var(--rentzo-white);
}

.main-slider__btn-box .thm-btn:hover {
  color: var(--rentzo-black);
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 56%;
  left: 0;
  right: 0;
  padding: 0 50px;
  margin-top: 0 !important;
  height: 0;
  line-height: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-top: 60px;
}

.main-slider .owl-theme .owl-dots .owl-dot {
  position: relative;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: rgba(var(--rentzo-base-rgb), .30);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot span:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10px;
  width: 2px;
  height: 50px;
  background-color: rgba(var(--rentzo-white-rgb), .30);
}

.main-slider .owl-theme .owl-dots .owl-dot:last-child span:before {
  display: none;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--rentzo-white-rgb), .30);
}

.main-slider .owl-theme .owl-dots .owl-dot span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0px;
  bottom: 0px;
  transform: translate(-50%, -50%);
  background-color: var(--rentzo-base);
  border-radius: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span::after,
.main-slider .owl-theme .owl-dots .owl-dot.active span::after {
  background-color: rgba(var(--rentzo-white-rgb), 1);
}


.booking {
  position: relative;
}

.booking-content {
  position: relative;
  display: block;
  background-color: var(--rentzo-white);
  margin-top: -100px;
  box-shadow: 0px 4px 60px 10px RGBA(0, 0, 0, 0.1);
  z-index: 1;
}

.booking-bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  opacity: 0.2;
  z-index: -1;
}

.booking-car {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 80px;
  bottom: 10px;
  animation: moveHorizontal 2s linear infinite;
}

@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.booking-form {
  position: relative;
  display: block;
  padding: 40px;
}

.booking-form .row {
  --bs-gutter-x: 20px;
}

.booking-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.booking-input-title {
  font-weight: 500;
  color: var(--rentzo-black);
  margin-bottom: 8px;
}

.booking-input-box input, .booking-input-box select {
  height: 50px;
  width: 100%;
  background-color: var(--rentzo-white);
  border: 1px solid var(--rentzo-bdr-color);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--rentzo-gray);
  display: block;
  transition: all 500ms ease;
}

.booking-input-box input:focus, .booking-input-box select:focus {
  color: var(--rentzo-black);
  border-color: var(--rentzo-base);
}

.booking-input-box i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--rentzo-gray);
}

.booking-btn-box {
  position: relative;
  display: block;
}

.booking-btn-box .thm-btn {
  border: none;
}

.booking-btn-box .thm-btn span {
  rotate: -45deg;
  transition: 0.5s ease-in-out;
}

.booking-btn-box .thm-btn:hover span {
  rotate: 0deg;
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--rentzo-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--rentzo-base) none repeat scroll 0 0;
  border: 2px solid var(--rentzo-base);
  border-radius: 0;
  color: var(--rentzo-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--rentzo-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--rentzo-black) !important;
  background: var(--rentzo-black) !important;
  color: var(--rentzo-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--rentzo-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--rentzo-black);
  color: var(--rentzo-white);
  border-color: var(--rentzo-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--rentzo-font);
}

.about {
  position: relative;
  display: block;
  padding: 100px 0;
  z-index: 1;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image__item {
  margin-right: 63px;
  border-radius: 8px;
  overflow: hidden;
}

.about-image__item img {
  width: 100%;
}

.about-image__small {
  position: absolute;
  right: 0;
  bottom: 35px;
  overflow: hidden;
  border: 8px solid var(--rentzo-white);
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.08));
  border-radius: 8px;
}

.about-image__text {
  font-family: var(--rentzo-font-two);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  background-color: var(--rentzo-base);
  text-transform: capitalize;
  color: var(--rentzo-white);
  transform: rotate(-180deg);
  position: absolute;
  bottom: 47px;
  left: -25px;
  padding: 47px 14px 30px;
  writing-mode: vertical-rl;
  margin: 0;
  clip-path: polygon(0 0, 50% 6%, 100% 0, 100% 100%, 0 100%);
}

.about__left {
  position: relative;
  display: block;
}

.about__left .section-title {
  margin-bottom: 23px;
}

.about__text {
  margin-bottom: 29px;
  text-align: justify;
}

.about__points-box {
  position: relative;
  display: block;
}

.about__points {
  position: relative;
  display: block;
}

.about__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--rentzo-bdr-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.about__points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: var(--rentzo-base);
  border-radius: 50%;
  z-index: 1;
}

.about__points li .icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--rentzo-base-rgb), .20);
  border-radius: 50%;
  z-index: -1;
}

.about__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--rentzo-white);
  transition: all 500ms ease;
}

.about__points li:hover .icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }

  33.3% {
    transform: translateX(-3px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.about__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about__points li .content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 16px;
}

.about__points li .content p {
  text-align: justify;
}


.services {
  position: relative;
  display: block;
  padding: 100px 0;
  counter-reset: serviceNumberTwo;
  z-index: 1;
  background-color: rgba(var(--rentzo-base-rgb), .10);
}

.service-card {
  position: relative;
  z-index: 1;
  background-color: var(--rentzo-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border: 1px solid var(--rentzo-bdr-color);
}

.service-card__image {
  position: relative;
  padding: 12px 12px 0px;
  overflow: hidden;
}

.service-card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.service-card__content {
  padding: 0px 30px 30px;
  position: relative;
}

.service-card__content::after {
  content: "0" counter(serviceNumberTwo);
  counter-increment: serviceNumberTwo;
  font-family: var(--rentzo-font-two);
  position: absolute;
  right: 30px;
  top: 60px;
  color: transparent;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #585858;
  transition: all 0.4s ease-in-out;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 52%;
}

.service-card__icon {
  margin-top: -35px;
  margin-bottom: 25px;
  max-width: 68px;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rentzo-base);
  position: relative;
  font-size: 40px;
  color: var(--rentzo-white);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-card__icon::after {
  content: "";
  width: 40px;
  height: 0px;
  background-color: var(--rentzo-white);
  position: absolute;
  top: 0;
  left: 13px;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.service-card__icon img {
  width: 45px;
}

.service-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  margin-bottom: 10px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--rentzo-black);
}

.service-card__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-align: justify;
}

.service-card:hover .service-card__icon {
  color: var(--rentzo-white);
}

.service-card:hover .service-card__icon::after {
  width: 100%;
  height: 100%;
  left: 0;
  background-color: var(--rentzo-black);
}

.service-card:hover .service-card__content::after {
  -webkit-text-stroke-color: var(--rentzo-base);
  opacity: 1;
}


.why-choose {
  position: relative;
  display: block;
  padding: 100px 0;
  counter-reset: count;
  z-index: 1;
}

.why-choose__single {
  position: relative;
  display: block;
  background-color: var(--rentzo-black);
  border-radius: 20px;
  padding: 45px 25px 33px;
  overflow: hidden;
  z-index: 1;
}

.why-choose__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.why-choose__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1;
}

.why-choose__icon-shape {
  position: absolute;
  top: 50%;
  left: 25px;
  right: 80px;
  height: 5px;
  background-color: var(--rentzo-white);
  transform: translateY(-50%);
  opacity: .20;
  transition: all 500ms ease;
  z-index: -1;
}

.why-choose__icon-shape:before {
  content: "";
  position: absolute;
  top: -8px;
  right: -10px;
  height: 20px;
  width: 20px;
  background-color: var(--rentzo-white);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: all 500ms ease;
}

.why-choose__single:hover .why-choose__icon-shape,
.why-choose__single:hover .why-choose__icon-shape:before {
  background-color: var(--rentzo-base);
  opacity: 1;
}

.why-choose__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--rentzo-base-rgb), 1);
  border-radius: 50%;
  z-index: 1;
}

.why-choose__icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--rentzo-base-rgb), .20);
  border-radius: 50%;
  z-index: -1;
}

.why-choose__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--rentzo-white);
  transition: all 500ms ease;
}

.why-choose__single:hover .why-choose__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.why-choose__count {
  position: relative;
  display: block;
}

.why-choose__count::before {
  position: relative;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--rentzo-white-rgb), .70);
  font-family: var(--rentzo-font-two);
  counter-increment: count;
  content: "0" counter(count);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose__single:hover .why-choose__count::before {
  -webkit-text-stroke: 1px rgba(var(--rentzo-base-rgb), 1);
}

.why-choose__title {
  color: var(--rentzo-base);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 33px;
  margin-bottom: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose__text {
  color: rgba(var(--rentzo-white-rgb), .70);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: justify;
}



.lets-talk {
  position: relative;
  display: block;
  background-color: var(--rentzo-base);
  overflow: hidden;
  padding: 50px 0px;
  z-index: 1;
}

.lets-talk__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.lets-talk__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lets-talk__title {
  position: relative;
  display: block;
}

.lets-talk__title p {
  font-size: 20px;
  color: var(--rentzo-white);
  font-weight: 500;
  line-height: 20px;
}

.lets-talk__title h2 {
  font-size: 45px;
  color: var(--rentzo-white);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 17px;
}

.lets-talk__btn-boxes {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.lets-talk__btn-1,
.lets-talk__btn-2 {
  position: relative;
  display: block;
}

.lets-talk__btn-1 .thm-btn {
  background-color: var(--rentzo-white);
  color: var(--rentzo-black);
}

.lets-talk__btn-2 .thm-btn {
  background-color: var(--rentzo-black);
  color: var(--rentzo-white);
}

.lets-talk__btn-2 .thm-btn::after {
  background-color: var(--rentzo-white);
}

.lets-talk__btn-1 .thm-btn:hover {
  color: var(--rentzo-white);
}

.lets-talk__btn-2 .thm-btn:hover {
  color: var(--rentzo-black);
}

.lets-talk__btn-1 .thm-btn span,
.lets-talk__btn-2 .thm-btn span {
  rotate: -45deg;
  transition: 0.5s ease-in-out;
}

.lets-talk__btn-1 .thm-btn:hover span,
.lets-talk__btn-2 .thm-btn:hover span {
  rotate: 0deg;
}


.testimonial {
  position: relative;
  display: block;
  padding: 100px 0px;
  z-index: 1;
}

.testimonial__left {
  position: relative;
  display: block;
}

.testimonial__right {
  position: relative;
  display: block;
  margin-right: -375px;
}

.testimonial__carousel {
  position: relative;
  display: block;
}

.testimonial__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-single {
  position: relative;
  display: block;
  border: 1px solid var(--rentzo-bdr-color);
  border-radius: var(--rentzo-bdr-radius);
  padding: 25px 30px 25px;
  z-index: 1;
}

.testimonial-client-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 80px;
  border-radius: 50%;
  z-index: 1;
}

.testimonial-img img {
  border-radius: 50%;
}

.testimonial-content {
  position: relative;
  display: block;
  flex: 1;
}

.testimonial-client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
  color: var(--rentzo-black);
}

.testimonial-text {
  text-align: justify;
}

.testimonial-rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.testimonial-rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--rentzo-base);
}

.testimonial-quote {
  position: absolute;
  top: -1px;
  right: -1px;
  height: 60px;
  width: 60px;
  background-color: var(--rentzo-base);
  border-radius: 50%;
  border-top-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-single:hover .testimonial-quote {
  background-color: var(--rentzo-black);
}

.testimonial-quote span {
  font-size: 22px;
  color: var(--rentzo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-single:hover .testimonial-quote span {
  color: var(--rentzo-white);
}


.testimonial__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 40px;
  left: -550px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  z-index: 100;
}

.testimonial__carousel .owl-nav .owl-next,
.testimonial__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  color: var(--rentzo-white) !important;
  background-color: rgba(var(--rentzo-base-rgb), 1) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
  transform: rotate(180deg);
}

.testimonial__carousel.owl-theme .owl-nav .owl-next span,
.testimonial__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--rentzo-black) !important;
  color: var(--rentzo-white) !important;
}


.blog {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 100px 0;
  z-index: 1;
  background-color: rgba(var(--rentzo-base-rgb), .10);
}

.blog__single {
  position: relative;
  display: block;
  background-color: var(--rentzo-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border: 1px solid var(--rentzo-bdr-color);
  padding: 20px 19px 22px;
  border-radius: var(--rentzo-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog__single:hover {
  background-color: var(--rentzo-white);
  box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
  transform: translateY(-10px);
}

.blog__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.blog__date {
  position: absolute;
  top: 0px;
  left: 0;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  z-index: 2;
}

.blog__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  background-color: var(--rentzo-base);
  color: var(--rentzo-white);
  font-weight: 600;
  font-size: 25px;
}

.blog__date span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
  background-color: var(--rentzo-extra);
  color: var(--rentzo-black);
  font-weight: 600;
  font-size: 18px;
}

.blog__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--rentzo-bdr-radius);
  z-index: 1;
}

.blog__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--rentzo-black-rgb), 0.6);
  border-radius: var(--rentzo-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog__single:hover .blog__img::before {
  opacity: 1;
}

.blog__img img {
  width: 100%;
  border-radius: var(--rentzo-bdr-radius);
  transition: .5s ease;
  transform: scale(1.05);
}

.blog__single:hover .blog__img img {
  transform: scale(1);
}

.blog__content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.blog__title {
  font-size: 24px;
  line-height: 1.4em;
  margin-bottom: 14px;
  font-weight: 700;
}

.blog__title a {
  color: var(--rentzo-black);
}

.blog__title a:hover {
  color: var(--rentzo-base);
}

.blog__text {
  margin-bottom: 13px;
  text-align: justify;
}

.blog__read-more {
  position: relative;
  width: 55px;
  height: 51px;
  border: 1px solid var(--rentzo-base);
  overflow: hidden;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--cityride-black, #141414);
  transition: all 500ms ease;
}

.blog__read-more::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 161%;
  left: -48%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--rentzo-base);
  z-index: 0;
  transition: all 500ms ease;
}

.blog__read-more:hover {
  background-color: transparent;
}

.blog__read-more:hover::after {
  top: 50%;
  left: 50%;
}

.blog__read-more span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  z-index: 1;
}

.blog__read-more:hover {
  color: var(--rentzo-white);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 100px 0;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--rentzo-bdr-radius);
}

.blog-details__date {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 5px solid var(--rentzo-base);
  background-color: var(--rentzo-white);
  border-radius: var(--rentzo-bdr-radius);
  text-align: center;
}

.blog-details__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  font-family: var(--rentzo-font-two);
  color: var(--rentzo-black);
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__title-2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  margin-top: 41px;
  margin-bottom: 19px;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--rentzo-base);
  content: "";
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: rgba(var(--rentzo-bdr-color-rgb), .70);
  border-radius: var(--rentzo-bdr-radius);
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single+.sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--rentzo-black);
  overflow: hidden;
  border-radius: 10px;
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--rentzo-base-rgb), .80);
  border-radius: 10px;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.sidebar-post__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.sidebar__post-content-box h3 a {
  color: var(--rentzo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--rentzo-base);
}


.contact-info {
  position: relative;
  display: block;
  padding: 100px 0px;
  z-index: 1;
}

.contact-maskingtext {
  text-align: center;
  margin-bottom: 50px;
}

.contact-maskingtext h1 {
  font-size: 200px;
  font-weight: 700;
  line-height: 170px;
  background-image: url('../images/text-masking-pic.jpg');
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-info-wrap {
  margin-left: 88px;
}

.contact-info-wrap ul {
  list-style: none;
  margin-bottom: 50px;
}

.contact-info-wrap ul li {
  margin-bottom: 40px;
}

.contact-get-info {
  display: flex;
  align-items: center;
}

.contact-get-info .contact-media {
  min-width: 48px;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  color: var(--rentzo-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

.contact-get-info .contact-title {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 600;
  color: var(--rentzo-black);
}

.contact-get-info .contact-title a {
  color: var(--rentzo-black);
  cursor: auto;
}

.contact-get-info p {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-social .contact-title {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--rentzo-black);
}

.contact-social ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 10px;
}

.contact-social ul li {
  margin-bottom: 0px;
}

.contact-social ul li a {
  background-color: var(--rentzo-base);
  width: 46px;
  height: 46px;
  display: flex;
  border-radius: 10px 10px 0px 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.contact-social ul li a i {
  position: relative;
  color: #fff;
  transition: 0.5s;
  z-index: 3;
  transform: rotateY(0deg);
}

.contact-social ul li a i:hover {
  color: #fff;
  transform: rotateY(360deg);
}

.contact-social ul li a:hover i {
  color: #fff;
  transform: scale(1.1);
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.75);
}

.contact-social ul li a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.contact-social ul li a:hover:before {
  top: 0;
}

.contact-social ul li:nth-child(1) a:before {
  background: #000;
}

.contact-social ul li:nth-child(2) a:before {
  background: #3b5999;
}

.contact-social ul li:nth-child(3) a:before {
  background: #ee2a7b;
}

.contact-social ul li:nth-child(4) a:before {
  background: #dd4b39;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: var(--rentzo-black);
  border-radius: 20px;
  padding: 60px 30px;
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -1.44px;
  color: var(--rentzo-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__input-box input {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--rentzo-white-rgb), 0.05);
  border: 1px solid rgba(var(--rentzo-white-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--rentzo-gray);
  display: block;
  border-radius: 10px;
}

.contact-page__input-box textarea {
  font-size: 16px;
  color: var(--rentzo-gray);
  height: 175px;
  width: 100%;
  background-color: rgba(var(--rentzo-white-rgb), 0.05);
  border: 1px solid rgba(var(--rentzo-white-rgb), .10);
  padding: 15px 20px 30px;
  border-radius: 20px;
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 175px;
}

.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
}

.contact-page__btn-box .thm-btn:hover {
  color: var(--rentzo-black);
}

.contact-page__btn-box .thm-btn::before,
.contact-page__btn-box .thm-btn::after {
  background-color: var(--rentzo-white);
}

.g-map {
  margin-top: 50px;
}

.g-map iframe {
  border-radius: 20px;
}

.site-footer {
  position: relative;
  display: block;
  background-color: var(--rentzo-black);
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
}

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 80px 0px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 50px;
}

.footer-widget__about-logo {
  position: relative;
  display: inline-block;
}

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--rentzo-white-rgb), .70);
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: justify;
}

.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-widget__social a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--rentzo-white);
  transition: all 500ms ease;
}

.footer-widget__social a:hover {
  margin-top: -5px;
  background-color: var(--rentzo-white);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--rentzo-black);
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--rentzo-white);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.footer-widget__title::before,
.footer-widget__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  background-color: var(--rentzo-base);
  width: 14px;
  height: 2px;
}

.footer-widget__title::after {
  width: 51px;
  left: 19px;
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li+li {
  margin-top: 16px;
}

.footer-widget__links-list li a {
  color: rgba(var(--rentzo-white-rgb), .70);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--rentzo-base);
  margin-left: 10px;
}

.footer-widget__links li a i {
  font-size: 15px;
  margin-right: 10px;
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
  max-width: 250px;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-widget__contact-list li+li {
  margin-top: 20px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--rentzo-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  flex-shrink: 0;
}

.footer-widget__contact-list li .icon:hover {
  background-color: var(--rentzo-base);
  border: 1px solid var(--rentzo-base);
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--rentzo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li p {
  color: rgba(var(--rentzo-white-rgb), .70);
}

.footer-widget__contact-list li p a {
  color: rgba(var(--rentzo-white-rgb), .70);
}

.footer-widget__contact-list li p a:hover {
  color: var(--rentzo-base);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 30px;
}

.footer-notify {
  color: rgba(var(--rentzo-white-rgb), .70);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footer-widget__form {
  position: relative;
  display: block;
}

.footer-widget__input {
  position: relative;
  display: block;
}

.footer-widget__input input[type="email"] {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  background-color: var(--rentzo-white);
  border: 2px solid rgba(var(--rentzo-white-rgb), .10);
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  color: var(--rentzo-gray);
  font-weight: 400;
  padding-right: 90px;
  padding-left: 40px;
  margin: 0 auto;
}

.footer-widget__btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  top: 5px;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--rentzo-white);
  font-size: 16px;
  transition: all 500ms ease;
  padding: 14px 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 8px;
  background-color: var(--rentzo-base);
  overflow: hidden;
}

.footer-widget__btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: auto;
  left: 0;
  bottom: 0;
  background-color: var(--rentzo-black);
  transition: all 300ms ease;
}

.footer-widget__btn i {
  position: relative;
  z-index: 1;
}

.footer-widget__btn:hover::after {
  top: 0;
  height: 100%;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--rentzo-white-rgb), .20);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

.site-footer__copyright {
  position: relative;
  display: block;
}

.site-footer__copyright-text {
  color: rgba(var(--rentzo-white-rgb), .70);
}

.thankyou {
  position: relative;
  display: block;
  padding: 100px 0;
  z-index: 1;
}

.thankyou .wrapper {
  box-shadow: 4px 8px 40px rgba(88, 146, 255, 0.2);
  padding: 30px;
  text-align: center;
}

.thankyou .wrapper h1 {
  font-family: cursive;
  font-size: 4.5em;
  font-style: italic;
  letter-spacing: 3px;
  color: var(--rentzo-base);
  margin-bottom: 20px;
}

.thankyou .wrapper p {
  font-size: 1.3em;
  letter-spacing: 1px;
}

.counter {
  position: relative;
  display: block;
  background-color: var(--rentzo-black);
  padding: 60px 0 60px;
  z-index: 1;
}

.counter__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .06;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter ul li:nth-child(4) .counter__single::before {
  display: none;
}

.counter__single {
  position: relative;
  display: block;
  text-align: center;
}

.counter__single::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 1px;
  height: 146px;
  background-color: rgba(var(--rentzo-white-rgb), .10);
  transform: translateY(-50%);
}

.counter__icon {
  position: relative;
  display: inline-block;
}

.counter__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--rentzo-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter__single:hover .counter__icon span {
  transform: scale(0.9);
}

.counter__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 13px 0 5px;
}

.counter__count-box h3 {
  font-size: 40px;
  color: var(--rentzo-white);
  line-height: 40px !important;
  font-family: var(--rentzo-font-two) !important;
  font-weight: 700;
}

.counter__count-box span {
  font-size: 40px;
  color: var(--rentzo-white);
  line-height: 40px;
  font-family: var(--rentzo-font-two);
  font-weight: 700;
  text-transform: uppercase;
}

.counter__count-text {
  color: rgba(var(--rentzo-white-rgb), .50);
}

.counter__count-box .odometer-formatting-mark {
  display: none;
}

.listing {
  position: relative;
  display: block;
  padding: 100px 0;
  z-index: 1;
}

.listing__carousel {
  position: relative;
  display: block;
}

.listing__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.listing__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.listing__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.listing__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing__single:hover {
  transform: translateY(-10px);
}

.listing__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--rentzo-bdr-radius);
  border-top-right-radius: var(--rentzo-bdr-radius);
  z-index: 1;
}

.listing__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--rentzo-black-rgb), 0.6);
  border-radius: var(--rentzo-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.listing__single:hover .listing__img::before {
  opacity: 1;
}

.listing__img img {
  width: 100%;
  border-top-left-radius: var(--rentzo-bdr-radius);
  border-top-right-radius: var(--rentzo-bdr-radius);
  transition: .5s ease;
  transform: scale(1.05);
}

.listing__single:hover .listing__img img {
  transform: scale(1);
}

.listing__content {
  position: relative;
  display: block;
  background-color: var(--rentzo-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 23px 25px 30px;
  border-bottom-left-radius: var(--rentzo-bdr-radius);
  border-bottom-right-radius: var(--rentzo-bdr-radius);
}

.listing__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.listing__title a {
  color: var(--rentzo-black);
}

.listing__title a:hover {
  color: var(--rentzo-base);
}

.listing__meta-box-info {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--rentzo-black-rgb), .10);
  padding-top: 13px;
  margin-top: 18px;
}

.listing__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.listing__meta li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  font-size: 14px;
}

.listing__meta--two {
  margin-top: 10px;
}

.listing__car-rent-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--rentzo-extra-rgb), .40);
  padding: 10px 0;
  margin-top: 23px;
  margin-bottom: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.listing__car-rent {
  font-size: 20px;
  color: var(--rentzo-black);
  font-weight: 500;
  line-height: 30px;
}

.listing__car-rent span {
  color: var(--rentzo-base);
  font-weight: 700;
}

.listing__btn-box {
  position: relative;
  display: block;
}

.listing__btn-box .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

.listing__carousel .owl-nav {
  position: absolute;
  top: -120px;
  right: 0;
  margin: 0 !important;
}

.listing__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--rentzo-white);
  background-color: var(--rentzo-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing__carousel.owl-theme .owl-nav .owl-prev {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--rentzo-white);
  background-color: var(--rentzo-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.listing__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.listing__carousel.owl-theme .owl-nav .owl-next span,
.listing__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing__carousel.owl-theme .owl-nav .owl-next:hover,
.listing__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: rgba(var(--rentzo-black-rgb), 1);
  color: var(--rentzo-white);
}