.setting-menu {
    position: fixed;
    width: 100%;
    background-color: rgba(97, 206, 112, 0);
    top: 0;
    z-index: 12;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.setting-menu.fixed {
    background-color: #fff !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15) !important;
}

.banner-home {
    padding: 220px 0 230px 0;
    background-color: #F8F8F8;
    position: relative;
}

.swiper-slide--tile {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 2.7rem;
    letter-spacing: -0.66px;
}

.swiper-slide-description--short {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 4.4rem;
    letter-spacing: -1.56px;
    margin-bottom: 2rem;
    transition: all .3s ease;
}

.banner-main .swiper-slide-description--short strong {
    color: var(--color-highlight);
    font-weight: bold;
}

.banner-main .swiper-slide-description--short:hover strong {
    color: var(--color-main);
}

.swiper-slide--description {
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: -0.24px;
    color: var(--color-text);
}

.banner-main .slide-btn {
    margin-top: 4rem;
}

.slide-btn .swiper-slide--link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    width: 100%;
    font-weight: bold;
    line-height: 1.9rem;
}

.slide-btn .swiper-slide--link.btn-1 {
    background: var(--color-main);
    color: #fff;
    text-transform: capitalize;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    box-shadow: 0px 10px 15px 0px rgba(158, 158, 158, 0.07);
    padding: 17px 25px;
}

.banner-main .slide-btn .swiper-slide--link.btn-1:hover {
    background: #fff;
    color: var(--color-highlight);
}

.slide-btn .swiper-slide--link.btn-2 {
    font-size: 1.6rem;
    color: #fff;
    border: none;
    margin-right: 1rem;
    text-transform: capitalize;
    box-shadow: 0 1rem 1.5rem 0 rgba(255, 83, 48, 0.35);
    background-image: linear-gradient(to right, #ff4c30, #ff6830, #fff, #f3806f);
    background-size: 300% 100%;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    padding: 18px 26px;
}

.slide-btn .swiper-slide--link.btn-2:hover {
    background-image: linear-gradient(to right, #f0561d, #fff, #ff6830, #f0561d);
    background-position: 100% 0;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-action-header {
    font-weight: 500;
    text-transform: capitalize;
    line-height: 2rem;
    border-style: none;
    border-radius: 3px;
    
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
    display: inline-block;
    color: var(--color-main);
}
.btn-action-header.two, .block-tab .nav-item .nav-link.active {
    color: #FFFFFF;
    background-color: #FF4C30;
    box-shadow: 0px 1rem 1.5rem 0px rgba(255, 83, 48, 0.35);
    padding: 1.5rem 2rem;
}

.btn-action-header {
    height: auto;
    width: 100%;
}

.account-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner-image {
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;
}

.x_car_banner {
    text-align: right;
    width: var(--container-widget-width, 900px);
    max-width: 900px;
    --container-widget-width: 900px;
    --container-widget-flex-grow: 0;
    top: -50px;
    position: absolute;
    z-index: 1;
}

.banner-car {
    position: absolute;
    right: -40%;
    bottom: -85%;
    z-index: 0;
    margin: 0;
}

.tab-car-home {
    background-position: 0px 300px;
    background-repeat: no-repeat;
    background-size: auto;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 3rem 0px 12rem 0px;
}

.block-tab .nav-item .nav-link {
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(158, 158, 158, .13);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2rem;
    width: 100%;
    min-height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-content {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.tab-content {
    padding-top: 5rem;
}

.tab-content .price-amount {
    font-size: 5rem;
    letter-spacing: -2px;
    color: var(--color-main);
}

.tab-content .price {
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}

@media only screen and (min-width: 1900px) {
    .x_car_banner {
        right: -60% !important;
    }
}

/* Initially hide elements */
.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Fade-in animations with keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

.fadeInUp {
    animation: fadeInUp 1.25s ease forwards;
}

.fadeInLeft {
    animation: fadeInLeft 1.25s ease forwards;
}

.fadeInRight {
    animation: fadeInRight 1.25s ease forwards;
}

.animated.animated-slow {
    animation-duration: 2s;
}

.rent-car {
    margin-top: -60px;
}

.section-form-rental {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 3.5rem;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.rent-car .form-control {
    border-color: #ccd7e6;
    color: #ababab;
    border-radius: 3px;
}

.rent-car .form-control::placeholder {
    color: #ababab;
}

.form-rental .form-group label i {
    color: var(--color-highlight);
}

.btn-rent .btn-submit {
    width: 100%;
    padding: 1.5rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2.2rem !important;
    font-size: 1.8rem;
    height: auto;
    background: linear-gradient(-36deg, #ff4c30 0, #ff6830 100%);
    box-shadow: 0 10px 15px rgba(255, 83, 48, .35);
    border-radius: 3px;
    text-transform: capitalize;
    font-weight: 500;
}

.title-rental {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.title-rental-sale {
    position: relative;
    max-width: 100%;
}

.title-rental-sale .title-sale span {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.9rem;
    transition: all .3s ease;
}

.title-rental-sale .title-sale:hover span {
    color: var(--color-main);
}

.content-form-rental .row {
    margin: 0 -5px;
}

.content-form-rental .row > [class^="col-"],
.content-form-rental .row > [class*=" col-"] {
    padding: 0 5px;
}

.content-form-rental .row > [class^="col-"] > .row,
.content-form-rental .row > [class*=" col-"] > .row {
    margin: 0 -5px;
}

.content-form-rental .row > [class^="col-"] > .row > [class^="col-"],
.content-form-rental .row > [class*=" col-"] > .row > [class*=" col-"] {
    padding: 0 5px;
}

.rented-car {
    padding: 12rem 0 5rem;
}

.descrip-section {
    font-size: 4.4rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    line-height: 6rem;
    margin-bottom: 5rem;
    letter-spacing: -1.3px
}

.img-rent-car {
    display: inline-block;
    margin-bottom: 3px;
}

.image-rent-car {
    position: relative;
    z-index: 2;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.image-rent-car:hover .img-rent-car {
    animation: waveEffect .6s ease-in-out 1;
}

.content-rent-car .swiper-slide--tile {
    font-size: 2.6rem;
    font-weight: bold;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

.content-rent-car .swiper-slide--description {
    font-size: 1.6rem;
    font-family: 'Poppins',sans-serif;
}

.item-rent-car {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.decided {
    transition: all .3s;
    position: absolute;
    right: -15%;
    top: 30%;
}

.rent-car-steps > .row > div:last-child .decided {
    display: none;
}

.content-tab-car {
    margin-bottom: 5rem;
}

.tab-content .inner-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info {
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 2rem;
}

.about-block {
    padding: 10rem 0 9rem 0;
}

.content_about .descrip-section {
    line-height: 5rem;
}

.number_tk, .item-choose, .coppyright-payment, .is-mobile .setting-menu > .container > .row > div  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.number_tk span {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.number_tk .title_tk {
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 500;
}

.lg-backdrop {
    background: rgb(0 0 0 / 60%);
}

.video-about {
    position: absolute;
    z-index: 1;
    right: -30px;
    bottom: 15px;
}

.img-about {
    padding-top: 100%;
    position: relative;
    z-index: 0;
}

.img-about img {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.box {
    width: 118px;
    height: 118px;
    color: #ffffff;
    border-radius: 3px;
    background-color: #FF4C30;
    display: flex;
    box-shadow: 0px 10px 16px 0px rgba(255, 83, 48, 0.35);
    justify-content: center;
    align-items: center;
}

.box:hover {
    color: #ffffff;
    background-color: #D62D13;
}

.box a i {
    font-size: 4rem;
    color: white;
}

.html-section-3 {
    padding: 10rem 0 8.5rem 0;
    background-color: #2D2D2D;
    transition: all .3s ease;
    position: relative;
    z-index: 0;
}

.bg-html-3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.html-section-3 section {
    position: relative;
    z-index: 2;
}

.html-section-3 .slide-btn, .choose-block .slide-btn {
    width: max-content;
}

.choose-block {
    padding: 10rem 0 7rem 0;
    background-position: -170px 236px;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-item, .faq-home .title-block, .title-rental-sale {
    margin-bottom: 2rem;
}

.choose-block .slide-btn .swiper-slide--link.btn-1 {
    box-shadow: 0px 10px 15px 0px rgba(255, 83, 48, 0.35);
    background-color: var(--color-highlight);
    border: var(--color-highlight);
}

.choose-block .slide-btn .swiper-slide--link.btn-1:hover {
    cursor: pointer;
}

.title_choose {
    font-size: 2.4rem;
    line-height: 3.6rem;
}

.text-choose p, .working-hours p, .form-footer p {
    font-size: 16px;
    line-height: 2.6rem;
    color: var(--color-text);
}

.img_choose {
    transform: rotate(0deg);
}

.swiper-slide-description {
    font-size: 16px;
    color: var(--color-text);
}

.item-choose:hover .img_choose img {
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.comment-block {
    background-color: #f9f9f9;
    padding: 7rem 0 17rem 0;
}

.comment-block .swiper-slide {
    padding: 5rem;
    background: #fff;
}

.content-comment .title_choose {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-bottom: 2rem;
}

.image-comment {
    display: flex;
    align-items: center;
}

.note-comment {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.note-comment i {
    font-size: 5.4rem;
    color: var(--color-highlight);
}

.comment-block .swiper-pagination-fraction,
.comment-block .swiper-pagination-custom,
.comment-block .swiper-horizontal >.swiper-pagination-bullets,
.comment-block .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
}

.comment-block .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.comment-block .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 12px 0 0;
    width: 5px;
    height: 5px;
    opacity: 1;
    border-radius: 100px 100px 100px 100px;
    background-color: #BBB6CB;
}

.comment-block .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active,
.comment-block .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--color-highlight);
    height: 14px;
    width: 14px;
}

.faq-home {
    background-position: 0px 70%;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 7rem 0px 10rem 0px;
}

.faq-home > .container {
    max-width: 800px;
    margin: 0 auto;
}

.services-faq {
    background: #fff;
    transition: all .3s ease;
}

.card-header a.collapsed {
    font-size: 1.8rem;
    width: 100%;
    font-weight: 500;
    line-height: 2.7rem;
    color: var(--color-main);
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05);
    padding: 18px 45px 18px 45px;
}

.card-header a {
    margin-top: -8px;
    position: relative;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    color: #ffffff;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0px 10px 15px 0px rgba(255, 83, 48, 0.35);
    background-color: #FF4C30;
    padding: 18px 45px 18px 45px;
}

.icon-collapse {
    position: absolute;
    right: 0;
    margin-right: 2rem;
}

.card-body {
    color: #817F91;
    padding: 40px 45px 35px 45px;
    font-size: 16px;
    background: #fff;
}

.card-header a.collapsed .icon-collapse i::before {
    content: "\f078";
}

.download-block {
    padding: 10rem 0;
    background-color: #F9F9F9;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-block {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 11rem 0px 9rem 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
}

.content-contact {
    padding-right: 12rem;
}

.title-input {
    font-size: 16px;
    line-height: 1.9rem;
    font-weight: 600;
}

.title-input span {
    color: #f00;
    padding-left: 3px;
}

.contact-block .form-control {
    font-size: 1.6rem;
    color: #000;
    background: #F2F2F2;
    border: 1px solid #eaeaea;
    padding: 2rem 3rem;
    
}

.contact-block input.form-control {
    height: calc(2.6em + 1.8rem + 2px);
}

.contact-block .form-control::placeholder {
    color: var(--color-text);
}

.contact-block .btn-rent .btn-submit {
    width: max-content;
    padding: 2rem 2.5rem !important;
}

.descript-website-section {
    color: var(--color-text);
    font-size: 16px;
}

footer {
    padding: 7rem 0 0;
}

.footer-main {
    padding: 0 0 6rem;
}

.enoto03-info-website address p:hover {
    cursor: pointer;
}

.working-hours p span {
    color: var(--color-main);
    padding-left: 5px;
}

.form-footer .btn-rent .btn-submit {
    font-size: 1.6rem;
    background-color: var(--color-highlight);
    padding: 1rem 0 !important;
}

.form-footer .form-control {
    background: #ECECEC;
    padding: 1rem 2rem;
    font-size: 14px;
    color: #495057;
}

/* Back to Top Button */
#backToTop {
    width: 45px;
    height: 0; /* Start at 0 height */
    opacity: 0;
    line-height: 45px;
    background-color: #FF4C30;
    position: fixed;
    z-index: 999;
    right: 64px;
    bottom: 44px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, .5);
    transform: translateY(100%);
    overflow: hidden;
    transition: height 1.4s ease, opacity 1.4s ease, transform 1.4s ease;
}

#backToTop.show {
    height: 45px; /* Expand height */
    transform: translateY(0);
    opacity: 1;
}

.btn-menu-mobile {
    color: var(--color-highlight);
}

.btn-menu-mobile:hover {
    color: rgba(0, 0, 0, 0.5);
}

.content-contact address p, .enoto03-info-website address p, .working-hours p {
    font-size: 16px;
}

@keyframes waveEffect {
    16% {
        -webkit-transform: skew(-14deg);
        transform: skew(-14deg);
    }
    
    33% {
        -webkit-transform: skew(12deg);
        transform: skew(12deg);
    }
    
    49% {
        -webkit-transform: skew(-8deg);
        transform: skew(-8deg);
    }
    
    66% {
        -webkit-transform: skew(6deg);
        transform: skew(6deg);
    }
    
    83% {
        -webkit-transform: skew(-4deg);
        transform: skew(-4deg);
    }
}

@media only screen and (max-width: 1650px) {
    .banner-home {
        overflow: hidden;
    }
}

@media (max-width: 1200px) {
    .banner-car {
        top: -40%;
        bottom: auto;
    }
}

@media (min-width: 1024px) {
    .choose-box {
        padding-left: 8rem;
    }
    
    .content_about {
        margin: 1.5rem 9rem 0 7rem;
    }
}

@media (max-width: 1024px) {
    .banner-home {
        padding: 160px 0 150px 0;
    }
    
    .video-about {
        right: 0;
        bottom: 300px;
    }
    
    .x_car_banner {
        width: var(--container-widget-width, 450px);
        max-width: 450px;
        --container-widget-width: 450px;
        --container-widget-flex-grow: 0;
        top: 30px;
    }
    
    .decided {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .banner-car {
        display: none;
    }
}

@media (min-width: 768px) {
    .btn-rent {
        width: 100%;
    }
    
    .img_choose {
        width: 50%;
    }

    
    .title-sale {
        background: #817f91;
        padding: 6px 15px;
        margin: -8px 0 0 0;
        border-radius: 5px 0 0 5px;
        color: #fff;
    }
    
    .col-md-custome {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }
    
    .title-rental-sale::after {
        content: "";
        height: 0;
        width: 0;
        border: 5px solid transparent;
        border-top-color: #3e3b5a;
        border-left-color: #3e3b5a;
        position: absolute;
        right: 0;
    }
    
    .title-rental-sale {
        top: 8px;
        right: 5px;
        position: absolute;
        margin: 0;
    }
    
    .content-form-rental > form > .row > .col-sm-4 {
        margin-bottom: 1.25rem;
    }
    
    .header-home > .container > .row > div:first-child {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .header-home > .container > .row > div:last-child {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .header-home > .container > .row > div:nth-child(2) {
        flex: 0 0 55%;
        max-width: 55%;
    }
    
    .swiper-slide-description--short {
        font-size: 5.2rem;
        line-height: 6.4rem;
    }
}


@media (max-width: 991px) {

    .header-home > .container > .row > div:first-child {
        flex: 0 0 80%;
        max-width: 80%;
    }
    
    .header-home > .container > .row > div:last-child {
        display: none;
    }
    .header-home > .container > .row > div:nth-child(2) {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .faq-home {
        background-position: -800px 0;
    }
}

@media (max-width: 767px) {
    .tab-car-home {
        background-position: -800px 0;
        padding: 3rem 0 0rem 0;
    }
    
    .video-about {
        display: none;
    }
    
    .choose-block .content-choose, .content-contact address {
        padding-bottom: 4rem;
    }
    
    .html-section-3 .title-block {
        text-align: center;
    }
    
    .title-block .descrip-section {
        font-size: 2.8rem;
    }
    
    .footer-main > .container > .row > div, .is-mobile .footer-main > .container >.row > div > div {
        margin-bottom: 2rem;
    }
    
    #backToTop {
        bottom: 66px;
        right: 15px;
    }
    
    .comment-block, .contact-block {
        padding: 6rem 0;
    }
}

@media (max-width: 500px) {
    .download-block .content-choose {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .download-block .content-choose-icon {
        display: none;
    }
    
    footer {
        padding-top: 5rem;
    }
    
    .section-form-rental {
        padding: 1.5rem;
    }
}

.is-mobile .tab-content .swiper-slide--link {
    color: var(--white);
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
}