/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
    --rentol-font: "Manrope", sans-serif;
    --rentol-heading-font: "Manrope", sans-serif;
    --rentol-special-font: "DM Sans", sans-serif;
    --rentol-text: #7E7E7E;
    --rentol-text-rgb: 126, 126, 126;
    --rentol-text-gray: #58595B;
    --rentol-text-gray-rgb: 88, 89, 91;
    --rentol-base: #F2AF1E;
    --rentol-base-rgb: 242, 175, 30;
    --rentol-primary: #EB3E32;
    --rentol-primary-rgb: 235, 62, 50;
    --rentol-primary2: #E66431;
    --rentol-primary2-rgb: 230, 100, 49;
    --rentol-primary3: #CEAC69;
    --rentol-primary3-rgb: 206, 172, 105;
    --rentol-primary4: #BC1834;
    --rentol-primary4-rgb: 188, 24, 52;
    --rentol-gray: #EFEFEF;
    --rentol-gray-rgb: 239, 239, 239;
    --rentol-white: #fff;
    --rentol-white-rgb: 255, 255, 255;
    --rentol-black: #212121;
    --rentol-black-rgb: 33, 33, 33;
    --rentol-black2: #000000;
    --rentol-black2-rgb: 0, 0, 0;
    --rentol-black3: #040C2C;
    --rentol-black3-rgb: 4, 12, 44;
    --rentol-black4: #10181A;
    --rentol-black4-rgb: 16, 24, 26;
    --rentol-border-color: #D2D2D2;
    --rentol-border-color-rgb: 210, 210, 210;
    --rentol-letter-space: 0.1em;
    --rentol-letter-space-xl: 0.2em;
    --rentol-text-dark: #212121;
    --rentol-text-dark-rgb: 33, 33, 33;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
    margin-top: 20px;
}

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

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

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

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

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

.mt-120 {
    margin-top: 120px;
}

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

.mt--120 {
    margin-top: -120px;
}

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

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

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

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

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

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

.mb-120 {
    margin-bottom: 120px;
}

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

.mb--120 {
    margin-bottom: -120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

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

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

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

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

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

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

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

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

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

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

.rentol-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
    font-size: 16px;
    font-weight: 600;
    padding: 9px 21px;
    transition: 0.5s ease-in-out;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    border-radius: 6px;
}

    .rentol-btn i {
        font-size: 13px;
        color: inherit;
        display: inline-block;
        transition: all 0.2s ease;
    }

    .rentol-btn::after {
        content: "";
        background-color: var(--rentol-black, #212121);
        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;
    }

    .rentol-btn:hover {
        background-color: var(--rentol-black, #212121);
        color: var(--rentol-white, #fff);
    }

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

.rentol-btn--submite:hover {
    background-color: var(--rentol-black, #212121);
    color: var(--rentol-white, #fff);
}

    .rentol-btn--submite:hover i {
        transform: rotate(0deg);
    }

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

.social {
    position: relative;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.social__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .social__list {
        flex-direction: column;
    }
}

.social__list li {
    position: relative;
}

@media (max-width: 767px) {
    .social__list li {
        width: 100%;
    }
}

.social__list li a {
    font-size: 32px;
    color: var(--rentol-black, #212121);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .social__list li a {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .social__list li a {
        font-size: 24px;
        gap: 10px;
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .social__list li a {
        justify-content: center;
    }
}

.social__list li a i {
    color: var(--rentol-text, #7E7E7E);
    position: relative;
    top: 4px;
    transition: all 0.3s ease;
}

.social__list li a:hover {
    color: var(--rentol-base, #F2AF1E);
}

    .social__list li a:hover i {
        color: var(--rentol-base, #F2AF1E);
        animation: bounceIn 1s linear;
        animation-duration: 1s;
    }

.social__list li + li {
    position: relative;
}

    .social__list li + li::before {
        position: absolute;
        left: -36%;
        top: 0;
        width: 1px;
        height: 100%;
        content: "";
        background-color: var(--rentol-border-color, #D2D2D2);
    }

@media (max-width: 1199px) {
    .social__list li + li::before {
        left: -20%;
    }
}

@media (max-width: 991px) {
    .social__list li + li::before {
        left: -15%;
    }
}

@media (max-width: 767px) {
    .social__list li + li::before {
        width: 100%;
        height: 1px;
        left: 0;
    }
}

.sec-title {
    position: relative;
    line-height: 1;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .sec-title {
        padding-bottom: 50px;
        margin-top: -2px;
    }
}

.sec-title__tagline {
    margin: 0;
    color: var(--rentol-base, #F2AF1E);
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 17px;
}

.sec-title__title {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
    margin: 0;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 45px;
        line-height: 55px;
    }
}

.sec-title.text-end .sec-title__tagline {
    margin-right: 25px;
}

.sec-title.text-center .sec-title__tagline {
    margin-left: -20px;
}

.sec-title--four .sec-title__tagline {
    color: var(--rentol-primary3, #CEAC69);
}

.sec-title--four .sec-title__title {
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 21px;
}

    .sec-title--four .sec-title__title::after {
        content: "";
        width: 32px;
        height: 3px;
        position: absolute;
        left: 50%;
        bottom: 0;
        background-color: var(--rentol-primary3, #CEAC69);
        transform: translateX(-50%);
    }

    .sec-title--four .sec-title__title span {
        color: var(--rentol-primary3, #CEAC69);
    }

.sec-title--five .sec-title__tagline {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--rentol-primary2, #E66431);
}

.sec-title--five .sec-title__title {
    letter-spacing: -0.03em;
}

.sec-title-three {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .sec-title-three {
        padding-bottom: 50px;
        margin-top: -2px;
    }
}

.sec-title-three__tagline {
    margin: 0;
    color: var(--rentol-primary4, #BC1834);
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 0px;
}

.sec-title-three__image {
    margin-right: 10px;
}

.sec-title-three__title {
    margin-top: 17px;
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 122%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black3, #040C2C);
    text-shadow: 0 0 0.01px currentColor;
}

@media (min-width: 768px) {
    .sec-title-three__title {
        font-size: 45px;
        line-height: 55px;
    }
}

.sec-title-three__title span {
    color: var(--rentol-primary4, #BC1834);
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
*,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--rentol-base, #F2AF1E);
    transition: all 400ms ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rentol-heading-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121);
}

@media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

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

.background-base {
    background-color: var(--rentol-base, #F2AF1E);
}

.background-white {
    background-color: var(--rentol-white, #fff);
}

.background-gray {
    background-color: var(--rentol-gray, #EFEFEF);
}

.background-black {
    background-color: var(--rentol-black, #212121);
}

.background-black-2 {
    background-color: var(--rentol-black2, #000000);
}

.rentol-text-dark {
    color: var(--rentol-text-dark, #6e6b70);
}

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .section-space {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-space-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .section-space-two {
        padding-top: 97px;
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .section-space-two {
        padding-top: 77px;
        padding-bottom: 80px;
    }
}

.section-space-top {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .section-space-top {
        padding-top: 100px;
    }
}

@media (max-width: 575px) {
    .section-space-top {
        padding-top: 80px;
    }
}

.section-space-bottom {
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .section-space-bottom {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .section-space-bottom {
        padding-bottom: 80px;
    }
}

.page-wrapper-three {
    overflow: visible !important;
}

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

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

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

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

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

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

.gutter-x-15 {
    --bs-gutter-x: 15px;
}

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

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

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

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

.tabs-box .tabs-content .tab:not(.active-tab) {
    display: none;
}

.tabs-box-two .tabs-content-two .tab-two:not(.active-tab-two) {
    display: none;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--rentol-base, #F2AF1E);
}

.tns-outer .tns-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

    .tns-outer .tns-controls button {
        width: 45px;
        height: 45px;
        border: 2px solid #f4f4f4;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--rentol-text, #7E7E7E);
        border-radius: 50%;
        margin-left: 5px;
        margin-right: 5px;
    }

.block-title {
    margin-top: -8px;
    margin-bottom: 50px;
}

.block-title__decor {
    width: 21px;
    height: 14px;
    background-image: url(../images/shapes/leaf-1-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    line-height: 1;
    margin-bottom: -5px;
    position: relative;
    top: -7px;
}

.block-title p {
    margin: 0;
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    line-height: 1;
    margin-bottom: 7px;
}

@media (min-width: 768px) {
    .block-title p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .block-title p {
        font-size: 20px;
    }
}

.block-title h3 {
    margin: 0;
    font-size: 35px;
    color: var(--rentol-black, #212121);
}

@media (min-width: 768px) {
    .block-title h3 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .block-title h3 {
        font-size: 50px;
    }
}

.ul-list-one {
    margin-bottom: 0;
}

    .ul-list-one li {
        position: relative;
        padding-left: 45px;
        font-size: 16px;
        font-weight: 500;
        color: var(--rentol-black, #212121);
    }

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--rentol-base, #F2AF1E);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--rentol-black, #212121);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200px auto;
    width: 100%;
    height: 100%;
}

@media print {
    .car-top {
        display: none;
    }
}

/*************************
      Back to top
*************************/
.car-top {
    width: 85px;
    position: fixed;
    bottom: -180px;
    right: 30px;
    z-index: 9999;
    opacity: 1;
    cursor: pointer;
}

    .car-top.show {
        bottom: 5% !important;
        -webkit-transition: 1.0s;
        -moz-transition: 1.0s;
        transition: 1.0s;
    }

    .car-top.car-run {
        bottom: 100% !important;
        -webkit-transition: 1.0s;
        -moz-transition: 1.0s;
        transition: 1.0s;
    }

    .car-top.car-down {
        -webkit-transition: 1.0s;
        -ms-transition: 1.0s;
        -o-transition: 1.0s;
        -moz-transition: 1.0s;
        transition: 1.0s;
    }

    .car-top:before, .car-top:after {
        content: "";
        position: absolute;
        -o-transition: 0.2s;
        -webkit-transition: 0.2s;
        -ms-transition: 0.2s;
        -moz-transition: 0.2s;
        transition: 0.2s;
        opacity: 0;
    }

    .car-top:hover:before, .car-top:hover:after, .car-top.car-run:before, .car-top.car-run:after {
        opacity: 1;
    }

    .car-top:before, .car-top.car-run:before {
        top: -1px;
        left: 0px;
        width: 85px;
        height: 89px;
        background: url(../images/car-focus.png) no-repeat 0 0;
    }

/* scroll to top */
.scroll-top {
    height: 60px;
    width: 60px;
    background-color: var(--rentol-white, #fff);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
}

    .scroll-top.active {
        bottom: 50px;
        transform: scale(1);
        opacity: 1;
        visibility: visible;
        animation: 500ms ease-in-out 0s normal none 1 running sscrollTop;
        transition: 0.3s;
    }

.scroll-top-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}

    .scroll-top-value i {
        font-size: 20px;
    }

@-webkit-keyframes scrollTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
/* post paginations */
.post-pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

    .post-pagination a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-color: var(--rentol-gray, #EFEFEF);
        color: var(--rentol-text, #7E7E7E);
        text-transform: capitalize;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50%;
        line-height: 39px;
        border: 1px solid transparent;
        transition: all 400ms ease;
    }

        .post-pagination a .post-pagination__icon {
            font-size: 14.77px;
            color: var(--rentol-text, #7E7E7E);
            transition: all 400ms ease;
        }

            .post-pagination a .post-pagination__icon svg {
                width: 1em;
                height: 1em;
                fill: currentColor;
            }

        .post-pagination a:hover {
            border-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-base, #F2AF1E);
            background-color: transparent;
        }

            .post-pagination a:hover .post-pagination__icon {
                color: var(--rentol-base, #F2AF1E);
            }

    .post-pagination li.active a {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

        .post-pagination li.active a .post-pagination__icon {
            color: var(--rentol-white, #fff);
        }

.rentol-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.rentol-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .rentol-owl__carousel--with-shadow .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.rentol-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

    .rentol-owl__carousel--basic-nav.owl-carousel .owl-nav button {
        border: none;
        outline: none;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-base, #F2AF1E);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border-radius: 0;
        color: var(--rentol-white, #fff);
        transition: all 500ms ease;
    }

        .rentol-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-black, #212121);
        }

        .rentol-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev {
            background-color: var(--rentol-black, #212121);
        }

            .rentol-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev i {
                display: inline-block;
                transform: rotate(180deg);
            }

            .rentol-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev:hover {
                color: var(--rentol-white, #fff);
                background-color: var(--rentol-base, #F2AF1E);
            }

.rentol-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

    .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
        width: 6px;
        height: 6px;
        display: block;
        border-radius: 50%;
        background-color: var(--rentol-border-color, #D2D2D2);
        border: none;
        position: relative;
        margin: 0;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span::after {
            width: 22px;
            height: 22px;
            position: absolute;
            content: "";
            left: -8px;
            top: 0;
            bottom: 0;
            margin: auto;
            border-radius: 50%;
            border: 1px solid var(--rentol-base, #F2AF1E);
            transform: scale(0);
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

    .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
        background-color: var(--rentol-base, #F2AF1E);
    }

        .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after, .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
            transform: scale(1);
        }

    .rentol-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
        display: none;
    }

.rentol-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 50px;
}

.rentol-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

/* Slick Unit*/
.rentol-slick__carousel--with-shadow .slick-list {
    overflow: visible;
}

.rentol-slick__carousel--with-shadow .slick-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .rentol-slick__carousel--with-shadow .slick-slide.slick-active {
        opacity: 1;
        visibility: visible;
    }

.rentol-slick__carousel--basic-nav .slick-button {
    border: none;
    outline: none;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    padding: 0;
    z-index: 1;
}

    .rentol-slick__carousel--basic-nav .slick-button i {
        border: none;
        outline: none;
        width: 58px;
        height: 58px;
        background-color: var(--rentol-primary, #EB3E32);
        display: flex;
        justify-content: center;
        opacity: 1;
        align-items: center;
        font-weight: 900;
        color: var(--rentol-white, #fff);
        border-radius: 50%;
        font-size: 16px;
        transition: all 500ms ease;
        border: 1px solid transparent;
    }

        .rentol-slick__carousel--basic-nav .slick-button i:hover {
            background-color: transparent;
            color: var(--rentol-primary, #EB3E32);
            border-color: var(--rentol-border-color, #D2D2D2);
        }

.rentol-slick__carousel--basic-nav .slick-button--prev {
    left: 40%;
}

/* custom cursor */
.custom-cursor-two {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: var(--rentol-white, #fff);
    opacity: 0;
    transition: all 500ms ease;
    z-index: 11;
    pointer-events: none;
}

.custom-cursor-two__icon {
    font-size: 22px;
    color: var(--rentol-black, #212121);
    display: inline-block;
}

.custom-cursor-two__icon--left {
    position: relative;
    top: -3px;
    transform: rotate(-180deg);
}

.custom-cursor-two-hover:hover + .custom-cursor-two {
    opacity: 1;
}

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--rentol-black, #212121);
    color: var(--rentol-white, #fff);
    font-family: var(--rentol-font, "Manrope", sans-serif);
}

.ui-datepicker-calendar th span {
    font-family: var(--rentol-font, "Manrope", sans-serif);
}

.ui-datepicker-calendar td {
    background-color: var(--rentol-gray, #EFEFEF);
    background-image: none;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E);
}

    .ui-datepicker-calendar td a {
        border-color: var(--rentol-border-color, #D2D2D2);
        background-color: var(--rentol-gray, #EFEFEF);
        background-image: none;
    }

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
    border-color: var(--rentol-border-color, #D2D2D2);
    background-color: var(--rentol-gray, #EFEFEF);
    background-image: none;
    color: var(--rentol-text, #7E7E7E);
    padding: 15px 10px;
    text-align: center;
    line-height: 1em;
}

    .ui-datepicker-calendar .ui-state-default:hover,
    .ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
    .ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-base, #F2AF1E);
    }

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
    color: var(--rentol-white, #fff);
    background-color: var(--rentol-base, #F2AF1E);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--rentol-white, #fff);
    color: var(--rentol-black, #212121);
}

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
        top: 2px;
    }

    .ui-datepicker .ui-datepicker-prev:hover {
        left: 2px;
    }

    .ui-datepicker .ui-datepicker-next:hover {
        right: 2px;
    }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    background: var(--rentol-base, #F2AF1E);
    box-shadow: var(--rentol-base, #F2AF1E) 0 1px 3px 0 inset;
    color: var(--rentol-white, #fff);
    font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: var(--rentol-base, #F2AF1E) !important;
    color: var(--rentol-white, #fff) !important;
}

.logo-retina img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
    height: 647px;
    width: 100vw;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

    .video-one img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-one .video-popup {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 500ms ease;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 1;
    }

        .video-one .video-popup i {
            background-color: var(--rentol-white, #fff);
            border-radius: 50%;
            z-index: 2;
            width: 70px;
            height: 70px;
            transition: all 500ms ease;
            font-size: 18px;
            color: var(--rentol-base, #F2AF1E);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-one .video-popup .ripple {
            content: "";
            border: 1px solid var(--rentol-white, #fff);
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: calc(100% + 25px);
            height: calc(100% + 25px);
            border-radius: 50%;
            animation: videoZoom 3s linear infinite;
            animation-delay: 0s;
            animation-delay: 0.55s;
        }

            .video-one .video-popup .ripple::after {
                content: "";
                border: 1px solid var(--rentol-white, #fff);
                position: absolute;
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: calc(100% + 50px);
                height: calc(100% + 50px);
                border-radius: 50%;
                animation: videoZoom 1.5s linear infinite;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-delay: 0s;
            }

        .video-one .video-popup:hover i {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-base, #F2AF1E);
        }

/**** Team Card One*****/
.team-card {
    position: relative;
    z-index: 1;
}

.team-card__inner {
    position: relative;
    z-index: 1;
}

.team-card__image {
    overflow: hidden;
    border-radius: 15px;
}

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

    .team-card__image::after {
        background: hsla(0, 0%, 100%, 0.3);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        opacity: 1;
        z-index: 9;
        pointer-events: none;
    }

.team-card__content {
    margin-top: -90px;
    position: relative;
    z-index: 1;
    padding: 50px 25px 25px;
    margin-left: 25px;
    margin-right: 25px;
    border-radius: 16px;
    box-shadow: 0px 4px 60px rgba(31, 28, 25, 0.1);
}

@media (max-width: 767px) {
    .team-card__content {
        background-color: var(--rentol-white, #fff);
        padding: 30px;
    }
}

@media (max-width: 450px) {
    .team-card__content {
        padding: 25px 15px;
    }
}

.team-card__title {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 136%;
    margin-bottom: 7px;
    padding-bottom: 0;
}

    .team-card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .team-card__title a:hover {
            background-size: 100% 1px;
        }

        .team-card__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.team-card__number {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--rentol-text-gray, #58595B);
}

    .team-card__number a {
        color: inherit;
    }

        .team-card__number a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.team-card__social__icon {
    width: 36px;
    height: 36px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--rentol-base, #F2AF1E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--rentol-white, #fff);
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

    .team-card__social__icon:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
    }

@media (max-width: 767px) {
    .team-card__social__icon {
        top: -20px;
    }
}

.team-card__social__hover {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    transform: translateY(-200px);
    right: 20px;
    background-color: var(--rentol-white, #fff);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
}

    .team-card__social__hover a {
        color: var(--rentol-base, #F2AF1E);
    }

        .team-card__social__hover a:hover {
            color: var(--rentol-black, #212121);
        }

.team-card__social:hover .team-card__social__hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(-150px);
}

@media (max-width: 767px) {
    .team-card__social:hover .team-card__social__hover {
        transform: translateY(-170px);
    }
}

.team-card__content__shape {
    position: absolute;
    content: "";
    top: 0;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 125.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,125.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M95 1236 c-37 -17 -70 -52 -84 -89 -7 -19 -11 -199 -11 -529 0 -491 0 -501 21 -538 12 -21 38 -47 59 -59 l38 -21 1382 0 1382 0 38 21 c21 12 47 38 59 59 20 37 21 49 21 440 0 395 0 403 -22 441 -37 67 -66 74 -383 98 -1562 120 -2277 175 -2410 186 -40 3 -70 1 -90 -9z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 125.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,125.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M95 1236 c-37 -17 -70 -52 -84 -89 -7 -19 -11 -199 -11 -529 0 -491 0 -501 21 -538 12 -21 38 -47 59 -59 l38 -21 1382 0 1382 0 38 21 c21 12 47 38 59 59 20 37 21 49 21 440 0 395 0 403 -22 441 -37 67 -66 74 -383 98 -1562 120 -2277 175 -2410 186 -40 3 -70 1 -90 -9z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    left: 0;
    width: 100%;
    height: 133px;
    background-color: var(--rentol-white, #fff);
    z-index: -1;
}

@media (max-width: 767px) {
    .team-card__content__shape {
        display: none;
    }
}

.team-card:hover .team-card__image img {
    transform: scale(1.1);
}

.team-card:hover .team-card__image::after {
    height: 100%;
    opacity: 0;
    transition: all 0.4s linear;
}

/**** Driver One*****/
.driver-one {
    position: relative;
    z-index: 1;
}

    .driver-one .sec-title {
        border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
        margin-bottom: 40px;
    }

.driver-one__list li + li {
    margin-top: 40px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    padding-top: 30px;
}

.driver-one__list .active-btn-two .driver-one__item .driver-one__item__subtitle,
.driver-one__list .active-btn-two .driver-one__item .driver-one__item__title {
    color: var(--rentol-base, #F2AF1E);
    -webkit-text-stroke: 0.5px var(--rentol-base, #F2AF1E);
}

.driver-one__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .driver-one__item {
        flex-direction: column;
        gap: 10px;
        justify-content: start;
        align-items: start;
    }
}

.driver-one__item__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--rentol-black, #212121);
    display: block;
    letter-spacing: 0.15em;
    transition: all 0.4s ease-in-out;
}

.driver-one__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    color: transparent;
    -webkit-text-stroke: 0.5px var(--rentol-black, #212121);
    letter-spacing: -0.02em;
    margin-bottom: -5px;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
    .driver-one__item__title {
        font-size: 30px;
    }
}

.driver-one__item__social {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-black, #212121);
    padding: 6px;
    border-radius: 100px;
    gap: 10px;
}

    .driver-one__item__social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: transparent;
        border: 1px solid var(--rentol-border-color, #D2D2D2);
        font-size: 14px;
        color: var(--rentol-white, #fff);
    }

        .driver-one__item__social a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            border-color: var(--rentol-base, #F2AF1E);
        }

.driver-one__thumb img {
    object-fit: cover;
    width: 100%;
}

.driver-one__element-one {
    position: absolute;
    bottom: 30%;
    left: 40px;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .driver-one__element-one {
        display: none;
    }
}

.driver-one__element-two {
    position: absolute;
    top: 30%;
    right: 40px;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .driver-one__element-two {
        display: none;
    }
}

.driver-one__element-three {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

    .driver-one__element-three img {
        animation: movebounce3 3s ease-in-out infinite;
    }

.driver-one .tabs-content-two {
    position: relative;
    z-index: 1;
}

/**** Crew One*****/
.crew-card-one {
    position: relative;
    overflow: hidden;
    z-index: 4;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
}

.crew-card-one__social {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    transform: translateX(-200%);
    transition: all 0.4s ease-in-out;
}

    .crew-card-one__social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--rentol-white, #fff);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
        font-size: 18px;
        color: var(--rentol-primary4, #BC1834);
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

        .crew-card-one__social a::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--rentol-primary4, #BC1834);
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }

        .crew-card-one__social a:hover {
            color: var(--rentol-white, #fff);
        }

            .crew-card-one__social a:hover::after {
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

.crew-card-one__thumb {
    position: relative;
    overflow: hidden;
}

    .crew-card-one__thumb img {
        position: relative;
        object-fit: cover;
        width: 100%;
        transform: scale(1);
        transition: all 0.4s ease-in-out;
    }

    .crew-card-one__thumb::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        transform: translateY(-100%);
        left: 0;
        top: 0;
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
        transition: all 0.4s ease-in-out;
    }

.crew-card-one__content {
    background: var(--rentol-white, #fff);
    padding: 23px 15px;
    position: absolute;
    transform: rotate(-180deg);
    position: absolute;
    writing-mode: vertical-rl;
    bottom: 30px;
    right: 30px;
    transition: all 0.4s ease-in-out;
    min-height: 209px;
}

.crew-card-one__content__title {
    margin-left: 0;
    margin-right: 0;
    margin-top: -7px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 136%;
    margin-bottom: 0px;
    padding-bottom: 0;
    color: var(--rentol-black3, #040C2C);
    text-transform: capitalize;
}

    .crew-card-one__content__title a {
        color: inherit;
    }

        .crew-card-one__content__title a:hover {
            color: var(--rentol-black3, #040C2C);
        }

.crew-card-one__content__dec {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: -5px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.crew-card-one:hover {
    border-color: var(--rentol-primary4, #BC1834);
    padding: 13px;
}

    .crew-card-one:hover .crew-card-one__thumb img {
        transform: scale(1.1);
    }

    .crew-card-one:hover .crew-card-one__thumb::after {
        transform: translateY(0%);
    }

    .crew-card-one:hover .crew-card-one__social {
        transform: translateX(0%);
    }

    .crew-card-one:hover .crew-card-one__content {
        background: var(--rentol-primary4, #BC1834);
    }

        .crew-card-one:hover .crew-card-one__content .crew-card-one__content__title,
        .crew-card-one:hover .crew-card-one__content .crew-card-one__content__dec {
            color: var(--rentol-white, #fff);
        }

/**** Team Four*****/
.team-four {
    position: relative;
    z-index: 1;
    background-color: #F7F5F2;
}

.team-four__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    z-index: -1;
    opacity: 0.3;
}

.team-four .team-card__social__icon {
    background-color: var(--rentol-primary3, #CEAC69);
}

.team-four .team-card__title a:hover,
.team-four .team-card__number a:hover,
.team-four .team-card__social__hover a {
    color: var(--rentol-primary3, #CEAC69);
}

/*team-details*/
.team-details {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--rentol-white, #fff);
}

@media (max-width: 991px) {
    .team-details {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .team-details {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.team-details__inner {
    background: var(--rentol-gray, #EFEFEF);
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 20px;
    z-index: 1;
}

.team-details__inner__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .team-details__inner {
        padding: 30px 20px;
    }
}

.team-details__thumb {
    position: relative;
    overflow: hidden;
    margin-right: -15px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .team-details__thumb {
        margin-right: 0;
    }
}

.team-details__thumb__image {
    position: relative;
}

    .team-details__thumb__image img {
        object-fit: cover;
        width: 100%;
    }

    .team-details__thumb__image::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
        transform: translateY(-30%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .team-details__thumb__image:hover .team-details__thumb__social {
        transform: translate(-50%, 0%);
    }

    .team-details__thumb__image:hover::after {
        visibility: visible;
        opacity: 1;
        transform: translateY(0%);
    }

.team-details__thumb__social {
    position: absolute;
    bottom: 40px;
    left: 50%;
    gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 200%);
    transition: all 0.4s ease-in-out;
    text-align: center;
    z-index: 1;
}

    .team-details__thumb__social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.3);
        font-size: 18px;
        color: var(--rentol-white, #fff);
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

        .team-details__thumb__social a::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--rentol-base, #F2AF1E);
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }

        .team-details__thumb__social a:hover {
            color: var(--rentol-white, #fff);
            border: 1px solid var(--rentol-base, #F2AF1E);
        }

            .team-details__thumb__social a:hover::after {
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

.team-details__content {
    margin-left: 15px;
}

@media (max-width: 991px) {
    .team-details__content {
        margin-left: 0px;
    }
}

.team-details__content__about {
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding-bottom: 22px;
    margin-bottom: 30px;
}

.team-details__content__title {
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding-bottom: 28px;
    margin-bottom: 20px;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

.team-details__content__text {
    font-style: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
}

    .team-details__content__text + .team-details__content__text {
        margin-top: 10px;
    }

.team-details__content__signeture {
    margin-top: 35px;
    margin-bottom: 5px;
}

.team-details__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

@media (max-width: 767px) {
    .team-details__link {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 10px;
    }
}

.team-details__link__item__inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .team-details__link__item__inner:hover .team-details__link__icon {
        color: var(--rentol-white, #fff);
    }

        .team-details__link__item__inner:hover .team-details__link__icon::after {
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }

.team-details__link__icon {
    width: 45px;
    max-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--rentol-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--rentol-base, #F2AF1E);
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

    .team-details__link__icon::after {
        content: "";
        width: 0%;
        height: 0%;
        background: var(--rentol-base, #F2AF1E);
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

.team-details__link a,
.team-details__link p {
    font-style: normal;
    color: var(--rentol-black, #212121);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

.team-details__link a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .team-details__link a:hover {
        background-size: 100% 1px;
    }

    .team-details__link a:hover {
        color: var(--rentol-base, #F2AF1E);
    }

/*team-details*/
.team-skills-one {
    position: relative;
    background: var(--rentol-gray, #EFEFEF);
}

.team-skills-one__top {
    margin-bottom: 50px;
}

.team-skills-one__top__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 18px;
}

.team-skills-one__top__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

    .team-skills-one__top__text + .team-skills-one__top__text {
        margin-top: 29px;
    }

@media (max-width: 991px) {
    .team-skills-one__top__text + .team-skills-one__top__text {
        margin-top: 20px;
    }
}

.team-skills-one__inner {
    background: var(--rentol-white, #fff);
    padding: 30px 40px;
}

@media (max-width: 991px) {
    .team-skills-one__inner {
        padding: 20px;
    }
}

.team-skills-one__inner__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 27px;
}

.team-skills-one__skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 31px;
    margin-bottom: 42px;
}

@media (max-width: 991px) {
    .team-skills-one__skills {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

/*team-Progress*/
.progress-box__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
}

.progress-box__bar {
    width: 100%;
    height: 10px;
    background-color: var(--rentol-gray, #EFEFEF);
    position: relative;
}

.progress-box__bar__inner {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--rentol-base, #F2AF1E);
    transition: all 800ms linear;
    width: 0px;
}

.progress-box__number {
    position: absolute;
    bottom: calc(100% + 2px);
    right: 0;
    font-size: 16px;
    color: var(--rentol-black, #212121);
    font-weight: 700;
    line-height: 1.875;
}

.blog-card-one {
    position: relative;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    padding: 30px;
    border-radius: 20px;
}

@media (max-width: 1199px) and (min-width: 991px), (max-width: 450px) {
    .blog-card-one {
        padding: 20px;
    }
}

.blog-card-one__image {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 21px;
}

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

.blog-card-one__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 20px;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-card-one__image__link::before, .blog-card-one__image__link::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-card-one__image__link::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-card-one__content {
    position: relative;
}

.blog-card-one__title {
    margin: 0;
    margin-bottom: 14px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    margin-bottom: 8px;
    padding-bottom: 0;
}

    .blog-card-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-one__title a:hover {
            background-size: 100% 1px;
        }

        .blog-card-one__title a:hover {
            color: var(--rentol-base, #F2AF1E);
            text-shadow: 0 0 1px currentColor;
        }

.blog-card-one__meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    margin-bottom: 26px;
}

    .blog-card-one__meta li {
        color: var(--rentol-text, #7E7E7E);
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

        .blog-card-one__meta li i {
            font-size: 15px;
            color: var(--rentol-base, #F2AF1E);
            margin-right: 8px;
        }

        .blog-card-one__meta li a {
            display: flex;
            align-items: center;
            color: inherit;
            transition: all 500ms ease;
        }

            .blog-card-one__meta li a:hover {
                color: var(--rentol-base, #F2AF1E);
                text-shadow: 0 0 1px currentColor;
            }

.blog-card-one__date {
    width: 55px;
    height: 51px;
    background-color: var(--rentol-gray, #EFEFEF);
    text-align: center;
    font-size: 14px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121);
    padding: 0;
    font-weight: 700;
    border-radius: 10px;
}

    .blog-card-one__date span {
        padding-top: 8px;
        padding-bottom: 8px;
        background-color: var(--rentol-base, #F2AF1E);
        font-size: 14px;
        font-weight: 600;
        display: block;
        line-height: 0.8;
        color: var(--rentol-gray, #EFEFEF);
        border-radius: 10px;
    }

.blog-card-one:hover .blog-card-one__image img {
    transform: scale(1.1);
}

.blog-card-one:hover .blog-card-one__image__link {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

/*Blog Card two Style*/
.blog-card-two {
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding-bottom: 30px;
}

.blog-card-two__image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 22px;
}

    .blog-card-two__image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

.blog-card-two__image__item {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 20px;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-card-two__image__item::before, .blog-card-two__image__item::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-card-two__image__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-card-two__date {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 55px;
    height: 51px;
    background-color: var(--rentol-gray, #EFEFEF);
    text-align: center;
    font-size: 14px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121);
    padding: 0;
    font-weight: 700;
    border-radius: 10px;
}

    .blog-card-two__date span {
        padding-top: 8px;
        padding-bottom: 8px;
        background-color: var(--rentol-base, #F2AF1E);
        font-size: 14px;
        font-weight: 600;
        display: block;
        line-height: 0.8;
        color: var(--rentol-gray, #EFEFEF);
        border-radius: 10px;
    }

.blog-card-two__content {
    padding: 8px 0px 0px;
    position: relative;
    z-index: 2;
}

.blog-card-two__meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    margin-left: -5px;
}

.blog-card-two__meta__item {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-card-two__meta__item a {
        color: inherit;
    }

        .blog-card-two__meta__item a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

    .blog-card-two__meta__item i {
        color: var(--rentol-base, #F2AF1E);
        margin: 8px;
    }

.blog-card-two__title {
    color: var(--rentol-black, #212121);
    margin-bottom: 13px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

    .blog-card-two__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-two__title a:hover {
            background-size: 100% 1px;
        }

        .blog-card-two__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.blog-card-two__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 24px;
}

.blog-card-two__link {
    display: inline-flex;
    position: relative;
    z-index: 1;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 0;
    color: var(--rentol-white, #fff);
    padding: 15.5px 21px;
    border-radius: 10px;
    background-color: var(--rentol-base, #F2AF1E);
}

.blog-card-two__link__icon {
    position: relative;
    display: inline-flex;
    margin-left: 30px;
}

    .blog-card-two__link__icon i {
        font-size: 24px;
        line-height: 1;
    }

    .blog-card-two__link__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -16px;
        transform: translateY(-50%);
        background-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        transition: all 400ms ease;
    }

.blog-card-two__link::after {
    content: "";
    background-color: var(--rentol-black, #212121);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    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;
    border-radius: 10px;
    background-color: var(--rentol-black, #212121);
}

.blog-card-two__link:hover {
    background-color: var(--rentol-black, #212121);
    color: var(--rentol-white, #fff);
}

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

.blog-card-two:hover .blog-card-two__image img {
    transform: scale(1.1);
}

.blog-card-two:hover .blog-card-two__image__item {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

/***** Blog Two******/
.blog-two {
    position: relative;
    z-index: 1;
    background-color: #F0EAE5;
}

.blog-two__top {
    margin-bottom: 55px;
}

    .blog-two__top .sec-title {
        padding-bottom: 0;
    }

.blog-two__top__btn {
    display: flex;
    align-items: end;
    justify-content: end;
}

.blog-two__top__link {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .blog-two__top__link span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-primary2, #E66431);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .blog-two__top__link span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-black, #212121);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .blog-two__top__link:hover span {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

        .blog-two__top__link:hover span:last-child {
            background-color: var(--rentol-white, #fff);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.blog-two__item {
    background-color: var(--rentol-white, #fff);
    border-radius: 20px;
}

.blog-two__item__image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

    .blog-two__item__image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
        border-radius: 20px 20px 0 0;
    }

.blog-two__item__image__item {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-two__item__image__item::before, .blog-two__item__image__item::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-two__item__image__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-two__item__content {
    padding: 30px;
}

.blog-two__item__date {
    border-radius: 10px;
    width: 57px;
    height: 51px;
    z-index: 2;
    background-color: var(--rentol-white, #fff);
    position: absolute;
    top: 30px;
    left: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: #1E2436;
    text-align: center;
}

    .blog-two__item__date span {
        padding: 4px 0px;
        line-height: normal;
        display: block;
        background-color: var(--rentol-primary2, #E66431);
        color: var(--rentol-white, #fff);
        border-radius: 10px;
    }

.blog-two__item__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
    margin-left: -5px;
}

.blog-two__item__meta__item {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-two__item__meta__item a {
        color: inherit;
    }

        .blog-two__item__meta__item a:hover {
            color: var(--rentol-primary2, #E66431);
        }

    .blog-two__item__meta__item i {
        color: var(--rentol-primary2, #E66431);
        margin: 8px;
        font-size: 14px;
    }

.blog-two__item__title {
    color: var(--rentol-black, #212121);
    margin-bottom: -7px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

    .blog-two__item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-two__item__title a:hover {
            background-size: 100% 1px;
        }

        .blog-two__item__title a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.blog-two__item__link {
    text-transform: capitalize;
    color: var(--rentol-primary, #EB3E32);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

    .blog-two__item__link:hover {
        color: var(--rentol-black, #212121);
    }

.blog-two__item:hover .blog-two__item__image__item {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

.blog-two__item--two {
    display: flex;
    align-items: center;
    gap: 25px;
    border-radius: 0px;
}

@media (max-width: 575px) {
    .blog-two__item--two {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.blog-two__item--two .blog-two__item__content {
    padding: 0px;
}

.blog-two__item--two .blog-two__item__image {
    border-radius: 6px;
    min-width: 142px;
}

    .blog-two__item--two .blog-two__item__image img {
        border-radius: 6px;
    }

@media (max-width: 575px) {
    .blog-two__item--two .blog-two__item__image {
        min-width: auto;
    }
}

.blog-two__item--two .blog-two__item__date {
    background-color: #F0EAE5;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
}

.blog-two__item--two .blog-two__item__title {
    margin-bottom: 19px;
}

.blog-two__item + .blog-two__item {
    padding-top: 30px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-top: 30px;
}

.blog-two .blog-two__right {
    background-color: var(--rentol-white, #fff);
    border-radius: 20px;
    padding: 30px;
}

/***** Blog Four******/
.blog-four {
    position: relative;
    z-index: 1;
}

    .blog-four .sec-title {
        padding-bottom: 55px;
    }

        .blog-four .sec-title .sec-title__title {
            padding-bottom: 0;
        }

            .blog-four .sec-title .sec-title__title::after {
                display: none;
            }

@media (min-width: 1600px) {
    .blog-four .container {
        max-width: 1600px;
    }
}

.blog-card-four__image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 28px;
}

    .blog-card-four__image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

.blog-card-four__image__item {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 20px;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-card-four__image__item::before, .blog-card-four__image__item::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-card-four__image__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-card-four__image::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.7) 0%, rgba(33, 33, 33, 0) 100%);
}

.blog-card-four__date {
    position: absolute;
    top: 20px;
    z-index: 2;
    left: 20px;
    background-color: transparent;
    font-size: 14px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-white, #fff);
    padding: 0;
    font-weight: 700;
    text-transform: capitalize;
}

    .blog-card-four__date span {
        margin-top: -3px;
        display: block;
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 100%;
        color: var(--rentol-primary3, #CEAC69);
        margin-bottom: 5px;
    }

.blog-card-four__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
    margin-left: -5px;
}

.blog-card-four__meta__item {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-primary3, #CEAC69);
}

    .blog-card-four__meta__item a {
        color: inherit;
    }

        .blog-card-four__meta__item a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

    .blog-card-four__meta__item i {
        color: var(--rentol-primary3, #CEAC69);
        margin: 8px;
    }

.blog-card-four__title {
    color: var(--rentol-black, #212121);
    margin-bottom: 15px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

    .blog-card-four__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-four__title a:hover {
            background-size: 100% 1px;
        }

        .blog-card-four__title a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.blog-card-four__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--rentol-primary3, #CEAC69);
    justify-content: center;
    background-color: #F7F5F2;
    transform: rotate(0deg);
    transition: all 0.4s ease-in-out;
}

    .blog-card-four__link:hover {
        background-color: var(--rentol-primary, #EB3E32);
        transform: rotate(45deg);
        color: var(--rentol-white, #fff);
    }

.blog-card-four:hover .blog-card-four__image img {
    transform: scale(1.1);
}

.blog-card-four:hover .blog-card-four__image__item {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

/***** Blog Five******/
.blog-five {
    position: relative;
    z-index: 1;
    padding-top: 77px;
}

    .blog-five .sec-title {
        text-align: center;
        position: relative;
        padding-bottom: 35px;
    }

        .blog-five .sec-title .sec-title__title {
            font-style: normal;
            font-weight: 700;
            font-size: 24px;
            line-height: normal;
            margin-bottom: 0;
            padding-bottom: 0;
            color: var(--rentol-black, #212121);
            position: relative;
            z-index: 1;
        }

            .blog-five .sec-title .sec-title__title::after {
                content: "";
                width: 100%;
                height: 1px;
                position: absolute;
                top: 50%;
                left: 0;
                background-color: var(--rentol-border-color, #D2D2D2);
                z-index: -2;
                transform: translateY(-50%);
            }

            .blog-five .sec-title .sec-title__title::before {
                content: "";
                width: 225px;
                height: 3px;
                background-color: var(--rentol-white, #fff);
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: -1;
                transform: translate(-50%, -50%);
            }

.blog-card-five {
    position: relative;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.blog-card-five__image {
    display: block;
    position: relative;
    overflow: hidden;
}

    .blog-card-five__image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

.blog-card-five__image__item {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-card-five__image__item::before, .blog-card-five__image__item::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-card-five__image__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-card-five__date {
    width: 59px;
    height: 52px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 20px;
    left: 20px;
    z-index: 1;
    background-color: transparent;
    font-size: 14px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-white, #fff);
    background-color: var(--rentol-primary, #EB3E32);
    padding: 0;
    font-weight: 700;
    text-transform: capitalize;
}

    .blog-card-five__date span {
        display: block;
        color: var(--rentol-white, #fff);
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 92%;
    }

.blog-card-five__content {
    padding: 30px;
}

.blog-card-five__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    margin-left: -5px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.blog-card-five__meta__item {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-card-five__meta__item a {
        color: inherit;
    }

        .blog-card-five__meta__item a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

    .blog-card-five__meta__item i {
        color: var(--rentol-primary, #EB3E32);
        margin: 8px;
        font-size: 18px;
    }

.blog-card-five__title {
    color: var(--rentol-black, #212121);
    margin-bottom: 20px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

    .blog-card-five__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-five__title a:hover {
            background-size: 100% 1px;
        }

        .blog-card-five__title a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.blog-card-five__link {
    text-transform: capitalize;
    color: var(--rentol-primary, #EB3E32);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

    .blog-card-five__link:hover {
        color: var(--rentol-black, #212121);
    }

.blog-card-five:hover .blog-card-five__image img {
    transform: scale(1.1);
}

.blog-card-five:hover .blog-card-five__image__item {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

/***** Blog six******/
.blog-three {
    position: relative;
    z-index: 1;
}

.blog-card-six {
    padding: 20px;
    background-color: #E6E7EF;
    transition: all 0.4s ease-in-out;
}

.blog-card-six__image {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    overflow: hidden;
}

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

.blog-card-six__image__item {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-card-six__image__item::before, .blog-card-six__image__item::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-card-six__image__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-card-six__date {
    width: 57px;
    height: auto;
    z-index: 2;
    background-color: var(--rentol-white, #fff);
    position: absolute;
    top: 0;
    left: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: #1E2436;
    text-align: center;
}

    .blog-card-six__date span {
        padding: 3px 0px;
        line-height: normal;
        display: block;
        background-color: var(--rentol-primary4, #BC1834);
        color: var(--rentol-white, #fff);
    }

.blog-card-six__meta {
    position: absolute;
    background-color: var(--rentol-primary4, #BC1834);
    display: flex;
    z-index: 2;
    align-items: center;
    bottom: 0;
    gap: 20px;
    margin-bottom: 0;
    padding: 3px 15px;
}

    .blog-card-six__meta a {
        color: var(--rentol-white, #fff);
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 70%;
    }

        .blog-card-six__meta a i {
            margin-right: 10px;
        }

.blog-card-six__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 22px;
    padding-bottom: 0;
    color: var(--rentol-black3, #040C2C);
    text-transform: capitalize;
}

    .blog-card-six__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-six__title a:hover {
            background-size: 100% 1px;
        }

.blog-card-six__btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #251444;
    color: var(--rentol-white, #fff);
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

    .blog-card-six__btn:hover {
        background-color: var(--rentol-primary, #EB3E32);
    }

.blog-card-six:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

    .blog-card-six:hover .blog-card-six__image img {
        transform: scale(1.1);
    }

    .blog-card-six:hover .blog-card-six__image__item {
        opacity: 1;
        transform: scale(1, 1);
        visibility: visible;
    }

.blog-six {
    position: relative;
    z-index: 1;
    background-color: #EFEFEF;
    padding-top: 250px;
}

@media (max-width: 1199px) {
    .blog-six {
        padding-top: 240px;
    }
}

@media (max-width: 991px) {
    .blog-six {
        padding-top: 220px;
    }
}

@media (max-width: 767px) {
    .blog-six {
        padding-top: 200px;
    }
}

.blog-six__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.03;
    z-index: -1;
}

.blog-six__item {
    background-color: var(--rentol-white, #fff);
    padding: 30px;
    border-radius: 20px;
}

.blog-six__item__image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 22px;
}

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

.blog-six__item__image__hover {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 20px;
    transform: scale(0.8, 0.8);
    transition: opacity 500ms ease, transform 500ms ease;
}

    .blog-six__item__image__hover::before, .blog-six__item__image__hover::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .blog-six__item__image__hover::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.blog-six__item__title {
    color: var(--rentol-black, #212121);
    margin-bottom: 15px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

    .blog-six__item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-six__item__title a:hover {
            background-size: 100% 1px;
        }

        .blog-six__item__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.blog-six__item__meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 23px;
    margin-left: -5px;
}

.blog-six__item__meta__item {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-six__item__meta__item a {
        color: inherit;
    }

        .blog-six__item__meta__item a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

    .blog-six__item__meta__item i {
        color: var(--rentol-base, #F2AF1E);
        margin: 8px;
    }

.blog-six__item__date {
    border-radius: 10px;
    width: 57px;
    height: 51px;
    z-index: 2;
    background-color: #EFEFEF;
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: #1E2436;
    text-align: center;
}

    .blog-six__item__date span {
        padding: 4px 0px;
        line-height: normal;
        display: block;
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
        border-radius: 10px;
    }

.blog-six__item:hover .blog-six__item__image__hover {
    opacity: 1;
    transform: scale(1, 1);
    visibility: visible;
}

.blog-six__element-one {
    position: absolute;
    left: 0%;
    top: 10%;
}

    .blog-six__element-one img {
        animation: textRotate 7s ease-in-out infinite;
    }

@media (max-width: 1400px) {
    .blog-six__element-one {
        display: none;
    }
}

.blog-six__element-two {
    position: absolute;
    right: 0%;
    bottom: 3%;
}

    .blog-six__element-two img {
        animation: textRotate 7s ease-in-out infinite;
    }

@media (max-width: 1400px) {
    .blog-six__element-two {
        display: none;
    }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px 12px;
    margin: 0;
}

@media (min-width: 576px) {
    .form-one__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

    .form-one__control label {
        display: block;
        line-height: 1;
        font-size: 14px;
        margin: 0 0 8px;
        font-weight: 500;
        cursor: pointer;
    }

.form-one__control__icon {
    position: absolute;
    bottom: 17px;
    right: 20px;
    font-size: 16px;
}

.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select > .dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    font-weight: 400;
}

.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=tel],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 50px;
    background-color: var(--rentol-gray, #EFEFEF);
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    font-weight: 400;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
}

.form-one textarea {
    height: 135px;
    padding-top: 15px;
}

.form-one .bootstrap-select > .dropdown-toggle {
    display: flex;
    align-items: center;
}

    .form-one .bootstrap-select > .dropdown-toggle .filter-option {
        display: flex;
        align-items: center;
    }

    .form-one .bootstrap-select > .dropdown-toggle::after {
        display: none;
    }

    .form-one .bootstrap-select > .dropdown-toggle:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 25px;
        font-weight: normal;
        font-family: "icomoon" !important;
        content: "\e909";
        font-size: 20px;
        color: var(--rentol-text, #7E7E7E);
        display: flex;
        align-items: center;
    }

.form-one .bootstrap-select .dropdown-menu li a {
    padding: 15px 20px;
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
}

    .form-one .bootstrap-select .dropdown-menu li a:hover,
    .form-one .bootstrap-select .dropdown-menu li a.active {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--rentol-base, #F2AF1E);
    -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(--rentol-base, #F2AF1E);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--rentol-base, #F2AF1E);
    opacity: 0.4;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/******** Footer One**********/
.main-footer {
    position: relative;
    background-color: var(--rentol-black, #212121);
    z-index: 1;
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
}

.main-footer__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 58px;
    padding-bottom: 59px;
    border-bottom: 1px solid rgba(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
}

@media (max-width: 991px) {
    .main-footer__top__inner {
        flex-direction: column;
        gap: 30px;
        align-items: start;
        justify-content: start;
    }
}

.main-footer__middle {
    padding-top: 55px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .main-footer__middle {
        padding-bottom: 10px;
    }
}

.main-footer__bottom__inner {
    border-top: 1px solid rgba(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
    position: relative;
    padding: 39.4px 0px;
    text-align: center;
}

.main-footer__copyright {
    font-style: normal;
    color: var(--rentol-text, #7E7E7E);
    font-family: var(--rentol-special-font, "DM Sans", sans-serif);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 88%;
    text-transform: capitalize;
}

.main-footer__element-one {
    position: absolute;
    top: 50px;
    left: 0;
    animation: movebounce2 4s linear infinite;
}

@media (max-width: 991px) {
    .main-footer__element-one {
        display: none;
    }
}

.main-footer__element-two {
    position: absolute;
    bottom: 50px;
    right: 0;
    animation: movebounce2 3s linear infinite;
}

@media (max-width: 991px) {
    .main-footer__element-two {
        display: none;
    }
}

.main-footer--two {
    padding-top: 178px;
}

    .main-footer--two .main-footer__middle {
        padding-top: 0;
        padding-bottom: 0;
    }

    .main-footer--two .main-footer__middle__inner {
        border-top: 1px solid rgba(219, 210, 202, 0.2);
        padding-top: 55px;
        padding-bottom: 50px;
        position: relative;
        z-index: 1;
    }

@media (max-width: 1199px) {
    .main-footer--two .main-footer__middle__inner {
        padding-bottom: 10px;
    }
}

.main-footer--two .footer-widget__title {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

    .main-footer--two .footer-widget__title::after {
        content: "";
        width: 25px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: var(--rentol-white, #fff);
    }

    .main-footer--two .footer-widget__title::before {
        content: "";
        width: 55px;
        height: 2px;
        position: absolute;
        left: 30px;
        bottom: 0;
        background-color: var(--rentol-primary2, #E66431);
    }

.main-footer--two .footer-widget__logo {
    margin-bottom: 25px;
}

.main-footer--two .footer-widget__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rentol-text, #7E7E7E);
    color: var(--rentol-text, #7E7E7E);
    opacity: 0.7;
    transition: all 0.4s ease-in-out;
}

    .main-footer--two .footer-widget__social a:hover {
        transform: translateY(-3px);
        color: var(--rentol-white, #fff);
        opacity: 1;
        border-color: var(--rentol-primary2, #E66431);
        background-color: var(--rentol-primary2, #E66431);
    }

.main-footer--two .footer-widget__links li a:hover {
    color: var(--rentol-primary2, #E66431);
}

    .main-footer--two .footer-widget__links li a:hover::after {
        background-color: var(--rentol-primary2, #E66431);
    }

.footer-widget {
    /*** Info***/
    /*** Link***/
    /*** News later***/
    /*** List***/
    /*** Contact***/
}

.footer-widget__title {
    color: var(--rentol-white, #fff);
    position: relative;
    padding-bottom: 12px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
}

    .footer-widget__title span {
        color: var(--rentol-base, #F2AF1E);
    }

.footer-widget__logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

    .footer-widget__logo a {
        display: block;
    }

.footer-widget__about-text {
    margin-top: -5px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 35px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.footer-widget__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-widget__social a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--rentol-text, #7E7E7E);
        color: var(--rentol-text, #7E7E7E);
        opacity: 0.7;
        transition: all 0.4s ease-in-out;
    }

        .footer-widget__social a:hover {
            transform: translateY(-3px);
            color: var(--rentol-white, #fff);
            opacity: 1;
            border-color: var(--rentol-base, #F2AF1E);
            background-color: var(--rentol-base, #F2AF1E);
        }

.footer-widget__links {
    margin-top: -3px;
    margin-bottom: 0;
}

    .footer-widget__links li {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 175%;
        color: var(--rentol-text, #7E7E7E);
    }

        .footer-widget__links li a {
            color: inherit;
            position: relative;
        }

            .footer-widget__links li a::after {
                content: "";
                width: 0px;
                height: 0px;
                border-radius: 50%;
                background-color: var(--rentol-base, #F2AF1E);
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease-in-out;
            }

            .footer-widget__links li a:hover {
                padding-left: 15px;
                color: var(--rentol-base, #F2AF1E);
            }

                .footer-widget__links li a:hover::after {
                    content: "";
                    width: 8px;
                    height: 8px;
                    opacity: 1;
                    visibility: visible;
                }

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

.footer-widget__newsletter .form-group__form {
    background-color: var(--rentol-white, #fff);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

    .footer-widget__newsletter .form-group__form input[type=email] {
        width: 100%;
        border: none;
        outline: none;
        height: 55px;
        display: block;
        border: none;
        outline: none;
        padding-left: 20px;
        padding-right: 70px;
        transition: all 500ms ease;
        color: var(--rentol-black, #212121);
        line-height: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: normal;
        background-color: var(--rentol-gray, #EFEFEF);
    }

        .footer-widget__newsletter .form-group__form input[type=email]::placeholder {
            color: var(--rentol-text, #7E7E7E);
            font-style: normal;
            line-height: normal;
            font-weight: 400;
            font-size: 16px;
            text-transform: capitalize;
        }

    .footer-widget__newsletter .form-group__form span {
        position: absolute;
        transform: translateY(-50%);
        right: 20px;
        top: 50%;
        color: var(--rentol-base, #F2AF1E);
        font-size: 16px;
    }

    .footer-widget__newsletter .form-group__form button[type=submit] {
        width: 100%;
        height: 45px;
        text-align: center;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 0;
    }

        .footer-widget__newsletter .form-group__form button[type=submit]::after {
            background-color: var(--rentol-primary, #EB3E32);
        }

        .footer-widget__newsletter .form-group__form button[type=submit]:hover {
            background-color: var(--rentol-primary, #EB3E32);
        }

.footer-widget__list {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    gap: 53px;
}

@media (max-width: 1199px) {
    .footer-widget__list {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .footer-widget__list {
        flex-wrap: wrap;
        gap: 30px 60px;
    }
}

.footer-widget__list li {
    display: flex;
    gap: 15px;
}

    .footer-widget__list li:hover .footer-widget__list__icon {
        color: var(--rentol-white, #fff);
    }

        .footer-widget__list li:hover .footer-widget__list__icon::after {
            content: "";
            width: 100%;
            height: 100%;
            top: 0%;
            left: 0%;
        }

.footer-widget__list__icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-white, #fff);
    font-size: 18px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
    z-index: 1;
    position: relative;
}

    .footer-widget__list__icon::after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: var(--rentol-primary, #EB3E32);
        transition: all 0.4s ease-in-out;
        border-radius: 50%;
        z-index: -1;
    }

.footer-widget__list__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--rentol-white, #fff);
    opacity: 0.6;
    text-transform: capitalize;
    margin-bottom: 4px;
    padding-bottom: 0;
    display: block;
}

.footer-widget__list a,
.footer-widget__list p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
}

.footer-widget__list a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .footer-widget__list a:hover {
        background-size: 100% 1px;
    }

    .footer-widget__list a:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.footer-widget__list p {
    text-transform: capitalize;
}

.footer-widget__contact-text {
    margin-top: -3px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

.footer-widget__contact {
    margin-bottom: 0;
}

    .footer-widget__contact li {
        display: flex;
        align-items: start;
        gap: 20px;
    }

        .footer-widget__contact li i {
            color: var(--rentol-primary2, #E66431);
            line-height: 22px;
            font-size: 16px;
        }

        .footer-widget__contact li p, .footer-widget__contact li a {
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            color: #807A75;
            margin-bottom: 0;
            padding-bottom: 0;
        }

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

/******** Footer Three**********/
.main-footer-three {
    background-color: #040C2C;
    position: relative;
    z-index: 1;
    padding-top: 300px;
}

.main-footer-three__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: normal;
    opacity: 0.07;
    z-index: -1;
}

.main-footer-three__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(207, 210, 223, 0.2);
    margin-bottom: 55px;
}

@media (max-width: 575px) {
    .main-footer-three__top__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

.main-footer-three__bottom__inner {
    margin-top: 60px;
    position: relative;
    padding: 49px 0px;
    text-align: center;
    border-top: 1px solid rgba(207, 210, 223, 0.2);
}

.main-footer-three__bottom__copyright {
    font-style: normal;
    color: var(--rentol-text, #7E7E7E);
    font-family: var(--rentol-special-font, "DM Sans", sans-serif);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 88%;
    text-transform: capitalize;
}

.footer-widget-three__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

.footer-widget-three__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-widget-three__social a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        font-size: 22px;
        color: #6E717D;
        border: 1px solid #DBD2CA;
    }

        .footer-widget-three__social a:hover {
            background-color: var(--rentol-primary, #EB3E32);
            border-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-white, #fff);
        }

.footer-widget-three__about {
    margin-bottom: 0;
}

    .footer-widget-three__about li {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 160%;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
    }

        .footer-widget-three__about li span {
            display: block;
        }

.footer-widget-three__link {
    margin-bottom: 0;
}

    .footer-widget-three__link li {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 160%;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
    }

        .footer-widget-three__link li a {
            color: inherit;
        }

            .footer-widget-three__link li a:hover {
                color: var(--rentol-primary, #EB3E32);
            }

        .footer-widget-three__link li i {
            margin-right: 15px;
        }

        .footer-widget-three__link li + li {
            margin-top: 8px;
        }

.footer-widget-three__button {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-widget-three__button img {
        border-radius: 6px;
        object-fit: cover;
        width: 100%;
    }

.footer-widget-three--links {
    margin-left: -30px;
}

@media (max-width: 991px) {
    .footer-widget-three--links {
        margin-left: 0;
    }
}

.footer-widget-three--bottom {
    margin-left: 36px;
}

@media (max-width: 991px) {
    .footer-widget-three--bottom {
        margin-left: 0;
    }
}

/******** Footer Four**********/
.main-footer-four {
    background-color: #F7F5F2;
    position: relative;
    z-index: 1;
    padding-top: 293px;
}

.main-footer-four__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    z-index: -1;
}

.main-footer-four__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .main-footer-four__top__inner {
        gap: 30px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
}

.main-footer-four__top__left {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .main-footer-four__top__left {
        gap: 30px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
}

.main-footer-four__call {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    line-height: 0;
    color: var(--rentol-primary3, #CEAC69);
}

    .main-footer-four__call i {
        font-size: 30px;
        line-height: normal;
        margin-right: 20px;
    }

    .main-footer-four__call a {
        margin-left: 20px;
        color: inherit;
    }

        .main-footer-four__call a:hover {
            color: var(--rentol-primary4, #BC1834);
        }

    .main-footer-four__call:hover i {
        animation: wobble-horizontal-on-hover 1s linear;
    }

.main-footer-four__middle {
    padding-bottom: 44px;
}

@media (max-width: 991px) {
    .main-footer-four__middle {
        padding-bottom: 40px;
    }
}

.main-footer-four__bottom {
    background-color: var(--rentol-black, #212121);
}

.main-footer-four__bottom__inner {
    position: relative;
    padding: 49px 0px;
    text-align: center;
}

.main-footer-four__bottom__copyright {
    font-style: normal;
    color: var(--rentol-text, #7E7E7E);
    font-family: var(--rentol-special-font, "DM Sans", sans-serif);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 88%;
    text-transform: capitalize;
}

.footer-widget-four__logo {
    padding-right: 60px;
    border-right: 1px solid #E4DFD7;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .footer-widget-four__logo {
        padding-right: 0px;
        border-right: 0px solid #E4DFD7;
        margin-right: 0px;
    }
}

.footer-widget-four__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-widget-four__social a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        font-size: 22px;
        color: #6E717D;
        border: 1px solid #E4DFD7;
    }

        .footer-widget-four__social a:hover {
            background-color: var(--rentol-primary3, #CEAC69);
            border-color: var(--rentol-primary3, #CEAC69);
            color: var(--rentol-white, #fff);
        }

.footer-widget-four__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.footer-widget-four__about-text {
    margin-top: -5px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 10px;
    color: var(--rentol-text, #7E7E7E);
    padding-bottom: 0;
    text-transform: capitalize;
}

.footer-widget-four__about {
    margin-bottom: 0;
    margin-left: 0;
}

    .footer-widget-four__about li {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 200%;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
    }

        .footer-widget-four__about li span {
            display: block;
            color: var(--rentol-primary3, #CEAC69);
        }

        .footer-widget-four__about li i {
            margin-right: 10px;
            color: var(--rentol-primary3, #CEAC69);
        }

        .footer-widget-four__about li a {
            color: inherit;
        }

            .footer-widget-four__about li a:hover {
                color: var(--rentol-primary3, #CEAC69);
            }

.footer-widget-four__links {
    margin-top: -3px;
    margin-bottom: 0;
}

    .footer-widget-four__links li a {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 138%;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
        transition: all 0.4s ease-in-out;
    }

        .footer-widget-four__links li a i {
            font-size: 17px;
            margin-right: 2px;
        }

        .footer-widget-four__links li a:hover {
            color: var(--rentol-primary3, #CEAC69);
            padding-left: 10px;
        }

    .footer-widget-four__links li + li {
        margin-top: 11px;
    }

/******** Footer Five**********/
.main-footer-five {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
}

.main-footer-five__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: difference;
    opacity: 0.3;
}

.main-footer-five__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding-top: 90px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .main-footer-five__top__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

.main-footer-five__middle {
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.main-footer-five__bottom__inner {
    border-top: 1px solid rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
    position: relative;
    padding: 28.5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .main-footer-five__bottom__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

.main-footer-five__copyright {
    font-style: normal;
    color: var(--rentol-text, #7E7E7E);
    font-family: var(--rentol-special-font, "DM Sans", sans-serif);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 88%;
    text-transform: capitalize;
}

.footer-widget-five__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    padding-bottom: 13px;
    margin-bottom: 22px;
    position: relative;
}

    .footer-widget-five__title::before, .footer-widget-five__title::after {
        content: "";
        width: 25px;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--rentol-white, #fff);
    }

    .footer-widget-five__title::after {
        width: 55px;
        left: 30px;
        background-color: var(--rentol-primary, #EB3E32);
    }

.footer-widget-five__about-text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    text-transform: capitalize;
}

.footer-widget-five__logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

    .footer-widget-five__logo a {
        display: block;
    }

.footer-widget-five__form {
    width: 100%;
    height: 55px;
    background-color: var(--rentol-white, #fff);
    border-radius: 10px;
    position: relative;
}

    .footer-widget-five__form input {
        width: 100%;
        height: 55px;
        border-radius: 10px;
        border: none;
        outline: none;
        padding-left: 30px;
        padding-right: 30px;
    }

        .footer-widget-five__form input::placeholder {
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 22px;
            color: var(--rentol-text, #7E7E7E);
            text-transform: capitalize;
        }

.footer-widget-five__form__btn {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
    color: var(--rentol-primary, #EB3E32);
    text-transform: capitalize;
    font-weight: 700;
}

    .footer-widget-five__form__btn i {
        color: var(--rentol-primary, #EB3E32);
        font-size: 20px;
        transition: all 0.4s ease-in-out;
    }

    .footer-widget-five__form__btn:hover {
        color: var(--rentol-black, #212121);
    }

        .footer-widget-five__form__btn:hover i {
            color: var(--rentol-black, #212121);
        }

.footer-widget-five__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-widget-five__social a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        font-size: 22px;
        color: #6E717D;
        border: 1px solid rgba(219, 210, 202, 0.2);
    }

        .footer-widget-five__social a:hover {
            background-color: var(--rentol-primary, #EB3E32);
            border-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-white, #fff);
        }

.footer-widget-five__info li + li {
    margin-top: 13px;
}

.footer-widget-five__info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    font-weight: 500;
    line-height: normal;
}

    .footer-widget-five__info li a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .footer-widget-five__info li a:hover {
            background-size: 100% 1px;
        }

        .footer-widget-five__info li a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.footer-widget-five__info__icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--rentol-primary, #EB3E32);
}

    .footer-widget-five__info__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

.footer-widget-five__links {
    margin-top: -3px;
    margin-bottom: 0;
}

    .footer-widget-five__links li {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 175%;
        color: var(--rentol-text, #7E7E7E);
    }

        .footer-widget-five__links li a {
            color: inherit;
            position: relative;
        }

            .footer-widget-five__links li a::after {
                content: "";
                width: 0px;
                height: 0px;
                border-radius: 50%;
                background-color: var(--rentol-primary, #EB3E32);
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease-in-out;
            }

            .footer-widget-five__links li a:hover {
                padding-left: 15px;
                color: var(--rentol-primary, #EB3E32);
            }

                .footer-widget-five__links li a:hover::after {
                    content: "";
                    width: 8px;
                    height: 8px;
                    opacity: 1;
                    visibility: visible;
                }

        .footer-widget-five__links li + li {
            margin-top: 10px;
        }

.footer-widget-five__button {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-widget-five__button img {
        border-radius: 6px;
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
    position: relative;
}

.contact-one__item + .contact-one__item {
    margin-top: 30px;
}

.contact-one__item {
    background: var(--rentol-gray, #EFEFEF);
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 37px 20px 37px 30px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .contact-one__item {
        padding: 30px 15px 30px 20px;
    }
}

.contact-one__item__icon {
    max-width: 84px;
    width: 100%;
    height: 84px;
    border-radius: 50%;
    background: var(--rentol-white, #fff);
    border: 10px solid var(--rentol-border-color, #D2D2D2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .contact-one__item__icon {
        max-width: 70px;
        height: 70px;
    }
}

.contact-one__item__icon::after {
    content: "";
    position: absolute;
    top: 0%;
    height: 0;
    width: 0;
    left: 50%;
    background-color: var(--rentol-base, #F2AF1E);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-one__item__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 80%;
    margin-bottom: 11px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text-dark, #6e6b70);
    text-shadow: 0 0 0.1px currentColor;
}

.contact-one__item__call, .contact-one__item__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
    padding-bottom: 0;
    display: block;
}

.contact-one__item__call {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .contact-one__item__call:hover {
        background-size: 100% 1px;
    }

    .contact-one__item__call:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.contact-one__item:hover .contact-one__item__icon {
    color: var(--rentol-white, #fff);
}

    .contact-one__item:hover .contact-one__item__icon i {
        animation: top-bottom 0.4s ease-in-out;
    }

    .contact-one__item:hover .contact-one__item__icon::after {
        top: 0%;
        height: 100%;
        width: 100%;
        left: 0%;
    }

.contact-one__item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: var(--rentol-white, #fff);
    border-color: transparent;
}

.contact-one__inner {
    position: relative;
    background: var(--rentol-gray, #EFEFEF);
    padding: 30px;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
}

.contact-one__form__thumb {
    position: relative;
    z-index: 1;
    margin-right: 12px;
}

@media (max-width: 991px) {
    .contact-one__form__thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-one__form__thumb {
        display: none;
    }
}

.contact-one__form__thumb img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.contact-one__form {
    margin-left: -12px;
}

@media (max-width: 991px) {
    .contact-one__form {
        margin-left: 0px;
    }
}

.contact-one__form input[type=text],
.contact-one__form input[type=email] {
    border-radius: 10px;
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--rentol-white, #fff);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    display: block;
}

    .contact-one__form input[type=text]::placeholder,
    .contact-one__form input[type=email]::placeholder {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--rentol-text, #7E7E7E);
        text-transform: capitalize;
    }

.contact-one__form textarea {
    border-radius: 10px;
    height: 150px;
    width: 100%;
    border: none;
    background-color: var(--rentol-white, #fff);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    display: block;
}

    .contact-one__form textarea::placeholder {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--rentol-text, #7E7E7E);
        text-transform: capitalize;
    }

.contact-one .rentol-btn {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    gap: 20px;
    padding: 12px 25px;
}

.travel-location {
    position: relative;
    z-index: 1;
    background-color: #E6E7EF;
}

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

@media (max-width: 991px) {
    .travel-location__list-image {
        display: none;
    }
}

.travel-location__list-image__item__content {
    z-index: 1;
    position: relative;
}

    .travel-location__list-image__item__content:hover .travel-location__list-image__text {
        transform: translateY(0px);
        visibility: visible;
        opacity: 1;
    }

.travel-location__list-image__item img {
    width: 100%;
    max-width: 125px;
    border-radius: 50%;
    border: 10px solid var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

    .travel-location__list-image__item img:hover {
        border-color: var(--rentol-primary, #EB3E32);
        filter: drop-shadow(0px 4px 60px rgba(188, 24, 52, 0.3));
    }

.travel-location__list-image__item:nth-child(1) {
    margin-top: 50px;
    margin-left: 50px;
}

.travel-location__list-image__item:nth-child(2) {
    position: absolute;
    top: 190px;
    right: 50px;
}

.travel-location__list-image__item:nth-child(3) {
    position: absolute;
    top: 390px;
    left: 10px;
}

.travel-location__list-image__item:nth-child(4) {
    position: absolute;
    top: 500px;
    right: 90px;
}

.travel-location__list-image__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black3, #040C2C);
    background-color: var(--rentol-white, #fff);
    position: absolute;
    width: 144px;
    top: -60px;
    border-radius: 100px;
    padding: 10px 15px;
    text-shadow: 0 0 0.1px currentColor;
    transition: all 0.5s ease-in-out;
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
}

    .travel-location__list-image__text::after {
        content: "";
        width: 15px;
        height: 13px;
        position: absolute;
        bottom: -12px;
        left: 50%;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        transform: translateX(-50%);
        background-color: var(--rentol-white, #fff);
    }

.travel-location__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    mix-blend-mode: multiply;
    opacity: 0.05;
}

.travel-location__content {
    position: relative;
    background-color: var(--rentol-white, #fff);
    padding: 40px;
}

.travel-location .sec-title-three {
    padding-bottom: 25px;
}

.travel-location__list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px 40px;
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .travel-location__list {
        flex-wrap: wrap;
    }
}

.travel-location__list li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black3, #040C2C);
    position: relative;
    z-index: 1;
}

    .travel-location__list li::after {
        content: "\e943";
        position: absolute;
        right: -20px;
        font-size: 13px;
        color: var(--rentol-black, #212121);
        font-family: "icomoon" !important;
        font-weight: 900;
        top: 2px;
    }

    .travel-location__list li:nth-child(3) {
        color: var(--rentol-primary4, #BC1834);
    }

    .travel-location__list li:last-child::after {
        display: none;
    }

.travel-location__thumb {
    position: relative;
}

    .travel-location__thumb img {
        object-fit: cover;
        width: 100%;
    }

.travel-location .travel-location__line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    width: 48%;
}

    .travel-location .travel-location__line img {
        object-fit: cover;
        width: 100%;
    }

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
}

@media (max-width: 992px) {
    .topbar-one {
        display: none;
    }
}

@media (min-width: 1550px) {
    .topbar-one .container {
        max-width: 1520px;
        margin-left: auto;
        margin-right: auto;
    }
}

.topbar-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.topbar-one__info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}

.topbar-one__info__item i {
    font-size: 16px;
    color: var(--rentol-base, #F2AF1E);
    margin-right: 8px;
}

.topbar-one__info__item__text, .topbar-one__info__item a {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: var(--rentol-white, #fff);
}

.topbar-one__info__item a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .topbar-one__info__item a:hover {
        background-size: 100% 1px;
    }

    .topbar-one__info__item a:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.topbar-one__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .topbar-one__social a {
        font-size: 14px;
        color: var(--rentol-text, #7E7E7E);
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.2);
        transition: all 0.4s ease-in-out;
    }

        .topbar-one__social a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            border-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

.main-header__topbar {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding: 19px 66px;
}

@media (max-width: 1500px) {
    .main-header__topbar {
        padding: 19px 19px;
    }
}

@media (max-width: 1360px) {
    .main-header__topbar {
        display: none;
    }
}

.main-header__topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header__topbar__info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}

.main-header__topbar__info__item {
    display: flex;
    align-items: center;
}

    .main-header__topbar__info__item i {
        font-size: 16px;
        color: var(--rentol-primary2, #E66431);
        margin-right: 8px;
    }

    .main-header__topbar__info__item__text, .main-header__topbar__info__item a {
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.2;
        color: var(--rentol-text, #7E7E7E);
        margin-bottom: 0;
        padding-bottom: 0;
    }

.main-header__topbar__social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

    .main-header__topbar__social a {
        font-size: 14px;
        color: var(--rentol-text, #7E7E7E);
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.2);
        transition: all 0.4s ease-in-out;
    }

        .main-header__topbar__social a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            border-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

.topbar-five {
    background-color: var(--rentol-black, #212121);
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .topbar-five {
        display: none;
    }
}

@media (min-width: 1460px) {
    .topbar-five .container-fluid {
        max-width: 1450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.topbar-five__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

.topbar-five__left {
    display: flex;
    align-items: center;
    gap: 128px;
}

@media (max-width: 1450px) {
    .topbar-five__left {
        gap: 80px;
    }
}

@media (max-width: 1199px) {
    .topbar-five__left {
        gap: 30px;
    }
}

.topbar-five__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .topbar-five__content {
        display: none;
    }
}

.topbar-five__form {
    width: 430px;
    height: 55px;
    background-color: var(--rentol-white, #fff);
    border-radius: 10px;
    position: relative;
}

@media (max-width: 1450px) {
    .topbar-five__form {
        width: 270px;
    }
}

.topbar-five__form input {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
}

    .topbar-five__form input::placeholder {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: var(--rentol-text, #7E7E7E);
    }

.topbar-five__form__btn {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 20px;
    color: var(--rentol-text, #7E7E7E);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

    .topbar-five__form__btn:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.topbar-five__language, .topbar-five__currency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-five__language__icon, .topbar-five__currency__icon {
    display: inline-flex;
    font-size: 15px;
    color: var(--rentol-primary, #EB3E32);
}

    .topbar-five__language__icon svg, .topbar-five__currency__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

.topbar-five__language .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn), .topbar-five__currency .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    position: relative;
    display: block;
    width: 100%;
    min-width: 0px !important;
    background-color: transparent;
}

.topbar-five__language .bootstrap-select .dropdown-menu, .topbar-five__currency .bootstrap-select .dropdown-menu {
    border: none;
}

.topbar-five__language .bootstrap-select > .dropdown-toggle, .topbar-five__currency .bootstrap-select > .dropdown-toggle {
    position: relative;
    height: 35px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    margin: 0;
    padding: 0 25px 0 0;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-white, #fff) !important;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 35px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

    .topbar-five__language .bootstrap-select > .dropdown-toggle::after, .topbar-five__currency .bootstrap-select > .dropdown-toggle::after {
        content: "";
        border: solid var(--rentol-text, #7E7E7E);
        border-width: 0 1px 1px 0;
        padding: 3px;
        position: absolute;
        top: calc(50% - 1px);
        right: 1px;
        transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
    }

.topbar-five__language .bootstrap-select .dropdown-menu > li + li > a, .topbar-five__currency .bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.topbar-five__language .bootstrap-select .dropdown-menu > li > a, .topbar-five__currency .bootstrap-select .dropdown-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 10px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121);
    background-color: var(--rentol-white, #fff);
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.topbar-five__language .bootstrap-select .dropdown-menu > li:hover > a,
.topbar-five__language .bootstrap-select .dropdown-menu > li.selected > a, .topbar-five__currency .bootstrap-select .dropdown-menu > li:hover > a,
.topbar-five__currency .bootstrap-select .dropdown-menu > li.selected > a {
    background-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
    border-color: RGBA(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
}

.topbar-five__login {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-five__login__icon {
    display: inline-flex;
    font-size: 15px;
    color: var(--rentol-primary, #EB3E32);
}

    .topbar-five__login__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

.topbar-five__login__inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: var(--rentol-white, #fff);
    text-transform: capitalize;
    line-height: 1.2;
}

.topbar-five__login__text {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .topbar-five__login__text:hover {
        background-size: 100% 1px;
    }

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
    position: relative;
}

.main-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .main-header__inner {
        padding: 20px 0;
    }
}

@media (min-width: 1550px) {
    .main-header .container-fluid {
        max-width: 1520px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header__right__info__item {
    font-size: 16px;
    line-height: 1;
    color: var(--rentol-black, #212121);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__info__item:hover {
        color: var(--rentol-base, #F2AF1E);
    }

    .main-header__right__info__item + .main-header__right__info__item {
        margin-left: 30px;
    }

@media (max-width: 575px) {
    .main-header__right__info__item + .main-header__right__info__item {
        margin-left: 20px;
    }
}

.main-header__right__call {
    display: flex;
    gap: 13px;
    align-items: center;
    padding-left: 60px;
    border-left: 1px solid var(--rentol-gray, #EFEFEF);
    margin-left: 60px;
}

@media (max-width: 1710px) {
    .main-header__right__call {
        display: none;
    }
}

.main-header__right__call:hover .main-header__right__icon {
    background: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
}

.main-header__right__icon {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rentol-gray, #EFEFEF);
    font-size: 16px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__icon:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.main-header__right__text {
    display: block;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 2px;
}

.main-header__right__number {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__number:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.main-header__right__btn + .main-header__right__call {
    margin-left: 40px;
}

.main-header__right__toggler {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 4.5px;
    cursor: pointer;
}

    .main-header__right__toggler span {
        display: block;
        width: 30px;
        height: 2.3px;
        border-radius: 20px;
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
    }

        .main-header__right__toggler span:first-child {
            width: 14.5px;
        }

    .main-header__right__toggler:hover span {
        background-color: var(--rentol-base, #F2AF1E);
    }

        .main-header__right__toggler:hover span:first-child {
            width: 30px;
        }

        .main-header__right__toggler:hover span:last-child {
            width: 14.5px;
        }

@media (max-width: 1199px) {
    .main-header__right__toggler {
        display: none;
    }
}

.main-header__right__call + .main-header__right__toggler {
    margin-left: 80px;
}

@media (max-width: 1199px) {
    .main-header__right__call + .main-header__right__toggler {
        margin-left: 0px;
    }
}

.main-header__nav {
    margin-left: auto;
}

@media (max-width: 767px) {
    .main-header__nav {
        margin-left: 0;
        margin-right: 0;
    }
}

.main-header__categorie__icon {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 4.5px;
    cursor: pointer;
}

    .main-header__categorie__icon span {
        display: block;
        width: 30px;
        height: 2.3px;
        border-radius: 20px;
        background-color: var(--rentol-primary, #EB3E32);
        transition: all 0.4s ease-in-out;
    }

        .main-header__categorie__icon span:first-child {
            width: 14.5px;
        }

    .main-header__categorie__icon:hover span {
        background-color: var(--rentol-black, #212121);
    }

        .main-header__categorie__icon:hover span:first-child {
            width: 30px;
        }

        .main-header__categorie__icon:hover span:last-child {
            width: 14.5px;
        }

@media (max-width: 1199px) {
    .main-header__categorie__icon {
        display: none;
    }
}

@media (min-width: 1550px) {
    .main-header--two .container-fluid {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-header--two .main-header__middle {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--rentol-border-color, #D2D2D2);
}

@media (max-width: 1360px) {
    .main-header--two .main-header__middle {
        border-left: 0 solid transparent;
    }
}

.main-header--two .main-header__inner-two {
    width: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__inner-two {
        padding: 20px 0px;
    }
}

.main-header--two .main-header__logo {
    padding-left: 100px;
    padding-right: 45px;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__logo {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.main-header--two .main-header__topbar {
    display: grid;
    grid-template-columns: auto auto;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__topbar {
        display: none;
    }
}

.main-header--two .main-header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 66px;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__bottom {
        padding: 0px;
        margin-left: 100px;
    }
}

@media (max-width: 1199px) {
    .main-header--two .main-header__bottom {
        margin-left: 0px;
    }
}

.main-header--two .main-header__nav {
    margin-left: 0;
    margin-right: auto;
}

.main-header--two .main-menu .main-menu__list > li {
    padding-top: 27px;
    padding-bottom: 27px;
}

@media (max-width: 1360px) {
    .main-header--two .main-menu .main-menu__list > li {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.main-header--two .main-header__right__icon,
.main-header--two .main-header__right__number:hover,
.main-header--two .main-menu .main-menu__list > li.current > a,
.main-header--two .main-menu .main-menu__list > li:hover > a,
.main-header--two .main-header__right__info__item:hover,
.main-header--two .main-header__topbar__info__item:hover a {
    color: var(--rentol-primary2, #E66431);
}

.main-header--two .main-header__right__call:hover .main-header__right__icon,
.main-header--two .main-header__topbar__social a:hover {
    background-color: var(--rentol-primary2, #E66431);
}

.main-header--two .main-header__toggler__right {
    max-width: 190px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--rentol-primary2, #E66431);
    position: relative;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__toggler__right {
        max-width: max-content;
        background-color: transparent;
        margin-left: 60px;
    }
}

@media (max-width: 1199px) {
    .main-header--two .main-header__toggler__right {
        margin-left: 0px;
    }
}

.main-header--two .main-header__toggler__right::before {
    content: "";
    background: var(--rentol-primary2, #E66431);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__toggler__right::before {
        display: none;
    }
}

.main-header--two .main-header__toggler {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 8.4px;
}

@media (max-width: 1360px) {
    .main-header--two .main-header__toggler {
        gap: 4.4px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.main-header--two .main-header__toggler span {
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 20px;
    background-color: var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

    .main-header--two .main-header__toggler span:first-child {
        width: 28px;
    }

@media (max-width: 1360px) {
    .main-header--two .main-header__toggler span {
        background-color: var(--rentol-primary2, #E66431);
        width: 30px;
        height: 2px;
    }

        .main-header--two .main-header__toggler span:first-child {
            width: 18px;
        }
}

.main-header--two .main-header__toggler:hover span {
    background-color: var(--rentol-primary4, #BC1834);
}

    .main-header--two .main-header__toggler:hover span:first-child {
        width: 55px;
    }

    .main-header--two .main-header__toggler:hover span:last-child {
        width: 28px;
    }

.main-header--three {
    background-color: transparent;
    border-bottom: 1px solid rgba(207, 210, 223, 0.2);
    margin-bottom: -133px;
    z-index: 2;
}

@media (min-width: 1750px) {
    .main-header--three .container-fluid {
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-header--three .main-header__nav {
    margin-left: 199px;
    margin-right: auto;
}

@media (max-width: 1460px) {
    .main-header--three .main-header__nav {
        margin-left: 70px;
    }
}

@media (max-width: 991px) {
    .main-header--three .main-header__nav {
        margin-left: 0px;
    }
}

.main-header--three .main-menu .main-menu__list > li > a,
.main-header--three .main-header__right__info__item {
    color: var(--rentol-white, #fff);
}

.main-header--three .main-menu .main-menu__list > li {
    padding-top: 51.5px;
    padding-bottom: 51.5px;
}

.main-header--three .rentol-btn {
    background-color: var(--rentol-primary4, #BC1834);
    border-radius: 0px;
}

.main-header--three .main-header__right__info + .main-header__right__btn {
    margin-left: 159px;
}

@media (max-width: 1460px) {
    .main-header--three .main-header__right__info + .main-header__right__btn {
        margin-left: 30px;
    }
}

@media (max-width: 575px) {
    .main-header--three .main-header__right__btn {
        display: none;
    }
}

.main-header--three .mobile-nav__btn span {
    background-color: var(--rentol-primary4, #BC1834);
}

.main-header--four {
    background-color: transparent;
    margin-bottom: -150px;
    z-index: 999;
    border-bottom: 1px solid rgba(228, 223, 215, 0.2);
}

@media (min-width: 1750px) {
    .main-header--four .container-fluid {
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-header--four .main-header__right__info + .main-header__right__btn {
    margin-left: 60px;
}

@media (max-width: 575px) {
    .main-header--four .main-header__right__btn {
        display: none;
    }
}

.main-header--four .main-header__right__btn a {
    background-color: var(--rentol-primary3, #CEAC69);
    border-radius: 0px;
}

    .main-header--four .main-header__right__btn a::after {
        background-color: var(--rentol-primary, #EB3E32);
    }

.main-header--four .main-menu .main-menu__list > li > a,
.main-header--four .main-header__right__info__item {
    color: var(--rentol-white, #fff);
}

.main-header--four .main-menu .main-menu__list > li {
    padding-top: 53px;
    padding-bottom: 53px;
}

.main-header--four .mobile-nav__btn span {
    background-color: var(--rentol-primary3, #CEAC69);
}

.main-header--five {
    position: relative;
    background-color: var(--rentol-primary, #EB3E32);
}

@media (min-width: 1450px) {
    .main-header--five .container-fluid {
        max-width: 1450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-header--five .main-header__categorie {
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
    width: 236px;
    border-radius: 10px;
    background: var(--rentol-white, #fff);
}

    .main-header--five .main-header__categorie .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        font-family: var(--rentol-font, "Manrope", sans-serif);
        position: relative;
        display: block;
        width: 100%;
        min-width: 0px !important;
        background-color: transparent;
    }

    .main-header--five .main-header__categorie .bootstrap-select .dropdown-menu {
        border: none;
    }

    .main-header--five .main-header__categorie .bootstrap-select > .dropdown-toggle {
        position: relative;
        height: 55px;
        outline: none !important;
        border-radius: 0;
        border: 0;
        background-color: transparent !important;
        margin: 0;
        padding: 0 25px 0 0;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        color: var(--rentol-primary, #EB3E32) !important;
        line-height: 55px;
        box-shadow: none !important;
        background-repeat: no-repeat;
        background-size: 14px 12px;
        background-position: right 25.75px center;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        text-transform: capitalize;
    }

        .main-header--five .main-header__categorie .bootstrap-select > .dropdown-toggle::after {
            content: "";
            border: solid var(--rentol-primary, #EB3E32);
            border-width: 0 2px 2px 0;
            padding: 3px;
            position: absolute;
            top: calc(50% - 1px);
            right: 1px;
            transform: translateY(-50%) rotate(45deg);
            -webkit-transform: translateY(-50%) rotate(45deg);
        }

    .main-header--five .main-header__categorie .bootstrap-select .dropdown-menu > li + li > a {
        border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    }

    .main-header--five .main-header__categorie .bootstrap-select .dropdown-menu > li > a {
        font-size: 16px;
        font-weight: 600;
        padding: 5px 12px;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-white, #fff);
        text-transform: capitalize;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .main-header--five .main-header__categorie .bootstrap-select .dropdown-menu > li:hover > a,
    .main-header--five .main-header__categorie .bootstrap-select .dropdown-menu > li.selected > a {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
        border-color: RGBA(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
    }

.main-header--five .main-menu .main-menu__list > li > a {
    color: var(--rentol-white, #fff);
}

.main-header--five .main-header__right__call {
    border-color: transparent;
    padding-left: 0;
}

.main-header--five .main-header__right__info__item {
    color: var(--rentol-white, #fff);
    line-height: 0;
    background-color: transparent;
    outline: none;
    border: none;
    background-color: transparent;
}

.main-header--five .main-header__right__call .main-header__right__icon {
    color: var(--rentol-primary, #EB3E32);
}

.main-header--five .main-header__right__call .main-header__right__text,
.main-header--five .main-header__right__call .main-header__right__number {
    color: var(--rentol-white, #fff);
}

.main-header--five .main-header__right__call:hover .main-header__right__icon {
    background-color: var(--rentol-black, #212121);
}

.main-header--five .main-menu .main-menu__list > li {
    padding-top: 43px;
    padding-bottom: 43px;
}

    .main-header--five .main-menu .main-menu__list > li.current > a,
    .main-header--five .main-menu .main-menu__list > li:hover > a {
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.5px currentColor;
    }

@media (max-width: 450px) {
    .main-header--five .mobile-nav__btn {
        margin-left: 6px;
    }
}

.main-header--six {
    position: relative;
    z-index: 1;
}

    .main-header--six .main-header__logo {
        position: relative;
        z-index: 1;
    }

@media (max-width: 1600px) {
    .main-header--six::before {
        width: 300px;
        clip-path: polygon(0 0, 100% 0%, 60% 100%, 0% 100%);
    }
}

@media (max-width: 567px) {
    .main-header--six::before {
        display: none;
    }
}

.main-header--six::after {
    content: "";
    width: 447px;
    height: 100%;
    background-color: var(--rentol-white, #fff);
    clip-path: polygon(0 0, 100% 0%, 79% 100%, 0% 100%);
    position: absolute;
    left: 0px;
    top: 0;
    z-index: -1;
}

@media (max-width: 1600px) {
    .main-header--six::after {
        width: 300px;
        clip-path: polygon(0 0, 100% 0%, 66% 100%, 0% 100%);
    }
}

@media (max-width: 567px) {
    .main-header--six::after {
        display: none;
    }
}

.main-header--six .main-header__right__toggler {
    padding: 22px 20px;
    background-color: var(--rentol-base, #F2AF1E);
    position: relative;
}

    .main-header--six .main-header__right__toggler::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--rentol-base, #F2AF1E);
        position: absolute;
        bottom: -40px;
        left: 0;
        z-index: 2;
    }

    .main-header--six .main-header__right__toggler::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--rentol-white, #fff);
        position: absolute;
        bottom: -49px;
        left: 0;
        z-index: 2;
    }

    .main-header--six .main-header__right__toggler:hover span {
        background-color: var(--rentol-primary, #EB3E32);
    }

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--rentol-white, #fff);
    transform: translateY(-100%);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

    .sticky-header--cloned.active {
        transform: translateY(0%);
        visibility: visible;
    }

    .sticky-header--cloned .main-header__topbar {
        display: none;
    }

    .sticky-header--cloned.main-header--two .main-header__toggler {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sticky-header--cloned.main-header--three {
        background-color: var(--rentol-black, #212121);
        border-color: var(--rentol-black, #212121);
    }

    .sticky-header--cloned.main-header--four {
        background-color: var(--rentol-black, #212121);
        border-color: var(--rentol-black, #212121);
    }

    .sticky-header--cloned.main-header--five {
        background-color: var(--rentol-primary, #EB3E32);
    }

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
    margin-left: 50px;
    margin-right: 10px;
}

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

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--rentol-black, #212121);
    transition: all 0.4s ease-in-out;
}

    .mobile-nav__btn span:nth-child(2) {
        margin-top: 4px;
        margin-bottom: 4px;
    }

.mobile-nav__btn:hover span {
    background-color: var(--rentol-primary, #EB3E32);
}

.main-menu {
    /* after third level no menu */
}

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        align-items: center;
        display: none;
    }

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list > li {
    padding-top: 47px;
    padding-bottom: 47px;
    position: relative;
}

    .main-menu .main-menu__list > li.dropdown > a {
        position: relative;
    }

    .main-menu .main-menu__list > li + li {
        margin-left: 41px;
    }

    .main-menu .main-menu__list > li > a {
        font-size: 16px;
        display: flex;
        align-items: center;
        color: var(--rentol-black, #212121);
        font-weight: 600;
        text-transform: capitalize;
        position: relative;
        transition: all 500ms ease;
    }

    .main-menu .main-menu__list > li.current > a,
    .main-menu .main-menu__list > li:hover > a {
        color: var(--rentol-base, #F2AF1E);
        text-shadow: 0 0 0.5px currentColor;
    }

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--rentol-white, #fff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.07);
    padding: 15px 20px 11px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > .megamenu {
    position: static;
}

    .main-menu .main-menu__list > .megamenu > ul {
        top: 100% !important;
        left: -130px !important;
        right: 0 !important;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

    .main-menu .main-menu__list li ul li > a {
        font-size: 14px;
        line-height: 26px;
        color: var(--rentol-text, #7E7E7E);
        font-weight: 500;
        display: flex;
        padding: 8px 20px;
        transition: 400ms;
        margin-bottom: 4px;
    }

        .main-menu .main-menu__list li ul li > a::after {
            position: absolute;
            right: 20px;
            top: 8px;
            border-radius: 0;
            font-size: 6px;
            font-weight: 700;
            font-family: "Font Awesome 5 Free";
            content: "\f111";
            color: var(--rentol-base, #F2AF1E);
            visibility: hidden;
            opacity: 0;
            transition: all 500ms ease;
            transform: scale(0);
        }

    .main-menu .main-menu__list li ul li.current > a,
    .main-menu .main-menu__list li ul li:hover > a {
        background-color: var(--rentol-gray, #EFEFEF);
        color: var(--rentol-base, #F2AF1E);
    }

        .main-menu .main-menu__list li ul li.current > a::after,
        .main-menu .main-menu__list li ul li:hover > a::after {
            visibility: visible;
            opacity: 1;
            transform: scale(1);
        }

    .main-menu .main-menu__list li ul li > ul {
        top: 0;
        left: calc(100% + 20px);
    }

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

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

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-menu__list li:nth-last-child(1) ul li > ul,
    .main-menu__list li:nth-last-child(2) ul li > ul {
        left: auto;
        right: calc(100% + 20px);
    }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--rentol-white, #fff);
    display: block !important;
    margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
    display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
    overflow: hidden;
}

    body.megamenu-popup-active .stricky-header {
        bottom: 0;
    }

    body.megamenu-popup-active .mobile-nav__content {
        overflow: unset;
    }

.mobile-nav__content .demo-one .container {
    padding-left: 15px;
    padding-right: 15px;
}

.megamenu-popup {
    position: relative;
}

    .megamenu-popup .megamenu-clickable--close {
        position: absolute;
        top: 18px;
        right: 20px;
        display: block;
        color: var(--rentol-black, #212121);
    }

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--rentol-base, #F2AF1E);
}

.megamenu-popup .megamenu-clickable--close span {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    color: currentColor;
    transition: all 500ms ease;
}

    .megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: currentColor;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .megamenu-popup .megamenu-clickable--close span::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

    .demo-one .row {
        --bs-gutter-y: 30px;
    }

.demo-one__card {
    background-color: var(--rentol-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--rentol-black3-rgb, 4, 12, 44), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

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

.demo-one__title {
    margin: 0;
    font-size: 16px;
    color: var(--rentol-black, #212121);
    font-weight: 600;
}

    .demo-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .demo-one__title a:hover {
            background-size: 100% 1px;
        }

.demo-one__image {
    position: relative;
    overflow: hidden;
}

    .demo-one__image img {
        max-width: 100%;
        transition: filter 500ms ease;
        filter: blur(0px);
    }

.demo-one__card:hover .demo-one__image img {
    filter: blur(2px);
}

.demo-one__btns {
    background-color: rgba(var(--rentol-black3-rgb, 4, 12, 44), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: top center;
}

.demo-one__btn {
    font-size: 14px;
}

@media (min-width: 768px) {
    .demo-one__btn {
        display: inline-flex;
    }
}

.demo-one__title {
    padding-top: 20.5px;
    padding-bottom: 20.5px;
}

.home-showcase .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
}

.home-showcase__inner {
    padding: 40px 40px 21px;
    background-color: var(--rentol-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--rentol-black3-rgb, 4, 12, 44), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__btns {
    flex-direction: column;
}

.home-showcase .demo-one__btn {
    min-width: 135px;
    text-align: center;
    justify-content: center;
}

.home-showcase .demo-one__title {
    padding: 0;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
/******* Funfact One*******/
.funfact-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
}

.funfact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.funfact-one__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 270px;
    width: 100%;
    background-color: var(--rentol-gray, #EFEFEF);
    border: 1px solid var(--rentol-gray, #EFEFEF);
    transition: all 0.4s ease-in-out;
}

.funfact-one__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

    .funfact-one__item__bg::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.4);
    }

.funfact-one__item:hover {
    border-color: var(--rentol-white, #fff);
}

    .funfact-one__item:hover .funfact-one__item__bg {
        visibility: visible;
        opacity: 1;
    }

    .funfact-one__item:hover .funfact-one__funfact__count {
        color: var(--rentol-base, #F2AF1E);
    }

    .funfact-one__item:hover .funfact-one__funfact__text {
        color: var(--rentol-white, #fff);
    }

    .funfact-one__item:hover .funfact-one__border__group span::after, .funfact-one__item:hover .funfact-one__border__group span::before {
        background-color: var(--rentol-white, #fff);
    }

.funfact-one__funfact__count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 67%;
    margin-bottom: 0;
    padding-bottom: 15px;
    color: var(--rentol-black, #212121);
    transition: all 0.4s ease-in-out;
}

.funfact-one__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.funfact-one__border__group span {
    position: absolute;
    top: 0;
    left: 0;
}

    .funfact-one__border__group span::after, .funfact-one__border__group span::before {
        content: "";
        width: 44px;
        height: 1px;
        position: absolute;
        background-color: var(--rentol-base, #F2AF1E);
        left: 10px;
        top: 10px;
        transition: all 0.4s ease-in-out;
    }

    .funfact-one__border__group span::before {
        height: 44px;
        width: 1px;
    }

    .funfact-one__border__group span:last-child {
        top: auto;
        left: auto;
        bottom: 10px;
        right: 10px;
    }

        .funfact-one__border__group span:last-child::after, .funfact-one__border__group span:last-child::before {
            content: "";
            width: 44px;
            height: 1px;
            position: absolute;
            background-color: var(--rentol-base, #F2AF1E);
            left: auto;
            top: auto;
            bottom: 10px;
            right: 10px;
        }

        .funfact-one__border__group span:last-child::before {
            height: 44px;
            width: 1px;
        }

/******* Funfact Two*******/
.rent-two {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-primary2, #E66431);
}

.rent-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
    mix-blend-mode: multiply;
}

.how-to-rent {
    counter-reset: mainRentTwo;
}

    .how-to-rent .sec-title .sec-title__title,
    .how-to-rent .sec-title .sec-title__tagline {
        color: var(--rentol-white, #fff);
    }

.how-to-rent__item {
    position: relative;
    z-index: 1;
}

.how-to-rent__item__inner {
    position: relative;
    z-index: 1;
    width: 370px;
    height: 370px;
    background-color: var(--rentol-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .how-to-rent__item__inner {
        width: 300px;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

.how-to-rent__item__inner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
    background-color: var(--rentol-primary4, #BC1834);
    transform: translateY(-100%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .how-to-rent__item {
        width: 300px;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

.how-to-rent__item__icon {
    font-size: 80px;
    color: var(--rentol-primary2, #E66431);
    line-height: 1;
    margin-bottom: 18px;
    transition: all 0.4s ease-in-out;
}

    .how-to-rent__item__icon i {
        line-height: 1;
    }

@media (max-width: 1199px) {
    .how-to-rent__item__icon {
        font-size: 50px;
    }
}

.how-to-rent__item__content {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-rent__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 129%;
    margin-bottom: 15px;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .how-to-rent__item__title {
        font-size: 20px;
    }
}

.how-to-rent__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.how-to-rent__item__number {
    position: absolute;
    top: 7%;
    left: -3%;
    z-index: 1;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 5px solid var(--rentol-primary2, #E66431);
    background-color: var(--rentol-black, #212121);
    counter-increment: mainRentTwo;
    transition: all 0.4s ease-in-out;
}

    .how-to-rent__item__number::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 800;
        font-size: 24px;
        text-align: center;
        text-transform: capitalize;
        color: var(--rentol-white, #fff);
        content: counters(mainRentTwo, ".", decimal-leading-zero);
        transition: all 0.4s ease-in-out;
    }

.how-to-rent__item:hover .how-to-rent__item__icon {
    color: var(--rentol-white, #fff);
    transform: rotateY(-180deg);
}

.how-to-rent__item:hover .how-to-rent__item__number {
    background-color: var(--rentol-primary4, #BC1834);
}

.how-to-rent__item:hover .how-to-rent__item__title,
.how-to-rent__item:hover .how-to-rent__item__text {
    color: var(--rentol-white, #fff);
}

.how-to-rent__item:hover .how-to-rent__item__inner::after {
    transform: translateY(0%);
}

.rent-two__funfact__inner {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
    border-radius: 0px 0px 30px 30px;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .rent-two__funfact__inner {
        flex-wrap: wrap;
        gap: 40px 0px;
    }
}

.rent-two__funfact__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: overlay;
    border-radius: 0px 0px 30px 30px;
}

.rent-two__funfact__item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex: 25%;
    width: 25%;
}

@media (max-width: 991px) {
    .rent-two__funfact__item {
        flex: 33%;
        width: 33%;
    }
}

@media (max-width: 767px) {
    .rent-two__funfact__item {
        flex: 50%;
        width: 50%;
    }
}

@media (max-width: 575px) {
    .rent-two__funfact__item {
        flex: 100%;
        width: 100%;
    }
}

.rent-two__funfact__item:hover .rent-two__funfact__icon {
    animation: zumpXThree 500ms linear;
    color: var(--rentol-primary4, #BC1834);
}

.rent-two__funfact__icon {
    font-size: 66px;
    color: var(--rentol-primary2, #E66431);
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.rent-two__funfact__title {
    display: flex;
    align-items: center;
    justify-content: start;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 44%;
    margin-bottom: 24px;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
}

.rent-two__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

/******* Your Dream One*******/
.your-dream-one {
    position: relative;
    z-index: 1;
}

    .your-dream-one .sec-title {
        padding-bottom: 20px;
    }

.your-dream-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 30px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.your-dream-one__thumb {
    position: relative;
    z-index: 1;
}

.your-dream-one__thumb__item img {
    object-fit: cover;
    width: 100%;
}

.your-dream-one__thumb__item-small {
    margin-top: -365px;
    margin-left: -255px;
}

    .your-dream-one__thumb__item-small img {
        object-fit: cover;
        width: auto;
    }

@media (max-width: 1400px) {
    .your-dream-one__thumb__item-small {
        margin-top: -200px;
        margin-left: -100px;
        margin-right: 200px;
    }

        .your-dream-one__thumb__item-small img {
            object-fit: cover;
            width: 100%;
        }
}

@media (max-width: 991px) {
    .your-dream-one__thumb__item-small {
        margin-top: 30px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

.your-dream-one__thumb .your-dream-one__element-four {
    position: absolute;
    bottom: 0;
    right: 20%;
    animation: movebounce3 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__thumb .your-dream-one__element-four {
        display: block;
    }
}

.your-dream-one__element-one {
    position: absolute;
    bottom: 20%;
    right: 0;
    z-index: -1;
    animation: movebounce2 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-one {
        display: block;
    }
}

.your-dream-one__element-one::after {
    left: 0;
    content: "";
    position: absolute;
    width: 412px;
    height: 412px;
    border-radius: 50%;
    background: rgba(242, 175, 30, 0.5);
    filter: blur(200px);
}

.your-dream-one__element-two {
    position: absolute;
    top: 120px;
    left: 250px;
    animation: movebounce3 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-two {
        display: block;
    }
}

.your-dream-one__element-three {
    position: absolute;
    top: 150px;
    left: 100px;
    animation: movebounce3 3s ease-in-out infinite;
    animation-delay: 500ms;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-three {
        display: block;
    }
}

.how-rent-two {
    position: relative;
    z-index: 1;
    counter-reset: mainRent;
}

.how-rent-two__item {
    position: relative;
    z-index: 1;
    padding: 30px;
}

@media (max-width: 991px) {
    .how-rent-two__item {
        max-width: 270px;
    }
}

@media (max-width: 767px) {
    .how-rent-two__item {
        margin-left: auto;
        margin-right: auto;
    }
}

.how-rent-two__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -2;
    height: 100%;
    background-image: url(../images/shapes/shape-how-2.png);
    background-repeat: no-repeat;
    background-position: left top;
    transition: all 0.4s ease-in-out;
    transform: translateY(11px);
}

.how-rent-two__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-image: url(../images/shapes/shape-how.png);
    background-repeat: no-repeat;
    background-position: left top;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__top {
    position: relative;
    z-index: 1;
    counter-increment: mainRent;
}

    .how-rent-two__item__top::before {
        content: counters(mainRent, ".", decimal-leading-zero);
        color: var(--rentol-black, #212121);
        font-style: normal;
        font-weight: 800;
        font-size: 24px;
        position: absolute;
        top: -10px;
        right: -15px;
        line-height: 100%;
        transition: all 0.4s ease-in-out;
    }

.how-rent-two__item__icon {
    font-size: 50px;
    color: var(--rentol-base, #F2AF1E);
    margin-bottom: 50px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 3px;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item:hover .how-rent-two__item__top::before {
    color: var(--rentol-base, #F2AF1E);
}

.how-rent-two__item:hover .how-rent-two__item__icon {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover .how-rent-two__item__text {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover .how-rent-two__item__title {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover::after {
    z-index: -2;
    transform: translateY(11px);
}

.how-rent-two__item:hover::before {
    z-index: -1;
    transform: translateY(0px);
}

.how-rent-two__element-one {
    position: absolute;
    top: 50%;
    left: 0;
    display: none;
    z-index: -1;
    transform: translateY(-50%);
}

    .how-rent-two__element-one img {
        animation: movebounce2 3s ease-in-out infinite;
    }

    .how-rent-two__element-one::after {
        content: "";
        position: absolute;
        width: 316px;
        height: 246px;
        left: 49px;
        top: 0;
        z-index: -2;
        background: rgba(242, 175, 30, 0.5);
        filter: blur(100px);
    }

@media (min-width: 1200px) {
    .how-rent-two__element-one {
        display: block;
    }
}

.how-rent-two__element-two {
    position: absolute;
    top: 50%;
    right: 0;
    display: none;
    z-index: -1;
    transform: translateY(-50%);
}

    .how-rent-two__element-two img {
        animation: shapeMove 3s ease-in-out infinite;
    }

    .how-rent-two__element-two::after {
        content: "";
        position: absolute;
        width: 316px;
        height: 246px;
        right: 49px;
        top: 0;
        z-index: -2;
        background: rgba(242, 175, 30, 0.5);
        filter: blur(100px);
    }

@media (min-width: 1200px) {
    .how-rent-two__element-two {
        display: block;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-card {
    padding: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-card {
        padding: 20px;
        border: 2px solid var(--rentol-border-color, #D2D2D2);
        border-radius: 20px;
    }
}

@media (max-width: 991px) {
    .testimonials-card {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .testimonials-card {
        padding: 20px;
        border: 2px solid var(--rentol-border-color, #D2D2D2);
        border-radius: 20px;
    }
}

.testimonials-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.testimonials-card__top__video a {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-gray, #EFEFEF);
    font-size: 20px;
    line-height: 1;
}

    .testimonials-card__top__video a:hover {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

.testimonials-card__image {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
}

    .testimonials-card__image img {
        object-fit: cover;
        width: 100%;
    }

.testimonials-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/testi-border.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-card::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonials-card::after {
        display: none;
    }
}

.testimonials-card__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 30px;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

.testimonials-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 150px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-card__content {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .testimonials-card__content {
        margin-right: 0;
    }
}

.testimonials-card__author__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    padding-bottom: 0;
    margin-bottom: 4px;
}

.testimonials-card__author__dec {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    display: block;
}

.testimonials-card__rating {
    color: var(--rentol-base, #F2AF1E);
    letter-spacing: 0.1em;
}

    .testimonials-card__rating i:last-child {
        color: var(--rentol-text, #7E7E7E);
    }

.testimonials-card__quite {
    position: absolute;
    bottom: 20px;
    right: 30px;
    line-height: 0;
    font-size: 45px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-card__quite {
        display: none;
    }
}

@media (max-width: 575px) {
    .testimonials-card__quite {
        display: none;
    }
}

.testimonials-card:hover .testimonials-card__quite {
    color: var(--rentol-black, #212121);
}

.testimonials-card--one::after {
    background-image: url(../images/shapes/testi-border-2-1.png);
}

.testimonials-card--one .testimonials-card__text,
.testimonials-card--one .testimonials-card__quite {
    color: var(--rentol-black, #212121);
}

.testimonials-card--one .testimonials-card__author__title,
.testimonials-card--one .testimonials-card__author__dec,
.testimonials-card--one .testimonials-card__rating {
    color: var(--rentol-white, #fff);
}

.testimonials-card--one .testimonials-card__top__video a:hover {
    background-color: var(--rentol-primary4, #BC1834);
    color: var(--rentol-white, #fff);
}

.testimonials-card--one:hover .testimonials-card__quite {
    color: var(--rentol-primary4, #BC1834);
}

.testimonials-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-base, #F2AF1E);
}

.testimonials-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.1;
    mix-blend-mode: darken;
}

.testimonials-one__inner {
    max-width: 1772px;
    margin-left: -227px;
    margin-right: auto;
}

@media (max-width: 1299px) {
    .testimonials-one__inner {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.testimonials-one__custome-navs {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 10px;
}

    .testimonials-one__custome-navs button {
        border: none;
        outline: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-black, #212121);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--rentol-white, #fff);
        transition: all 500ms ease;
    }

        .testimonials-one__custome-navs button:hover {
            background-color: transparent;
            border-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
            color: var(--rentol-white, #fff);
        }

        .testimonials-one__custome-navs button.owl-prev {
            background-color: transparent;
            border-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
            color: var(--rentol-white, #fff);
        }

            .testimonials-one__custome-navs button.owl-prev i {
                display: inline-block;
                transform: rotate(180deg);
            }

            .testimonials-one__custome-navs button.owl-prev:hover {
                color: var(--rentol-white, #fff);
                background-color: var(--rentol-black, #212121);
                border-color: var(--rentol-base, #F2AF1E);
            }

.testimonials-one__top {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .testimonials-one__top {
        padding-bottom: 50px;
    }
}

.testimonials-one__top .sec-title {
    padding-bottom: 0;
}

.testimonials-one__top .sec-title__tagline,
.testimonials-one__top .sec-title__title {
    color: var(--rentol-black, #212121);
}

.testimonials-one__image {
    position: absolute;
    right: -10%;
    bottom: 50px;
    border-radius: 50%;
}

    .testimonials-one__image img {
        border-radius: 50%;
        position: relative;
    }

@media (max-width: 1299px) {
    .testimonials-one__image {
        display: none;
    }
}

.testimonials-one__image__line {
    position: absolute;
    right: -9%;
    z-index: -1;
    bottom: 70px;
    animation: movebounce3 3s ease-in-out infinite;
}

    .testimonials-one__image__line img {
        border-radius: 50%;
        position: relative;
    }

@media (max-width: 1299px) {
    .testimonials-one__image__line {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonials-one__carousel .testimonials-card {
        border: 2px solid var(--rentol-white, #fff);
    }
}

@media (max-width: 767px) {
    .testimonials-one__carousel .testimonials-card {
        border: 2px solid var(--rentol-white, #fff);
    }
}

/****Testimonials Two ****/
.testimonials-two {
    padding-top: 90px;
    padding-bottom: 183px;
    position: relative;
    z-index: 1;
    background-color: #F7F7F7;
}

.testimonials-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: overlay;
    z-index: -1;
}

@media (min-width: 1600px) {
    .testimonials-two .container-fluid {
        max-width: 1570px;
        margin-left: auto;
        margin-right: -30px;
    }
}

.testimonials-two__top {
    position: relative;
    z-index: 2;
}

    .testimonials-two__top .sec-title {
        margin-right: 20px;
        padding-bottom: 0;
    }

        .testimonials-two__top .sec-title .sec-title__title {
            font-style: normal;
            font-weight: 700;
            font-size: 30px;
            line-height: 133%;
            color: var(--rentol-black, #212121);
            text-transform: none;
        }

.testimonials-two__custome-navs {
    margin-top: 40px;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    z-index: 2;
    gap: 10px;
}

    .testimonials-two__custome-navs button {
        border: none;
        outline: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-primary, #EB3E32);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--rentol-white, #fff);
        transition: all 500ms ease;
    }

        .testimonials-two__custome-navs button:hover {
            color: var(--rentol-primary, #EB3E32);
            background-color: transparent;
            border-color: var(--rentol-primary, #EB3E32);
        }

        .testimonials-two__custome-navs button.owl-prev {
            background-color: transparent;
            border-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-primary, #EB3E32);
        }

            .testimonials-two__custome-navs button.owl-prev:hover {
                color: var(--rentol-white, #fff);
                background-color: var(--rentol-primary, #EB3E32);
                border-color: var(--rentol-primary, #EB3E32);
            }

.testimonials-two__inner {
    margin-right: -50px;
}

.testimonials-two__element {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .testimonials-two__element {
        display: none;
    }
}

.testimonials-two-card {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.testimonials-two-card__top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.testimonials-two-card__author {
    max-width: 70px;
    height: 70px;
    width: 100%;
    position: relative;
}

    .testimonials-two-card__author img {
        object-fit: cover;
        width: 100%;
    }

    .testimonials-two-card__author span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: var(--rentol-primary, #EB3E32);
        bottom: -7px;
    }

.testimonials-two-card__name {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.testimonials-two-card__deg {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    margin-bottom: 0;
    display: block;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

.testimonials-two-card__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.testimonials-two-card .rentol-ratings {
    font-size: 16px;
    color: var(--rentol-primary, #EB3E32);
    line-height: 0;
}

    .testimonials-two-card .rentol-ratings .rentol-ratings__icon:last-child {
        color: var(--rentol-text, #7E7E7E);
    }

/****Testimonials Three ****/
.testimonials-three {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black3, #040C2C);
}

    .testimonials-three .sec-title-three__title,
    .testimonials-three .sec-title-three__tagline {
        color: var(--rentol-white, #fff);
    }

.testimonials-three__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.15;
}

.testimonials-three__carousel {
    position: relative;
}

    .testimonials-three__carousel .owl-stage .active {
        opacity: 0.2;
    }

        .testimonials-three__carousel .owl-stage .active:nth-child(3) {
            opacity: 1;
        }

        .testimonials-three__carousel .owl-stage .active + .active + .active + .active {
            opacity: 1;
        }

@media (max-width: 1199px) {
    .testimonials-three__carousel .owl-stage .active + .active + .active {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .testimonials-three__carousel .owl-stage .active + .active {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .testimonials-three__carousel .owl-stage .active {
        opacity: 1;
    }
}

.testimonials-three__carousel .owl-dots {
    margin-top: 0 !important;
    position: absolute;
    top: -110px;
    right: 20%;
}

@media (max-width: 991px) {
    .testimonials-three__carousel .owl-dots {
        display: none !important;
    }
}

.testimonials-three__carousel .owl-dots .owl-dot:hover span,
.testimonials-three__carousel .owl-dots .owl-dot.active span {
    background-color: var(--rentol-white, #fff) !important;
}

.testimonials-three__carousel .owl-dots .owl-dot span::after {
    border-color: var(--rentol-white, #fff) !important;
}

.testimonials-three-card {
    position: relative;
    z-index: 1;
}

.testimonials-three-card__quite {
    margin-bottom: 60px;
}

    .testimonials-three-card__quite img {
        width: auto !important;
    }

.testimonials-three-card__text {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    padding-bottom: 0;
    margin-bottom: 30px;
}

.testimonials-three-card__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-three-card__image {
    max-width: 90px;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}

    .testimonials-three-card__image img {
        object-fit: cover;
        width: 100%;
    }

.testimonials-three-card .rentol-ratings {
    font-size: 14px;
    color: var(--rentol-primary, #EB3E32);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonials-three-card__name {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--rentol-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonials-three-card__dec {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 200%;
    letter-spacing: -0.02em;
    display: block;
    color: var(--rentol-white, #fff);
}

/****Testimonials Four ****/
.testimonials-four {
    position: relative;
    z-index: 1;
    background-color: #F0EAE5;
    padding-top: 153px;
    padding-bottom: 300px;
}

@media (max-width: 1199px) {
    .testimonials-four {
        padding-top: 133px;
        padding-bottom: 280px;
    }
}

@media (max-width: 991px) {
    .testimonials-four {
        padding-top: 113px;
        padding-bottom: 260px;
    }
}

@media (max-width: 767px) {
    .testimonials-four {
        padding-bottom: 240px;
    }
}

.testimonials-four__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: multiply;
    opacity: 0.07;
}

.testimonials-four .sec-title {
    padding-bottom: 22px;
}

.testimonials-four__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
}

.testimonials-four__content {
    position: relative;
    z-index: 2;
}

.testimonials-four__carousel {
    position: relative;
    margin-right: -225px;
    position: absolute;
    top: 120px;
    right: 0;
    width: calc(63% - 30px);
}

@media (max-width: 1199px) {
    .testimonials-four__carousel {
        top: 0;
        margin-top: 40px;
        position: relative;
        margin-right: 0;
        width: 100%;
    }
}

.testimonials-four__item {
    position: relative;
    background-color: var(--rentol-white, #fff);
    border-radius: 20px;
}

.testimonials-four__item__content {
    padding: 30px;
}

    .testimonials-four__item__content .rentol-ratings {
        margin-bottom: 15px;
    }

        .testimonials-four__item__content .rentol-ratings .rentol-ratings__icon {
            font-size: 14px;
            color: var(--rentol-primary2, #E66431);
            letter-spacing: 1px;
        }

.testimonials-four__item__text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #1F1C19;
}

.testimonials-four__item__bottom {
    padding: 0px 30px 43px;
    position: relative;
    z-index: 1;
}

.testimonials-four__item__man {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding: 30px 0px 30px 0px;
}

    .testimonials-four__item__man::after {
        content: "";
        right: 140px;
        position: absolute;
        top: 0px;
        bottom: 0px;
        z-index: -1;
        left: -30px;
        background-color: var(--rentol-primary2, #E66431);
        clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    }

.testimonials-four__item__image {
    max-width: 82px;
    width: 100%;
    height: 82px;
    border-radius: 50%;
}

    .testimonials-four__item__image img {
        object-fit: cover;
        width: 100%;
        border-radius: 50%;
    }

.testimonials-four__item__author-name {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--rentol-white, #fff);
    margin-bottom: 0px;
    padding-bottom: 0;
}

.testimonials-four__item__author-deg {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    letter-spacing: -0.02em;
    color: var(--rentol-white, #fff);
}

.testimonials-four__item__quite {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-four__custome-dots {
    margin-top: 35px;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

    .testimonials-four__custome-dots button {
        border: none;
        outline: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-white, #fff);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--rentol-primary2, #E66431);
        transition: all 500ms ease;
    }

        .testimonials-four__custome-dots button:hover {
            color: var(--rentol-primary2, #E66431);
            background-color: transparent;
            border-color: #DBD2CA;
        }

        .testimonials-four__custome-dots button.owl-prev {
            background-color: transparent;
            border-color: #DBD2CA;
            color: var(--rentol-primary2, #E66431);
        }

            .testimonials-four__custome-dots button.owl-prev i {
                display: inline-block;
                transform: rotate(180deg);
            }

            .testimonials-four__custome-dots button.owl-prev:hover {
                color: var(--rentol-primary2, #E66431);
                background-color: var(--rentol-white, #fff);
                border-color: var(--rentol-white, #fff);
            }

/****Testimonials Five ****/
.testimonials-five {
    position: relative;
    z-index: 1;
}

.testimonials-five__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    mix-blend-mode: multiply;
}

.testimonials-five__inner {
    position: relative;
    z-index: 1;
    background-color: #F7F5F2;
    padding: 70px 60px;
}

@media (max-width: 991px) {
    .testimonials-five__inner {
        padding: 40px 30px;
    }
}

.testimonials-five__item {
    position: relative;
    padding-right: 40px;
}

.testimonials-five__quite {
    margin-bottom: 35px;
}

.testimonials-five__text {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: var(--rentol-black3, #040C2C);
    padding-bottom: 0;
    margin-bottom: 45px;
}

.testimonials-five__bottom {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

@media (max-width: 575px) {
    .testimonials-five__bottom {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
}

.testimonials-five__author {
    max-width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

    .testimonials-five__author img {
        object-fit: cover;
        width: 100%;
    }

.testimonials-five__content .rentol-ratings {
    margin-bottom: 10px;
}

    .testimonials-five__content .rentol-ratings .rentol-ratings__icon {
        font-size: 14px;
        color: var(--rentol-primary3, #CEAC69);
        letter-spacing: 1px;
    }

.testimonials-five__author-name {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black3, #040C2C);
}

.testimonials-five__author-deg {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    color: #6E717D;
}

.testimonials-five__car-element {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

    .testimonials-five__car-element img {
        max-width: 550px;
        width: 100%;
        animation: movebounce3 4s ease-in-out infinite;
    }

@media (max-width: 1400px) {
    .testimonials-five__car-element img {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .testimonials-five__car-element img {
        display: none;
    }
}

.testimonials-five__carousel .owl-nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin: 0;
}

@media (max-width: 991px) {
    .testimonials-five__carousel .owl-nav {
        position: relative;
        top: auto;
        bottom: auto;
        flex-direction: row;
        margin-top: 50px;
    }
}

@media (max-width: 575px) {
    .testimonials-five__carousel .owl-nav {
        display: none;
    }
}

.testimonials-five__carousel .owl-nav button {
    border: 1px solid #DBD2CA !important;
    outline: none;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    color: var(--rentol-primary3, #CEAC69);
    transition: all 500ms ease;
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .testimonials-five__carousel .owl-nav button {
        transform: rotate(0deg);
    }
}

.testimonials-five__carousel .owl-nav button:hover {
    color: var(--rentol-white, #fff);
    background-color: var(--rentol-primary3, #CEAC69) !important;
}

.testimonials-five__carousel .owl-nav button.owl-prev {
    background-color: var(--rentol-primary3, #CEAC69);
    color: var(--rentol-white, #fff);
}

    .testimonials-five__carousel .owl-nav button.owl-prev i {
        display: inline-block;
        transform: rotate(180deg);
    }

    .testimonials-five__carousel .owl-nav button.owl-prev:hover {
        color: var(--rentol-primary3, #CEAC69) !important;
        background-color: transparent !important;
    }

.testimonials-five__carousel .owl-nav::after, .testimonials-five__carousel .owl-nav::before {
    content: "";
    width: 1px;
    height: 166px;
    position: absolute;
    background-color: #DBD2CA;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .testimonials-five__carousel .owl-nav::after, .testimonials-five__carousel .owl-nav::before {
        display: none;
    }
}

.testimonials-five__carousel .owl-nav::after {
    top: -180px;
}

.testimonials-five__carousel .owl-nav::before {
    bottom: -180px;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
/****** CTA Footer******/
.cta-footer {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding-bottom: 1px;
}

.cta-footer__inner {
    position: relative;
    z-index: 2;
    background-color: var(--rentol-primary3, #CEAC69);
    border-radius: 30px;
    overflow: hidden;
    padding: 58px 60px;
    margin-bottom: -173px;
}

@media (max-width: 575px) {
    .cta-footer__inner {
        padding: 30px;
    }
}

.cta-footer__inner::before {
    content: "";
    bottom: 0px;
    right: 60px;
    position: absolute;
    width: 526px;
    height: 263px;
    background: var(--rentol-black, #212121);
    border-radius: 1000px 1000px 0 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .cta-footer__inner::before {
        display: none;
    }
}

.cta-footer__inner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/line-bg-1-1.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.07;
    mix-blend-mode: multiply;
    z-index: -1;
}

.cta-footer__inner__thumb {
    position: absolute;
    bottom: 0;
    right: 60px;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .cta-footer__inner__thumb {
        display: none;
    }
}

.cta-footer__inner:hover::before {
    background-color: var(--rentol-primary4, #BC1834);
}

.cta-footer__content .sec-title {
    padding-bottom: 12px;
}

    .cta-footer__content .sec-title .sec-title__tagline {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
    }

    .cta-footer__content .sec-title .sec-title__title {
        font-style: normal;
        font-weight: 500;
        font-size: 45px;
        line-height: 122%;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.1px currentColor;
    }

        .cta-footer__content .sec-title .sec-title__title span {
            color: var(--rentol-white, #fff);
        }

.cta-footer__text {
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    line-height: 188%;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.cta-footer__button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-two {
    position: relative;
    z-index: 2;
}

.cta-two--two .cta-two__inner {
    margin-bottom: -133px;
    position: relative;
    z-index: 1;
}

.cta-two__inner {
    position: relative;
    z-index: 1;
    background: var(--rentol-black, #212121);
    box-shadow: 0px 4px 100px rgba(242, 175, 30, 0.2);
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 991px) {
    .cta-two__inner {
        padding: 20px;
    }
}

.cta-two__inner::after {
    content: "";
    right: 0;
    background-color: var(--rentol-base, #F2AF1E);
    position: absolute;
    width: 508px;
    height: 247px;
    bottom: 0;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: -2;
}

@media (max-width: 991px) {
    .cta-two__inner::after {
        display: none;
    }
}

.cta-two__inner::before {
    content: "";
    right: 2%;
    background-color: var(--rentol-base, #F2AF1E);
    position: absolute;
    width: 508px;
    height: 247px;
    top: 18.5%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: -2;
    opacity: 0.2;
}

@media (max-width: 991px) {
    .cta-two__inner::before {
        display: none;
    }
}

.cta-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: soft-light;
    z-index: -1;
}

.cta-two__content .sec-title {
    padding-bottom: 22px;
}

    .cta-two__content .sec-title .sec-title__title {
        color: var(--rentol-white, #fff);
        font-size: 45px;
    }

@media (max-width: 991px) {
    .cta-two__content .sec-title .sec-title__title {
        font-size: 35px;
    }
}

.cta-two__content__text {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-gray, #EFEFEF);
    margin-bottom: 45px;
}

.cta-two__button {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cta-two__button img {
        border-radius: 6px;
    }

.cta-two__thumb__item-one {
    position: absolute;
    bottom: 0;
    right: 25%;
}

    .cta-two__thumb__item-one img {
        animation: movebounce2 3s ease-in-out infinite;
    }

@media (max-width: 991px) {
    .cta-two__thumb__item-one {
        display: none;
    }
}

.cta-two__thumb__item-two {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

    .cta-two__thumb__item-two img {
        animation: movebounce3 3s ease-in-out infinite;
    }

@media (max-width: 991px) {
    .cta-two__thumb__item-two {
        display: none;
    }
}

.cta-two__thumb__item-element {
    position: absolute;
    top: 13%;
    right: 15%;
}

    .cta-two__thumb__item-element img {
        animation: movebounce2 3s ease-in-out infinite;
    }

@media (max-width: 991px) {
    .cta-two__thumb__item-element {
        display: none;
    }
}

/******fleet-cta*******/
.fleet-cta {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.fleet-cta__inner {
    background-color: var(--rentol-base, #F2AF1E);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
}

@media (max-width: 1199px) {
    .fleet-cta__inner {
        padding: 60px;
        border-radius: 10px;
    }
}

@media (max-width: 991px) {
    .fleet-cta__inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .fleet-cta__inner {
        padding: 30px 20px;
    }
}

.fleet-cta__inner__item--two {
    position: relative;
    z-index: 1;
}

    .fleet-cta__inner__item--two .fleet-cta__inner__item__call {
        margin-top: -20px;
        position: relative;
        z-index: 1;
        background-color: var(--rentol-black, #212121);
        padding: 58px 128px;
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    }

@media (max-width: 1199px) {
    .fleet-cta__inner__item--two .fleet-cta__inner__item__call {
        padding: 0px 10px;
        background-color: transparent;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

.fleet-cta__inner__item--two .fleet-cta__inner__item__call .fleet-cta__inner__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
}

@media (max-width: 1199px) {
    .fleet-cta__inner__item--two .fleet-cta__inner__item__call .fleet-cta__inner__bg {
        display: none;
    }
}

.fleet-cta__inner__item--two::after {
    content: "";
    position: absolute;
    width: 49px;
    height: 21.5px;
    background-color: var(--rentol-text, #7E7E7E);
    left: 78px;
    top: -20px;
    clip-path: polygon(100% 0, 0% 100%, 80% 100%);
}

@media (max-width: 1199px) {
    .fleet-cta__inner__item--two::after {
        display: none;
    }
}

.fleet-cta__inner__item--two::before {
    content: "";
    position: absolute;
    width: 49px;
    height: 21.5px;
    background-color: var(--rentol-text, #7E7E7E);
    right: -30px;
    top: -20px;
    clip-path: polygon(100% 100%, 40% 0, 0 100%);
}

@media (max-width: 1199px) {
    .fleet-cta__inner__item--two::before {
        display: none;
    }
}

.fleet-cta .sec-title {
    padding-bottom: 0;
}

    .fleet-cta .sec-title .sec-title__tagline {
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 17px;
        padding-bottom: 0;
        text-transform: none;
        color: var(--rentol-black, #212121);
    }

    .fleet-cta .sec-title .sec-title__title {
        font-style: normal;
        font-weight: 500;
        font-size: 30px;
        line-height: 53%;
        margin-bottom: 0;
        padding-bottom: 0;
        color: var(--rentol-black, #212121);
    }

@media (max-width: 1199px) {
    .fleet-cta .sec-title .sec-title__title {
        line-height: 100%;
        margin-bottom: 30px;
    }
}

.fleet-cta .fleet-cta__call {
    display: flex;
    gap: 13px;
    align-items: center;
}

.fleet-cta .fleet-cta__call__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rentol-gray, #EFEFEF);
    font-size: 15px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

    .fleet-cta .fleet-cta__call__icon:hover {
        color: var(--rentol-base, #F2AF1E);
    }

    .fleet-cta .fleet-cta__call__icon .ripple {
        content: "";
        border: 1px solid var(--rentol-white, #fff);
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: calc(100% + 25px);
        height: calc(100% + 25px);
        border-radius: 50%;
        animation: videoZoom 3s linear infinite;
        animation-delay: 0s;
        animation-delay: 0.55s;
    }

        .fleet-cta .fleet-cta__call__icon .ripple::after {
            content: "";
            border: 1px solid var(--rentol-white, #fff);
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: calc(100% + 50px);
            height: calc(100% + 50px);
            border-radius: 50%;
            animation: videoZoom 1.5s linear infinite;
            animation-delay: 0s;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

.fleet-cta .fleet-cta__call__text {
    display: block;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    margin-bottom: 20px;
}

.fleet-cta .fleet-cta__call__number {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
    display: block;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .fleet-cta .fleet-cta__call__number {
        margin-top: -10px;
        line-height: 30px;
    }
}

.fleet-cta .fleet-cta__call__number:hover {
    color: var(--rentol-base, #F2AF1E);
}

.fleet-cta .fleet-cta__call:hover .fleet-cta__call__icon {
    background: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
}

.fleet-cta .fleet-cta__inner__btn {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .fleet-cta .fleet-cta__inner__btn span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .fleet-cta .fleet-cta__inner__btn span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-white, #fff);
            color: var(--rentol-base, #F2AF1E);
            transform: rotate(0deg);
        }

    .fleet-cta .fleet-cta__inner__btn:hover span {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

        .fleet-cta .fleet-cta__inner__btn:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.fleet-cta--two {
    position: relative;
    z-index: 1;
}

    .fleet-cta--two .fleet-cta__inner {
        margin-top: -150.5px;
    }

@media (max-width: 991px) {
    .fleet-cta--two .fleet-cta__inner {
        margin-top: 30px;
    }
}

.fleet-cta--three .fleet-cta__inner {
    border-radius: 20px 20px 0 0;
    background-color: var(--rentol-primary2, #E66431);
}

@media (max-width: 991px) {
    .fleet-cta--three .fleet-cta__inner {
        border-radius: 20px;
    }
}

.fleet-cta--three .sec-title .sec-title__tagline,
.fleet-cta--three .sec-title .sec-title__title {
    color: var(--rentol-white, #fff);
}

.fleet-cta--three .fleet-cta__inner__btn:hover span {
    background-color: var(--rentol-base, #F2AF1E);
}

.fleet-cta--three .fleet-cta__call__icon {
    color: var(--rentol-primary2, #E66431);
}

/******CTA Five*******/
.cta-five {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-primary, #EB3E32);
    padding: 90px 0px;
}

.cta-five__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: -1;
}

@media (min-width: 992px) {
    .cta-five__thumb {
        margin-right: -10px;
    }
}

.cta-five__thumb img {
    object-fit: cover;
    width: 100%;
}

@media (min-width: 992px) {
    .cta-five__content {
        margin-left: 60px;
    }
}

.cta-five__content .sec-title {
    padding-bottom: 39px;
}

    .cta-five__content .sec-title .sec-title__tagline {
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 19px;
        color: var(--rentol-white, #fff);
        text-transform: none;
        margin-bottom: 15px;
        padding-bottom: 0;
        border-radius: 100px;
        padding: 5px 10px;
        border: 1px solid var(--rentol-white, #fff);
    }

    .cta-five__content .sec-title .sec-title__title {
        font-style: normal;
        font-weight: 800;
        font-size: 40px;
        line-height: 117%;
        margin-bottom: 0;
        padding-bottom: 0;
        color: var(--rentol-white, #fff);
    }

@media (min-width: 768px) {
    .cta-five__content .sec-title .sec-title__title {
        font-size: 60px;
    }
}

.cta-five__btn a {
    color: var(--rentol-primary, #EB3E32);
    background-color: var(--rentol-white, #fff);
    padding: 15px 22px;
    border-radius: 10px;
}

    .cta-five__btn a i {
        margin-right: 10px;
        font-size: 16px;
    }

.cta-five__element {
    position: absolute;
    bottom: 0;
    right: 12%;
    animation: movebounce2 3s ease-in-out infinite;
    z-index: -1;
}

@media (max-width: 991px) {
    .cta-five__element {
        display: none;
    }
}

/******CTA Five*******/
.cta-shop {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.cta-shop__inner {
    position: relative;
    z-index: 1;
    padding: 30px;
}

@media (min-width: 768px) {
    .cta-shop__inner {
        padding: 60px;
    }
}

.cta-shop__inner::before {
    background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 51%;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.cta-shop__inner::after {
    background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.cta-shop__inner:hover::before {
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.cta-shop__inner:hover::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.cta-shop__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    z-index: -1;
}

    .cta-shop__bg::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #EB3E32 20%, rgba(235, 62, 50, 0.25) 100%);
        border-radius: 20px;
    }

.cta-shop .sec-title {
    padding-bottom: 18px;
}

    .cta-shop .sec-title .sec-title__tagline {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 214%;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 100px;
        background-color: var(--rentol-white, #fff);
        color: var(--rentol-primary, #EB3E32);
        margin-bottom: 12px;
        text-transform: none;
    }

.cta-shop .sec-title__title {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
}

.cta-shop__list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .cta-shop__list {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.cta-shop__list li {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

    .cta-shop__list li i {
        margin-right: 10px;
    }

.cta-shop__btn {
    display: flex;
}

@media (min-width: 992px) {
    .cta-shop__btn {
        justify-content: end;
    }
}

.cta-shop__btn a {
    color: var(--rentol-primary, #EB3E32);
    background-color: var(--rentol-white, #fff);
    padding: 15px 22px;
    border-radius: 10px;
}

    .cta-shop__btn a i {
        margin-right: 10px;
        font-size: 16px;
    }

.cta-shop--two .cta-shop__bg::after {
    background: linear-gradient(90deg, #212121 20%, rgba(235, 62, 50, 0.25) 100%);
}

.cta-shop--two .sec-title .sec-title__tagline {
    background-color: var(--rentol-primary, #EB3E32);
    color: var(--rentol-white, #fff);
}

/******New Collections*******/
.new-collections {
    padding: 6px 0px 90px;
    position: relative;
    z-index: 1;
}

.new-collections__item {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-primary, #EB3E32);
    border-radius: 20px;
    padding: 40px;
}

    .new-collections__item::before {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 50%;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        z-index: 1;
        top: 51%;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

    .new-collections__item::after {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

    .new-collections__item:hover::before {
        bottom: 0;
        top: 0;
        opacity: 0;
        transition: all 400ms linear;
    }

    .new-collections__item:hover::after {
        left: 0;
        right: 0;
        opacity: 0;
        transition: all 400ms linear;
    }

.new-collections__item--two {
    background-color: #378EDF;
}

.new-collections__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    z-index: -1;
    mix-blend-mode: multiply;
}

.new-collections__item .sec-title {
    padding-bottom: 10px;
}

    .new-collections__item .sec-title .sec-title__tagline {
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 19px;
        color: var(--rentol-white, #fff);
        text-transform: none;
        margin-bottom: 15px;
        padding-bottom: 0;
        border-radius: 100px;
        padding: 5px 10px;
        border: 1px solid var(--rentol-white, #fff);
    }

    .new-collections__item .sec-title .sec-title__title {
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 67%;
        margin-bottom: 0;
        padding-bottom: 0;
        color: var(--rentol-white, #fff);
    }

@media (max-width: 767px) {
    .new-collections__item .sec-title .sec-title__title {
        line-height: 35px;
    }
}

.new-collections__item__text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--rentol-white, #fff);
    margin-bottom: 25px;
    padding-bottom: 0;
}

.new-collections__item__btn {
    padding-bottom: 176px;
}

    .new-collections__item__btn a {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
        gap: 15px;
    }

        .new-collections__item__btn a span {
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 188%;
            color: var(--rentol-white, #fff);
            text-transform: capitalize;
            transition: all 0.4s ease-in-out;
        }

            .new-collections__item__btn a span:last-child {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--rentol-white, #fff);
                font-size: 12px;
                color: var(--rentol-primary, #EB3E32);
            }

        .new-collections__item__btn a:hover span {
            color: var(--rentol-black, #212121);
        }

            .new-collections__item__btn a:hover span:last-child {
                background-color: var(--rentol-black, #212121);
                color: var(--rentol-white, #fff);
            }

.new-collections__item__element {
    position: absolute;
    bottom: 0;
    right: 0;
}

.new-collections__item__element-two {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/******Group Satisfier*******/
.group-satisfier {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.group-satisfier__inner {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
    border-radius: 20px;
    margin-top: -92px;
}

.group-satisfier__inner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: lighten;
    z-index: -1;
    border-radius: 20px;
}

.group-satisfier__list {
    display: grid;
    padding: 60px 40px;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 65px;
}

@media (max-width: 1199px) {
    .group-satisfier__list {
        grid-template-columns: auto auto auto auto;
        grid-gap: 60px;
    }
}

@media (max-width: 991px) {
    .group-satisfier__list {
        grid-template-columns: auto auto auto;
        grid-gap: 60px;
    }
}

@media (max-width: 767px) {
    .group-satisfier__list {
        grid-template-columns: auto auto;
        grid-gap: 40px;
    }
}

@media (max-width: 500px) {
    .group-satisfier__list {
        grid-template-columns: auto;
        grid-gap: 30px;
    }
}

.group-satisfier__list .group-satisfier__item:hover .group-satisfier__icon {
    animation: wobble-horizontal-on-hover 1s linear;
}

.group-satisfier__item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.group-satisfier__icon {
    color: var(--rentol-primary, #EB3E32);
    font-size: 37px;
    margin-right: 20px;
    line-height: 1;
}

.group-satisfier__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 10px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

.group-satisfier__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

/******Footer Cta Three*******/
.footer-cta-three {
    background-color: transparent;
    position: relative;
}

.footer-cta-three__inner {
    position: relative;
    z-index: 2;
    background-color: var(--rentol-primary, #EB3E32);
    margin-bottom: -190px;
    padding-bottom: 1px;
}

.footer-cta-three__inner__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    z-index: -1;
}

.footer-cta-three__form {
    margin-right: -60px;
    padding: 60px;
}

@media (max-width: 991px) {
    .footer-cta-three__form {
        margin-right: 0;
    }
}

.footer-cta-three__form__inner {
    background-color: var(--rentol-white, #fff);
    position: relative;
    padding: 35px 30px 30px;
}

.footer-cta-three .sec-title-three {
    padding-bottom: 20px;
    border-bottom: 1px solid #CFD2DF;
    margin-bottom: 30px;
}

.footer-cta-three__thumb {
    margin-left: 30px;
    margin-bottom: -1px;
}

@media (max-width: 991px) {
    .footer-cta-three__thumb {
        margin-left: 0;
    }
}

.footer-cta-three__thumb img {
    object-fit: cover;
    width: 100%;
}

.footer-cta-three__form-one .form-one__group label {
    margin-top: -3px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: #6E717D;
    margin-bottom: 8px;
}

.footer-cta-three__form-one .form-one__group input {
    border: 1px solid #CFD2DF;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 55px;
    height: 60px;
    width: 100%;
    padding-left: 26px;
    color: #6E717D;
}

    .footer-cta-three__form-one .form-one__group input::placeholder {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        color: #6E717D;
    }

    .footer-cta-three__form-one .form-one__group input:focus {
        box-shadow: 0;
        outline: 1px solid #CFD2DF;
        border: 1px solid #CFD2DF;
    }

.footer-cta-three__form-one .form-one__control {
    position: relative;
    z-index: 1;
}

    .footer-cta-three__form-one .form-one__control i {
        position: absolute;
        right: 20px;
        bottom: 22px;
        font-size: 16px;
        color: var(--rentol-text, #7E7E7E);
    }

    .footer-cta-three__form-one .form-one__control input[type=submit] {
        margin-top: 10px;
        border: none;
        position: relative;
    }

    .footer-cta-three__form-one .form-one__control .rentol-btn {
        border-radius: 0px;
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
        padding: 0;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        position: relative;
    }

        .footer-cta-three__form-one .form-one__control .rentol-btn:hover {
            background-color: var(--rentol-black, #212121);
        }

/******Footer Cta Two*******/
.cta-footer-two {
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.cta-footer-two__inner {
    position: relative;
    z-index: 2;
    background-color: var(--rentol-primary2, #E66431);
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 100px;
    padding: 80px 40px 80px 300px;
    margin-bottom: -120px;
}

@media (max-width: 1199px) {
    .cta-footer-two__inner {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .cta-footer-two__inner {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
}

.cta-footer-two__inner .cta-footer-two__btn {
    margin-left: 0;
    margin-right: auto;
}

.cta-footer-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: soft-light;
    opacity: 0.3;
    border-radius: 30px;
    z-index: -1;
}

.cta-footer-two__title {
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

@media (max-width: 767px) {
    .cta-footer-two__title {
        font-size: 20px;
    }
}

.cta-footer-two__btn {
    max-width: 200px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

.cta-footer-two__btn__link {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .cta-footer-two__btn__link span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .cta-footer-two__btn__link span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-white, #fff);
            color: var(--rentol-primary2, #E66431);
            transform: rotate(0deg);
        }

    .cta-footer-two__btn__link:hover span {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

        .cta-footer-two__btn__link:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.cta-footer-two__element {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 1199px) {
    .cta-footer-two__element {
        display: none;
    }
}

/*--------------------------------------------------------------
# BOAT Item
--------------------------------------------------------------*/
/********* Boat Section**********/
.boat-one {
    z-index: 1;
    position: relative;
}

.boat-one__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.boat-item-one {
    position: relative;
    z-index: 1;
}

.boat-item-one__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

    .boat-item-one__image::after {
        content: "";
        width: 100%;
        height: 80%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(33, 33, 33, 0) 0%, #212121 100%);
    }

.boat-item-one__content {
    position: absolute;
    bottom: 30px;
    z-index: 1;
    left: 25px;
}

.boat-item-one__tags {
    background-color: var(--rentol-primary4, #BC1834);
    position: relative;
    padding: 5px 10px;
    border-radius: 100px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

.boat-item-one__title {
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: var(--rentol-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
}

    .boat-item-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .boat-item-one__title a:hover {
            background-size: 100% 1px;
        }

.boat-item-one:hover .boat-item-one__image img {
    transform: scale(1.1);
}

/********* Boat Section Two**********/
.boat-journy-one {
    position: relative;
    z-index: 1;
}

    .boat-journy-one .boat-journy-one__top,
    .boat-journy-one .boat-journy-one__content {
        width: 50%;
        flex: 0 0 auto;
    }

@media (max-width: 991px) {
    .boat-journy-one .boat-journy-one__top,
    .boat-journy-one .boat-journy-one__content {
        width: 100%;
    }
}

.boat-journy-one .boat-journy-one__top {
    position: sticky;
    top: 100px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .boat-journy-one .boat-journy-one__top {
        position: static;
        top: auto;
    }
}

.boat-journy-one__item {
    position: relative;
    z-index: 1;
    padding: 30px 22px;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    border-bottom: none;
}

    .boat-journy-one__item:last-child {
        border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    }

.boat-journy-one__item__image {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
}

    .boat-journy-one__item__image img {
        object-fit: cover;
        width: 100%;
    }

.boat-journy-one__item__image__btn {
    padding: 20px;
    background-color: var(--rentol-primary4, #BC1834);
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    color: var(--rentol-white, #fff);
}

    .boat-journy-one__item__image__btn a, .boat-journy-one__item__image__btn span {
        color: var(--rentol-white, #fff);
    }

.boat-journy-one__item__content {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.boat-journy-one__item__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

.boat-journy-one__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: -4px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.boat-journy-one__item__price {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.boat-journy-one .sec-title-three {
    padding-bottom: 22px;
}

.boat-journy-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.boat-journy-one__btn {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--rentol-primary4, #BC1834);
    position: relative;
    display: inline-block;
}

    .boat-journy-one__btn::after {
        content: "";
        width: 40px;
        height: 1px;
        position: absolute;
        right: -50px;
        background-color: var(--rentol-primary4, #BC1834);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.4s ease-in-out;
    }

    .boat-journy-one__btn:hover {
        color: var(--rentol-black, #212121);
    }

        .boat-journy-one__btn:hover::after {
            background-color: var(--rentol-black, #212121);
        }

.boat-journy-one__thumb {
    margin-left: -100px;
}

.boat-journy-one__element-text {
    font-style: normal;
    font-weight: 800;
    font-size: 200px;
    line-height: 100%;
    -webkit-text-stroke: 2px #CFD2DF;
    color: transparent;
    position: absolute;
    top: 120px;
    left: 0px;
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    z-index: -1;
}

@media (max-width: 991px) {
    .boat-journy-one__element-text {
        display: none;
    }
}

/*--------------------------------------------------------------
# car-booking
--------------------------------------------------------------*/
.booking-car-one {
    position: relative;
    background-color: var(--rentol-gray, #EFEFEF);
    /**** from Grid****/
}

.booking-car-one__inner {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .booking-car-one__inner {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .booking-car-one__inner {
        padding-bottom: 80px;
    }
}

.booking-car-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
}

.booking-car-one .container {
    position: relative;
}

.booking-car-one .booking-car-one__man {
    position: absolute;
    right: 0;
    bottom: -120px;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .booking-car-one .booking-car-one__man {
        bottom: -100px;
    }
}

@media (max-width: 767px) {
    .booking-car-one .booking-car-one__man {
        bottom: -80px;
    }
}

.booking-car-one .booking-car-one__element {
    position: absolute;
    right: 30%;
    top: 30%;
    animation: treeMove 3s ease-in-out infinite;
}

.booking-car-one__content {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
    box-shadow: 0px 4px 60px 10px rgba(242, 175, 30, 0.1);
    border-radius: 0px 0px 30px 30px;
}

.booking-car-one__form__top {
    padding: 20px 0px 20px 30px;
    position: relative;
    z-index: 1;
    background-color: var(--rentol-base, #F2AF1E);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .booking-car-one__form__top {
        flex-direction: column;
    }
}

.booking-car-one__form__top::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/line-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
}

.booking-car-one__form__title {
    margin-bottom: 0;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: normal;
    color: var(--rentol-black, #212121);
}

.booking-car-one__form__text {
    margin-bottom: 0;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--rentol-black, #212121);
    background-color: var(--rentol-white, #fff);
    padding: 6.5px 15px;
    padding-right: 42px;
    margin-right: -28px;
    position: relative;
}

    .booking-car-one__form__text::after {
        content: "";
        width: 28px;
        height: 21px;
        position: absolute;
        right: 0;
        bottom: -20.5px;
        background-color: var(--rentol-text, #7E7E7E);
        clip-path: polygon(0 0, 0% 100%, 100% 0);
    }

.booking-car-one__form__grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    padding: 40px 30px 30px;
}

@media (max-width: 767px) {
    .booking-car-one__form__grid {
        padding: 30px 15px 30px;
        grid-template-columns: auto;
    }
}

.booking-car-one__form__control label {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 107%;
    color: var(--rentol-black, #212121);
    margin-bottom: 15px;
}

    .booking-car-one__form__control label span {
        color: var(--rentol-base, #F2AF1E);
        font-size: 16px;
        margin-right: 4px;
    }

.booking-car-one__form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--rentol-font, "Manrope", sans-serif);
}

.booking-car-one__form__control .bootstrap-select > .dropdown-toggle::after {
    display: none;
}

.booking-car-one__form__control .bootstrap-select > .dropdown-toggle {
    position: relative;
    height: 55px;
    outline: none !important;
    border-radius: 80px;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    background-color: var(--rentol-white, #fff) !important;
    margin: 0;
    padding: 0;
    padding-left: 17px;
    padding-right: 17px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E) !important;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 55px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

    .booking-car-one__form__control .bootstrap-select > .dropdown-toggle:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 17px;
        font-family: "Font Awesome 5 Free";
        content: "\f107";
        font-weight: 900;
        font-size: 20px;
        color: var(--rentol-text, #7E7E7E);
    }

.booking-car-one__form__control .bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.booking-car-one__form__control .bootstrap-select .dropdown-menu {
    border: none;
}

    .booking-car-one__form__control .bootstrap-select .dropdown-menu > li > a {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 22px;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-white, #fff);
        text-transform: capitalize;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .booking-car-one__form__control .bootstrap-select .dropdown-menu > li:hover > a,
    .booking-car-one__form__control .bootstrap-select .dropdown-menu > li.selected > a {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-black, #212121);
        border-color: var(--rentol-base, #F2AF1E);
    }

.booking-car-one__form__control .bootstrap-select > .dropdown-toggle {
    display: flex;
    align-items: center;
}

    .booking-car-one__form__control .bootstrap-select > .dropdown-toggle .filter-option {
        display: flex;
        align-items: center;
    }

.booking-car-one__form__control input {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    position: relative;
    height: 55px;
    outline: none !important;
    border-radius: 80px;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    background-color: var(--rentol-white, #fff) !important;
    margin: 0;
    padding: 0;
    padding-left: 17px;
    padding-right: 17px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E) !important;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 55px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

.booking-car-one__form__control .booking-car-one__btn {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .booking-car-one__form__control .booking-car-one__btn span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .booking-car-one__form__control .booking-car-one__btn span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .booking-car-one__form__control .booking-car-one__btn:hover span {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

        .booking-car-one__form__control .booking-car-one__btn:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
/***** Instagram One*****/
.instagram-one {
    position: relative;
    z-index: 1;
}

.instagram-one__content .sec-title {
    padding-bottom: 30px;
}

    .instagram-one__content .sec-title .sec-title__title::after {
        left: 0;
        transform: translateX(0);
    }

.instagram-one__text {
    margin-top: -10px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: -10px;
    padding-bottom: 0;
}

.instagram-one__brand {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 40px 50px;
}

.instagram-one__brand__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.instagram-one__brand__item__hover-image {
    transition: all 500ms ease;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.instagram-one__brand__item__image {
    transition: 500ms;
    max-width: 122px;
    width: auto;
    transition: all 500ms ease;
}

.instagram-one__brand__item img {
    transition: all 500ms ease;
    max-width: 100%;
    width: auto !important;
    cursor: pointer;
}

.instagram-one__brand__item:hover .instagram-one__brand__item__hover-image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

.instagram-one__brand__item:hover .instagram-one__brand__item__image {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
}

.instagram-one__animation {
    display: flex;
    align-items: center;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

    .instagram-one__animation:hover {
        animation-play-state: paused;
    }

.instagram-one__item {
    position: relative;
    z-index: 1;
}

.instagram-one__item__one, .instagram-one__item__two {
    position: relative;
    z-index: 1;
}

    .instagram-one__item__one:hover .instagram-one__item__hover, .instagram-one__item__two:hover .instagram-one__item__hover {
        transform-origin: top center;
        transform: scale(1, 1);
    }

.instagram-one__item__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

    .instagram-one__item__hover .img-popup {
        position: relative;
    }

        .instagram-one__item__hover .img-popup i {
            font-size: 40px;
            color: var(--rentol-white, #fff);
            transition: all 0.4s ease-in-out;
        }

        .instagram-one__item__hover .img-popup:hover i {
            color: var(--rentol-primary3, #CEAC69);
        }

.instagram-one__inner {
    position: relative;
    z-index: 1;
    margin-top: 120px;
}

@media (min-width: 1430px) {
    .instagram-one__inner .container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .instagram-one__inner {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .instagram-one__inner {
        margin-top: 80px;
    }
}

.instagram-one__inner__list {
    position: absolute;
    padding: 22px 30px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    background-color: var(--rentol-white, #fff);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

@media (max-width: 1350px) {
    .instagram-one__inner__list {
        display: none;
    }
}

.instagram-one__inner__list__item {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    position: relative;
    z-index: 1;
}

    .instagram-one__inner__list__item i {
        color: var(--rentol-primary3, #CEAC69);
        font-size: 30px;
        margin-right: 20px;
    }

    .instagram-one__inner__list__item::after {
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
        top: 50%;
        right: -45px;
        transform: translateY(-50%);
        background-image: url(../images/shapes/soft-star.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left top;
    }

    .instagram-one__inner__list__item:last-child::after {
        display: none;
    }

.instagram-two {
    position: relative;
    background-color: transparent;
}

    .instagram-two .container-fluid {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }

.instagram-two__item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

    .instagram-two__item img {
        object-fit: cover;
        width: 100%;
    }

.instagram-two__item__icon a {
    font-size: 30px;
    color: var(--rentol-primary2, #E66431);
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.instagram-two__item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.8);
    z-index: 1;
    border-radius: 20px;
    transform: translateX(-100%);
    transition: all 0.4s ease-in-out;
}

.instagram-two__item:hover::before {
    transform: translateX(0%);
}

.instagram-two__item:hover .instagram-two__item__icon a {
    opacity: 1;
}

.instagram-two__inner {
    margin-top: -180px;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Premium Drivers
--------------------------------------------------------------*/
.premium-drivers {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black4, #10181A);
}

    .premium-drivers::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: #E4DFD7;
        opacity: 0.2;
    }

@media (max-width: 991px) {
    .premium-drivers::after {
        display: none;
    }
}

.premium-drivers::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #E4DFD7;
    opacity: 0.2;
}

@media (max-width: 991px) {
    .premium-drivers::before {
        display: none;
    }
}

.premium-drivers__content {
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 30px;
}

@media (max-width: 991px) {
    .premium-drivers__content {
        max-width: 100%;
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 0;
    }
}

.premium-drivers__item + .premium-drivers__item {
    margin-top: 120px;
}

@media (max-width: 991px) {
    .premium-drivers__item + .premium-drivers__item {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .premium-drivers__item + .premium-drivers__item {
        margin-top: 80px;
    }
}

.premium-drivers__item {
    position: relative;
    z-index: 1;
}

    .premium-drivers__item .sec-title {
        padding-bottom: 33px;
    }

        .premium-drivers__item .sec-title .sec-title__title {
            color: var(--rentol-white, #fff);
        }

            .premium-drivers__item .sec-title .sec-title__title::after {
                left: 0;
                transform: translateX(0);
            }

@media (min-width: 1200px) {
    .premium-drivers__item__carousel {
        margin-left: 30px;
    }
}

.premium-drivers__item__carousel__item img {
    object-fit: cover;
    max-height: 510px;
    height: 100%;
    width: 100%;
}

.premium-drivers__item--two .premium-drivers__content {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0px;
}

@media (min-width: 1200px) {
    .premium-drivers__item--two .premium-drivers__content {
        margin-left: 0;
        margin-right: auto;
    }
}

.premium-drivers__item--two .premium-drivers__item__carousel {
    margin-left: 0px;
    margin-right: 0px;
}

@media (min-width: 1200px) {
    .premium-drivers__item--two .premium-drivers__item__carousel {
        margin-left: auto;
        padding-right: 30px;
    }
}

.premium-drivers__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 42px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
}

.premium-drivers__btn a {
    background-color: transparent;
    border-radius: 0;
    border: 1px solid var(--rentol-primary3, #CEAC69);
    color: var(--rentol-primary3, #CEAC69);
    text-transform: capitalize;
}

    .premium-drivers__btn a i {
        margin-left: 10px;
    }

    .premium-drivers__btn a::after {
        background-color: var(--rentol-primary3, #CEAC69);
    }

    .premium-drivers__btn a:hover {
        color: var(--rentol-white, #fff);
    }

.premium-drivers__box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 575px) {
    .premium-drivers__box {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.premium-drivers__box__item {
    padding: 20px;
    border: 1px solid rgba(var(--rentol-primary3-rgb, 206, 172, 105), 0.2);
    text-align: center;
}

@media (max-width: 575px) {
    .premium-drivers__box__item {
        min-width: 300px;
    }
}

.premium-drivers__box__item__icon {
    line-height: 0;
    margin-bottom: 12px;
    transform: rotateX(0deg);
    transition: all 0.4s ease-in-out;
}

.premium-drivers__box__item i {
    font-size: 40px;
    color: var(--rentol-primary3, #CEAC69);
}

.premium-drivers__box__item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 162%;
    margin-bottom: -7px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    padding-bottom: 0;
}

.premium-drivers__box__item:hover .premium-drivers__box__item__icon {
    transform: rotateY(180deg);
}

/*--------------------------------------------------------------
# Fleet
--------------------------------------------------------------*/
/***** Fleet Card******/
.fleet-card-one {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.fleet-card-one__image {
    position: relative;
    overflow: hidden;
}

    .fleet-card-one__image img {
        object-fit: cover;
        width: 100%;
    }

    .fleet-card-one__image::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.8);
        transform: scale(0.6, 0.6);
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

.fleet-card-one__content {
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    border-top: none;
    background-color: var(--rentol-white, #fff);
    padding: 30px;
}

    .fleet-card-one__content .rentol-ratings {
        margin-top: -3px;
        color: var(--rentol-base, #F2AF1E);
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

.fleet-card-one__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 6px;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
}

    .fleet-card-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .fleet-card-one__title a:hover {
            background-size: 100% 1px;
        }

        .fleet-card-one__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.fleet-card-one__text {
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 27px;
}

.fleet-card-one__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-card-one__price {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
}

    .fleet-card-one__price span {
        font-size: 16px;
    }

.fleet-card-one__link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-black, #212121);
    border-radius: 50%;
}

    .fleet-card-one__link::after {
        background-color: var(--rentol-base, #F2AF1E);
    }

    .fleet-card-one__link:hover {
        background-color: var(--rentol-base, #F2AF1E);
    }

.fleet-card-one:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .fleet-card-one:hover .fleet-card-one__image::after {
        visibility: visible;
        opacity: 1;
        transform: scale(1, 1);
    }

/***** Fleet One******/
.fleet-one {
    position: relative;
    background-color: var(--rentol-white, #fff);
}

.fleet-one__top .sec-title {
    padding-bottom: 23px;
}

.fleet-one__top .tabs-box__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 60px;
}

    .fleet-one__top .tabs-box__buttons li {
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        color: var(--rentol-black, #212121);
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
    }

        .fleet-one__top .tabs-box__buttons li span {
            font-size: 24px;
            color: var(--rentol-base, #F2AF1E);
            line-height: 1;
            margin-right: 10px;
        }

        .fleet-one__top .tabs-box__buttons li .rentol-icon {
            display: none;
        }

        .fleet-one__top .tabs-box__buttons li:hover {
            color: var(--rentol-base, #F2AF1E);
        }

        .fleet-one__top .tabs-box__buttons li.active {
            color: var(--rentol-base, #F2AF1E);
        }

            .fleet-one__top .tabs-box__buttons li.active .rentol-icon {
                display: inline-flex;
            }

/***** Fleet Card Two******/
.fleet-card-two {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(var(--rentol-gray-rgb, 239, 239, 239), 0.5);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

    .fleet-card-two .rentol-ratings {
        justify-content: center;
        font-size: 15px;
        color: var(--rentol-base, #F2AF1E);
        text-align: center;
        margin-bottom: 20px;
    }

.fleet-card-two__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
    text-transform: capitalize;
    text-align: center;
}

    .fleet-card-two__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .fleet-card-two__title a:hover {
            background-size: 100% 1px;
        }

        .fleet-card-two__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.fleet-card-two__image {
    text-align: center;
    height: 146px;
    margin-bottom: 15px;
}

    .fleet-card-two__image img {
        object-fit: cover;
    }

.fleet-card-two__meta {
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .fleet-card-two__meta li {
        display: flex;
        align-items: center;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 153%;
        text-transform: capitalize;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.1px currentColor;
    }

        .fleet-card-two__meta li i {
            color: var(--rentol-base, #F2AF1E);
            margin-right: 6px;
        }

.fleet-card-two__text {
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.fleet-card-two__content {
    position: relative;
    overflow: hidden;
}

.fleet-card-two__btn {
    background-color: transparent;
    border: 1px solid var(--rentol-base, #F2AF1E);
    visibility: visible;
    opacity: 1;
    color: var(--rentol-base, #F2AF1E);
    font-size: 20px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    padding: 6.5px 30px;
}

    .fleet-card-two__btn span {
        font-size: 15px;
    }

.fleet-card-two__btn-two {
    position: absolute;
    transform: translateY(-100%);
    bottom: -12px;
    padding: 11px 30px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}

.fleet-card-two .rentol-btn {
    width: 100%;
}

.fleet-card-two:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .fleet-card-two:hover .fleet-card-two__btn {
        visibility: hidden;
        opacity: 0;
    }

    .fleet-card-two:hover .fleet-card-two__btn-two {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
        bottom: 0;
    }

.fleet-card-two--two {
    background-color: #F7F5F2;
}

    .fleet-card-two--two .rentol-ratings,
    .fleet-card-two--two .fleet-card-two__title a:hover,
    .fleet-card-two--two .fleet-card-two__meta li i,
    .fleet-card-two--two .fleet-card-two__btn {
        color: var(--rentol-primary3, #CEAC69);
    }

    .fleet-card-two--two .fleet-card-two__btn {
        border-color: var(--rentol-primary3, #CEAC69);
    }

    .fleet-card-two--two .fleet-card-two__btn-two {
        background-color: var(--rentol-primary3, #CEAC69);
    }

/***** Fleet Two******/
.fleet-two__booking {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 40px;
}

.fleet-two__form__grid {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
}

@media (max-width: 767px) {
    .fleet-two__form__grid {
        grid-template-columns: auto auto;
    }
}

@media (max-width: 575px) {
    .fleet-two__form__grid {
        grid-template-columns: auto;
    }
}

.fleet-two__form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--rentol-font, "Manrope", sans-serif);
}

.fleet-two__form .bootstrap-select > .dropdown-toggle::after {
    display: none;
}

.fleet-two__form .bootstrap-select > .dropdown-toggle {
    position: relative;
    height: 52px;
    outline: none !important;
    border-radius: 0;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    background-color: var(--rentol-white, #fff) !important;
    margin: 0;
    padding: 0;
    padding-left: 17px;
    padding-right: 17px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E) !important;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 52px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

    .fleet-two__form .bootstrap-select > .dropdown-toggle:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 17px;
        font-family: "Font Awesome 5 Free";
        content: "\f107";
        font-weight: 900;
        font-size: 20px;
        color: var(--rentol-text, #7E7E7E);
    }

.fleet-two__form .bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.fleet-two__form .bootstrap-select .dropdown-menu {
    border: none;
}

    .fleet-two__form .bootstrap-select .dropdown-menu > li > a {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 22px;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-white, #fff);
        text-transform: capitalize;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .fleet-two__form .bootstrap-select .dropdown-menu > li:hover > a,
    .fleet-two__form .bootstrap-select .dropdown-menu > li.selected > a {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-black, #212121);
        border-color: var(--rentol-base, #F2AF1E);
    }

.fleet-two__form .bootstrap-select > .dropdown-toggle {
    display: flex;
    align-items: center;
}

    .fleet-two__form .bootstrap-select > .dropdown-toggle .filter-option {
        display: flex;
        align-items: center;
    }

/*--------------------------------------------------------------
# Our Company
--------------------------------------------------------------*/
/****** Our Company*****/
.our-company {
    position: relative;
    z-index: 1;
    background-color: #1F1C19;
}

.our-company__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: overlay;
}

.our-company__content .sec-title {
    padding-bottom: 22px;
}

    .our-company__content .sec-title .sec-title__title {
        color: var(--rentol-white, #fff);
    }

.our-company__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 32px;
}

.our-company__list {
    border-bottom: 1px solid rgba(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .our-company__list li {
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 150%;
        margin-bottom: 0;
        padding-bottom: 0;
        text-transform: capitalize;
        color: var(--rentol-white, #fff);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .our-company__list li span {
            width: 30px;
            height: 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(var(--rentol-base-rgb, 242, 175, 30), 0.1);
            transition: all 0.4s ease-in-out;
        }

            .our-company__list li span i {
                color: var(--rentol-base, #F2AF1E);
                font-size: 14px;
                transition: all 0.4s ease-in-out;
            }

        .our-company__list li i {
            color: rgba(var(--rentol-base-rgb, 242, 175, 30), 0.2);
        }

        .our-company__list li:hover span {
            background-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.1);
        }

            .our-company__list li:hover span i {
                color: var(--rentol-primary, #EB3E32);
            }

        .our-company__list li + li {
            margin-top: 20px;
        }

.our-company__man {
    background-color: var(--rentol-white, #fff);
    padding: 17px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.our-company__man__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .our-company__man__image img {
        object-fit: cover;
        width: 100%;
        border-radius: 50%;
        border: 3px solid var(--rentol-white, #fff);
        margin-left: -20px;
    }

        .our-company__man__image img:first-child {
            margin-left: 0;
        }

.our-company__man span {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

.our-company__thumb {
    display: flex;
    align-items: center;
    gap: 30px;
}

.our-company__thumb__item img {
    object-fit: cover;
    width: 100%;
}

.our-company__thumb__item__box {
    display: flex;
    margin-top: 30px;
    width: 270px;
    height: 116px;
    background: var(--rentol-primary2, #E66431);
    border-radius: 100px 0px;
}

.our-company__thumb__item:last-child .our-company__thumb__item__box {
    margin-top: 0;
    margin-bottom: 30px;
}

/****** Feature Bike*****/
.feature-bike-one {
    position: relative;
    z-index: 1;
    counter-reset: featureBike;
}

.feature-bike-one__thumb {
    position: relative;
    z-index: 1;
}

    .feature-bike-one__thumb img {
        object-fit: cover;
        width: 100%;
        animation: movebounce2 3s ease-in-out infinite;
    }

    .feature-bike-one__thumb::after {
        content: "";
        position: absolute;
        width: 162px;
        height: 606.82px;
        left: 30%;
        z-index: -1;
        top: 10px;
        background: var(--rentol-primary2, #E66431);
        transform: rotate(-37deg);
        border-radius: 50%;
    }

@media (max-width: 1199px) and (min-width: 991px) {
    .feature-bike-one__thumb::after {
        height: 406px;
    }
}

@media (max-width: 767px) {
    .feature-bike-one__thumb::after {
        display: none;
    }
}

.feature-bike-one__list {
    position: relative;
}

.feature-bike-one__item__number {
    position: relative;
    z-index: 1;
    counter-increment: featureBike;
    margin-bottom: 10px;
    display: block;
}

    .feature-bike-one__item__number::before {
        content: "";
        font-size: 24px;
        text-align: center;
        text-transform: capitalize;
        color: var(--rentol-primary2, #E66431);
        content: counters(featureBike, ".", decimal-leading-zero);
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
    }

.feature-bike-one__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.feature-bike-one__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-bike-one__item + .feature-bike-one__item {
    margin-top: 22px;
    padding-top: 25px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.feature-bike-one__element {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

    .feature-bike-one__element img {
        animation: movebounce3 3s ease-in-out infinite;
    }

.feature-bike-one__element-one {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

    .feature-bike-one__element-one img {
        animation: movebounce3 3s ease-in-out infinite;
    }

/****** We Included*****/
.we-included {
    position: relative;
    z-index: 1;
    background-color: #1F1C19;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding-bottom: 290px;
}

@media (max-width: 1199px) {
    .we-included {
        padding-bottom: 170px;
    }
}

@media (max-width: 991px) {
    .we-included {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .we-included {
        padding-bottom: 80px;
    }
}

.we-included__bg {
    position: absolute;
    top: 0;
    border-radius: 30px;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: overlay;
    border-radius: 30px;
}

.we-included .sec-title .sec-title__title,
.we-included .sec-title .sec-title__tagline {
    color: var(--rentol-white, #fff);
}

.we-included__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199px) {
    .we-included__list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.we-included__list__item {
    max-width: 170px;
    width: 100%;
    height: 174px;
    border: 2px solid var(--rentol-white, #fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.4s ease-in-out;
}

    .we-included__list__item:hover {
        background-color: var(--rentol-white, #fff);
    }

        .we-included__list__item:hover .we-included__list__icon {
            color: var(--rentol-primary2, #E66431);
            transform: rotateY(-180deg);
        }

        .we-included__list__item:hover .we-included__list__text {
            color: var(--rentol-black3, #040C2C);
        }

.we-included__list__icon {
    font-size: 50px;
    color: var(--rentol-white, #fff);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.we-included__list__text {
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Fleet Details
--------------------------------------------------------------*/
/*** Fleet Details Top***/
.fleet-details__top .fleet-details__top__list--two {
    grid-template-columns: auto auto auto auto;
    max-width: 100%;
}

.fleet-details__top,
.fleet-details__bottom {
    position: relative;
    background-color: var(--rentol-white, #fff);
    z-index: 1;
    padding-bottom: 60px;
}

    .fleet-details__top .sec-title,
    .fleet-details__bottom .sec-title {
        padding-bottom: 15px;
    }

        .fleet-details__top .sec-title .sec-title__tagline,
        .fleet-details__bottom .sec-title .sec-title__tagline {
            font-size: 16px;
            margin-bottom: 9px;
        }

        .fleet-details__top .sec-title .sec-title__title,
        .fleet-details__bottom .sec-title .sec-title__title {
            font-size: 24px;
        }

.fleet-details__top__text,
.fleet-details__bottom__text {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 0;
    padding-bottom: 0;
}

.fleet-details__top__text--two + .fleet-details__top__text--two,
.fleet-details__top__text--two + .fleet-details__bottom__text--two,
.fleet-details__bottom__text--two + .fleet-details__top__text--two,
.fleet-details__bottom__text--two + .fleet-details__bottom__text--two {
    margin-top: 12px;
}

.fleet-details__top__text + .fleet-details__top__list,
.fleet-details__top__text + .fleet-details__bottom__list,
.fleet-details__bottom__text + .fleet-details__top__list,
.fleet-details__bottom__text + .fleet-details__bottom__list {
    margin-top: 30px;
}

.fleet-details__top__list + .fleet-details__top__text,
.fleet-details__top__list + .fleet-details__bottom__text,
.fleet-details__bottom__list + .fleet-details__top__text,
.fleet-details__bottom__list + .fleet-details__bottom__text {
    margin-top: 30px;
}

.fleet-details__top__list,
.fleet-details__bottom__list {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    margin-bottom: 0;
}

.fleet-details__top__list--two,
.fleet-details__bottom__list--two {
    max-width: 600px;
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .fleet-details__top__list,
    .fleet-details__bottom__list {
        grid-template-columns: auto;
    }
}

.fleet-details__top__list li,
.fleet-details__bottom__list li {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
}

    .fleet-details__top__list li i,
    .fleet-details__bottom__list li i {
        font-size: 20px;
        color: var(--rentol-base, #F2AF1E);
        margin-right: 10px;
    }

.fleet-details__bottom {
    margin-top: 55px;
}

/*** Fleet Details Booking***/
.fleet-details__booking {
    background-color: var(--rentol-gray, #EFEFEF);
}

.fleet-details__booking__top {
    background-color: var(--rentol-black, #212121);
    position: relative;
    padding: 30px;
}

    .fleet-details__booking__top .sec-title {
        padding-bottom: 0;
    }

        .fleet-details__booking__top .sec-title .sec-title__tagline {
            margin-top: -2px;
            color: var(--rentol-white, #fff);
            margin-bottom: 15px;
        }

        .fleet-details__booking__top .sec-title .sec-title__title {
            font-size: 30px;
            color: var(--rentol-white, #fff);
            line-height: 100%;
            margin-bottom: -4px;
        }

.fleet-details__booking__content {
    padding: 30px;
}

.fleet-details__booking__list {
    margin-bottom: 45px;
}

    .fleet-details__booking__list li {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
        text-transform: capitalize;
    }

        .fleet-details__booking__list li i {
            color: var(--rentol-base, #F2AF1E);
            margin-right: 10px;
        }

        .fleet-details__booking__list li + li {
            margin-top: 20px;
        }

.fleet-details__booking__price {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 60%;
    color: var(--rentol-black, #212121);
    margin-bottom: 40px;
}

.fleet-details__booking__price__top {
    display: block;
    color: var(--rentol-text, #7E7E7E);
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.fleet-details__booking__price__month {
    font-size: 16px;
}

.fleet-details__booking__btn {
    width: 100%;
    color: var(--rentol-black, #212121);
    border-radius: 0;
    font-weight: 800;
    padding: 10px 21px;
}

/*** Fleet Details***/
.fleet-details__carousel {
    position: relative;
}

.fleet-details__carousel__item__image {
    position: relative;
}

    .fleet-details__carousel__item__image img {
        object-fit: cover;
        width: 100%;
    }

.fleet-details__carousel__inner + .fleet-details__thumb {
    margin-top: 30px;
}

.fleet-details__carousel .fleet-details__thumb {
    margin-left: 75px;
    margin-right: 75px;
}

.fleet-details__carousel .fleet-details__thumb__carousel {
    margin-left: -15px;
    margin-right: -15px;
}

    .fleet-details__carousel .fleet-details__thumb__carousel .slick-slide {
        text-align: center;
        margin-right: 15px;
        margin-left: 15px;
    }

.fleet-details__carousel .fleet-details__thumb__item {
    overflow: hidden;
    cursor: pointer;
}

    .fleet-details__carousel .fleet-details__thumb__item img {
        object-fit: cover;
        width: 100%;
    }

.fleet-details__carousel .fleet-details__item-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .fleet-details__carousel .fleet-details__item-video a {
        font-size: 33px;
        width: 115px;
        height: 115px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--rentol-white, #fff);
    }

        .fleet-details__carousel .fleet-details__item-video a .ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
            animation: ripple 3s infinite;
            border-radius: 50%;
        }

            .fleet-details__carousel .fleet-details__item-video a .ripple::before, .fleet-details__carousel .fleet-details__item-video a .ripple::after {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                transform: translate(-50%, -50%);
                box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
                animation: ripple 3s infinite;
                border-radius: 50%;
            }

            .fleet-details__carousel .fleet-details__item-video a .ripple::before {
                animation-delay: 0.9s;
                content: "";
                position: absolute;
            }

            .fleet-details__carousel .fleet-details__item-video a .ripple::after {
                animation-delay: 0.6s;
                content: "";
                position: absolute;
            }

        .fleet-details__carousel .fleet-details__item-video a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

.fleet-details-comment--two {
    background-color: var(--rentol-gray, #EFEFEF);
}

    .fleet-details-comment--two .comments-one {
        margin-top: 0;
    }

    .fleet-details-comment--two .form-one__control input[type=text],
    .fleet-details-comment--two .form-one__control input[type=email] {
        display: block;
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        background-color: transparent;
        border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
        color: var(--rentol-text, #7E7E7E);
        font-size: 16px;
        font-weight: 400;
        padding-left: 0px;
        padding-right: 30px;
    }

    .fleet-details-comment--two .form-one__control textarea {
        background-color: var(--rentol-white, #fff);
    }

/*** Fleet Two Details***/
.fleet-details-car-details {
    position: relative;
    z-index: 1;
}

    .fleet-details-car-details .carousel-item-one {
        background-color: var(--rentol-gray, #EFEFEF);
        padding: 120px 50px;
    }

.fleet-details-car-details__top {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 22px;
}

    .fleet-details-car-details__top .rentol-ratings {
        color: var(--rentol-base, #F2AF1E);
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1px;
    }

.fleet-details-car-details__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 229%;
    margin-bottom: 20px;
    padding-bottom: 0;
    letter-spacing: -0.03em;
    color: var(--rentol-black, #212121);
}

.fleet-details-car-details__price {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 60%;
    color: var(--rentol-black, #212121);
}

    .fleet-details-car-details__price span {
        font-size: 16px;
    }

.fleet-details-car-details__text {
    text-transform: capitalize;
    line-height: 188%;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.fleet-details-car-details__feature__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: var(--rentol-black, #212121);
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.fleet-details-car-details__list {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 28px 0px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

    .fleet-details-car-details__list li {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.1px currentColor;
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }

        .fleet-details-car-details__list li span {
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 100%;
            color: var(--rentol-black, #212121);
            text-shadow: 0 0 0.1px currentColor;
            text-transform: capitalize;
            transition: all 0.4s ease-in-out;
        }

            .fleet-details-car-details__list li span:first-child {
                width: 170px;
                display: inline-flex;
            }

            .fleet-details-car-details__list li span i {
                margin-right: 8px;
                color: var(--rentol-base, #F2AF1E);
            }

        .fleet-details-car-details__list li:hover span {
            color: var(--rentol-text, #7E7E7E);
        }

.fleet-details-car-details__btn {
    display: inline-flex;
    align-items: center;
}

    .fleet-details-car-details__btn span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .fleet-details-car-details__btn span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .fleet-details-car-details__btn:hover span {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

        .fleet-details-car-details__btn:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.fleet-details-car-details__thumb {
    margin-top: 30px;
}

.fleet-details-car-details__thumb__carousel {
    margin-left: -15px;
    margin-right: -15px;
}

    .fleet-details-car-details__thumb__carousel .slick-slide {
        text-align: center;
        margin-right: 15px;
        margin-left: 15px;
    }

.fleet-details-car-details__line {
    position: relative;
    z-index: 1;
    margin-top: 55px;
    height: 1px;
    width: 100%;
    background-color: var(--rentol-gray, #EFEFEF);
    margin-bottom: 35px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
    position: relative;
}

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

@media (min-width: 992px) {
    .gallery-one__carousel .owl-nav {
        display: none;
    }
}

.gallery-one__filter__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

    .gallery-one__filter__list li {
        cursor: pointer;
    }

        .gallery-one__filter__list li span {
            display: block;
            font-size: 14px;
            background-color: var(--rentol-base, #F2AF1E);
            transition: all 500ms ease;
            text-transform: capitalize;
            font-weight: 600;
            padding: 12px 20px;
            line-height: 1.2em;
            letter-spacing: 0;
        }

        .gallery-one__filter__list li.active span, .gallery-one__filter__list li:hover span {
            background-color: var(--rentol-black, #212121);
            color: var(--rentol-white, #fff);
        }

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--rentol-black, #212121);
    border-radius: 10px;
}

    .gallery-one__card img {
        transform: scale(1);
        max-width: 100%;
        transition: transform 500ms ease, opacity 500ms ease;
        opacity: 1;
    }

.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

    .gallery-one__card__hover .img-popup {
        position: relative;
    }

.gallery-one__card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one__card__icon {
    width: 33px;
    height: 33px;
    display: block;
    position: relative;
}

    .gallery-one__card__icon::after, .gallery-one__card__icon::before {
        content: "";
        width: 2px;
        height: 100%;
        background-color: var(--rentol-white, #fff);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease-in-out;
    }

    .gallery-one__card__icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .gallery-one__card__icon:hover::after, .gallery-one__card__icon:hover::before {
        background-color: var(--rentol-base, #F2AF1E);
    }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/*blog sidebar*/
.sidebar__single {
    background-color: var(--rentol-gray, #EFEFEF);
    padding: 30px;
    border-radius: 10px;
}

    .sidebar__single + .sidebar__single {
        margin-top: 30px;
    }

.sidebar__title {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 80%;
    padding-bottom: 0;
    color: var(--rentol-text-dark, #6e6b70);
    margin-bottom: 28px;
    text-shadow: 0 0 0.01px currentColor;
}

.sidebar__form__title {
    margin-top: -6px;
}

.sidebar__search {
    position: relative;
}

    .sidebar__search input[type=search],
    .sidebar__search input[type=text] {
        outline: none;
        width: 100%;
        height: 59px;
        background-color: var(--rentol-white, #fff);
        border: none;
        padding-left: 20px;
        padding-right: 20px;
        transition: all 500ms ease;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-text, #7E7E7E);
        border-radius: 6px;
    }

        .sidebar__search input[type=search]::placeholder,
        .sidebar__search input[type=text]::placeholder {
            font-family: var(--rentol-font, "Manrope", sans-serif);
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            color: var(--rentol-text, #7E7E7E);
            text-transform: capitalize;
        }

    .sidebar__search button[type=submit] {
        border: none;
        outline: none;
        background-color: rgba(0, 0, 0, 0);
        position: absolute;
        top: 50%;
        right: 20px;
        line-height: 1;
        transform: translateY(-50%);
        width: auto;
        font-size: 20px;
        color: var(--rentol-base, #F2AF1E);
    }

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
}

    .sidebar__posts__item.active .sidebar__posts__image::after, .sidebar__posts__item:hover .sidebar__posts__image::after {
        width: 100%;
        right: auto;
        left: 0;
    }

    .sidebar__posts__item.active .sidebar__posts__image img, .sidebar__posts__item:hover .sidebar__posts__image img {
        transform: scale(1.2) rotate(-15deg);
    }

    .sidebar__posts__item + .sidebar__posts__item {
        margin-top: 30px;
    }


.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
    width: 80px;
    height: 84px;
    overflow: hidden;
    border-radius: 10px;
}

    .sidebar__posts__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease-in-out;
        border-radius: 6px;
    }

    .sidebar__posts__image::after {
        content: "";
        width: 0%;
        height: 100%;
        top: 0%;
        left: auto;
        right: 0;
        background-color: rgba(var(--rentol-text-dark-rgb, 110, 107, 112), 0.5);
        position: absolute;
        transition: all 0.4s ease-in-out;
    }

.sidebar__posts__meta {
    margin: 0;
    line-height: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

    .sidebar__posts__meta a {
        display: inline-flex;
        align-items: center;
        color: var(--rentol-text, #7E7E7E);
        transition: all 500ms ease;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 133%;
    }

        .sidebar__posts__meta a:hover {
            color: var(--rentol-base, #F2AF1E);
            text-shadow: 0 0 1px currentColor;
        }

        .sidebar__posts__meta a i {
            color: var(--rentol-base, #F2AF1E);
            margin-right: 10px;
        }

.sidebar__posts__title {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .sidebar__posts__title {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .sidebar__posts__title {
        font-size: 14px;
    }
}

.sidebar__posts__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .sidebar__posts__title a.active, .sidebar__posts__title a:hover {
        background-size: 100% 1px;
    }

    .sidebar__posts__title a.active, .sidebar__posts__title a:hover {
        color: var(--rentol-base, #F2AF1E);
    }


.sidebar__categories {
    margin-bottom: -14px;
    margin-top: -16px;
}

    .sidebar__categories li a {
        color: var(--rentol-text, #7E7E7E);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 500ms ease;
        padding: 7px 0;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

        .sidebar__categories li a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            text-shadow: 0 0 1px currentColor;
            padding: 15px 20px;
        }

            .sidebar__categories li a:hover span {
                color: var(--rentol-white, #fff);
            }

        .sidebar__categories li a span {
            color: var(--rentol-text-dark, #6e6b70);
        }

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .sidebar__tags a {
        background-color: var(--rentol-white, #fff);
        color: var(--rentol-text-dark, #6e6b70);
        transition: all 500ms ease;
        display: inline-flex;
        padding: 8px 10px;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        text-transform: capitalize;
        border-radius: 6px;
    }

        .sidebar__tags a:hover {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-base, #F2AF1E);
        }

.sidebar__comments {
    margin-bottom: 0;
}

.sidebar__comments__item {
    display: flex;
    align-items: center;
}

    .sidebar__comments__item + .sidebar__comments__item {
        margin-top: 30px;
    }

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--rentol-base, #F2AF1E);
    font-size: 22px;
    color: var(--rentol-white, #fff);
    margin-right: 20px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--rentol-text-dark, #6e6b70);
    color: var(--rentol-white, #fff);
}

.sidebar__comments__title {
    margin: 0;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-text, #7E7E7E);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 156%;
    text-transform: capitalize;
}

    .sidebar__comments__title a {
        color: inherit;
        transition: all 500ms ease;
    }

        .sidebar__comments__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.service-sidebar {
    position: relative;
}

.service-sidebar__single + .service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__nav {
    margin: 0;
    padding: 0;
}

    .service-sidebar__nav li {
        position: relative;
        z-index: 1;
        font-size: 24px;
        font-weight: 500;
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-gray, #EFEFEF);
        padding: 19px 30px;
        transition: all 400ms ease;
    }

        .service-sidebar__nav li::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            height: 17px;
            margin: auto;
            background-color: var(--rentol-base, #F2AF1E);
            transition: all 400ms ease;
        }

        .service-sidebar__nav li::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-color: var(--rentol-base, #F2AF1E);
            transform: scalex(0);
            transform-style: preserve-3d;
            transition: transform 0.4s ease-in-out;
            transform-origin: right center;
            z-index: -1;
        }

        .service-sidebar__nav li a {
            color: inherit;
            display: inline-block;
            transition: none;
        }

        .service-sidebar__nav li.current, .service-sidebar__nav li:hover {
            color: var(--rentol-white, #fff);
            border-color: var(--rentol-base, #F2AF1E);
        }

            .service-sidebar__nav li.current::after, .service-sidebar__nav li:hover::after {
                background-color: var(--rentol-white, #fff);
            }

            .service-sidebar__nav li.current::before, .service-sidebar__nav li:hover::before {
                transform: scalex(1);
                transform-origin: left center;
            }

        .service-sidebar__nav li + li {
            border-top: 1px solid var(--rentol-border-color, #D2D2D2);
        }

.service-sidebar__contact {
    padding: 149px 25px 144px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

    .service-sidebar__contact::after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.8);
    }

.service-sidebar__contact__left-triangle {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 41px 47px 0 0;
    border-color: var(--rentol-base, #F2AF1E) transparent transparent transparent;
    transform: rotate(0deg);
}

.service-sidebar__contact__right-triangle {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 41px 47px;
    border-color: transparent transparent var(--rentol-base, #F2AF1E) transparent;
    transform: rotate(0deg);
}

.service-sidebar__contact__icon {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    width: 72px;
    height: 72px;
    background-color: var(--rentol-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
    margin-bottom: 36px;
}

    .service-sidebar__contact__icon i {
        color: var(--rentol-base, #F2AF1E);
        font-size: 36px;
        transition: color 500ms ease, transform 500ms ease;
        transform: scale(1);
    }

.service-sidebar__contact:hover .service-sidebar__contact__icon {
    background-color: var(--rentol-base, #F2AF1E);
}

    .service-sidebar__contact:hover .service-sidebar__contact__icon i {
        transform: scale(0.9);
        color: var(--rentol-white, #fff);
    }

.service-sidebar__contact__number {
    position: relative;
    z-index: 1;
    color: var(--rentol-white, #fff);
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.9px;
    margin-bottom: 0;
}

    .service-sidebar__contact__number span {
        font-size: 16px;
        letter-spacing: -0.48px;
        font-weight: 600;
        display: block;
        line-height: 1;
        margin-bottom: 9px;
    }

    .service-sidebar__contact__number a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .service-sidebar__contact__number a:hover {
            background-size: 100% 1px;
        }

        .service-sidebar__contact__number a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    transform-origin: right center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

    .sidebar-one.active {
        opacity: 1;
        transform: translateX(0%);
        visibility: visible;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

        .sidebar-one.active .sidebar-one__content {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        }

.sidebar-one__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--rentol-black, #212121);
    opacity: 0.5;
    cursor: url(../images/close.png), auto;
}

.sidebar-one__close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 16px;
    color: var(--rentol-white, #fff);
    transition: all 0.4s ease;
    cursor: pointer;
}

    .sidebar-one__close:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.sidebar-one__content {
    width: 350px;
    background-color: var(--rentol-black, #212121);
    z-index: 10;
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    scrollbar-width: none;
}

.sidebar-one__text {
    color: var(--rentol-gray, #EFEFEF);
    margin: 50px 0 30px;
    line-height: 28px;
}

.sidebar-one__title {
    color: var(--rentol-white, #fff);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 18px;
}

.sidebar-one__info {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-one__info li {
        position: relative;
        padding: 0 0 0 28px;
        margin-bottom: 10px;
        color: var(--rentol-gray, #EFEFEF);
    }

        .sidebar-one__info li span {
            position: absolute;
            left: 0;
            top: 1px;
            font-size: 15px;
            color: var(--rentol-base, #F2AF1E);
            line-height: inherit;
        }

        .sidebar-one__info li a {
            background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
            transition: all 500ms ease;
            color: inherit;
        }

            .sidebar-one__info li a:hover {
                background-size: 100% 1px;
            }

            .sidebar-one__info li a:hover {
                color: var(--rentol-base, #F2AF1E);
            }

.sidebar-one__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 40px;
}

    .sidebar-one__social a {
        width: 37px;
        height: 37px;
        background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.08);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--rentol-white, #fff);
    }

        .sidebar-one__social a i {
            position: relative;
            z-index: 2;
            display: inline-block;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .sidebar-one__social a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

            .sidebar-one__social a:hover i {
                animation: iconTranslateY 0.4s forwards;
            }

.sidebar-one__newsletter {
    position: relative;
}

    .sidebar-one__newsletter input[type=text] {
        width: 100%;
        display: block;
        border: none;
        outline: none;
        height: 60px;
        background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.08);
        color: var(--rentol-gray, #EFEFEF);
        font-size: 16px;
        font-weight: 400;
        padding-left: 30px;
        padding-right: 50px;
        transition: all 500ms ease;
        border-radius: 5px;
    }

    .sidebar-one__newsletter button[type=submit] {
        background-color: transparent;
        width: auto;
        height: auto;
        border: none;
        outline: none;
        color: var(--rentol-white, #fff);
        font-size: 16px;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        transition: all 500ms ease;
    }

        .sidebar-one__newsletter button[type=submit]:hover {
            color: var(--rentol-base, #F2AF1E);
        }

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details .blog-card-two {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-details .blog-card-two__image {
    border-radius: 20px;
}

.blog-details .blog-card-two__content {
    padding: 8px 0px 40px;
    position: relative;
    z-index: 2;
}

.blog-details .blog-card-two__title {
    margin-top: -4px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 185%;
}

.blog-details .blog-card-two__date {
    left: 30px;
    top: 30px;
}

.blog-details .blog-card-two__text {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-details .blog-card-two__text + .blog-card-two__text {
        margin-top: 20px;
    }

.blog-details__feature__thumb {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .blog-details__feature__thumb img {
        border-radius: 20px;
        object-fit: cover;
        width: 100%;
    }

.blog-details__list {
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 1rem;
}

.blog-details__list__item {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

    .blog-details__list__item + .blog-details__list__item {
        margin-top: 15px;
    }

.blog-details__meta {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.blog-details__tags, .blog-details__cetagoris {
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-details__tags__title, .blog-details__cetagoris__title {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 89%;
    color: var(--rentol-black, #212121);
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-details__tags .sidebar__cetagoris, .blog-details__cetagoris .sidebar__cetagoris {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .blog-details__tags .sidebar__cetagoris a, .blog-details__cetagoris .sidebar__cetagoris a {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 114%;
        padding: 12px;
        color: var(--rentol-text, #7E7E7E);
        background: var(--rentol-gray, #EFEFEF);
        text-transform: capitalize;
        border-radius: 6px;
    }

        .blog-details__tags .sidebar__cetagoris a:hover, .blog-details__cetagoris .sidebar__cetagoris a:hover {
            color: var(--rentol-white, #fff);
            background: var(--rentol-base, #F2AF1E);
        }

.blog-details__tags .sidebar__tags, .blog-details__cetagoris .sidebar__tags {
    gap: 0;
}

    .blog-details__tags .sidebar__tags a, .blog-details__cetagoris .sidebar__tags a {
        padding: 2px;
        color: var(--rentol-text, #7E7E7E);
    }

        .blog-details__tags .sidebar__tags a:hover, .blog-details__cetagoris .sidebar__tags a:hover {
            color: var(--rentol-base, #F2AF1E);
            background: transparent;
        }

.blog-details .form-one__control input[type=text],
.blog-details .form-one__control input[type=email] {
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    font-weight: 400;
    padding-left: 0px;
    padding-right: 30px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
    margin-top: 55px;
}

.comments-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    margin-top: -4px;
    margin-bottom: 37px;
}

.comments-one__list {
    padding: 0;
    margin: 0;
    margin-top: 35px;
}

.comments-one__card {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .comments-one__card {
        flex-direction: column;
    }
}

.comments-one__card__image {
    position: relative;
    margin-right: 21px;
}

    .comments-one__card__image img {
        border-radius: 50%;
        width: 96px;
        height: 96px;
    }

.comments-one__card__title {
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

.comments-one__card__date {
    display: block;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.comments-one__card__text {
    margin: 0;
    line-height: 30px;
}

.comments-one__card__btn {
    position: absolute;
    right: 0;
    top: 22px;
}

@media (max-width: 767px) {
    .comments-one__card__btn {
        position: relative;
        top: 0;
        margin: 20px 0 8px;
    }
}

.comments-one__card .rentol-btn {
    padding: 4px 13px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.comments-one__card__content {
    position: relative;
}

.comments-form {
    margin-top: 55px;
}

.comments-form__title {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    margin-top: -4px;
    margin-bottom: 37px;
}

.comments-form__form {
    margin-top: 37px;
}

    .comments-form__form.form-one textarea {
        height: 143px;
    }

    .comments-form__form .form-one__group {
        gap: 30px;
    }

    .comments-form__form .rentol-btn {
        font-weight: 700;
        padding: 10px 31px;
    }

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
    position: relative;
}

.product__sidebar {
    margin-top: 82px;
    position: relative;
}

@media (max-width: 991px) {
    .product__sidebar {
        margin-top: 0;
    }
}

.product__sidebar__item + .product__sidebar__item {
    margin-top: 30px;
}

.product__sidebar__item {
    padding: 30px;
    background-color: var(--rentol-gray, #EFEFEF);
    border-radius: 10px;
}

.product__sidebar__title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    text-transform: capitalize;
    margin-top: -2px;
    margin-bottom: 21px;
}

.product__search {
    display: flex;
    align-items: center;
    position: relative;
    height: 59px;
}

    .product__search input[type=search],
    .product__search input[type=text] {
        padding-left: 15px;
        padding-right: 35px;
        outline: none;
        border: 0;
        border: 1px solid var(--rentol-border-color, #D2D2D2);
        font-size: 16px;
        color: var(--rentol-text, #7E7E7E);
        font-weight: 500;
        line-height: 1;
        width: 100%;
        height: 100%;
        background-color: var(--rentol-white, #fff);
        transition: all 500ms ease;
        border-radius: 6px;
    }

        .product__search input[type=search]:focus,
        .product__search input[type=text]:focus {
            color: var(--rentol-black, #212121);
            border-color: var(--rentol-base, #F2AF1E);
        }

    .product__search button[type=submit] {
        padding: 0;
        border: none;
        outline: none;
        background-color: transparent;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: auto;
        font-size: 20px;
        color: var(--rentol-base, #F2AF1E);
        z-index: 11;
        transition: all 400ms ease;
    }

        .product__search button[type=submit] svg {
            width: 1em;
            height: 1em;
            fill: currentColor;
        }

        .product__search button[type=submit]:hover {
            color: var(--rentol-black, #212121);
        }

.product__price-ranger {
    padding-top: 31px;
    padding-bottom: 30px;
}

    .product__price-ranger .price-ranger {
        background-color: var(--rentol-white, #fff);
        border-radius: 6px;
        padding: 15px 21px 5px 9px;
        border: 1px solid var(--rentol-border-color, #D2D2D2);
    }

        .product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
            display: none;
        }

        .product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3) {
            position: relative;
            position: absolute;
        }

            .product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
                content: "";
                width: 8px;
                height: 8px;
                background-color: var(--rentol-white, #fff);
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    .product__price-ranger #slider-range {
        margin: 0;
        background-color: transparent;
        border: 1px solid var(--rentol-base, #F2AF1E);
        height: 7px;
        border-radius: 10px;
        position: relative;
    }

        .product__price-ranger #slider-range .ui-slider-range {
            height: 100%;
            background: var(--rentol-base, #F2AF1E);
        }

        .product__price-ranger #slider-range .ui-slider-handle {
            position: absolute;
            top: -6.5px;
            background: var(--rentol-base, #F2AF1E);
            border: 0;
            height: 18px;
            width: 18px !important;
            border-radius: 50%;
            margin-left: -2px;
            outline: medium none;
            cursor: pointer;
            z-index: 2;
        }

    .product__price-ranger .ranger-min-max-block {
        position: relative;
        display: block;
        margin-top: 6px;
    }

        .product__price-ranger .ranger-min-max-block input[type=text] {
            position: relative;
            display: inline-block;
            color: var(--rentol-text, #7E7E7E);
            font-size: 12px;
            font-weight: 500;
            width: 36px;
            line-height: 14px;
            border: none;
            outline: none;
            font-family: var(--rentol-font, "Manrope", sans-serif);
            padding: 0;
            text-align: center;
            background-color: transparent;
        }

        .product__price-ranger .ranger-min-max-block span {
            position: relative;
            display: inline-block;
            color: var(--rentol-black, #212121);
            font-size: 14px;
            font-weight: 500;
            line-height: 14px;
            left: -1px;
        }

.product__categories {
    padding-top: 31px;
}

.product__categories__title {
    margin-bottom: 13.5px;
}

.product__categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -17px;
}

    .product__categories ul li {
        position: relative;
        margin: 0 0 3.5px;
    }

        .product__categories ul li a {
            position: relative;
            padding: 13.5px 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1;
            font-size: 16px;
            text-transform: capitalize;
            color: var(--rentol-text, #7E7E7E);
            font-weight: 500;
            transition: all 500ms ease;
            z-index: 1;
        }

            .product__categories ul li a::after {
                position: absolute;
                content: "";
                width: 0;
                height: 100%;
                top: 0;
                right: 0;
                z-index: -1;
                background-color: var(--rentol-base, #F2AF1E);
                transition: all 500ms ease;
            }

            .product__categories ul li a .product-categories__icon {
                position: relative;
                top: 1px;
                display: inline-flex;
                font-size: 12px;
                color: var(--rentol-text, #7E7E7E);
                transition: all 500ms ease;
            }

                .product__categories ul li a .product-categories__icon svg {
                    width: 1em;
                    height: 1em;
                    fill: currentColor;
                }

            .product__categories ul li a:hover {
                padding-left: 15px;
                padding-right: 15px;
                color: var(--rentol-black, #212121);
            }

                .product__categories ul li a:hover::after {
                    left: 0;
                    width: 100%;
                }

                .product__categories ul li a:hover .product-categories__icon {
                    color: var(--rentol-black, #212121);
                }

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .product__info-top {
        display: block;
        margin-bottom: 40px;
    }
}

.product__showing-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--rentol-text, #7E7E7E);
    line-height: 1;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .product__showing-text {
        margin-bottom: 20px;
    }
}

.product__showing-sort {
    margin: 0;
}

    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        font-family: var(--rentol-font, "Manrope", sans-serif);
        position: relative;
        display: block;
        width: 100%;
        min-width: 181px !important;
        background-color: var(--rentol-gray, #EFEFEF);
    }

@media (max-width: 767px) {
    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        min-width: 141px !important;
    }
}

.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
    display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
    border: none;
}

.product__showing-sort .bootstrap-select > .dropdown-toggle {
    position: relative;
    height: 52px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    padding-left: 16px;
    padding-right: 38px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121) !important;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 52px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

    .product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
        text-align: left;
    }

@media (max-width: 767px) {
    .product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
        text-align: left;
    }
}

.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 17px;
    color: var(--rentol-text, #7E7E7E);
}

.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px 8px;
    font-family: var(--rentol-font, "Manrope", sans-serif);
    color: var(--rentol-black, #212121);
    background-color: var(--rentol-gray, #EFEFEF);
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
    background-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-black, #212121);
    border-color: var(--rentol-base, #F2AF1E);
}

.product__item {
    position: relative;
    background-color: var(--rentol-white, #fff);
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    transition: all 500ms ease;
}

    .product__item:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }

.product__item__image {
    position: relative;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    overflow: hidden;
    background-color: transparent;
}

    .product__item__image img {
        max-width: 100%;
        height: auto;
        transition: all 500ms ease;
        transform: scale(1);
    }

.product__item:hover .product__item__image img {
    transform: scale(1.05);
}

.product__item__content {
    position: relative;
    text-align: center;
    padding: 30px 30px 30px;
}

@media (max-width: 767px) {
    .product__item__content {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.product__item .rentol-ratings {
    justify-content: center;
    gap: 6.75px;
    margin-bottom: 16px;
}

.product__item .rentol-ratings__icon {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--rentol-base, #F2AF1E);
}

.product__item__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 11px;
    color: var(--rentol-black, #212121);
}

@media (max-width: 767px) {
    .product__item__title {
        font-size: 18px;
    }
}

.product__item__title:hover {
    color: var(--rentol-base, #F2AF1E);
}

.product__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .product__item__title a:hover {
        background-size: 100% 1px;
    }

.product__item__price {
    font-size: 17px;
    color: var(--rentol-text, #7E7E7E);
    text-align: center;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 18px;
}

.product__item .rentol-btn {
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    gap: 25px;
    border-radius: 0px;
}

.product__item .rentol-btn__icon {
    position: relative;
    top: -1px;
    font-size: 16px;
    margin-left: 21px;
}

    .product__item .rentol-btn__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

    .product__item .rentol-btn__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -12.5px;
        transform: translateY(-50%);
        background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.product__item .rentol-btn:hover .rentol-btn__icon::before {
    background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.5);
}

.product-page {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .product-page {
        padding-top: 91px;
    }
}

@media (max-width: 575px) {
    .product-page {
        padding-top: 71px;
    }
}

@media (max-width: 991px) {
    .product-page--left {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .product-page--left {
        padding-top: 100px;
    }
}

@media (max-width: 575px) {
    .product-page--left {
        padding-top: 80px;
    }
}

.product-page .post-pagination {
    justify-content: center;
}

@media (max-width: 991px) {
    .product-page .post-pagination {
        margin-top: 20px;
    }
}

.product-page .product__item__image img {
    width: auto !important;
    display: inline-block !important;
}

/***** Product Two******/
.product-item-two {
    position: relative;
    background-color: var(--rentol-white, #fff);
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    transition: all 500ms ease;
    border-radius: 20px;
    padding: 30px;
}

    .product-item-two:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        border-color: transparent;
    }

.product-item-two__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
    background-color: transparent;
    padding-bottom: 23px;
}

    .product-item-two__image img {
        width: auto !important;
        height: auto !important;
        transition: all 500ms ease;
        transform: scale(1);
    }

    .product-item-two__image::after {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.product-item-two__offer {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid var(--rentol-primary, #EB3E32);
    text-transform: capitalize;
    color: var(--rentol-primary, #EB3E32);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
}

.product-item-two__content {
    position: relative;
    text-align: center;
}

.product-item-two .rentol-ratings {
    justify-content: center;
    gap: 6.75px;
    margin-bottom: 16px;
    line-height: 0;
}

.product-item-two .rentol-ratings__icon {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--rentol-primary, #EB3E32);
}

.product-item-two__title {
    margin-bottom: 11px;
    color: var(--rentol-black, #212121);
    text-transform: capitalize;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 162%;
}

    .product-item-two__title:hover {
        color: var(--rentol-primary, #EB3E32);
    }

    .product-item-two__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .product-item-two__title a:hover {
            background-size: 100% 1px;
        }

.product-item-two__price {
    font-size: 18px;
    color: var(--rentol-text, #7E7E7E);
    text-align: center;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 18px;
}

.product-item-two .rentol-btn {
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    gap: 25px;
    border-radius: 100px;
    background-color: var(--rentol-primary, #EB3E32);
}

.product-item-two .rentol-btn__icon {
    position: relative;
    top: -1px;
    font-size: 16px;
    margin-left: 21px;
}

    .product-item-two .rentol-btn__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

    .product-item-two .rentol-btn__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -12.5px;
        transform: translateY(-50%);
        background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.product-item-two .rentol-btn:hover .rentol-btn__icon::before {
    background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.5);
}

.product-item-two:hover .product-item-two__image img {
    transform: scale(1.1);
}

.product-item-two:hover .product-item-two__image::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.popular-product {
    padding-top: 90px;
    padding-bottom: 60px;
}

.popular-product__title {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 83%;
    color: var(--rentol-black, #212121);
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

    .popular-product__title::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 0;
        background-color: var(--rentol-border-color, #D2D2D2);
        z-index: -2;
        transform: translateY(-50%);
    }

    .popular-product__title::before {
        content: "";
        width: 225px;
        height: 3px;
        background-color: var(--rentol-white, #fff);
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, -50%);
    }

.popular-product .tab-box-buttons {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.popular-product__carousel .owl-dots .owl-dot span,
.popular-product__carousel .owl-dots .owl-dot:hover span,
.popular-product__carousel .owl-dots .owl-dot.active span {
    background-color: var(--rentol-primary, #EB3E32) !important;
}

    .popular-product__carousel .owl-dots .owl-dot span::after {
        border-color: var(--rentol-primary, #EB3E32) !important;
    }

.popular-product .tab-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    background-color: var(--rentol-white, #fff);
    list-style: none;
    gap: 10px;
}

    .popular-product .tab-buttons li {
        cursor: pointer;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 125%;
        text-transform: capitalize;
        color: var(--rentol-black, #212121);
        border-radius: 100px;
        border: 1px solid var(--rentol-border-color, #D2D2D2);
        padding: 5px 10px;
        transition: all 0.4s ease-in-out;
    }

        .popular-product .tab-buttons li.active-btn, .popular-product .tab-buttons li:hover {
            background-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-white, #fff);
            border-color: transparent;
        }

.popular-product .tabs-content__item {
    max-width: 1770px;
    margin-left: auto;
    margin-right: auto;
}

/***** Product List Two******/
.product-list-two {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

    .product-list-two .rentol-ratings {
        font-size: 13px;
        color: var(--rentol-primary, #EB3E32);
        letter-spacing: 1px;
        line-height: 0;
        margin-bottom: 14px;
    }

.product-list-two__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 12px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

    .product-list-two__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .product-list-two__title a:hover {
            background-size: 100% 1px;
        }

.product-list-two__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.product-list-two__price {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: -3px;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
}

.product-list-two__image img {
    mix-blend-mode: multiply;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.product-list-two:hover .product-list-two__image img {
    transform: scale(1.1);
}

.deal-of-bike-one {
    padding: 0px 0px 60px;
    position: relative;
    z-index: 1;
}

/***** Product Three******/
.product-item-three {
    position: relative;
    z-index: 1;
    border: 1px solid #F0EAE5;
    transition: all 500ms ease;
}

.product-item-three__image {
    background-color: #F0EAE5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    position: relative;
}

    .product-item-three__image img {
        mix-blend-mode: multiply;
        max-width: 200px;
        height: 200px;
        transform: scale(1);
        transition: all 0.4s ease-in-out;
    }

    .product-item-three__image::after {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.product-item-three__content {
    text-align: center;
    padding: 30px 20px;
}

    .product-item-three__content .rentol-ratings {
        justify-content: center;
        gap: 6.75px;
        margin-bottom: 6px;
    }

    .product-item-three__content .rentol-ratings__icon {
        font-size: 14px;
        letter-spacing: 2px;
        color: var(--rentol-primary2, #E66431);
    }

.product-item-three__title {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 10px;
    color: #1F1C19;
}

    .product-item-three__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .product-item-three__title a:hover {
            background-size: 100% 1px;
        }

.product-item-three__price {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    text-transform: capitalize;
    color: #807A75;
    margin-bottom: 12px;
}

.product-item-three .rentol-btn {
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    gap: 25px;
    border-radius: 0px;
    background-color: var(--rentol-primary2, #E66431);
}

.product-item-three .rentol-btn__icon {
    position: relative;
    top: -1px;
    font-size: 16px;
    margin-left: 21px;
}

    .product-item-three .rentol-btn__icon svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

    .product-item-three .rentol-btn__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -12.5px;
        transform: translateY(-50%);
        background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.product-item-three .rentol-btn:hover .rentol-btn__icon::before {
    background-color: RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.5);
}

.product-item-three:hover .product-item-three__image img {
    transform: scale(1.1);
}

.product-item-three:hover .product-item-three__image::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.product-item-three:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.our-shop-two {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Award
--------------------------------------------------------------*/
.award-one {
    position: relative;
    background-color: var(--rentol-gray, #EFEFEF);
}

.award-one__bottom .sec-title {
    padding-top: 25px;
    padding-bottom: 0;
    margin-bottom: -4px;
}

    .award-one__bottom .sec-title .sec-title__tagline {
        font-weight: 800;
        margin-bottom: 10px;
        padding-bottom: 0;
        font-size: 24px;
    }

    .award-one__bottom .sec-title .sec-title__title {
        margin-top: -2px;
        font-weight: 800;
        font-size: 24px;
        line-height: normal;
    }

.award-one__bottom__custome-navs {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 10px;
}

    .award-one__bottom__custome-navs button {
        border: none;
        outline: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-base, #F2AF1E);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--rentol-white, #fff);
        transition: all 500ms ease;
    }

        .award-one__bottom__custome-navs button:hover {
            color: var(--rentol-text, #7E7E7E);
            background-color: transparent;
            border-color: var(--rentol-text, #7E7E7E);
        }

        .award-one__bottom__custome-navs button.owl-prev {
            background-color: transparent;
            border-color: var(--rentol-text, #7E7E7E);
            color: var(--rentol-text, #7E7E7E);
        }

            .award-one__bottom__custome-navs button.owl-prev i {
                display: inline-block;
                transform: rotate(180deg);
            }

            .award-one__bottom__custome-navs button.owl-prev:hover {
                color: var(--rentol-white, #fff);
                background-color: var(--rentol-base, #F2AF1E);
                border-color: var(--rentol-base, #F2AF1E);
            }

/*--------------------------------------------------------------
# Car Element
--------------------------------------------------------------*/
.car-element-card {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 30px;
}

    .car-element-card::after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background-repeat: no-repeat;
        background-size: cover;
        mix-blend-mode: multiply;
        position: absolute;
        top: 0;
        z-index: -1;
        left: 0;
        opacity: 0.1;
        background-image: url(../images/shapes/car-element-bg-1-1.png);
    }

.car-element-card__image {
    margin-bottom: 30px;
}

.car-element-card__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 83%;
    margin-bottom: 13px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    letter-spacing: -0.02em;
}

    .car-element-card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .car-element-card__title a:hover {
            background-size: 100% 1px;
        }

        .car-element-card__title a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.car-element-card__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 169%;
    margin-bottom: 19px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

.car-element-card__btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

    .car-element-card__btn a span {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 188%;
        color: var(--rentol-primary, #EB3E32);
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }

        .car-element-card__btn a span:last-child {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-white, #fff);
            font-size: 10px;
            color: var(--rentol-primary, #EB3E32);
        }

    .car-element-card__btn a:hover span {
        color: var(--rentol-black, #212121);
    }

        .car-element-card__btn a:hover span:last-child {
            background-color: var(--rentol-black, #212121);
            color: var(--rentol-white, #fff);
        }

.car-element-card:hover .car-element-card__image img {
    animation: wobble-horizontal-on-hover 1s linear;
}

.accent-bg-one {
    background-color: #FCEFE3;
}

.accent-bg-two {
    background-color: #E0F0FF;
}

.accent-bg-three {
    background-color: #FFEAEA;
}

.accent-bg-four {
    background-color: #DFFFF8;
}

.car-element-one {
    padding: 80px 0px 60px;
}

@media (min-width: 768px) {
    .car-element-one {
        padding: 90px 0px 60px;
    }
}

/******Element Car ******/
.element-slider {
    padding-top: 90px;
    padding-bottom: 90px;
}

.element-slider__thumb__item {
    position: relative;
    overflow: hidden;
}

    .element-slider__thumb__item img {
        object-fit: cover;
        width: 100%;
    }

.element-slider__inner {
    position: relative;
    z-index: 1;
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 30px 30px 125px;
}

.element-slider__inner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    opacity: 0.5;
    z-index: -1;
    mix-blend-mode: multiply;
}

.element-slider__carousel .slick-button {
    position: absolute;
    bottom: -15%;
}

.element-slider__carousel .slick-button--prev {
    left: 40%;
    transform: translateX(-40%);
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .element-slider__carousel .slick-button--prev {
        transform: translateX(0%);
        left: 38%;
    }
}

.element-slider__carousel .slick-button--next {
    left: 55%;
    transform: translateX(-55%);
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .element-slider__carousel .slick-button--next {
        transform: translateX(0%);
        left: 58%;
    }
}

.element-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.element-item__image {
    border-radius: 20px;
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: var(--rentol-white, #fff);
    text-align: center;
    position: relative;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .element-item__image img {
        object-fit: cover;
        width: 100%;
    }
}

.element-item__offer {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid var(--rentol-primary, #EB3E32);
    text-transform: capitalize;
    color: var(--rentol-primary, #EB3E32);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
}

.element-item__content .rentol-ratings {
    justify-content: center;
    gap: 6.75px;
    margin-bottom: 16px;
    line-height: 0;
}

.element-item__content .rentol-ratings__icon {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--rentol-primary, #EB3E32);
}

.element-item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    letter-spacing: -0.02em;
}

    .element-item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .element-item__title a:hover {
            background-size: 100% 1px;
        }

        .element-item__title a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

.element-item__price {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
}

/****** Explore Our Cars ******/
.explore-our-cars {
    position: relative;
    z-index: 1;
}

.explore-our-cars__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

    .explore-our-cars__bg::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(33, 33, 33, 0.8);
    }

.explore-our-cars__inner {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-base, #F2AF1E);
    padding: 35px 40px;
    border-radius: 0px 0px 20px 20px;
}

.explore-our-cars__inner__bg {
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.07;
    z-index: -1;
}

.explore-our-cars__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 30px;
}

@media (max-width: 1199px) {
    .explore-our-cars__list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .explore-our-cars__list {
        justify-content: center;
        align-items: start;
        text-align: center;
    }
}

.explore-our-cars__list__item {
    text-align: center;
}

.explore-our-cars__list__item__image {
    margin-bottom: 13px;
    transition: all 0.4s ease-in-out;
}

.explore-our-cars__list__item__title {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 13px;
    padding-bottom: 0;
}

.explore-our-cars__list__item__tag {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    padding: 2px 8px;
    border-radius: 100px;
    color: var(--rentol-black, #212121);
    background-color: var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

.explore-our-cars__list__item:hover .explore-our-cars__list__item__image img {
    animation: wobble-horizontal-on-hover 1s linear;
}

.explore-our-cars__list__item:hover .explore-our-cars__list__item__tag {
    background-color: var(--rentol-primary4, #BC1834);
    color: var(--rentol-white, #fff);
}

.explore-our-cars__bottom {
    position: relative;
    z-index: 1;
}

.explore-our-cars__bottom__inner {
    margin-left: -30px;
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .explore-our-cars__bottom__inner {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .explore-our-cars__bottom__custome-navs {
        display: none;
    }
}

.explore-our-cars__bottom__custome-navs button {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: var(--rentol-base, #F2AF1E);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--rentol-white, #fff);
    transition: all 500ms ease;
}

    .explore-our-cars__bottom__custome-navs button:hover {
        background-color: transparent;
        border-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
        color: var(--rentol-white, #fff);
    }

    .explore-our-cars__bottom__custome-navs button.owl-prev {
        position: absolute;
        left: 0;
        top: 40%;
        transform: translateY(-40%);
    }

    .explore-our-cars__bottom__custome-navs button.owl-next {
        position: absolute;
        right: 0;
        top: 40%;
        transform: translateY(-40%);
    }

    .explore-our-cars__bottom__custome-navs button.owl-prev {
        background-color: transparent;
        border-color: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
        color: var(--rentol-white, #fff);
    }

        .explore-our-cars__bottom__custome-navs button.owl-prev:hover {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-base, #F2AF1E);
            border-color: var(--rentol-base, #F2AF1E);
        }

.explore-our-cars__bottom__top {
    position: relative;
    z-index: 1;
}

    .explore-our-cars__bottom__top .sec-title .sec-title__title {
        color: var(--rentol-white, #fff);
    }

.explore-our-cars__item {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
}

.explore-our-cars__item__image {
    max-height: 264px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

    .explore-our-cars__item__image::after {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.explore-our-cars__item__title {
    font-style: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 7px;
}

    .explore-our-cars__item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .explore-our-cars__item__title a:hover {
            background-size: 100% 1px;
        }

        .explore-our-cars__item__title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.explore-our-cars__item__text {
    margin-top: -5px;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 20px;
}

.explore-our-cars__item__price {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    color: var(--rentol-black, #212121);
}

    .explore-our-cars__item__price span {
        font-size: 16px;
    }

.explore-our-cars__item__link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-black, #212121);
    font-size: 16px;
    color: var(--rentol-white, #fff);
    padding: 0;
    transition: all 0.4s ease-in-out;
}

    .explore-our-cars__item__link:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-base, #F2AF1E);
        transform: rotate(45deg);
    }

.explore-our-cars__item:hover .explore-our-cars__item__image img {
    transform: scale(1.1);
}

.explore-our-cars__item:hover .explore-our-cars__item__image::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.explore-our-cars__content {
    padding: 30px;
}

    .explore-our-cars__content .rentol-ratings {
        margin-top: -7px;
        margin-bottom: 7px;
    }

        .explore-our-cars__content .rentol-ratings .rentol-ratings__icon {
            font-size: 13px;
            color: var(--rentol-base, #F2AF1E);
            line-height: 1;
            letter-spacing: 1px;
        }

.explore-our-cars__content__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.explore-our-cars__element {
    position: absolute;
    left: 0%;
    top: 7%;
}

    .explore-our-cars__element img {
        animation: textRotate 7s ease-in-out infinite;
    }

@media (max-width: 1400px) {
    .explore-our-cars__element {
        display: none;
    }
}

/******Renting Fleet ******/
.renting-fleet {
    position: relative;
    z-index: 1;
}

@media (min-width: 1600px) {
    .renting-fleet .container-fluid {
        max-width: 1592px;
        margin-left: auto;
        margin-right: -30px;
    }
}

.renting-fleet .sec-title {
    padding-bottom: 22px;
}

.renting-fleet__filter-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

    .renting-fleet__filter-list::after {
        width: 100%;
        height: 1px;
        background-color: var(--rentol-border-color, #D2D2D2);
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: -1;
    }

    .renting-fleet__filter-list::before {
        width: 280px;
        height: 2px;
        background-color: var(--rentol-white, #fff);
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

@media (max-width: 1199px) {
    .renting-fleet__filter-list {
        margin-bottom: 40px;
    }
}

.renting-fleet__filter-list .item {
    cursor: pointer;
    background-color: #F0EAE5;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 107%;
    text-transform: capitalize;
    color: #1F1C19;
    border-radius: 100px;
    padding: 8px 10px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

    .renting-fleet__filter-list .item:hover, .renting-fleet__filter-list .item.active {
        background-color: var(--rentol-primary2, #E66431);
        color: var(--rentol-white, #fff);
    }

.renting-fleet .renting-fleet__top {
    position: relative;
    z-index: 1;
}

.renting-fleet .renting-fleet__custome-dots .owl-next,
.renting-fleet .renting-fleet__custome-dots .owl-prev {
    position: absolute;
    bottom: -12px;
    left: -80px;
}

.renting-fleet .renting-fleet__custome-dots .owl-next {
    left: auto;
    right: -80px;
    color: var(--rentol-white, #fff);
    background-color: var(--rentol-primary2, #E66431);
    border-color: var(--rentol-primary2, #E66431) !important;
}

.renting-fleet .renting-fleet__custome-dots button {
    border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.2) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--rentol-text, #7E7E7E);
    transition: all 500ms ease;
}

    .renting-fleet .renting-fleet__custome-dots button:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-primary2, #E66431);
        border-color: var(--rentol-primary2, #E66431) !important;
    }

.renting-fleet__item {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #F0EAE5;
    padding: 40px 0 0;
    transition: all 0.4s ease-in-out;
}

.renting-fleet__item__image {
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .renting-fleet__item__image img {
        object-fit: cover;
        width: auto !important;
        transition: all 0.4s ease-in-out;
    }

    .renting-fleet__item__image::after {
        background: rgba(var(--rentol-white-rgb, 255, 255, 255), 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        right: 51%;
        top: 0;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.renting-fleet__item__price {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: var(--rentol-primary2, #E66431);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 110%;
    color: var(--rentol-white, #fff);
    text-transform: capitalize;
    flex-direction: column;
    margin: 0 auto 15px;
    transition: all 0.4s ease-in-out;
}

    .renting-fleet__item__price span {
        display: block;
        font-weight: 700;
        font-size: 15px;
    }

.renting-fleet__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 3px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    text-align: center;
}

    .renting-fleet__item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .renting-fleet__item__title a:hover {
            background-size: 100% 1px;
        }

.renting-fleet__item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 22px;
    padding-bottom: 0;
    display: block;
}

.renting-fleet__item .rentol-ratings {
    position: relative;
    margin-bottom: 7px;
}

    .renting-fleet__item .rentol-ratings .rentol-ratings__icon {
        font-size: 13px;
        color: var(--rentol-base, #F2AF1E);
        letter-spacing: 1px;
        line-height: 1;
    }

.renting-fleet__item__btn {
    width: 100%;
    border-radius: 0px;
    background-color: var(--rentol-black, #212121);
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-white, #fff);
    padding: 17.5px;
}

    .renting-fleet__item__btn::after {
        background: var(--rentol-primary, #EB3E32);
    }

    .renting-fleet__item__btn:hover {
        color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

.renting-fleet__item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/shape-1-4.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: -1;
}

.renting-fleet__item:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

    .renting-fleet__item:hover .renting-fleet__item__image img {
        transform: scale(1.1);
    }

    .renting-fleet__item:hover .renting-fleet__item__image::after {
        left: 0;
        right: 0;
        opacity: 0;
        transition: all 400ms linear;
    }

    .renting-fleet__item:hover .renting-fleet__item__price {
        background-color: var(--rentol-primary, #EB3E32);
    }

.new-shep {
    position: relative;
    z-index: 1;
}

.new-shep__item {
    position: relative;
    z-index: 1;
}

.new-shep__item__list__item__inner {
    position: relative;
    z-index: 1;
}

    .new-shep__item__list__item__inner button {
        outline: none;
        border-radius: 50%;
        border: none;
        background-color: transparent;
        width: 42px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--rentol-primary4, #BC1834);
        font-size: 15px;
        background-color: rgba(var(--rentol-primary4-rgb, 188, 24, 52), 0.1);
        position: relative;
        z-index: 1;
    }

        .new-shep__item__list__item__inner button::after, .new-shep__item__list__item__inner button::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 58px;
            height: 58px;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background-color: rgba(var(--rentol-primary4-rgb, 188, 24, 52), 0.05);
            z-index: -1;
            border-radius: 50%;
            transition: transform 500ms ease;
            animation: videoZoom 3s linear infinite;
            animation-delay: 0.6s;
        }

    .new-shep__item__list__item__inner:hover .new-shep__item__list__item__text {
        visibility: visible;
        opacity: 1;
        transform: translate(-41%, 0px);
    }

.new-shep__item__list__item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    background-color: var(--rentol-primary4, #BC1834);
    position: absolute;
    width: 245px;
    top: -60px;
    padding: 10px 15px;
    text-shadow: 0 0 0.1px currentColor;
    transition: all 0.5s ease-in-out;
    transform: translate(-41%, -50px);
    visibility: hidden;
    opacity: 0;
}

    .new-shep__item__list__item__text::after {
        content: "";
        width: 15px;
        height: 13px;
        position: absolute;
        bottom: -12px;
        left: 50%;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        transform: translateX(-50%);
        background-color: var(--rentol-primary4, #BC1834);
    }

.new-shep__item__list__item:nth-child(1) {
    position: absolute;
    top: 50px;
    left: 12%;
}

.new-shep__item__list__item:nth-child(2) {
    position: absolute;
    top: 130px;
    left: 40%;
}

.new-shep__item__list__item:nth-child(3) {
    position: absolute;
    top: 140px;
    right: 140px;
}

.new-shep__item__list__item:nth-child(4) {
    position: absolute;
    bottom: 158px;
    right: 30%;
}

.new-shep__item__list__item:nth-child(5) {
    position: absolute;
    bottom: 115px;
    left: 30%;
}

.new-shep__carousel .owl-nav {
    display: flex;
    justify-content: center;
}

    .new-shep__carousel .owl-nav .owl-prev,
    .new-shep__carousel .owl-nav .owl-next {
        cursor: pointer !important;
        border: 1px solid transparent !important;
        outline: none;
        width: 45px;
        height: 45px;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: var(--rentol-primary4, #BC1834) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border-radius: 50%;
        color: var(--rentol-white, #fff) !important;
        transition: all 500ms ease;
    }

        .new-shep__carousel .owl-nav .owl-prev:hover,
        .new-shep__carousel .owl-nav .owl-next:hover {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-black, #212121);
        }

        .new-shep__carousel .owl-nav .owl-prev.owl-prev,
        .new-shep__carousel .owl-nav .owl-next.owl-prev {
            background-color: transparent !important;
            border-color: var(--rentol-primary4, #BC1834) !important;
            color: var(--rentol-primary4, #BC1834) !important;
        }

            .new-shep__carousel .owl-nav .owl-prev.owl-prev i,
            .new-shep__carousel .owl-nav .owl-next.owl-prev i {
                display: inline-block;
                transform: rotate(180deg);
            }

            .new-shep__carousel .owl-nav .owl-prev.owl-prev:hover,
            .new-shep__carousel .owl-nav .owl-next.owl-prev:hover {
                color: var(--rentol-white, #fff) !important;
                background-color: var(--rentol-primary4, #BC1834) !important;
            }

    .new-shep__carousel .owl-nav .owl-prev {
        position: absolute;
        left: -50px;
        top: 50%;
        transform: translateY(-50%);
    }

    .new-shep__carousel .owl-nav .owl-next {
        position: absolute;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
    }

/*--------------------------------------------------------------
# Deal 
--------------------------------------------------------------*/
/*******deal-of-bike-one********/
.deal-of-bike-one {
    position: relative;
    z-index: 1;
}

    .deal-of-bike-one .sec-title {
        text-align: center;
        position: relative;
        padding-bottom: 35px;
    }

        .deal-of-bike-one .sec-title .sec-title__title {
            font-style: normal;
            font-weight: 700;
            font-size: 24px;
            line-height: normal;
            margin-bottom: 0;
            padding-bottom: 0;
            color: var(--rentol-black, #212121);
            position: relative;
            z-index: 1;
        }

            .deal-of-bike-one .sec-title .sec-title__title::after {
                content: "";
                width: 100%;
                height: 1px;
                position: absolute;
                top: 50%;
                left: 0;
                background-color: var(--rentol-border-color, #D2D2D2);
                z-index: -2;
                transform: translateY(-50%);
            }

            .deal-of-bike-one .sec-title .sec-title__title::before {
                content: "";
                width: 225px;
                height: 3px;
                background-color: var(--rentol-white, #fff);
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: -1;
                transform: translate(-50%, -50%);
            }

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.we-offer {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
}

.we-offer__content .sec-title {
    padding-bottom: 22px;
}

.we-offer__text {
    margin-bottom: 32px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    line-height: 187%;
}

.we-offer__list {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 25px 0px;
    margin-bottom: 35px;
}

    .we-offer__list li {
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 125%;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.1px currentColor;
    }

        .we-offer__list li i {
            font-size: 20px;
            color: var(--rentol-base, #F2AF1E);
            margin-right: 20px;
        }

.we-offer__thumb img, .we-offer__content__thumb img {
    object-fit: cover;
    width: 100%;
}

.offer-carousel__item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

    .offer-carousel__item img {
        object-fit: cover;
        width: 100%;
    }

.offer-carousel__item-video {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}

    .offer-carousel__item-video a {
        font-size: 33px;
        width: 115px;
        height: 115px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--rentol-white, #fff);
    }

        .offer-carousel__item-video a .ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
            animation: ripple 3s infinite;
            border-radius: 50%;
        }

            .offer-carousel__item-video a .ripple::before, .offer-carousel__item-video a .ripple::after {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                transform: translate(-50%, -50%);
                box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
                animation: ripple 3s infinite;
                border-radius: 50%;
            }

            .offer-carousel__item-video a .ripple::before {
                animation-delay: 0.9s;
                content: "";
                position: absolute;
            }

            .offer-carousel__item-video a .ripple::after {
                animation-delay: 0.6s;
                content: "";
                position: absolute;
            }

        .offer-carousel__item-video a:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

.luxury-car-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
}

@media (min-width: 1200px) {
    .luxury-car-one--two {
        padding-top: 185px;
        padding-bottom: 145px;
    }
}

@media (max-width: 991px) {
    .luxury-car-one--two {
        padding-top: 165px;
        padding-bottom: 125px;
    }
}

@media (max-width: 767px) {
    .luxury-car-one--two {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}

.luxury-car-one__content .sec-title {
    padding-bottom: 12px;
}

.luxury-car-one__text {
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    font-weight: 600;
    line-height: 188%;
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 30px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.luxury-car-one__feature__list {
    display: flex;
    align-items: start;
    gap: 35px;
}

.luxury-car-one__feature__list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--rentol-base-rgb, 242, 175, 30), 0.1);
    color: var(--rentol-base, #F2AF1E);
    font-size: 30px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

    .luxury-car-one__feature__list__icon::after {
        content: "";
        position: absolute;
        top: 0%;
        height: 0;
        width: 0;
        left: 50%;
        background-color: var(--rentol-base, #F2AF1E);
        border-radius: 50%;
        transition: all 0.4s ease;
        z-index: -1;
    }

.luxury-car-one__feature__list__title {
    font-style: normal;
    margin-bottom: 13px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 80%;
}

.luxury-car-one__feature__list__text {
    max-width: 420px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.luxury-car-one__feature__list:hover .luxury-car-one__feature__list__icon {
    color: var(--rentol-white, #fff);
}

    .luxury-car-one__feature__list:hover .luxury-car-one__feature__list__icon::after {
        top: 0%;
        height: 100%;
        width: 100%;
        left: 0%;
    }

.luxury-car-one__feature__list + .luxury-car-one__feature__list {
    margin-top: 30px;
}

.luxury-car-one__carousel {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    width: 100%;
    height: 431px;
    padding: 0px 30px;
    background-color: rgba(var(--rentol-base-rgb, 242, 175, 30), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-car-one__carousel__bg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: -1;
}

.luxury-car-one__carousel::after {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: -2;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: transparent;
    border: 2px dashed rgba(var(--rentol-base-rgb, 242, 175, 30), 1);
    animation: movebounce3 3s linear infinite;
}

.luxury-car-one__carousel::before {
    position: absolute;
    z-index: -2;
    content: "";
    width: 100%;
    height: 100%;
    left: 30px;
    bottom: 20px;
    background: rgba(242, 175, 30, 0.1);
    border-radius: 40px;
    transform: rotate(15deg);
}

.luxury-car-one__carousel__inner {
    margin-left: 20px;
    margin-right: 20px;
}

.luxury-car-one__carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

    .luxury-car-one__carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        display: block;
        border-radius: 50%;
        background-color: var(--rentol-black, #212121);
        border: none;
        position: relative;
        margin: 0;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .luxury-car-one__carousel .owl-dots .owl-dot:hover span, .luxury-car-one__carousel .owl-dots .owl-dot.active span {
        background-color: var(--rentol-white, #fff);
    }

.luxury-car-one__element {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
}

    .luxury-car-one__element img {
        animation: movebounce3 3s ease-in-out infinite;
    }

.luxury-car-one__element-two {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: 0;
}

    .luxury-car-one__element-two img {
        animation: scaleTwo 3s ease-in-out infinite;
    }

/****** Finest Offers******/
.finest-offers-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black3, #040C2C);
}

.finest-offers-one__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.15;
}

.finest-offers-one .sec-title-three {
    padding-bottom: 0;
}

.finest-offers-one__top {
    padding-bottom: 37px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

    .finest-offers-one__top::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        background-color: rgba(207, 210, 223, 0.2);
    }

@media (min-width: 1200px) {
    .finest-offers-one__top::after {
        width: 1170px;
    }
}

.finest-offers-one__animation {
    position: relative;
}

.finest-offers-one__animation__inner {
    gap: 10px;
    display: flex;
    align-items: center;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

    .finest-offers-one__animation__inner:hover {
        animation-play-state: paused;
    }

.finest-offers-one__animation__item {
    font-style: normal;
    font-weight: 500;
    font-size: 100px;
    line-height: 120px;
    color: var(--rentol-white, #fff);
}

.finest-offers-one__card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(207, 210, 223, 0.2);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

    .finest-offers-one__card::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/shapes/boat-shape.png);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
        background-position: center center;
        transition: all 0.4s ease-in-out;
        transform: translateY(-101%);
    }

    .finest-offers-one__card:hover {
        border-color: transparent;
    }

        .finest-offers-one__card:hover::after {
            transform: translateY(0%);
        }

        .finest-offers-one__card:hover .finest-offers-one__title {
            color: var(--rentol-black3, #040C2C);
        }

        .finest-offers-one__card:hover .finest-offers-one__text {
            color: #6E717D;
        }

        .finest-offers-one__card:hover .finest-offers-one__link::after, .finest-offers-one__card:hover .finest-offers-one__link::before {
            background-color: var(--rentol-primary4, #BC1834);
        }

        .finest-offers-one__card:hover .finest-offers-one__tags {
            background-color: var(--rentol-primary4, #BC1834);
            color: var(--rentol-white, #fff);
        }

.finest-offers-one__thumb {
    text-align: center;
    margin-bottom: 40px;
    max-height: 150px;
    margin-left: auto;
    margin-right: auto;
}

    .finest-offers-one__thumb img {
        object-fit: cover;
        width: auto !important;
    }

.finest-offers-one__tags {
    background-color: var(--rentol-white, #fff);
    position: absolute;
    top: 30px;
    left: 30px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-primary4, #BC1834);
    text-transform: capitalize;
    padding: 2px 10px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.finest-offers-one__middle {
    text-align: center;
    margin-bottom: 25px;
}

.finest-offers-one__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 67%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

    .finest-offers-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .finest-offers-one__title a:hover {
            background-size: 100% 1px;
        }

.finest-offers-one__dec {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
}

.finest-offers-one__link {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

    .finest-offers-one__link a {
        width: 48px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--rentol-primary4, #BC1834);
        color: var(--rentol-white, #fff);
        margin-left: auto;
        margin-right: auto;
    }

    .finest-offers-one__link::after {
        content: "";
        width: 120px;
        height: 1px;
        position: absolute;
        top: 50%;
        left: -10px;
        transform: translateY(-50%);
        background-color: rgba(207, 210, 223, 0.2);
        z-index: -1;
        transition: all 0.3s ease-in-out;
    }

    .finest-offers-one__link::before {
        content: "";
        width: 120px;
        height: 1px;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        background-color: rgba(207, 210, 223, 0.2);
        z-index: -1;
        transition: all 0.3s ease-in-out;
    }

.finest-offers-one__text {
    color: var(--rentol-white, #fff);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
    position: relative;
}

.product-details__img {
    background-color: var(--rentol-gray, #EFEFEF);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 570px;
}

@media (max-width: 767px) {
    .product-details__img {
        min-height: 420px;
    }
}

.product-details__img img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.product-details__img-search {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
    line-height: 1;
}

    .product-details__img-search a {
        display: inline-block;
        font-size: 21px;
        color: var(--rentol-black, #212121);
        transition: all 500ms ease;
    }

        .product-details__img-search a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.product-details__content {
    position: relative;
    margin: 0 0 0;
}

@media (max-width: 991px) {
    .product-details__content {
        margin: 50px 0 0;
    }
}

.product-details__top {
    display: flex;
    align-items: baseline;
    gap: 145px;
    font-family: var(--rentol-heading-font, "Manrope", sans-serif);
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .product-details__top {
        flex-direction: column;
        gap: 8px;
    }
}

.product-details__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    color: var(--rentol-black, #212121);
}

.product-details__price {
    font-size: 24px;
    color: var(--rentol-base, #F2AF1E);
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 9px;
    font-size: 16px;
    color: var(--rentol-base, #F2AF1E);
}

    .product-details__review a {
        display: inline-block;
        color: var(--rentol-text, #7E7E7E);
        font-size: 16px;
        text-transform: capitalize;
        letter-spacing: 0;
        margin-left: 1px;
        font-weight: 400;
        transition: all 500ms ease;
    }

        .product-details__review a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.product-details__divider {
    width: 100%;
    height: 1px;
    background-color: var(--rentol-border-color, #D2D2D2);
    margin: 25px 0 21px;
}

.product-details__excerpt {
    margin: 0;
    line-height: 30px;
    margin: 0 0 31px;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin: 32px 0 40px;
}

.product-details__quantity-title {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    margin-right: 20px;
    font-weight: bold;
    color: var(--rentol-black, #212121);
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    height: 53px;
}

    .product-details__quantity .quantity-box input {
        width: 98px;
        height: 53px;
        border: 1px solid var(--rentol-border-color, #D2D2D2);
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        color: var(--rentol-base, #F2AF1E);
        padding-left: 30px;
        outline: none;
        font-size: 16px;
        font-weight: 700;
        background-color: transparent;
    }

    .product-details__quantity .quantity-box button {
        width: 24px;
        height: 26px;
        color: var(--rentol-text, #7E7E7E);
        font-size: 10px;
        position: absolute;
        top: 1px;
        right: 1px;
        background-color: transparent;
        border: none;
        border-left: 1px solid var(--rentol-border-color, #D2D2D2);
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
        transition: all 500ms ease;
    }

        .product-details__quantity .quantity-box button.sub {
            bottom: 1px;
            top: auto;
            border-top: 1px solid var(--rentol-border-color, #D2D2D2);
        }

        .product-details__quantity .quantity-box button:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .product-details__buttons .rentol-btn {
        border-radius: 0;
        padding: 15.4px 32px;
        font-size: 15px;
        font-weight: 700;
    }

        .product-details__buttons .rentol-btn i {
            font-size: 15px;
            margin: 0 0 0 12px;
            padding-left: 9px;
            border-left: 1px solid rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
            transform: none !important;
        }

        .product-details__buttons .rentol-btn.wishlist {
            background-color: var(--rentol-black, #212121);
        }

            .product-details__buttons .rentol-btn.wishlist::after, .product-details__buttons .rentol-btn.wishlist:hover {
                background-color: var(--rentol-base, #F2AF1E);
            }

.product-details__socials {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.product-details__socials__title {
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 500;
    margin-right: 10px;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .product-details__socials__title {
        flex: 0 0 auto;
    }
}

.product-details__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    font-size: 14px;
    color: var(--rentol-text, #7E7E7E);
    transition: all 500ms ease;
    border-radius: 0;
}

    .product-details__socials a:hover {
        margin-top: -5px;
        background-color: var(--rentol-base, #F2AF1E);
        border-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

.product-details__description {
    position: relative;
    margin: 54px 0 0;
}

.product-details__description__title {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 14px;
    font-weight: bold;
    color: var(--rentol-black, #212121);
}

.product-details__description__text {
    margin-bottom: 30px;
    line-height: 30px;
}

.product-details__comment {
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    margin: 32px 0 0;
    padding: 54px 0 0;
    position: relative;
}

.product-details__review-title {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 44px;
    font-weight: bold;
}

.product-details__comment-box {
    position: relative;
    padding: 11px 0 22px 122px;
    margin-bottom: 30px;
    min-height: 166px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

@media (max-width: 767px) {
    .product-details__comment-box {
        padding-left: 0;
    }
}

.product-details__comment-box__thumb {
    width: 96px;
    height: 96px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    margin: 0;
    border: none;
}

@media (max-width: 767px) {
    .product-details__comment-box__thumb {
        position: relative;
        margin: 0 0 20px;
    }
}

.product-details__comment-box__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-details__comment-box__meta {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin: 0 0 15px;
    font-weight: bold;
    color: var(--rentol-black, #212121);
}

.product-details__comment-box__date {
    font-size: 16px;
    line-height: 26px;
    display: block;
    text-transform: inherit;
    color: var(--rentol-text, #7E7E7E);
    font-weight: 500;
    letter-spacing: 0;
    margin: 3px 0 0 0;
    text-transform: capitalize;
}

.product-details__comment-box__text {
    line-height: 30px;
    margin: 0;
}

.product-details__comment-box__ratings {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    letter-spacing: 9px;
    font-size: 16px;
    color: var(--rentol-base, #F2AF1E);
}

@media (max-width: 767px) {
    .product-details__comment-box__ratings {
        position: relative;
        top: 0;
        margin: 0 0 22px;
    }
}

.product-details__form {
    position: relative;
    margin: 55px 0 0;
}

    .product-details__form .row {
        --bs-gutter-x: 20px;
    }

.product-details__form-title {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--rentol-black, #212121);
}

.product-details__form-text {
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    color: var(--rentol-text, #7E7E7E);
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 9px;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    margin: 21px 0 30px;
}

.product-details__form-ratings__label {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    margin: 0 17px 0 0;
}

.product-details__form__form {
    margin-top: 0;
}

    .product-details__form__form .form-one__control input[type=text],
    .product-details__form__form .form-one__control input[type=email] {
        display: block;
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        background-color: transparent;
        border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
        color: var(--rentol-text, #7E7E7E);
        font-size: 16px;
        font-weight: 400;
        padding-left: 0px;
        padding-right: 30px;
    }

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
    position: relative;
}

    .cart-page .table-responsive {
        position: relative;
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

@media (max-width: 1199px) {
    .cart-page .table-responsive {
        margin-bottom: 30px;
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 31px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 1170px;
    }
}

.cart-page__table thead tr th {
    color: var(--rentol-black, #212121);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0 0 24px;
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2) !important;
    box-shadow: none;
}

    .cart-page__table thead tr th:last-child {
        text-align: right;
    }

.cart-page__table tbody tr td {
    font-size: 16px;
    font-weight: 500;
    color: var(--rentol-text, #7E7E7E);
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding: 30px 0;
    letter-spacing: 0;
}

    .cart-page__table tbody tr td:last-child {
        text-align: right;
    }

.cart-page__table__meta {
    display: flex;
    align-items: center;
}

.cart-page__table__meta-img {
    width: 70px;
    height: 70px;
    background-color: var(--rentol-gray, #EFEFEF);
    padding: 5px;
    margin-right: 21px;
    border-radius: 6px;
}

    .cart-page__table__meta-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
    }

.cart-page__table__meta-title {
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 700;
    color: var(--rentol-black, #212121);
}

    .cart-page__table__meta-title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .cart-page__table__meta-title a:hover {
            background-size: 100% 1px;
        }

        .cart-page__table__meta-title a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.cart-page__table__remove {
    display: block;
    color: var(--rentol-text, #7E7E7E);
    font-size: 16px;
    padding-right: 20px;
}

    .cart-page__table__remove:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.cart-page .product-details__quantity {
    margin: 0;
}

.cart-page__coupone-form {
    position: relative;
    width: 100%;
}

.cart-page__coupone-form__inner {
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .cart-page__coupone-form__inner {
        display: block;
    }
}

.cart-page__coupone-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    margin: 0 0 8px;
}

.cart-page__coupone-form input[type=text] {
    height: 60px;
    width: 268px;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    background-color: transparent;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    display: block;
    font-weight: 400;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .cart-page__coupone-form input[type=text] {
        width: 100%;
        margin: 0 0 10px;
    }
}

.cart-page__coupone-form .rentol-btn {
    font-weight: 700;
    padding: 17px 26px;
}

    .cart-page__coupone-form .rentol-btn.update {
        padding: 16px 32px;
        margin-left: auto;
        background-color: transparent;
        border: 1px solid var(--rentol-base, #F2AF1E);
        color: var(--rentol-base, #F2AF1E);
    }

        .cart-page__coupone-form .rentol-btn.update:hover {
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
        }

        .cart-page__coupone-form .rentol-btn.update:after {
            background-color: var(--rentol-base, #F2AF1E);
        }

.cart-page__cart-total {
    position: relative;
    margin: 60px 0 0 auto;
    max-width: 315px;
}

.cart-page__cart-total__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin: 0 0 33px;
    padding: 0 0 20px;
}

.cart-page__cart-total__list {
    position: relative;
    margin: 0 0 24px;
    padding: 0;
}

    .cart-page__cart-total__list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        color: var(--rentol-black, #212121);
        text-transform: capitalize;
        font-weight: 700;
        margin: 0 0 12px;
    }

        .cart-page__cart-total__list li.shipping {
            display: block;
            font-size: 16px;
        }

            .cart-page__cart-total__list li.shipping p {
                line-height: 26px;
                font-weight: 400;
                color: var(--rentol-text, #7E7E7E);
                font-size: 16px;
                margin: 8px 0 0;
            }

        .cart-page__cart-total__list li:last-child {
            padding-top: 17px;
            margin-top: 18px;
            border-top: 1px solid var(--rentol-border-color, #D2D2D2);
        }

.cart-page__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .cart-page__buttons .rentol-btn {
        font-size: 15px;
        font-weight: 700;
        padding: 15px 37px;
    }

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
    position: relative;
    background-color: var(--rentol-white, #fff);
}

    .checkout-page .bs-gutter-x-20 {
        --bs-gutter-x: 20px;
    }

.checkout-page__billing-address {
    position: relative;
}

.checkout-page__billing-address__title {
    text-transform: capitalize;
    margin: 0 0 34px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--rentol-black, #212121);
}

@media (max-width: 767px) {
    .checkout-page__billing-address__title {
        font-size: 20px;
    }
}

.checkout-page__shipping-address {
    position: relative;
}

@media (max-width: 991px) {
    .checkout-page__shipping-address {
        margin: 50px 0 0;
    }
}

.checkout-page__shipping-address .checkout-page__form {
    margin-top: 50px;
}

.checkout-page__shipping-address__title {
    text-transform: capitalize;
    margin: 0 0 18px;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}

@media (max-width: 767px) {
    .checkout-page__shipping-address__title {
        font-size: 20px;
    }
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 20px;
}

    .checkout-page__input-box label {
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-transform: capitalize;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.2px currentColor;
        margin-bottom: 13px;
    }

    .checkout-page__input-box input[type=text],
    .checkout-page__input-box input[type=email],
    .checkout-page__input-box input[type=tel] {
        border-radius: 6px;
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--rentol-gray, #EFEFEF);
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 14px;
        color: var(--rentol-text, #7E7E7E);
        font-family: var(--rentol-font, "Manrope", sans-serif);
        display: block;
        font-weight: 500;
    }

    .checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        position: relative;
        display: block;
        width: 100% !important;
        font-family: var(--rentol-font, "Manrope", sans-serif);
    }

    .checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
        display: none;
    }

    .checkout-page__input-box .bootstrap-select > .dropdown-toggle {
        position: relative;
        height: 60px;
        outline: none !important;
        border-radius: 6px;
        border: 0;
        background-color: var(--rentol-gray, #EFEFEF) !important;
        margin: 0;
        padding: 0;
        padding-left: 20px;
        padding-right: 20px;
        color: var(--rentol-text, #7E7E7E) !important;
        font-size: 14px;
        line-height: 58px;
        font-weight: 500;
        box-shadow: none !important;
        background-repeat: no-repeat;
        text-transform: capitalize;
        background-size: 14px 12px;
        background-position: right 25.75px center;
    }

        .checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 20px;
            font-family: "icomoon" !important;
            content: "\e905";
            font-weight: 700;
            font-size: 17px;
            color: var(--rentol-text, #7E7E7E);
        }

    .checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
        border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    }

    .checkout-page__input-box .bootstrap-select .dropdown-menu {
        border: none;
    }

        .checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
            font-size: 14px;
            font-weight: 500;
            padding: 15px 30px;
            color: var(--rentol-text, #7E7E7E);
            background-color: var(--rentol-gray, #EFEFEF);
            -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

        .checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
        .checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
            background: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            border-color: var(--rentol-base, #F2AF1E);
        }

    .checkout-page__input-box textarea {
        color: var(--rentol-text, #7E7E7E);
        height: 177px;
        width: 100%;
        background-color: var(--rentol-gray, #EFEFEF);
        font-family: var(--rentol-font, "Manrope", sans-serif);
        padding: 20px 30px 30px;
        border: none;
        border-radius: 6px;
        outline: none;
        margin-bottom: 0px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 162%;
        text-transform: capitalize;
    }

.checkout-page__your-order {
    position: relative;
    margin: 32px 0 0;
}

.checkout-page__your-order__title {
    text-transform: capitalize;
    margin-bottom: 27px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--rentol-black, #212121);
}

.checkout-page__order-table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 0;
}

    .checkout-page__order-table thead tr th {
        font-size: 20px;
        color: var(--rentol-black, #212121);
        text-transform: capitalize;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        font-family: var(--rentol-heading-font, "Manrope", sans-serif);
        margin: 0;
        padding: 28px 0;
        text-shadow: 0 0 0.1px currentColor;
        border: none;
        border-top: 1px solid var(--rentol-border-color, #D2D2D2);
        border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    }

        .checkout-page__order-table thead tr th:last-child {
            text-align: right;
        }

    .checkout-page__order-table tbody tr td {
        color: var(--rentol-text, #7E7E7E);
        margin: 0;
        padding: 0 0 30px;
        border: none;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-transform: capitalize;
    }

        .checkout-page__order-table tbody tr td:last-child {
            text-align: right;
        }

    .checkout-page__order-table tbody tr:last-child {
        border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    }

        .checkout-page__order-table tbody tr:last-child td {
            padding-top: 20px;
            color: var(--rentol-black, #212121);
            text-shadow: 0 0 0.1px currentColor;
        }

    .checkout-page__order-table tbody tr:first-child td {
        padding-top: 25px;
    }

    .checkout-page__order-table tbody tr:last-child td {
        padding-bottom: 26px;
    }

.checkout-page__payment {
    background-color: var(--rentol-gray, #EFEFEF);
    padding: 30px;
    border-radius: 6px;
    min-height: 295px;
}

.checkout-page__payment__item {
    position: relative;
}

.checkout-page__payment__title {
    display: flex;
    text-transform: capitalize;
    margin: 0;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    color: var(--rentol-black, #212121);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}

    .checkout-page__payment__title::before {
        content: "\f111";
        width: 20px;
        height: 20px;
        background-color: transparent;
        border-radius: 50%;
        margin-right: 10px;
        border: 1px solid var(--rentol-text, #7E7E7E);
        border-radius: 50%;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 8px;
        display: flex;
        justify-content: center;
        color: var(--rentol-text, #7E7E7E);
        align-items: center;
        margin-right: 14px;
        position: relative;
        top: 1px;
        transition: all 500ms ease;
    }

.checkout-page__payment__item--active .checkout-page__payment__title::before {
    background-color: transparent;
    border-color: var(--rentol-base, #F2AF1E);
    content: "\f111";
    color: var(--rentol-base, #F2AF1E);
}

.checkout-page__payment__content {
    margin-left: 35px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 30px;
}

.checkout-page__payment .rentol-btn {
    margin-top: 40px;
    padding: 17px 28px;
    border-radius: 6px;
    color: var(--rentol-white, #fff);
}

    .checkout-page__payment .rentol-btn::before {
        border-radius: 6px;
    }

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
    padding: 120px 0px;
    position: relative;
}

.login-page__left {
    position: relative;
    z-index: 1;
}

.login-page__thumb {
    position: relative;
    z-index: 1;
    margin-right: 100px;
}

    .login-page__thumb img {
        width: 100%;
        object-fit: cover;
        z-index: 1;
        position: relative;
    }

.login-page__thumb-two {
    position: absolute;
    right: 0;
    bottom: 70px;
    z-index: 1;
}

    .login-page__thumb-two img {
        border: 10px solid var(--rentol-white, #fff);
        border-radius: 20px;
    }

.login-page__login-box {
    position: relative;
    background: var(--rentol-gray, #EFEFEF);
    padding: 55px 105px;
    border-radius: 30px;
}

.login-page__content {
    max-width: 557px;
    margin-left: auto;
    margin-right: auto;
}

.login-page__logo {
    display: flex;
    width: 100%;
    margin-bottom: 32px;
}

.login-page__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 10px;
    padding-bottom: 0;
    text-transform: capitalize;
    text-shadow: 0 0 0.1px currentColor;
}

.login-page__input-box {
    position: relative;
}

.login-page__input-box--bottom {
    padding-top: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-page__input-box__inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .login-page__input-box__inner .remember-policy {
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 167%;
        letter-spacing: 0.3px;
        color: var(--rentol-text, #7E7E7E);
    }

    .login-page__input-box__inner label {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
    }

.login-page__input-box__toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 20px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: var(--rentol-border-color, #D2D2D2);
    transition: background-color ease 0.3s;
}

    .login-page__input-box__toggle::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        width: 16px;
        height: 16px;
        background: var(--rentol-text, #7E7E7E);
        left: 2px;
        top: 2px;
        border-radius: 50%;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
    }

    .login-page__input-box__toggle:checked {
        background-color: var(--rentol-base, #F2AF1E);
    }

        .login-page__input-box__toggle:checked::before {
            background: var(--rentol-white, #fff);
        }

        .login-page__input-box__toggle:checked::before {
            left: 22px;
        }

.login-page__input-box label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 86%;
    letter-spacing: 0.3px;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
    text-transform: capitalize;
}

.login-page__input-box input[type=text],
.login-page__input-box input[type=password] {
    margin-top: -3px;
    height: 48px;
    width: 100%;
    background-color: var(--rentol-white, #fff);
    padding-left: 15px;
    padding-right: 30px;
    outline: none;
    font-size: 15px;
    color: var(--rentol-text, #7E7E7E);
    font-family: var(--rentol-font, "Manrope", sans-serif);
    display: block;
    font-weight: 500;
    border-radius: 6px;
    border: none;
}

    .login-page__input-box input[type=text]::placeholder,
    .login-page__input-box input[type=password]::placeholder {
        color: var(--rentol-text, #7E7E7E);
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 133%;
        text-transform: none;
    }

.login-page__input-box span {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(50%);
    z-index: 1;
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    transition: all 400ms ease;
}

    .login-page__input-box span:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.login-page__input-box__btn button {
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.login-page__input-box__btn .rentol-btn {
    border-radius: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-self: center;
    gap: 10px;
    justify-content: center;
    text-transform: capitalize;
}

    .login-page__input-box__btn .rentol-btn::before {
        border-radius: 6px;
    }

.login-page__input-box__btn .rentol-btn--base {
    border-radius: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .login-page__input-box__btn .rentol-btn--base::before {
        border-radius: 6px;
    }

.login-page__input-box__btn:last-child button {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--rentol-black, #212121);
}

    .login-page__input-box__btn:last-child button::after {
        background-color: var(--rentol-base, #F2AF1E);
    }

    .login-page__input-box__btn:last-child button:hover {
        background-color: var(--rentol-base, #F2AF1E);
    }

.login-page__input-box__btn + .login-page__input-box__btn {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
}

.login-page .login-page__input-box + .login-page__input-box {
    margin-top: 5px;
}

.login-page__form__forgot {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    text-align: right;
    color: var(--rentol-text, #7E7E7E);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
}

    .login-page__form__forgot:hover {
        color: var(--rentol-base, #F2AF1E);
    }

.login-page__form__text {
    margin-top: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    letter-spacing: 0.3px;
    color: #1A1A1A;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0;
}

    .login-page__form__text a {
        color: var(--rentol-base, #F2AF1E);
        margin-left: 5px;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .login-page__form__text a:hover {
            background-size: 100% 1px;
        }

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

.gutter-x-60 {
    --bs-gutter-x: 60px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-white, #fff);
}

.error-404__image {
    text-align: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

    .error-404__image img {
        animation: movebounce2 2.7s ease-in-out infinite;
    }

@media (max-width: 991px) {
    .error-404__image img {
        object-fit: cover;
        width: 100%;
    }
}

.error-404__content {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.error-404__title {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    text-transform: capitalize;
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 13px;
    padding-bottom: 0;
}

.error-404__text {
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    text-transform: capitalize;
    margin-bottom: 33px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
/***FAQ Search***/
.faq-page-search {
    background-color: var(--rentol-white, #fff);
    position: relative;
}

.faq-page-search__inner {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.faq-page-search__top .sec-title {
    padding-bottom: 30px;
}

.faq-page-search__form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    border-radius: 10px;
}

    .faq-page-search__form input[type=text] {
        border: none;
        outline: none;
        display: block;
        background-color: var(--rentol-white, #fff);
        color: var(--rentol-text, #7E7E7E);
        font-size: 16px;
        width: 100%;
        padding-left: 30px;
        height: 55px;
        border-radius: 10px;
    }

        .faq-page-search__form input[type=text]::placeholder {
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: var(--rentol-text, #7E7E7E);
        }

.faq-page-search__form__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    color: var(--rentol-base, #F2AF1E);
}

@media (min-width: 768px) {
    .faq-page-search__form__btn {
        font-size: 20px;
    }
}

.faq-page-search__form__btn:hover {
    color: var(--rentol-black, #212121);
}

/***FAQ Page One***/
.faq-page {
    padding: 120px 0px;
    background-color: var(--rentol-gray, #EFEFEF);
}

@media (max-width: 991px) {
    .faq-page {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .faq-page {
        padding: 80px 0px;
    }
}

.faq-page__thumb {
    margin-right: 30px;
    margin-bottom: 30px;
}

    .faq-page__thumb img {
        border-radius: 100px;
        object-fit: cover;
        width: 100%;
    }

@media (max-width: 1199px) {
    .faq-page__thumb {
        margin-right: 0;
    }
}

.faq-page__list {
    display: flex;
    align-items: start;
    gap: 20px;
}

.faq-page__list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    background: var(--rentol-white, #fff);
    color: var(--rentol-base, #F2AF1E);
    font-size: 35px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

    .faq-page__list__icon::after {
        content: "";
        position: absolute;
        top: 0%;
        height: 0;
        width: 0;
        left: 50%;
        background-color: var(--rentol-base, #F2AF1E);
        border-radius: 50%;
        transition: all 0.4s ease;
        z-index: -1;
    }

.faq-page__list__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 13px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
}

.faq-page__list__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: var(--rentol-text, #7E7E7E);
    max-width: 410px;
    width: 100%;
}

.faq-page__list:hover .faq-page__list__icon {
    color: var(--rentol-white, #fff);
}

    .faq-page__list:hover .faq-page__list__icon::after {
        top: 0%;
        height: 100%;
        width: 100%;
        left: 0%;
    }

.faq-page__list + .faq-page__list {
    margin-top: 30px;
}

.faq-page__accordion .accrodion {
    background: var(--rentol-white, #fff);
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

    .faq-page__accordion .accrodion + .accrodion {
        margin-top: 20px;
    }

    .faq-page__accordion .accrodion.active {
        border-radius: 20px;
    }

.faq-page__accordion .accrodion-title {
    padding: 25px 20px 25px 13px;
    padding-left: 75px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .faq-page__accordion .accrodion-title {
        padding-left: 75px;
    }
}

.faq-page__accordion .accrodion-title .accrodion-title__text {
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    margin: 0;
    transition: all 500ms ease;
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    position: relative;
}

.faq-page__accordion .accrodion-title__icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    background: var(--rentol-black, #212121);
    left: -60px;
    transform: translateY(-50%);
    z-index: 1;
}

    .faq-page__accordion .accrodion-title__icon::after, .faq-page__accordion .accrodion-title__icon::before {
        width: 2px;
        height: 16px;
        position: absolute;
        background-color: var(--rentol-white, #fff);
        top: 50%;
        left: 50%;
        content: "";
        transform: translate(-50%, -50%);
        transition: all 500ms ease;
    }

    .faq-page__accordion .accrodion-title__icon::after {
        width: 16px;
        height: 2px;
    }

.faq-page__accordion .active .accrodion-title h4 {
    color: var(--rentol-base, #F2AF1E);
}

    .faq-page__accordion .active .accrodion-title h4::after {
        width: 109%;
    }

.faq-page__accordion .active .accrodion-title__icon {
    background: var(--rentol-base, #F2AF1E);
}

    .faq-page__accordion .active .accrodion-title__icon::after, .faq-page__accordion .active .accrodion-title__icon::before {
        background-color: var(--rentol-white, #fff);
        opacity: 0;
    }

    .faq-page__accordion .active .accrodion-title__icon::after {
        opacity: 1;
    }

.faq-page__accordion .accrodion-content .inner {
    padding: 7px 30px 24px 20px;
}

.faq-page__accordion .accrodion-content p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: -3px;
    text-transform: capitalize;
}

/***FAQ Page Two***/
.faq-two {
    position: relative;
    z-index: 1;
}

.faq-two__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

    .faq-two__bg::after {
        content: "";
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--rentol-black4, #10181A);
        opacity: 0.8;
    }

.faq-two .sec-title {
    padding-bottom: 40px;
}

    .faq-two .sec-title .sec-title__title {
        padding-bottom: 0;
        color: var(--rentol-white, #fff);
    }

        .faq-two .sec-title .sec-title__title::after {
            display: none;
        }

.faq-two__funfact {
    display: flex;
    align-items: start;
    gap: 30px;
}

.faq-two__funfact__item {
    max-width: 170px;
    min-height: 137px;
    padding: 35px 15px;
    width: 100%;
    border: 1px solid rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
}

.faq-two__funfact__item__title {
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 67%;
    color: var(--rentol-primary3, #CEAC69);
    display: flex;
    align-self: center;
    justify-content: center;
    margin-bottom: 12px;
}

.faq-two__funfact__item__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -5px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    text-align: center;
    padding-bottom: 0;
}

.faq-two .faq-page__accordion {
    counter-reset: mainSliderTwoCount;
}

    .faq-two .faq-page__accordion .accrodion {
        border-radius: 0px;
        border: 1px solid transparent;
    }

    .faq-two .faq-page__accordion .accrodion-title {
        padding: 20px;
    }

@media (min-width: 768px) {
    .faq-two .faq-page__accordion .accrodion-title {
        padding-left: 20px;
    }
}

.faq-two .faq-page__accordion .accrodion-title__text {
    counter-increment: mainSliderTwoCount;
}

    .faq-two .faq-page__accordion .accrodion-title__text::before {
        margin-right: 17px;
        content: counters(mainSliderTwoCount, ".", decimal-leading-zero);
        color: var(--rentol-base, #F2AF1E);
    }

.faq-two .faq-page__accordion .accrodion-title__icon {
    background-color: transparent;
    right: 0;
    left: auto;
}

    .faq-two .faq-page__accordion .accrodion-title__icon::before, .faq-two .faq-page__accordion .accrodion-title__icon::after {
        background-color: var(--rentol-black, #212121);
    }

.faq-two .faq-page__accordion .accrodion-content .inner {
    padding: 0px 25px 35px 58px;
}

.faq-two .faq-page__accordion .active {
    background-color: transparent;
    border-color: var(--rentol-white, #fff);
}

    .faq-two .faq-page__accordion .active .accrodion-title__text::before {
        color: var(--rentol-white, #fff);
    }

    .faq-two .faq-page__accordion .active .accrodion-title__icon::before, .faq-two .faq-page__accordion .active .accrodion-title__icon::after {
        background-color: var(--rentol-white, #fff);
    }

    .faq-two .faq-page__accordion .active .accrodion-content p,
    .faq-two .faq-page__accordion .active .accrodion-title__text {
        color: var(--rentol-white, #fff);
    }

/***FAQ Section Three***/
.faq-three {
    position: relative;
    z-index: 1;
}

.faq-three__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

    .faq-three__bg::after {
        content: "";
        width: 100%;
        height: 100%;
        background: #040C2C;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
    }

.faq-three .sec-title-three {
    padding-bottom: 38px;
}

    .faq-three .sec-title-three .sec-title-three__tagline {
        color: var(--rentol-white, #fff);
    }

    .faq-three .sec-title-three .sec-title-three__title {
        color: var(--rentol-white, #fff);
    }

.faq-three .faq-page__accordion {
    counter-reset: mainSliderTwoCount;
}

    .faq-three .faq-page__accordion .accrodion {
        border-radius: 0px;
        border: 1px solid transparent;
    }

    .faq-three .faq-page__accordion .accrodion-title {
        padding: 20px;
    }

@media (min-width: 768px) {
    .faq-three .faq-page__accordion .accrodion-title {
        padding-left: 20px;
    }
}

.faq-three .faq-page__accordion .accrodion-title__text {
    counter-increment: mainSliderTwoCount;
    color: var(--rentol-black3, #040C2C);
}

    .faq-three .faq-page__accordion .accrodion-title__text::before {
        margin-right: 17px;
        content: counters(mainSliderTwoCount, ".", decimal-leading-zero);
        color: var(--rentol-primary, #EB3E32);
    }

.faq-three .faq-page__accordion .accrodion-title__icon {
    background-color: transparent;
    right: 0;
    left: auto;
}

    .faq-three .faq-page__accordion .accrodion-title__icon::before, .faq-three .faq-page__accordion .accrodion-title__icon::after {
        background-color: var(--rentol-black, #212121);
    }

.faq-three .faq-page__accordion .accrodion-content .inner {
    padding: 0px 25px 35px 58px;
}

.faq-three .faq-page__accordion .active {
    background-color: transparent;
    border-color: var(--rentol-white, #fff);
}

    .faq-three .faq-page__accordion .active .accrodion-title__text::before {
        color: var(--rentol-white, #fff);
    }

    .faq-three .faq-page__accordion .active .accrodion-title__icon::before, .faq-three .faq-page__accordion .active .accrodion-title__icon::after {
        background-color: var(--rentol-white, #fff);
    }

    .faq-three .faq-page__accordion .active .accrodion-content p,
    .faq-three .faq-page__accordion .active .accrodion-title__text {
        color: var(--rentol-white, #fff);
    }

.faq-three__list {
    margin-bottom: 0;
}

    .faq-three__list li {
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        text-transform: capitalize;
        color: var(--rentol-white, #fff);
        padding-left: 20px;
        position: relative;
    }

        .faq-three__list li::after {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50px;
            background-color: var(--rentol-white, #fff);
            position: absolute;
            top: 50%;
            transition: all 0.4s ease-in-out;
            left: 0;
            transform: translateY(-50%) scale(1);
        }

        .faq-three__list li:hover::after {
            transform: translateY(-50%) scale(1.2);
        }

        .faq-three__list li + li {
            margin-top: 22px;
        }

            .faq-three__list li + li::before {
                content: "";
                width: 1px;
                height: 30px;
                position: absolute;
                bottom: 12px;
                left: 4px;
                background-color: var(--rentol-white, #fff);
            }

/***asked-question***/
.asked-question {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-gray, #EFEFEF);
}

.asked-question--two {
    background-color: var(--rentol-white, #fff);
}

    .asked-question--two .faq-page__accordion .accrodion {
        background-color: var(--rentol-gray, #EFEFEF);
    }

.asked-question__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
}

.asked-question__carousel {
    position: relative;
}

@media (max-width: 1920px) and (min-width: 1600px) {
    .asked-question__carousel {
        margin: 0;
        position: absolute;
        top: 120px;
        left: 160px;
        width: calc(42% - 30px);
    }
}

@media (max-width: 1599px) and (min-width: 991px) {
    .asked-question__carousel {
        margin: 0;
        position: absolute;
        top: 120px;
        left: 0px;
        width: calc(50% - 15px);
    }
}

.asked-question .sec-title {
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .asked-question .sec-title {
        margin-top: 40px;
    }
}

.asked-question .faq-page__accordion {
    counter-reset: mainSliderTwoCount;
}

    .asked-question .faq-page__accordion .accrodion {
        border-radius: 0px;
    }

    .asked-question .faq-page__accordion .accrodion-title {
        padding: 20px;
    }

@media (min-width: 768px) {
    .asked-question .faq-page__accordion .accrodion-title {
        padding-left: 20px;
    }
}

.asked-question .faq-page__accordion .accrodion-title__text {
    counter-increment: mainSliderTwoCount;
}

    .asked-question .faq-page__accordion .accrodion-title__text::before {
        margin-right: 17px;
        content: counters(mainSliderTwoCount, ".", decimal-leading-zero);
        color: var(--rentol-base, #F2AF1E);
    }

.asked-question .faq-page__accordion .accrodion-title__icon {
    background-color: transparent;
    right: 0;
    left: auto;
}

    .asked-question .faq-page__accordion .accrodion-title__icon::before, .asked-question .faq-page__accordion .accrodion-title__icon::after {
        background-color: var(--rentol-black, #212121);
    }

.asked-question .faq-page__accordion .accrodion-content .inner {
    padding: 0px 25px 35px 58px;
}

.asked-question .faq-page__accordion .active .accrodion-title__text::before {
    color: var(--rentol-black, #212121);
}

.asked-question .faq-page__accordion .active .accrodion-title__icon::before, .asked-question .faq-page__accordion .active .accrodion-title__icon::after {
    background-color: var(--rentol-base, #F2AF1E);
}

.asked-question__element {
    position: absolute;
    right: 5%;
    animation: rotated 6s linear infinite;
    bottom: 30%;
}

@media (max-width: 1399px) {
    .asked-question__element {
        display: none;
    }
}

.asked-question::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 412px;
    height: 412px;
    left: 0px;
    top: 30%;
    background: rgba(242, 175, 30, 0.5);
    filter: blur(200px);
    z-index: -1;
}

.asked-question--three {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-gray, #EFEFEF);
}

    .asked-question--three .asked-question__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        mix-blend-mode: multiply;
        opacity: 0.2;
    }

    .asked-question--three::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        width: 412px;
        height: 412px;
        left: -10%;
        top: 20%;
        background: rgba(242, 175, 30, 0.5);
        filter: blur(200px);
    }

.asked-question--padding-bottom {
    padding-bottom: 290px;
}

@media (max-width: 991px) {
    .asked-question--padding-bottom {
        padding-bottom: 270px;
    }
}

@media (max-width: 767px) {
    .asked-question--padding-bottom {
        padding-bottom: 250px;
    }
}

.faq-four .sec-title {
    padding-bottom: 40px;
}

.faq-four__thumb {
    position: relative;
    z-index: 1;
}

.faq-four__thumb__item {
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 278.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,278.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1350 2774 c-614 -77 -1089 -443 -1270 -980 -56 -165 -75 -288 -74 -489 0 -201 18 -309 75 -472 130 -367 416 -665 749 -778 304 -103 689 -55 1075 135 449 221 824 571 991 924 140 296 136 592 -12 889 -198 396 -580 660 -1089 753 -78 15 -376 26 -445 18z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 278.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,278.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1350 2774 c-614 -77 -1089 -443 -1270 -980 -56 -165 -75 -288 -74 -489 0 -201 18 -309 75 -472 130 -367 416 -665 749 -778 304 -103 689 -55 1075 135 449 221 824 571 991 924 140 296 136 592 -12 889 -198 396 -580 660 -1089 753 -78 15 -376 26 -445 18z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    position: relative;
    width: 100%;
    height: 100%;
}

.faq-four__thumb__cerle {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -2;
    animation: rotated 7s ease-in-out infinite;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .faq-four__thumb__cerle {
        display: none;
    }
}

.faq-four__thumb__item-small {
    position: relative;
    z-index: 1;
}

.faq-four__thumb__item-small {
    padding: 10px;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 278.000000 260.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1205 2589 c-516 -70 -946 -404 -1118 -869 -220 -593 -2 -1276 501 -1572 153 -90 276 -126 462 -135 296 -13 642 100 966 316 602 402 864 920 707 1400 -136 417 -523 736 -1020 841 -114 24 -385 35 -498 19z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 278.000000 260.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1205 2589 c-516 -70 -946 -404 -1118 -869 -220 -593 -2 -1276 501 -1572 153 -90 276 -126 462 -135 296 -13 642 100 966 316 602 402 864 920 707 1400 -136 417 -523 736 -1020 841 -114 24 -385 35 -498 19z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    position: relative;
    background-color: var(--rentol-white, #fff);
    position: absolute;
    right: 10px;
    bottom: -30px;
}

    .faq-four__thumb__item-small img {
        object-fit: cover;
        width: 100%;
        -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 278.000000 260.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1205 2589 c-516 -70 -946 -404 -1118 -869 -220 -593 -2 -1276 501 -1572 153 -90 276 -126 462 -135 296 -13 642 100 966 316 602 402 864 920 707 1400 -136 417 -523 736 -1020 841 -114 24 -385 35 -498 19z"/> </g> </svg>');
        mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 278.000000 260.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1205 2589 c-516 -70 -946 -404 -1118 -869 -220 -593 -2 -1276 501 -1572 153 -90 276 -126 462 -135 296 -13 642 100 966 316 602 402 864 920 707 1400 -136 417 -523 736 -1020 841 -114 24 -385 35 -498 19z"/> </g> </svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: top center;
        mask-position: top center;
        -webkit-mask-size: auto;
        mask-size: auto;
        position: relative;
        width: 100%;
        height: auto;
    }

.faq-four .faq-page__accordion {
    counter-reset: mainSliderTwoCount;
}

    .faq-four .faq-page__accordion .accrodion {
        border-radius: 10px;
        background-color: #F0EAE5;
    }

    .faq-four .faq-page__accordion .accrodion-title {
        padding: 20px;
    }

@media (min-width: 768px) {
    .faq-four .faq-page__accordion .accrodion-title {
        padding-left: 20px;
    }
}

.faq-four .faq-page__accordion .accrodion-title__text {
    counter-increment: mainSliderTwoCount;
}

    .faq-four .faq-page__accordion .accrodion-title__text::before {
        margin-right: 17px;
        content: counters(mainSliderTwoCount, ".", decimal-leading-zero);
        color: var(--rentol-primary2, #E66431);
    }

.faq-four .faq-page__accordion .accrodion-title__icon {
    background-color: transparent;
    right: 0;
    left: auto;
}

    .faq-four .faq-page__accordion .accrodion-title__icon::before, .faq-four .faq-page__accordion .accrodion-title__icon::after {
        background-color: var(--rentol-black, #212121);
    }

.faq-four .faq-page__accordion .accrodion-content .inner {
    padding: 0px 25px 35px 58px;
}

.faq-four .faq-page__accordion .active .accrodion-title__text::before {
    color: var(--rentol-black, #212121);
}

.faq-four .faq-page__accordion .active .accrodion-title__icon::before, .faq-four .faq-page__accordion .active .accrodion-title__icon::after {
    background-color: var(--rentol-primary2, #E66431);
}

.faq-four .faq-page__accordion .active .accrodion-title h4 {
    color: var(--rentol-primary2, #E66431);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
/*****Package Card****/
.package-card {
    position: relative;
    z-index: 1;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    padding: 40px;
}

.package-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

    .package-card__bg::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(var(--rentol-black-rgb, 33, 33, 33), 0.8);
    }

.package-card__price {
    margin-top: -14px;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    color: var(--rentol-black, #212121);
    margin-bottom: 27px;
    transition: all 0.4s ease-in-out;
}

    .package-card__price span {
        display: block;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
        transition: all 0.4s ease-in-out;
    }

.package-card__pin {
    position: absolute;
    right: -1px;
    top: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--rentol-white, #fff);
    padding: 11.5px 20px;
    background-color: var(--rentol-base, #F2AF1E);
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    transition: all 0.4s ease-in-out;
}

.package-card__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--rentol-text, #7E7E7E);
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    padding-bottom: 21px;
    margin-bottom: 25px;
    transition: all 0.4s ease-in-out;
}

.package-card__list li {
    font-family: var(--rentol-font, "Manrope", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    transition: all 0.4s ease-in-out;
}

    .package-card__list li i {
        font-size: 16px;
        color: var(--rentol-base, #F2AF1E);
        margin-right: 8px;
        transition: all 0.4s ease-in-out;
    }

    .package-card__list li + li {
        margin-top: 10px;
    }

.package-card__bottom__text {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: 25px;
    transition: all 0.4s ease-in-out;
}

.package-card .rentol-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--rentol-base, #F2AF1E);
    padding: 14px 21px;
}

    .package-card .rentol-btn i {
        font-size: 18px;
        line-height: 18px;
        margin-left: 10px;
    }

    .package-card .rentol-btn::after {
        background-color: var(--rentol-base, #F2AF1E);
    }

    .package-card .rentol-btn:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-base, #F2AF1E);
        border-color: var(--rentol-base, #F2AF1E);
    }

.package-card:hover .package-card__bg {
    visibility: visible;
    opacity: 1;
}

.package-card:hover .package-card__price,
.package-card:hover .package-card__price span,
.package-card:hover .package-card__pin,
.package-card:hover .package-card__text,
.package-card:hover .package-card__list li,
.package-card:hover .package-card__list li i,
.package-card:hover .package-card__bottom__text {
    color: var(--rentol-white, #fff);
}

.package-card--two .package-card__bg::after {
    background-color: rgba(var(--rentol-black3-rgb, 4, 12, 44), 0.8);
}

.package-card--two .package-card__price {
    color: var(--rentol-black3, #040C2C);
}

.package-card--two .package-card__pin {
    background-color: var(--rentol-primary4, #BC1834);
}

.package-card--two .package-card__list li i,
.package-card--two .rentol-btn {
    color: var(--rentol-primary4, #BC1834);
}

.package-card--two .rentol-btn {
    border-radius: 0;
}

    .package-card--two .rentol-btn::after {
        background-color: var(--rentol-primary4, #BC1834);
    }

    .package-card--two .rentol-btn:hover {
        background-color: var(--rentol-primary4, #BC1834);
        border-color: var(--rentol-primary4, #BC1834);
    }

.pricing-page__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

@media (min-width: 992px) {
    .pricing-page__top {
        padding-bottom: 40px;
    }
}

.pricing-page__top .sec-title {
    padding-bottom: 0;
}

.pricing-page__main-tab-box {
    position: relative;
    display: block;
}

    .pricing-page__main-tab-box .tab-box-buttons {
        display: table;
    }

    .pricing-page__main-tab-box .tab-buttons {
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        z-index: 1;
    }

        .pricing-page__main-tab-box .tab-buttons .tab-btn {
            cursor: pointer;
            position: relative;
            font-family: var(--rentol-heading-font, "Manrope", sans-serif);
            font-size: 16px;
            color: var(--rentol-text, #7E7E7E);
            font-weight: 500;
            line-height: 1;
            text-transform: capitalize;
            transition: all 500ms ease;
        }

            .pricing-page__main-tab-box .tab-buttons .tab-btn:hover {
                color: var(--rentol-base, #F2AF1E);
            }

            .pricing-page__main-tab-box .tab-buttons .tab-btn .tab-btn__switch {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .pricing-page__main-tab-box .tab-buttons .tab-btn .tab-btn__switch__box {
                display: inline-block;
                width: 30px;
                height: 16px;
                flex-shrink: 0;
                background-color: var(--rentol-black, #212121);
                border-radius: 30px;
                position: relative;
                cursor: pointer;
            }

                .pricing-page__main-tab-box .tab-buttons .tab-btn .tab-btn__switch__box::after {
                    content: "";
                    position: absolute;
                    width: 12px;
                    height: 12px;
                    background-color: var(--rentol-white, #fff);
                    border-radius: 50%;
                    top: 50%;
                    left: 2px;
                    transform: translateY(-50%);
                    transition: all 400ms ease;
                }

            .pricing-page__main-tab-box .tab-buttons .tab-btn.active-btn {
                color: var(--rentol-base, #F2AF1E);
            }

                .pricing-page__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__switch .tab-btn__switch__box {
                    background-color: var(--rentol-base, #F2AF1E);
                    transition: all 400ms ease;
                }

                    .pricing-page__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__switch .tab-btn__switch__box::after {
                        background-color: var(--rentol-white, #fff);
                        transform: translate(14px, -50%);
                        transition: all 400ms ease;
                    }

    .pricing-page__main-tab-box .tabs-content {
        margin-top: 20px;
        position: relative;
        display: block;
    }

        .pricing-page__main-tab-box .tabs-content .tab {
            position: relative;
            display: none;
            -webkit-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            transition: all 600ms ease;
            z-index: 10;
        }

            .pricing-page__main-tab-box .tabs-content .tab.active-tab {
                display: block;
                /*! margin-top: 0px; */
            }

/***** Pricing three*****/
.pricing-three {
    position: relative;
    overflow: hidden;
}

.pricing-three__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

@media (min-width: 992px) {
    .pricing-three__top {
        padding-bottom: 40px;
    }
}

.pricing-three__top .sec-title-three {
    padding-bottom: 0;
}

    .pricing-three__top .sec-title-three .sec-title-three__title {
        margin-bottom: -10px;
    }

.pricing-three__main-tab-box {
    position: relative;
    display: block;
}

    .pricing-three__main-tab-box .tab-box-buttons {
        display: table;
    }

    .pricing-three__main-tab-box .tab-buttons {
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        z-index: 1;
    }

        .pricing-three__main-tab-box .tab-buttons .tab-btn {
            cursor: pointer;
            position: relative;
            font-family: var(--rentol-heading-font, "Manrope", sans-serif);
            font-size: 16px;
            color: var(--rentol-text, #7E7E7E);
            font-weight: 500;
            line-height: 1;
            text-transform: capitalize;
            transition: all 500ms ease;
        }

            .pricing-three__main-tab-box .tab-buttons .tab-btn:hover {
                color: var(--rentol-primary4, #BC1834);
            }

            .pricing-three__main-tab-box .tab-buttons .tab-btn .tab-btn__switch {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .pricing-three__main-tab-box .tab-buttons .tab-btn .tab-btn__switch__box {
                display: inline-block;
                width: 30px;
                height: 16px;
                flex-shrink: 0;
                background-color: var(--rentol-black3, #040C2C);
                border-radius: 30px;
                position: relative;
                cursor: pointer;
            }

                .pricing-three__main-tab-box .tab-buttons .tab-btn .tab-btn__switch__box::after {
                    content: "";
                    position: absolute;
                    width: 12px;
                    height: 12px;
                    background-color: var(--rentol-white, #fff);
                    border-radius: 50%;
                    top: 50%;
                    left: 2px;
                    transform: translateY(-50%);
                    transition: all 400ms ease;
                }

            .pricing-three__main-tab-box .tab-buttons .tab-btn.active-btn {
                color: var(--rentol-primary4, #BC1834);
            }

                .pricing-three__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__switch .tab-btn__switch__box {
                    background-color: var(--rentol-primary4, #BC1834);
                    transition: all 400ms ease;
                }

                    .pricing-three__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__switch .tab-btn__switch__box::after {
                        background-color: var(--rentol-white, #fff);
                        transform: translate(14px, -50%);
                        transition: all 400ms ease;
                    }

    .pricing-three__main-tab-box .tabs-content {
        margin-top: 20px;
        position: relative;
        display: block;
    }

        .pricing-three__main-tab-box .tabs-content .tab {
            position: relative;
            display: none;
            -webkit-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            transition: all 600ms ease;
            z-index: 10;
        }

            .pricing-three__main-tab-box .tabs-content .tab.active-tab {
                display: block;
                /*! margin-top: 0px; */
            }

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes treeMove {
    0%, 100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%, 75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes messageMove {
    0%, 100% {
        transform: translateX(0);
    }

    25%, 75% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes videoZoom {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: 1;
        border-width: 2px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes movebounce2 {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-15px);
    }

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

@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shapeMove {
    0%, 100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
}

@keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes zumpXtwo {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(5px);
    }
}

@keyframes zumpXThree {
    0% {
        transform: translateX(0px);
    }

    60% {
        transform: translateX(5px);
    }

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

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--rentol-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--rentol-white-rgb, 255, 255, 255), 0);
    }
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

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

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

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

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

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

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

@keyframes textScrolling {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0%, 0, 0);
    }
}

@keyframes scaleTwo {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }

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

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

    .mobile-nav__wrapper .home-showcase .row [class*=col-] {
        flex: 0 0 100%;
    }

    .mobile-nav__wrapper .home-showcase {
        margin-bottom: -1px;
        margin-top: 0;
        border-bottom: 1px solid RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.1);
    }

    .mobile-nav__wrapper .home-showcase__inner {
        padding: 15px 0px;
        background-color: transparent;
        box-shadow: none;
    }

    .mobile-nav__wrapper .home-showcase__title {
        color: var(--rentol-white, #fff);
    }

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

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

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--rentol-black, #212121);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--rentol-black2, #000000);
    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;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

    .mobile-nav__content .main-menu__nav {
        display: block;
        padding: 0;
    }

    .mobile-nav__content .logo-box {
        margin-bottom: 40px;
        display: flex;
    }

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--rentol-white, #fff);
    cursor: pointer;
}

    .mobile-nav__close:hover {
        color: var(--rentol-base, #F2AF1E);
    }

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

    .mobile-nav__content .main-menu__list ul {
        display: none;
        border-top: 1px solid RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.1);
    }

        .mobile-nav__content .main-menu__list ul li > a {
            padding-left: 1em;
        }

    .mobile-nav__content .main-menu__list li:not(:last-child) {
        border-bottom: 1px solid RGBA(var(--rentol-white-rgb, 255, 255, 255), 0.1);
    }

    .mobile-nav__content .main-menu__list li > a {
        display: flex;
        justify-content: space-between;
        line-height: 30px;
        color: var(--rentol-white, #fff);
        font-size: 14px;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        text-transform: capitalize;
        font-weight: 500;
        height: 46px;
        letter-spacing: var(--rentol-letter-space, 0.1em);
        align-items: center;
        transition: 500ms;
    }

    .mobile-nav__content .main-menu__list li a.expanded {
        color: var(--rentol-base, #F2AF1E);
    }

    .mobile-nav__content .main-menu__list li a button {
        width: 35px;
        height: 35px;
        background-color: var(--rentol-base, #F2AF1E);
        border: none;
        outline: none;
        color: var(--rentol-white, #fff);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        text-align: center;
        transform: rotate(-90deg);
        transition: transform 500ms ease;
    }

        .mobile-nav__content .main-menu__list li a button.expanded {
            transform: rotate(0deg);
            background-color: var(--rentol-white, #fff);
            color: var(--rentol-black, #212121);
        }

.mobile-nav__social {
    display: flex;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: var(--rentol-white, #fff);
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 20px;
        }

        .mobile-nav__social a:hover {
            color: var(--rentol-base, #F2AF1E);
        }

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

    .mobile-nav__contact li {
        color: var(--rentol-white, #fff);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: flex;
        align-items: center;
    }

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

        .mobile-nav__contact li a {
            color: inherit;
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--rentol-base, #F2AF1E);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--rentol-base, #F2AF1E);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 12px;
            margin-right: 10px;
            color: var(--rentol-white, #fff);
        }

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    border-radius: 50%;
    transform: translateY(-100%);
    transform-origin: center;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0.7s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

    .search-popup__form input[type=search],
    .search-popup__form input[type=text] {
        width: 100%;
        background-color: transparent;
        font-size: 16px;
        color: var(--rentol-white, #fff);
        border: none;
        outline: none;
        height: 66px;
        padding-left: 10px;
        border-bottom: 1px solid var(--rentol-white, #fff);
    }

    .search-popup__form .rentol-btn {
        padding: 0;
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: end;
        align-items: center;
        position: absolute;
        background-color: transparent;
        top: 0;
        right: 10px;
        border-radius: 0;
    }

        .search-popup__form .rentol-btn::after {
            display: none;
        }

        .search-popup__form .rentol-btn i {
            font-size: 20px;
            margin: 0;
            transform: none;
        }

        .search-popup__form .rentol-btn:hover {
            color: var(--rentol-base, #F2AF1E);
        }

.search-popup.active {
    z-index: 9999;
}

    .search-popup.active .search-popup__overlay {
        top: calc(90px - 112vw);
        transform: translateY(0%);
        transition-delay: 1s;
        opacity: 0.9;
        transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    }

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header-one {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
    height: 426px;
}

.page-header-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page-header-two {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-black, #212121);
    height: 100%;
    padding-top: 460px;
}

.page-header-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page-header-two__inner {
    background-color: transparent;
    position: relative;
}

.page-header-two__content {
    position: relative;
    background-color: var(--rentol-base, #F2AF1E);
    padding: 30px 40px;
    z-index: 1;
}

    .page-header-two__content::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../images/shapes/header-2-1.png);
        background-position: center center;
        background-repeat: no-repeat;
        z-index: -1;
    }

.page-header-two__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--rentol-black, #212121);
}

    .page-header-two__top .sec-title {
        padding-bottom: 0;
    }

    .page-header-two__top .sec-title__tagline {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: var(--rentol-black, #212121);
        margin-bottom: 5px;
    }

    .page-header-two__top .sec-title__title {
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: normal;
        color: var(--rentol-black, #212121);
    }

.page-header-two__list {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px 0px;
}

    .page-header-two__list li span {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
        text-shadow: 0 0 0.1px currentColor;
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }

        .page-header-two__list li span:first-child {
            width: 190px;
            display: inline-flex;
        }

        .page-header-two__list li span i {
            margin-right: 10px;
        }

    .page-header-two__list li:hover span {
        color: var(--rentol-text, #7E7E7E);
    }

.page-header-two .page-header-two__btn__inner {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .page-header-two .page-header-two__btn__inner span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-black, #212121);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .page-header-two .page-header-two__btn__inner span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-white, #fff);
            color: var(--rentol-base, #F2AF1E);
            transform: rotate(0deg);
        }

    .page-header-two .page-header-two__btn__inner:hover span {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

        .page-header-two .page-header-two__btn__inner:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.page-header {
    background-color: var(--rentol-black, #212121);
    position: relative;
    padding-top: 287px;
    padding-bottom: 118px;
}

@media (max-width: 767px) {
    .page-header {
        padding-top: 200px;
        padding-bottom: 90px;
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
}

    .page-header__bg::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(180deg, rgb(33, 34, 38) 10%, rgba(33, 34, 38, 0.75) 100%);
    }

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header__title {
    margin: 0 0 16px;
    font-size: 40px;
    color: var(--rentol-white, #fff);
    font-weight: 700;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 50px;
    }
}

.page-header--details {
    position: relative;
}

    .page-header--details .rentol-breadcrumb li span {
        color: var(--rentol-white, #fff);
    }

.rentol-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

    .rentol-breadcrumb li {
        font-size: 16px;
        line-height: 20px;
        color: var(--rentol-white, #fff);
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .rentol-breadcrumb li:not(:last-of-type)::after {
            content: "\e907";
            font-family: "icomoon" !important;
            position: relative;
            font-weight: normal;
            top: 0;
            margin-left: 5px;
            margin-right: 5px;
        }

        .rentol-breadcrumb li span {
            color: var(--rentol-base, #F2AF1E);
            display: inline-flex;
        }

        .rentol-breadcrumb li a {
            color: inherit;
            background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
            transition: all 500ms ease;
        }

            .rentol-breadcrumb li a:hover {
                background-size: 100% 1px;
            }

            .rentol-breadcrumb li a i {
                margin-right: 9px;
                display: inline-flex;
            }

            .rentol-breadcrumb li a:hover {
                color: var(--rentol-base, #F2AF1E);
            }

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
}

    .google-map iframe {
        position: relative;
        display: block;
        border: none;
        height: 570px;
        width: 100%;
        mix-blend-mode: luminosity;
    }

@media (max-width: 767px) {
    .google-map iframe {
        height: 450px;
    }
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--rentol-gray, #EFEFEF);
}

.contact-map {
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
    z-index: 1;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .client-carousel {
        padding: 100px 0;
    }
}

.client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: relative;
    background-color: transparent;
    border-radius: 50px;
    max-width: 110px;
    height: 80px;
}

    .client-carousel__one__item img {
        transition: all 500ms ease;
        max-width: 100%;
        width: auto !important;
        cursor: pointer;
    }

    .client-carousel__one__item:hover .client-carousel__one__hover-image {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .client-carousel__one__item:hover .client-carousel__one__image {
        visibility: hidden;
        opacity: 0;
        transform: translateY(100%);
    }

.client-carousel__one__hover-image {
    transition: all 500ms ease;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.client-carousel__one__image {
    transition: 500ms;
    max-width: 122px;
    width: auto;
    transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
/******* Slider One********/
.main-slider-one {
    position: relative;
    z-index: 0;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

    .main-slider-one__carousel .owl-dots {
        right: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        gap: 78px 0px;
        text-align: left;
        top: 50%;
        transform: translateY(-50%);
        width: 140px;
    }

@media (max-width: 1400px) {
    .main-slider-one__carousel .owl-dots {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__carousel .owl-dots {
        display: none;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 0px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots .owl-dot {
        margin: 0 6px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot + .owl-dot {
    position: relative;
    z-index: 1;
}

    .main-slider-one__carousel .owl-dots .owl-dot + .owl-dot::after {
        content: "";
        width: 1px;
        height: 54px;
        position: absolute;
        background-color: var(--rentol-white, #fff);
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
    }

.main-slider-one__carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    background-color: var(--rentol-white, #fff);
    margin: 0;
    transition: all 300ms ease;
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background-color: var(--rentol-base, #F2AF1E);
}

@media (min-width: 1550px) {
    .main-slider-one .container-fluid {
        max-width: 1500px;
        margin-left: 95px;
        margin-right: auto;
    }
}

.main-slider-one__item {
    background-color: var(--rentol-black, #212121);
    position: relative;
    height: 761px;
    padding-top: 220px;
    z-index: 1;
}

@media (max-width: 1650px) {
    .main-slider-one__item {
        height: auto;
        padding-top: 200px;
        padding-bottom: 180px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__item {
        padding-top: 150px;
        padding-bottom: 130px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__item {
        padding-top: 120px;
        padding-bottom: 100px;
    }
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .main-slider-one__bg video {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .main-slider-one__bg::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(33, 33, 33, 0.8);
    }

.main-slider-one__content {
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .main-slider-one__content {
        margin-right: 0px;
        max-width: 800px;
        width: 100%;
    }
}

.main-slider-one__title-one {
    color: var(--rentol-white, #fff);
    margin: 0 0 15px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 60px;
    line-height: 167%;
    text-align: end;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

@media (max-width: 1650px) {
    .main-slider-one__title-one {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title-one {
        font-size: 40px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title-one {
        font-size: 30px;
    }
}

.main-slider-one__video {
    width: 100%;
    border-radius: 69px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

@media (max-width: 1650px) {
    .main-slider-one__video {
        justify-content: center;
    }
}

.main-slider-one__video .video-popup {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: relative;
    z-index: 1;
}

    .main-slider-one__video .video-popup i {
        background-color: var(--rentol-white, #fff);
        border-radius: 50%;
        z-index: 2;
        width: 74px;
        height: 74px;
        transition: all 500ms ease;
        font-size: 20px;
        color: var(--rentol-base, #F2AF1E);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-slider-one__video .video-popup .ripple {
        content: "";
        border: 1px solid var(--rentol-white, #fff);
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: calc(100% + 25px);
        height: calc(100% + 25px);
        border-radius: 50%;
        animation: videoZoom 3s linear infinite;
        animation-delay: 0s;
        animation-delay: 0.55s;
    }

        .main-slider-one__video .video-popup .ripple::after {
            content: "";
            border: 1px solid var(--rentol-white, #fff);
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: calc(100% + 50px);
            height: calc(100% + 50px);
            border-radius: 50%;
            animation: videoZoom 1.5s linear infinite;
            animation-delay: 0s;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

    .main-slider-one__video .video-popup:hover i {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-base, #F2AF1E);
    }

.main-slider-one__title-middle {
    color: var(--rentol-white, #fff);
    margin: -10px 0 17px;
    font-style: normal;
    font-weight: 800;
    font-size: 150px;
    letter-spacing: -0.03em;
    line-height: 67%;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(-200px) scale(0.7);
}

    .main-slider-one__title-middle span {
        color: var(--rentol-base, #F2AF1E);
    }

@media (max-width: 1650px) {
    .main-slider-one__title-middle {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title-middle {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title-middle {
        font-size: 90px;
    }
}

@media (max-width: 575px) {
    .main-slider-one__title-middle {
        font-size: 70px;
    }
}

@media (max-width: 400px) {
    .main-slider-one__title-middle {
        font-size: 50px;
    }
}

.main-slider-one__title-two {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
}

@media (max-width: 575px) {
    .main-slider-one__title-two {
        flex-direction: column;
        gap: 30px;
        justify-content: start;
        align-items: start;
    }
}

.main-slider-one__title-two__title {
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 111%;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: -0.03em;
    color: var(--rentol-white, #fff);
}

@media (max-width: 1650px) {
    .main-slider-one__title-two__title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title-two__title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title-two__title {
        font-size: 35px;
    }
}

.main-slider-one__title-two__btn {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .main-slider-one__title-two__btn span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-white, #fff);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .main-slider-one__title-two__btn span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .main-slider-one__title-two__btn:hover span {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

        .main-slider-one__title-two__btn:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.main-slider-one__text-animation {
    position: relative;
    background-color: var(--rentol-base, #F2AF1E);
    padding: 5.5px 0px;
}

.main-slider-one__text-animation__inner {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
}

    .main-slider-one__text-animation__inner:hover {
        animation-play-state: paused;
    }

.main-slider-one__text-animation__text {
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 250%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
    position: relative;
    z-index: 1;
}

    .main-slider-one__text-animation__text::after {
        content: ".";
        position: absolute;
        font-size: 20px;
        color: var(--rentol-black, #212121);
        bottom: 0;
        right: -15px;
    }

.main-slider-one .active .main-slider-one__title-one {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1400ms;
}

.main-slider-one .active .main-slider-one__title-one {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1400ms;
}

.main-slider-one .active .main-slider-one__title-two {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__title-middle {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 1700ms;
}

/******* Slider Two********/
.main-slider-two {
    position: relative;
}

.main-slider-two__carousel {
    position: relative;
    width: 100%;
}

@media (max-width: 991px) {
    .main-slider-two__carousel .owl-nav {
        display: none !important;
    }
}

.main-slider-two__carousel .owl-nav .owl-prev,
.main-slider-two__carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
}

.main-slider-two__carousel .owl-nav .owl-next {
    left: auto;
    right: 60px;
}

.main-slider-two__carousel .owl-nav button {
    border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.2) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--rentol-text, #7E7E7E);
    transition: all 500ms ease;
}

    .main-slider-two__carousel .owl-nav button:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-primary2, #E66431);
        border-color: var(--rentol-primary2, #E66431) !important;
    }

.main-slider-two__item {
    background-color: var(--rentol-black, #212121);
    position: relative;
    z-index: 3;
    height: 870px;
    padding-top: 325px;
}

@media (max-width: 1199px) {
    .main-slider-two__item {
        height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .main-slider-two__item {
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

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

    .main-slider-two__bg::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(31, 28, 25, 0.8);
        z-index: 1;
    }

.main-slider-two__content {
    position: relative;
    text-align: center;
}

.main-slider-two__sub-title {
    font-style: normal;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    line-height: 100%;
    color: var(--rentol-white, #fff);
    text-transform: capitalize;
    line-height: 1;
    margin: 0 0 18px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: scale(1.2) translateY(200px);
}

    .main-slider-two__sub-title::after {
        content: "";
        width: 67px;
        height: 1px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--rentol-primary2, #E66431);
        left: -85px;
    }

    .main-slider-two__sub-title::before {
        content: "";
        width: 67px;
        height: 1px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--rentol-primary2, #E66431);
        right: -85px;
    }

@media (max-width: 767px) {
    .main-slider-two__sub-title {
        font-size: 14px;
    }
}

.main-slider-two__title {
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 100%;
    color: var(--rentol-white, #fff);
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    overflow: hidden;
    margin: 0 0 12px;
    opacity: 0;
    transition: transform 1100ms ease, opacity 1100ms ease;
    transform: scale(1.2) translateY(200px);
}

@media (max-width: 1199px) {
    .main-slider-two__title {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 38px;
    }
}

.main-slider-two__text {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--rentol-white, #fff);
    text-transform: capitalize;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: scale(1.2) translateY(200px);
}

@media (max-width: 991px) {
    .main-slider-two__text br {
        display: none;
    }
}

.main-slider-two__inner {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}

@media (max-width: 1199px) {
    .main-slider-two__inner {
        margin-top: 30px;
        bottom: 0;
        position: relative;
        left: 0;
        transform: translateX(0%);
    }
}

.main-slider-two .active .main-slider-two__bg {
    transform: scale(1.1);
}

.main-slider-two .active .main-slider-two__sub-title {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 1100ms;
}

.main-slider-two .active .main-slider-two__title {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 1300ms;
}

.main-slider-two .active .main-slider-two__text {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 1500ms;
}

/******* Slider Three********/
.main-slider-three {
    position: relative;
    overflow: hidden;
}

.main-slider-three__carousel {
    position: relative;
    width: 100%;
}

    .main-slider-three__carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        right: 50px;
        top: calc(130px + 50%);
        transform: translateY(-60%);
        z-index: 1;
    }

@media (max-width: 991px) {
    .main-slider-three__carousel .owl-dots {
        display: none;
    }
}

.main-slider-three__carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background-color: var(--rentol-white, #fff);
    border: none;
    position: relative;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .main-slider-three__carousel .owl-dots .owl-dot span::after {
        width: 22px;
        height: 22px;
        position: absolute;
        content: "";
        left: -8px;
        top: 0;
        bottom: 0;
        margin: auto;
        border-radius: 50%;
        border: 1px solid var(--rentol-white, #fff);
        transform: scale(0);
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

.main-slider-three__carousel .owl-dots .owl-dot:hover span, .main-slider-three__carousel .owl-dots .owl-dot.active span {
    background-color: var(--rentol-white, #fff);
}

    .main-slider-three__carousel .owl-dots .owl-dot:hover span::after, .main-slider-three__carousel .owl-dots .owl-dot.active span::after {
        transform: scale(1);
    }

@media (min-width: 1300px) {
    .main-slider-three .container {
        max-width: 1280px;
    }
}

.main-slider-three__item {
    background-color: var(--rentol-black, #212121);
    position: relative;
    height: 1000px;
    z-index: 3;
    padding-top: 315px;
}

@media (max-width: 1199px) {
    .main-slider-three__item {
        height: auto;
        padding-top: 215px;
        padding-bottom: 150px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__item {
        height: auto;
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

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

    .main-slider-three__bg::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: linear-gradient(180deg, #212121 0%, rgba(33, 33, 33, 0) 100%);
        z-index: 1;
    }

.main-slider-three__content {
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 3;
}

.main-slider-three__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

    .main-slider-three__image img {
        object-fit: cover;
        text-align: center;
        width: auto !important;
    }

.main-slider-three__sub-title {
    display: inline-block;
    margin: 0 0 11px;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 111%;
    color: var(--rentol-white, #fff);
    text-align: center;
    letter-spacing: 0.3em;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 991px) {
    .main-slider-three__sub-title {
        font-size: 16px;
    }
}

.main-slider-three__title {
    color: var(--rentol-white, #fff);
    display: block;
    margin: 0 0 37px;
    font-style: normal;
    font-weight: 500;
    font-size: 100px;
    line-height: 120%;
    letter-spacing: -0.03em;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 1500px) {
    .main-slider-three__title {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__title {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__title {
        font-size: 45px;
    }
}

.main-slider-three__btn {
    overflow: hidden;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

    .main-slider-three__btn .rentol-btn {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        background-color: var(--rentol-primary4, #BC1834);
        color: var(--rentol-white, #fff);
        border-radius: 0;
        padding: 10px 21px;
    }

        .main-slider-three__btn .rentol-btn::after {
            background-color: var(--rentol-base, #F2AF1E);
        }

.main-slider-three__line {
    position: absolute;
    top: 190px;
    left: 130px;
    bottom: 60px;
    right: 130px;
    background-color: transparent;
    border: 1px solid rgba(207, 210, 223, 0.2);
    z-index: 1;
}

@media (max-width: 1600px) {
    .main-slider-three__line {
        top: 150px;
        left: 50px;
        bottom: 60px;
        right: 50px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__line {
        display: none;
    }
}

.main-slider-three__line span {
    position: absolute;
    top: 10px;
    right: 10px;
}

    .main-slider-three__line span::after, .main-slider-three__line span::before {
        content: "";
        width: 44px;
        height: 1px;
        position: absolute;
        background-color: var(--rentol-white, #fff);
        right: 10px;
        top: 10px;
        transition: all 0.4s ease-in-out;
    }

    .main-slider-three__line span::before {
        height: 44px;
        width: 1px;
    }

    .main-slider-three__line span:last-child {
        top: auto;
        left: 10px;
        bottom: 10px;
    }

        .main-slider-three__line span:last-child::after, .main-slider-three__line span:last-child::before {
            content: "";
            width: 44px;
            height: 1px;
            position: absolute;
            background-color: var(--rentol-white, #fff);
            left: auto;
            top: auto;
            bottom: 10px;
            left: 10px;
        }

        .main-slider-three__line span:last-child::before {
            height: 44px;
            width: 1px;
        }

.main-slider-three .active .main-slider-three__bg {
    transform: scale(1.1);
}

.main-slider-three .active .main-slider-three__image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1400ms;
}

    .main-slider-three .active .main-slider-three__image img {
        animation: rotated 8s ease-in-out infinite;
    }

.main-slider-three .active .main-slider-three__sub-title {
    opacity: 1;
    animation-delay: 1.2s;
    animation-name: rotateInUpLeft;
}

.main-slider-three .active .main-slider-three__title {
    opacity: 1;
    animation-delay: 1.4s;
    animation-name: rotateInUpRight;
}

.main-slider-three .active .main-slider-three__btn {
    opacity: 1;
    animation-delay: 1.8s;
    animation-name: rotateInUpRight;
}

.main-slider-three__social {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    margin: auto 0;
    position: absolute;
    left: 55px;
    top: calc(130px + 50%);
    transform: translateY(-60%);
    z-index: 1;
    gap: 13px;
}

@media (max-width: 1499px) {
    .main-slider-three__social {
        left: 25px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__social {
        display: none;
    }
}

.main-slider-three__social a {
    width: 30px;
    height: 30px;
    font-size: 13px;
    color: var(--rentol-white, #fff);
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

    .main-slider-three__social a i {
        position: relative;
        z-index: 2;
        display: inline-block;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .main-slider-three__social a:hover {
        color: var(--rentol-white, #fff);
        border-color: var(--rentol-primary4, #BC1834);
        background-color: var(--rentol-primary4, #BC1834);
    }

        .main-slider-three__social a:hover i {
            animation: iconTranslateY 0.4s forwards;
        }

/******* Slider Four********/
.main-slider-four {
    position: relative;
    overflow: hidden;
}

.main-slider-four__carousel {
    position: relative;
    width: 100%;
}

    .main-slider-four__carousel .owl-nav .owl-prev,
    .main-slider-four__carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 60px;
    }

    .main-slider-four__carousel .owl-nav .owl-next {
        left: auto;
        right: 60px;
    }

    .main-slider-four__carousel .owl-nav button {
        border: 1px solid rgba(var(--rentol-text-rgb, 126, 126, 126), 0.2) !important;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        opacity: 1;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--rentol-text, #7E7E7E);
        transition: all 500ms ease;
    }

        .main-slider-four__carousel .owl-nav button:hover {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-primary3, #CEAC69);
            border-color: var(--rentol-primary3, #CEAC69) !important;
        }

.main-slider-four__item {
    background-color: var(--rentol-black, #212121);
    position: relative;
    z-index: 1;
    height: 1000px;
    padding-top: 280px;
}

@media (min-width: 1400px) {
    .main-slider-four__item .container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1199px) {
    .main-slider-four__item {
        height: auto;
        padding-top: 250px;
        padding-bottom: 300px;
    }
}

@media (max-width: 991px) {
    .main-slider-four__item {
        height: auto;
        padding-top: 230px;
        padding-bottom: 270px;
    }
}

@media (max-width: 767px) {
    .main-slider-four__item {
        height: auto;
        padding-top: 230px;
        padding-bottom: 120px;
    }
}

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

.main-slider-four__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.main-slider-four__title {
    color: var(--rentol-white, #fff);
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 117%;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    display: block;
    overflow: hidden;
    margin: 0 0 30px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translatex(50%) scalex(2);
    filter: blur(-10px);
}

@media (max-width: 991px) {
    .main-slider-four__title {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .main-slider-four__title {
        font-size: 40px;
    }
}

.main-slider-four__image {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: relative;
    z-index: 2;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translatex(50%) scalex(2);
    filter: blur(10px);
    overflow: hidden;
}

    .main-slider-four__image img {
        width: auto !important;
        height: auto !important;
        position: relative;
        z-index: 3;
    }

@media (max-width: 1499px) {
    .main-slider-four__image img {
        max-width: 100%;
    }
}

.main-slider-four__slider__inner {
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 211px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(100%);
}

.main-slider-four__slider__item {
    display: block;
    position: relative;
    font-style: normal;
    font-weight: 800;
    font-size: 200px;
    line-height: 60%;
    text-align: center;
    letter-spacing: 0.55em;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    color: transparent;
}

@media (max-width: 991px) {
    .main-slider-four__slider__item {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .main-slider-four__slider__item {
        font-size: 80px;
    }
}

.main-slider-four .active .main-slider-four__bg {
    transform: scale(1.1);
}

.main-slider-four .active .main-slider-four__title {
    opacity: 1;
    transform: translatex(0) scalex(1);
    filter: blur(0);
    transition-delay: 1500ms;
}

.main-slider-four .active .main-slider-four__image {
    opacity: 1;
    transform: translatex(0) scalex(1);
    filter: blur(0);
    transition-delay: 2200ms;
}

.main-slider-four .active .main-slider-four__slider__inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

/******* Slider Five********/
.main-slider-five {
    position: relative;
    overflow: hidden;
    background-color: #FFEBEA;
}

.main-slider-five__carousel .owl-dots {
    margin-top: 0 !important;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

    .main-slider-five__carousel .owl-dots .owl-dot span,
    .main-slider-five__carousel .owl-dots .owl-dot:hover span,
    .main-slider-five__carousel .owl-dots .owl-dot.active span {
        background-color: var(--rentol-primary, #EB3E32) !important;
    }

        .main-slider-five__carousel .owl-dots .owl-dot span::after {
            border-color: var(--rentol-primary, #EB3E32) !important;
        }

.main-slider-five__item {
    position: relative;
    z-index: 3;
    height: 760px;
    padding-top: 155px;
}

@media (max-width: 1199px) {
    .main-slider-five__item {
        padding-top: 120px;
        height: auto;
        padding-bottom: 150px;
    }
}

@media (max-width: 991px) {
    .main-slider-five__item {
        padding-top: 100px;
        padding-bottom: 130px;
    }
}

.main-slider-five__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    overflow: hidden;
    mix-blend-mode: multiply;
    opacity: 0.4;
}

@media (min-width: 1450px) {
    .main-slider-five .container-fluid {
        max-width: 1450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-slider-five__content {
    position: relative;
    overflow: hidden;
}

.main-slider-five__image {
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translatex(50%) scalex(2);
    filter: blur(10px);
    overflow: hidden;
}

    .main-slider-five__image img {
        object-fit: cover;
        width: 100%;
    }

@media (max-width: 991px) {
    .main-slider-five__image img {
        width: auto !important;
    }
}

.main-slider-five__subtitle {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.2em;
    padding: 0;
    margin: 0 0 12px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-50%) scalex(2);
    filter: blur(-10px);
}

.main-slider-five__title {
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    line-height: 117%;
    margin: 0 0 35px;
    padding-bottom: 0;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translatey(50%) scaley(2);
    filter: blur(-10px);
}

@media (max-width: 991px) {
    .main-slider-five__title {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .main-slider-five__title {
        font-size: 45px;
    }
}

@media (max-width: 676px) {
    .main-slider-five__title {
        font-size: 40px;
    }
}

.main-slider-five__item-content {
    flex: 0 0 auto;
    width: 33.33%;
}

@media (max-width: 1370px) {
    .main-slider-five__item-content--one {
        width: 40%;
    }
}

@media (max-width: 1199px) {
    .main-slider-five__item-content--one {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .main-slider-five__item-content--one {
        width: 100%;
    }
}

.main-slider-five__item-content--two {
    width: 37%;
}

@media (max-width: 1370px) {
    .main-slider-five__item-content--two {
        width: 30.33%;
    }
}

@media (max-width: 1199px) {
    .main-slider-five__item-content--two {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .main-slider-five__item-content--two {
        width: 100%;
    }
}

.main-slider-five__item-content--three {
    width: 29.66%;
}

@media (max-width: 1199px) {
    .main-slider-five__item-content--three {
        width: 100%;
    }
}

.main-slider-five__price {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin: 0 0 50px;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translatey(50%) scaley(2);
    filter: blur(-10px);
}

    .main-slider-five__price span {
        font-weight: 400;
        font-size: 14px;
        display: block;
    }

.main-slider-five__btn {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(50%);
}

    .main-slider-five__btn .rentol-btn {
        border-radius: 10px;
        padding: 13px 20px;
        background-color: var(--rentol-primary, #EB3E32);
        font-weight: 600;
        border: 1px solid transparent;
    }

        .main-slider-five__btn .rentol-btn:hover {
            border-color: var(--rentol-black, #212121);
            background-color: var(--rentol-black, #212121);
        }

        .main-slider-five__btn .rentol-btn:last-child {
            background-color: transparent;
            border-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-primary, #EB3E32);
        }

            .main-slider-five__btn .rentol-btn:last-child:hover {
                background-color: var(--rentol-black, #212121);
                color: var(--rentol-white, #fff);
                border-color: var(--rentol-black, #212121);
            }

.main-slider-five__box {
    max-width: 233px;
    width: 100%;
    height: auto;
    background-color: var(--rentol-white, #fff);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-100%);
}

@media (max-width: 1199px) {
    .main-slider-five__box {
        max-width: 400px;
    }
}

.main-slider-five__box__top {
    padding: 20px;
    position: relative;
}

.main-slider-five__box__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    line-height: 125%;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin: 0 0 7px;
}

.main-slider-five__box__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin: 0 0 30px;
    padding: 0;
}

.main-slider-five__box__bottom {
    position: relative;
    z-index: 1;
}

    .main-slider-five__box__bottom .video-popup {
        width: 82px;
        height: 82px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 500ms ease;
        position: relative;
        z-index: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .main-slider-five__box__bottom .video-popup i {
            background-color: var(--rentol-white, #fff);
            border-radius: 50%;
            z-index: 2;
            width: 74px;
            height: 74px;
            transition: all 500ms ease;
            font-size: 20px;
            color: var(--rentol-primary, #EB3E32);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-slider-five__box__bottom .video-popup .ripple {
            content: "";
            border: 1px solid var(--rentol-white, #fff);
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: calc(100% + 25px);
            height: calc(100% + 25px);
            border-radius: 50%;
            animation: videoZoom 3s linear infinite;
            animation-delay: 0s;
            animation-delay: 0.55s;
        }

            .main-slider-five__box__bottom .video-popup .ripple::after {
                content: "";
                border: 1px solid var(--rentol-white, #fff);
                position: absolute;
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: calc(100% + 50px);
                height: calc(100% + 50px);
                border-radius: 50%;
                animation: videoZoom 1.5s linear infinite;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-delay: 0s;
            }

        .main-slider-five__box__bottom .video-popup:hover i {
            color: var(--rentol-white, #fff);
            background-color: var(--rentol-primary, #EB3E32);
        }

.main-slider-five__box::after {
    content: "";
    width: 89px;
    height: 89px;
    background-color: var(--rentol-primary, #EB3E32);
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: -1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.main-slider-five__web {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    z-index: 1;
    left: 40px;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    writing-mode: vertical-rl;
}

    .main-slider-five__web a {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 143%;
        color: var(--rentol-black, #212121);
        margin: 0;
        padding: 0;
        transition: all 0.4s ease-out;
    }

        .main-slider-five__web a:last-child {
            letter-spacing: 0.1em;
        }

        .main-slider-five__web a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

@media (max-width: 1500px) {
    .main-slider-five__web {
        display: none;
    }
}

.main-slider-five__social {
    display: flex;
    align-items: center;
    gap: 25px;
    position: absolute;
    z-index: 1;
    right: 40px;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    writing-mode: vertical-rl;
}

    .main-slider-five__social a {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 143%;
        letter-spacing: 0.1em;
        color: var(--rentol-black, #212121);
        margin: 0;
        padding: 0;
        transition: all 0.4s ease-out;
    }

        .main-slider-five__social a:hover {
            color: var(--rentol-primary, #EB3E32);
        }

@media (max-width: 1500px) {
    .main-slider-five__social {
        display: none;
    }
}

.main-slider-five .active .main-slider-five__subtitle {
    opacity: 1;
    transform: translatey(0) scaley(1);
    filter: blur(0);
    transition-delay: 1500ms;
}

.main-slider-five .active .main-slider-five__title {
    opacity: 1;
    transform: translatey(0) scaley(1);
    filter: blur(0);
    transition-delay: 1500ms;
}

.main-slider-five .active .main-slider-five__price {
    opacity: 1;
    transform: translatey(0) scaley(1);
    filter: blur(0);
    transition-delay: 1500ms;
}

.main-slider-five .active .main-slider-five__image {
    opacity: 1;
    transform: translatex(0) scalex(1);
    filter: blur(0);
    transition-delay: 2200ms;
}

.main-slider-five .active .main-slider-five__btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

.main-slider-five .active .main-slider-five__box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

/*--------------------------------------------------------------
# Form Card
--------------------------------------------------------------*/
.banner-form__wrapper {
    background-color: transparent;
}

    .banner-form__wrapper .banner-form .banner-form__control {
        flex: 0 0 auto;
        width: 33%;
    }

    .banner-form__wrapper .banner-form .banner-form__control--two {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

@media (max-width: 575px) {
    .banner-form__wrapper .banner-form .banner-form__control--two {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .banner-form__wrapper .banner-form .banner-form__control {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .banner-form__wrapper .banner-form .banner-form__control {
        width: 100%;
    }
}

.banner-form__wrapper .banner-form .banner-form__control {
    position: relative;
}

    .banner-form__wrapper .banner-form .banner-form__control .banner-form__control__item {
        position: relative;
        z-index: 1;
    }

    .banner-form__wrapper .banner-form .banner-form__control .filter-option-inner-inner {
        font-style: normal;
        line-height: normal;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        text-transform: capitalize;
    }

    .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 100%;
    }

    .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select:not(.input-group-btn), .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select[class*=col-] {
        margin-bottom: -4px;
    }

    .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle,
    .banner-form__wrapper .banner-form .banner-form__control input[type=text],
    .banner-form__wrapper .banner-form .banner-form__control input[type=number],
    .banner-form__wrapper .banner-form .banner-form__control input[type=email] {
        width: 100%;
        background-color: var(--rentol-white, #fff);
        height: 65px;
        padding: 20px 30px;
        font-family: var(--rentol-font, "Manrope", sans-serif);
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 171%;
        border-radius: 100px;
        text-transform: capitalize;
        color: var(--rentol-text, #7E7E7E);
        border: 1px solid transparent !important;
        z-index: 2;
        cursor: pointer;
    }

        .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:active, .banner-form__wrapper .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:focus,
        .banner-form__wrapper .banner-form .banner-form__control input[type=text]:active,
        .banner-form__wrapper .banner-form .banner-form__control input[type=text]:focus,
        .banner-form__wrapper .banner-form .banner-form__control input[type=number]:active,
        .banner-form__wrapper .banner-form .banner-form__control input[type=number]:focus,
        .banner-form__wrapper .banner-form .banner-form__control input[type=email]:active,
        .banner-form__wrapper .banner-form .banner-form__control input[type=email]:focus {
            outline: none !important;
            border: 1px solid transparent !important;
        }

    .banner-form__wrapper .banner-form .banner-form__control .dropdown-toggle::after,
    .banner-form__wrapper .banner-form .banner-form__control .rentol-datepicker::after {
        display: inline-block;
        position: relative;
        top: 2px;
        margin-left: 0 !important;
        vertical-align: 0 !important;
        content: "\e905";
        font-family: "icomoon" !important;
        border-top: 0 !important;
        border-right: 0 !important;
        color: var(--rentol-text, #7E7E7E);
        font-size: 20px;
        line-height: 0;
        font-weight: 500;
        border-bottom: 0 !important;
        border-left: 0 !important;
    }

    .banner-form__wrapper .banner-form .banner-form__control .banner-form__datepicker-icon {
        position: relative;
        z-index: 1;
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
        line-height: 1;
        font-size: 20px;
        color: var(--rentol-text, #7E7E7E);
        z-index: 2;
    }

.banner-form__wrapper .bootstrap-select .dropdown-item {
    color: var(--rentol-text, #7E7E7E);
    padding: 7px 15px;
}

    .banner-form__wrapper .bootstrap-select .dropdown-item.active,
    .banner-form__wrapper .bootstrap-select .dropdown-item:hover {
        background-color: var(--rentol-primary4, #BC1834);
    }

        .banner-form__wrapper .bootstrap-select .dropdown-item.active .text,
        .banner-form__wrapper .bootstrap-select .dropdown-item:hover .text {
            color: var(--rentol-white, #fff);
        }

.banner-form__wrapper .bootstrap-select .dropdown-menu li a span.text {
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    font-weight: 600;
    text-transform: capitalize;
}

.banner-form__wrapper .banner-form__button {
    position: absolute;
    bottom: -35px;
    left: 80px;
}

@media (max-width: 1199px) {
    .banner-form__wrapper .banner-form__button {
        position: relative;
        bottom: auto;
        left: auto;
    }
}

.banner-form__wrapper .banner-form__button .rentol-btn {
    border-radius: 100px;
    background-color: var(--rentol-white, #fff);
    padding: 17.5px 20px;
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--rentol-primary2, #E66431);
    display: flex;
    align-items: center;
    gap: 18px;
}

    .banner-form__wrapper .banner-form__button .rentol-btn span {
        font-size: 30px;
    }

    .banner-form__wrapper .banner-form__button .rentol-btn:hover {
        background-color: var(--rentol-primary2, #E66431);
        color: var(--rentol-white, #fff);
    }

    .banner-form__wrapper .banner-form__button .rentol-btn::after {
        background-color: var(--rentol-primary2, #E66431);
    }

.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
    font-size: 14px;
}

.xdsoft_datetimepicker {
    box-shadow: none !important;
    border: none !important;
    border-radius: 6px;
    margin-top: 6px;
    margin-bottom: 6px;
}

    .xdsoft_datetimepicker .xdsoft_timepicker {
        width: 100px;
    }

        .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
            font-size: 16px !important;
            color: var(--rentol-text, #7E7E7E) !important;
            padding: 5px 10px !important;
            height: auto !important;
        }

        .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

.main-slider-two__form {
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .main-slider-two__form {
        background-color: var(--rentol-primary2, #E66431);
    }
}

.main-slider-two__form::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shapes/banner-shape.png);
    background-repeat: no-repeat;
    background-position: top right;
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .main-slider-two__form::after {
        display: none;
    }
}

.main-slider-four__inner {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

@media (max-width: 767px) {
    .main-slider-four__inner {
        position: relative;
        top: 0;
        left: 0;
        transform: translateX(0%);
    }
}

.main-slider-four__form {
    position: relative;
    z-index: 1;
    background-color: var(--rentol-primary3, #CEAC69);
}

.main-slider-four__form__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    mix-blend-mode: multiply;
    opacity: 0.08;
}

.main-slider-four__form__top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider-four__form__title {
    display: inline-block;
    background-color: var(--rentol-white, #fff);
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 0;
    padding: 14.5px 45px;
    color: var(--rentol-primary3, #CEAC69);
    position: relative;
}

    .main-slider-four__form__title::after, .main-slider-four__form__title::before {
        content: "";
        width: 52.5px;
        height: 53.5px;
        background-color: #E4DFD7;
        position: absolute;
        top: 0;
    }

    .main-slider-four__form__title::after {
        clip-path: polygon(100% 0, 0 0, 0 100%);
        right: -51.11px;
    }

    .main-slider-four__form__title::before {
        clip-path: polygon(100% 0, 0 0, 100% 100%);
        left: -51.11px;
    }

.main-slider-four__form::after, .main-slider-four__form::before {
    content: "";
    width: 140px;
    height: 178.5px;
    position: absolute;
    background-color: #E4DFD7;
    top: 0;
}

@media (max-width: 991px) {
    .main-slider-four__form::after, .main-slider-four__form::before {
        display: none;
    }
}

.main-slider-four__form::after {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    left: -139.5px;
}

.main-slider-four__form::before {
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    right: -139px;
}

.main-slider-four .banner-form__wrapper-two {
    padding: 30px 40px 40px;
}

    .main-slider-four .banner-form__wrapper-two .banner-form {
        position: relative;
    }

    .main-slider-four .banner-form__wrapper-two .banner-form__control {
        position: relative;
    }

        .main-slider-four .banner-form__wrapper-two .banner-form__control .filter-option-inner-inner {
            font-style: normal;
            line-height: normal;
            color: var(--rentol-black, #212121);
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 171%;
        }

        .main-slider-four .banner-form__wrapper-two .banner-form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
            width: 100%;
        }

        .main-slider-four .banner-form__wrapper-two .banner-form__control .bootstrap-select > .dropdown-toggle,
        .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=text],
        .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=number],
        .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=email] {
            width: 100%;
            background-color: transparent;
            padding: 13.5px 0px;
            font-family: var(--rentol-font, "Manrope", sans-serif);
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 171%;
            border-radius: 0;
            color: var(--rentol-black, #212121);
            border: none;
            border-bottom: 1px solid var(--rentol-black, #212121) !important;
            z-index: 2;
            cursor: pointer;
        }

            .main-slider-four .banner-form__wrapper-two .banner-form__control .bootstrap-select > .dropdown-toggle::placeholder,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=text]::placeholder,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=number]::placeholder,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=email]::placeholder {
                color: var(--rentol-black, #212121);
            }

            .main-slider-four .banner-form__wrapper-two .banner-form__control .bootstrap-select > .dropdown-toggle:active, .main-slider-four .banner-form__wrapper-two .banner-form__control .bootstrap-select > .dropdown-toggle:focus,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=text]:active,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=text]:focus,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=number]:active,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=number]:focus,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=email]:active,
            .main-slider-four .banner-form__wrapper-two .banner-form__control input[type=email]:focus {
                border: none;
                outline: none !important;
                border-bottom: 1px solid var(--rentol-black, #212121) !important;
            }

        .main-slider-four .banner-form__wrapper-two .banner-form__control .dropdown-toggle::after,
        .main-slider-four .banner-form__wrapper-two .banner-form__control .rentol-datepicker::after {
            display: inline-block;
            position: relative;
            top: 2px;
            margin-left: 0 !important;
            vertical-align: 0 !important;
            content: "\f067";
            font-family: "Font Awesome 5 Free" !important;
            border-top: 0 !important;
            border-right: 0 !important;
            color: var(--rentol-black, #212121);
            font-size: 12px;
            line-height: 0;
            font-weight: 900;
            border-bottom: 0 !important;
            border-left: 0 !important;
        }

        .main-slider-four .banner-form__wrapper-two .banner-form__control .banner-form__datepicker-icon {
            z-index: 1;
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            line-height: 1;
            font-size: 12px;
            color: var(--rentol-black, #212121);
            z-index: 2;
        }

    .main-slider-four .banner-form__wrapper-two .banner-form__control--one {
        flex: 0 0 auto;
        width: 25%;
    }

@media (max-width: 1199px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--one {
        width: 22%;
    }
}

@media (max-width: 991px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--one {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--one {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--one {
        width: 100%;
    }
}

.main-slider-four .banner-form__wrapper-two .banner-form__control--two {
    flex: 0 0 auto;
    width: 25%;
}

@media (max-width: 1199px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--two {
        width: 24%;
    }
}

@media (max-width: 991px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--two {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--two {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--two {
        width: 100%;
    }
}

.main-slider-four .banner-form__wrapper-two .banner-form__control--three {
    flex: 0 0 auto;
    width: 18%;
}

@media (max-width: 1199px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--three {
        width: 17%;
    }
}

@media (max-width: 991px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--three {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--three {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--three {
        width: 100%;
    }
}

.main-slider-four .banner-form__wrapper-two .banner-form__control--four {
    flex: 0 0 auto;
    width: 18%;
}

@media (max-width: 1199px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--four {
        width: 17%;
    }
}

@media (max-width: 991px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--four {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--four {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control--four {
        width: 100%;
    }
}

.main-slider-four .banner-form__wrapper-two .banner-form__control.banner-form__button {
    flex: 0 0 auto;
    width: 14%;
}

@media (max-width: 1199px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control.banner-form__button {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control.banner-form__button {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control.banner-form__button {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .main-slider-four .banner-form__wrapper-two .banner-form__control.banner-form__button {
        width: 100%;
    }
}

.main-slider-four .bootstrap-select .dropdown-item {
    color: var(--rentol-text, #7E7E7E);
    padding: 7px 15px;
}

    .main-slider-four .bootstrap-select .dropdown-item.active,
    .main-slider-four .bootstrap-select .dropdown-item:hover {
        background-color: var(--rentol-primary4, #BC1834);
    }

        .main-slider-four .bootstrap-select .dropdown-item.active .text,
        .main-slider-four .bootstrap-select .dropdown-item:hover .text {
            color: var(--rentol-white, #fff);
        }

.main-slider-four .bootstrap-select .dropdown-menu li a span.text {
    font-size: 16px;
    color: var(--rentol-text, #7E7E7E);
    font-weight: 600;
    text-transform: capitalize;
}

.main-slider-four .rentol-btn {
    color: var(--rentol-primary3, #CEAC69);
    background-color: var(--rentol-black, #212121);
    border-radius: 0;
    padding: 6px 18px;
    font-size: 14px;
}

    .main-slider-four .rentol-btn span {
        font-size: 10px;
        margin-right: 3px;
    }

    .main-slider-four .rentol-btn::after {
        background-color: var(--rentol-primary4, #BC1834);
    }

    .main-slider-four .rentol-btn:hover {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-primary4, #BC1834);
    }

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
/****** Bike Feature One*******/
.bike-feature-one {
    padding-top: 85px;
    padding-bottom: 90px;
}

.bike-feature-one__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

@media (max-width: 991px) {
    .bike-feature-one__top {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 40px;
    }
}

.bike-feature-one__top::after {
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 21%;
    right: 34%;
    background-color: var(--rentol-border-color, #D2D2D2);
}

@media (max-width: 1199px) {
    .bike-feature-one__top::after {
        display: none;
    }
}

.bike-feature-one__top__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 83%;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    margin-bottom: 0;
    padding-bottom: 0;
}

.bike-feature-one .tab-box-buttons .tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .bike-feature-one .tab-box-buttons .tab-buttons {
        flex-wrap: wrap;
    }
}

.bike-feature-one .tab-box-buttons .tab-buttons li {
    cursor: pointer;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    border-radius: 100px;
    border: 1px solid var(--rentol-border-color, #D2D2D2);
    padding: 5px 10px;
    transition: all 0.4s ease-in-out;
}

    .bike-feature-one .tab-box-buttons .tab-buttons li.active-btn, .bike-feature-one .tab-box-buttons .tab-buttons li:hover {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
        border-color: transparent;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/***** About One******/
.about-one {
    position: relative;
    z-index: 1;
}

.about-one__left .sec-title {
    padding-bottom: 22px;
}

.about-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    padding-bottom: 0;
    margin-bottom: 31px;
}

.about-one__thumb {
    position: relative;
}

    .about-one__thumb img {
        object-fit: cover;
        width: 100%;
    }

.about-one__thumb__content {
    background-color: var(--rentol-base, #F2AF1E);
    position: absolute;
    top: 30px;
    left: 30px;
    height: 293px;
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
}

@media (max-width: 575px) {
    .about-one__thumb__content {
        height: 200px;
    }
}

.about-one__thumb__content__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: var(--rentol-black, #212121);
    margin: 0px;
    padding: 24px;
}

    .about-one__thumb__content__title span {
        text-transform: capitalize;
        display: block;
    }

@media (max-width: 575px) {
    .about-one__thumb__content__title {
        font-size: 18px;
    }
}

.about-one__thumb__content__item-video {
    position: absolute;
    bottom: 0;
    left: 0;
}

    .about-one__thumb__content__item-video a {
        font-size: 20px;
        width: 107px;
        height: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--rentol-black, #212121);
        color: var(--rentol-base, #F2AF1E);
    }

        .about-one__thumb__content__item-video a:hover {
            background-color: var(--rentol-primary, #EB3E32);
            color: var(--rentol-white, #fff);
        }

@media (max-width: 575px) {
    .about-one__thumb__content__item-video a {
        width: 93px;
        height: 66px;
    }
}

.about-one__btn {
    display: inline-flex;
    align-items: center;
}

    .about-one__btn span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-black, #212121);
        background-color: var(--rentol-gray, #EFEFEF);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .about-one__btn span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-base, #F2AF1E);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .about-one__btn:hover span {
        background-color: var(--rentol-base, #F2AF1E);
        color: var(--rentol-white, #fff);
    }

        .about-one__btn:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

.about-one__right .about-one__thumb {
    margin-bottom: 30px;
}

/***** About Two******/
.about-two {
    position: relative;
    z-index: 1;
}

.about-two__thumb {
    position: relative;
    margin-right: 30px;
}

.about-two__thumb__item img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .about-two__thumb__item img {
        object-fit: cover;
        width: 100%;
    }
}

.about-two__thumb__item-two {
    position: absolute;
    text-align: end;
    margin-top: -290px;
    right: 0;
    display: inline;
}

    .about-two__thumb__item-two img {
        position: relative;
        border-radius: 20px;
        z-index: 1;
    }

@media (max-width: 991px) {
    .about-two__thumb__item-two img {
        object-fit: cover;
        width: 100%;
    }
}

.about-two__thumb__item-two::after {
    content: "";
    width: 252px;
    left: 75px;
    z-index: 1;
    right: 47px;
    position: absolute;
    bottom: 0;
    height: 90%;
    background-color: transparent;
    border: 3px solid #E66431;
    border-radius: 1000px 1000px 0 0;
    animation: movebounce2 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .about-two__thumb__item-two::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .about-two__thumb__item-two {
        position: relative;
        margin-top: -290px;
        display: table;
    }
}

.about-two .sec-title {
    padding-bottom: 20px;
}

.about-two__text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-primary2, #E66431);
}

.about-two__feature {
    position: relative;
    padding-bottom: 42px;
}

.about-two__feature__item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-top: 25px;
    padding-top: 25px;
}

    .about-two__feature__item:hover .about-two__feature__icon {
        background-color: var(--rentol-primary2, #E66431);
        color: var(--rentol-white, #fff);
    }

.about-two__feature__icon {
    max-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #F0EAE5;
    font-size: 40px;
    color: var(--rentol-primary2, #E66431);
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.about-two__feature__title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
}

.about-two__feature__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -4px;
    padding-bottom: 0;
}

.about-two__btn__link {
    display: inline-flex;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

    .about-two__btn__link span {
        padding: 19.5px 22px;
        border-radius: 37.5px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-primary2, #E66431);
        transition: all 0.4s ease-in-out;
        text-transform: capitalize;
    }

        .about-two__btn__link span:last-child {
            width: 55px;
            padding: 0;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rentol-black, #212121);
            color: var(--rentol-white, #fff);
            transform: rotate(0deg);
        }

    .about-two__btn__link:hover span {
        background-color: var(--rentol-primary, #EB3E32);
        color: var(--rentol-white, #fff);
    }

        .about-two__btn__link:hover span:last-child {
            background-color: var(--rentol-gray, #EFEFEF);
            color: var(--rentol-black, #212121);
            transform: rotate(45deg);
        }

/***** About Three******/
.about-three {
    position: relative;
    z-index: 1;
}

.about-three__thumb {
    position: relative;
}

@media (min-width: 1200px) {
    .about-three__thumb {
        margin-right: 30px;
    }
}

@media (max-width: 1199px) {
    .about-three__thumb__item img {
        object-fit: cover;
        width: 100%;
    }
}

.about-three__thumb__video {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

@media (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .about-three__thumb__video {
        margin-top: 30px;
        position: relative;
        bottom: 0;
        left: 0;
        display: inline-block;
    }
}

.about-three__thumb__video img {
    border: 10px solid var(--rentol-white, #fff);
}

.about-three__thumb__video .video-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

    .about-three__thumb__video .video-popup i {
        background-color: var(--rentol-white, #fff);
        border-radius: 50%;
        z-index: 2;
        width: 52px;
        height: 52px;
        transition: all 500ms ease;
        font-size: 16px;
        color: var(--rentol-primary4, #BC1834);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-three__thumb__video .video-popup .ripple {
        content: "";
        border: 1px solid var(--rentol-white, #fff);
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: calc(100% + 25px);
        height: calc(100% + 25px);
        border-radius: 50%;
        animation: videoZoom 3s linear infinite;
        animation-delay: 0s;
        animation-delay: 0.55s;
    }

        .about-three__thumb__video .video-popup .ripple::after {
            content: "";
            border: 1px solid var(--rentol-white, #fff);
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: calc(100% + 50px);
            height: calc(100% + 50px);
            border-radius: 50%;
            animation: videoZoom 1.5s linear infinite;
            animation-delay: 0s;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

    .about-three__thumb__video .video-popup:hover i {
        color: var(--rentol-white, #fff);
        background-color: var(--rentol-base, #F2AF1E);
    }

.about-three__text {
    text-transform: capitalize;
    margin-bottom: 22px;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
    line-height: 188%;
}

.about-three__content {
    padding-bottom: 32px;
    z-index: 1;
    position: relative;
}

@media (min-width: 1200px) {
    .about-three__content {
        padding-left: 80px;
        margin-left: -80px;
        background-color: var(--rentol-white, #fff);
    }
}

@media (max-width: 991px) {
    .about-three__content {
        padding-bottom: 0px;
    }
}

.about-three__content .sec-title-three {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
    margin-bottom: 25px;
}

.about-three__list {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px 20px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .about-three__list {
        grid-template-columns: auto;
        grid-gap: 15px;
    }
}

.about-three__list li {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
}

    .about-three__list li i {
        color: var(--rentol-primary4, #BC1834);
        font-size: 18px;
        margin-right: 10px;
    }

.about-three__btn__link {
    background-color: var(--rentol-primary4, #BC1834);
    border-radius: 0px;
}

.about-three__small__thumb {
    text-align: end;
    margin-top: -40px;
    margin-bottom: -120px;
    margin-right: 40px;
}

    .about-three__small__thumb img {
        border: 10px solid var(--rentol-white, #fff);
    }

@media (max-width: 991px) {
    .about-three__small__thumb {
        display: none;
    }
}

.about-three__element-one {
    position: absolute;
    right: 0;
    bottom: 30%;
    animation: rotated 5s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .about-three__element-one {
        display: none;
    }
}

.about-three__element-two {
    position: absolute;
    left: 0;
    bottom: 50%;
    animation: messageMove 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .about-three__element-two {
        display: none;
    }
}

/***** About Four******/
.about-four {
    position: relative;
}

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

@media (min-width: 1200px) {
    .about-four__left {
        margin-right: 30px;
    }
}

.about-four__thumb {
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 292.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,292.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1048 2703 l-3 -218 -522 -3 -523 -2 0 -1240 0 -1240 1030 0 1030 0 0 235 0 235 470 0 470 0 0 1225 0 1225 -975 0 -975 0 -2 -217z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 292.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,292.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1048 2703 l-3 -218 -522 -3 -523 -2 0 -1240 0 -1240 1030 0 1030 0 0 235 0 235 470 0 470 0 0 1225 0 1225 -975 0 -975 0 -2 -217z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    width: 100%;
    height: 100%;
}

    .about-four__thumb img {
        object-fit: cover;
        width: 100%;
    }

.about-four__thumb__funfact {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background-color: var(--rentol-primary3, #CEAC69);
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    padding: 20px 10px;
}

.about-four__thumb__funfact__item {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    color: var(--rentol-white, #fff);
}

    .about-four__thumb__funfact__item span {
        font-style: normal;
        font-weight: 800;
        font-size: 16px;
        line-height: 156%;
        color: var(--rentol-white, #fff);
        text-transform: capitalize;
    }

.about-four__thumb__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 156%;
    color: var(--rentol-white, #fff);
    margin: 0;
    padding-bottom: 0;
}

.about-four__thumb__funfact::after {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    top: -21px;
    left: 0;
    background-color: var(--rentol-primary3, #CEAC69);
}

.about-four__element-one {
    position: absolute;
    top: 0;
    left: 0;
}

.about-four__element-two {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-four__content .sec-title {
    padding-bottom: 22px;
}

    .about-four__content .sec-title .sec-title__title::after {
        left: 0;
        transform: translateX(0);
    }

.about-four__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    padding-bottom: 0;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.about-four__feature {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
    .about-four__feature {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

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

    .about-four__feature__item:hover .about-four__feature__icon {
        background-color: var(--rentol-black, #212121);
    }

.about-four__feature__icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-primary3, #CEAC69);
    color: var(--rentol-white, #fff);
    font-size: 35px;
    transition: all 0.4s ease-in-out;
}

.about-four__feature__content {
    padding-left: 80px;
}

.about-four__feature__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 10px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    text-shadow: 0 0 0.1px currentColor;
}

.about-four__feature__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
}

.about-four__call {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    line-height: 0;
    color: var(--rentol-base, #F2AF1E);
}

    .about-four__call i {
        font-size: 30px;
        line-height: normal;
        margin-right: 20px;
    }

    .about-four__call a {
        margin-left: 20px;
    }

        .about-four__call a:hover {
            color: var(--rentol-primary4, #BC1834);
        }

    .about-four__call:hover i {
        animation: wobble-horizontal-on-hover 1s linear;
    }

/***** Finest Tranport******/
.finest-tranport {
    position: relative;
    z-index: 1;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
}

.finest-tranport__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

    .finest-tranport__bg::after {
        content: "";
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--rentol-black4, #10181A);
        opacity: 0.8;
    }

.finest-tranport__content .sec-title__title {
    color: var(--rentol-white, #fff);
}

    .finest-tranport__content .sec-title__title::after {
        left: 0;
        transform: translateX(0);
    }

.finest-tranport__feature__item + .finest-tranport__feature__item {
    margin-top: 26px;
}

.finest-tranport__feature__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    margin-bottom: 20px;
    padding-bottom: 0;
}

.finest-tranport__feature__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.finest-tranport__video {
    position: relative;
    z-index: 1;
}

    .finest-tranport__video a {
        position: relative;
        z-index: 1;
        font-size: 33px;
        width: 115px;
        height: 115px;
        margin-right: 0;
        margin-left: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--rentol-white, #fff);
    }

@media (max-width: 991px) {
    .finest-tranport__video a {
        margin-left: auto;
        margin-right: auto;
    }
}

.finest-tranport__video a .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
    animation: ripple 3s infinite;
    border-radius: 50%;
}

    .finest-tranport__video a .ripple::before, .finest-tranport__video a .ripple::after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 0 rgba(var(--rentol-white-rgb, 255, 255, 255), 0.45);
        animation: ripple 3s infinite;
        border-radius: 50%;
    }

    .finest-tranport__video a .ripple::before {
        animation-delay: 0.9s;
        content: "";
        position: absolute;
    }

    .finest-tranport__video a .ripple::after {
        animation-delay: 0.6s;
        content: "";
        position: absolute;
    }

.finest-tranport__video a:hover {
    background-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
}

.finest-tranport__video__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

    .finest-tranport__video__image img {
        border-radius: 1000px 0 0 1000px;
    }

@media (min-width: 1200px) {
    .finest-tranport__video__image {
        display: block;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/***** Service Four ******/
.service-four {
    position: relative;
    z-index: 1;
}

.service-four__top {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

    .service-four__top .sec-title {
        padding-bottom: 0;
    }

        .service-four__top .sec-title .sec-title__title::after {
            left: 0;
            transform: translateX(0);
        }

.service-four__top__text {
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.service-four__top .rentol-btn {
    padding: 0;
    background-color: transparent;
    color: var(--rentol-primary3, #CEAC69);
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 138%;
}

    .service-four__top .rentol-btn i {
        margin-left: 10px;
    }

    .service-four__top .rentol-btn::after {
        background-color: transparent;
    }

    .service-four__top .rentol-btn:hover {
        color: var(--rentol-primary, #EB3E32);
    }

.service-four .container {
    position: relative;
}

.service-four__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-four__item__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid var(--rentol-border-color, #D2D2D2);
}

.service-four__item__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -1px;
    left: 0;
    background: var(--rentol-primary3, #CEAC69);
    z-index: -1;
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
}

    .service-four__item__bg::after {
        content: "";
        top: 0;
        background-image: url(../images/shapes/service-bg.png);
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.07;
        mix-blend-mode: multiply;
    }

.service-four__item__thumb {
    border: 10px solid transparent;
    transition: all 0.4s ease-in-out;
}

    .service-four__item__thumb img {
        object-fit: cover;
        width: 100%;
    }

.service-four__item__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .service-four__item__content {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 30px;
    }
}

.service-four__item__content__left {
    max-width: 470px;
    width: 100%;
}

.service-four__item__content__right .rentol-btn {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F2;
    padding: 0;
}

    .service-four__item__content__right .rentol-btn i {
        font-size: 25px;
        color: var(--rentol-primary3, #CEAC69);
    }

.service-four__item__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 92%;
    margin-bottom: 17px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--rentol-black, #212121);
    transition: all 0.4s ease-in-out;
}

.service-four__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 27px;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.service-four__item__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-four__item__bottom__thumb {
    display: flex;
    align-items: center;
}

    .service-four__item__bottom__thumb img {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        border: 4px solid var(--rentol-white, #fff);
        margin-left: -20px;
        transition: all 0.4s ease-in-out;
    }

        .service-four__item__bottom__thumb img:first-child {
            margin-left: 0;
        }

    .service-four__item__bottom__thumb:hover img {
        margin-left: -5px;
    }

        .service-four__item__bottom__thumb:hover img:first-child {
            margin-left: 0;
        }

.service-four__item__bottom__funfact__title {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: -4px;
    padding-bottom: 0;
    color: var(--rentol-black, #212121);
}

.service-four__item__bottom__funfact__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    color: var(--rentol-text, #7E7E7E);
    margin-bottom: -4px;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.service-four__item:hover .service-four__item__bg {
    transform: translateY(0%);
}

.service-four__item:hover .service-four__item__thumb {
    border-color: var(--rentol-white, #fff);
}

.service-four__item:hover .service-four__item__title,
.service-four__item:hover .service-four__item__text,
.service-four__item:hover .service-four__item__bottom__funfact__text {
    color: var(--rentol-black, #212121);
}

.service-four__item:hover .service-four__item__inner {
    border-bottom: 1px solid transparent;
}

/*--------------------------------------------------------------
# Collections
--------------------------------------------------------------*/
/***** Our Collection One*****/
.our-collection-one {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
    position: relative;
}

    body.boxed-wrapper .page-wrapper {
        max-width: 1530px;
        margin-left: auto;
        margin-right: auto;
        background-color: var(--rentol-white, #fff);
        box-shadow: 0px 0px 100px 0px rgba(var(--rentol-black3-rgb, 4, 12, 44), 0.08);
    }

    body.boxed-wrapper .main-slider-one__video {
        justify-content: center;
    }

@media (max-width: 1920px) and (min-width: 1600px) {
    body.boxed-wrapper .asked-question__carousel {
        left: 140px;
    }
}
/*# sourceMappingURL=rentol.css.map */
