:root {
    --aud-color-blue:#00FFFF;
    --aud-color-orange:#FE8302;
    --aud-bg-dark:#081016;
    --aud-bg-secondary-dark:#050B11;
}

@font-face {
    font-family: 'Optima-B';
    src: url('../font/optima_b-webfont.woff');
}

@font-face {
    font-family: 'Optima-M';
    src: url('../font/optima_medium-webfont.woff');
}

@font-face {
    font-family: 'Optima';
    src: url('../font/optima-webfont.woff');
}

.is-expanded-menu .sticky-header #header-wrap {
    /* padding-bottom: 20px; */
    background-color: var(--aud-bg-dark);
}

/* .is-expanded-menu .header-row {
    padding-top: 20px;
} */

.menu-link {
    font-family: "Lato", sans-serif;
    padding: 20px 10px;
}

.menu-item.current > .menu-link {
    color: var(--aud-color-orange);
}

.menu-item.current > .menu-link::after {
    padding-bottom: 10px;
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%; /* Mulai dari tengah */
    transform: translateX(-50%); /* Pusatkan garis */
    width: 80%; /* Panjang garis */
    height: 5px; /* Ketebalan garis */
  }

.menu-item:hover > .menu-link {
    /* border-bottom: 1px solid var(--aud-color-orange); */
    color: var(--aud-color-orange);
}

/* .menu-link::after {
    content: '';
    position: absolute;
    left: 50%; 
    transform: translateX(-50%); 
    bottom: 10px;
    height: 5px; 
    width: 0;
    border-bottom: 3px solid var(--aud-color-orange);
    transition: width 0.3s ease;
  } */

  .menu-link::after {
    content: '';
    position: absolute;
    left: 50%; /* Posisi awal di tengah */
    transform: translateX(-50%); /* Geser agar garis tetap di tengah */
    top: 50px;
    background-image: url(../images/hover-menu.png);
   background-repeat: no-repeat;
    transition: width 0.3s ease;
  }

  .menu-link:hover::after {
    width: 60%;
  }




.aud-parallax-banner {
    position: absolute !important;
    z-index: -1;
    left: 0;
    top: -55px;
    max-width: none !important;
    width: var(--cnvs-parallax-width) !important;
    height: var(--cnvs-parallax-height) !important;
       object-fit: contain;
    transform: translate3d(0px, var(--cnvs-parallax-value), 0px);
    transition: transform 0.1s linear;
    will-change: transform;
}


.aud-parallax-banner-about {
    position: absolute !important;
    z-index: -1;
    left: 0;
    top: -70px;
    max-width: none !important;
    width: var(--cnvs-parallax-width) !important;
    height: var(--cnvs-parallax-height) !important;
       object-fit: contain;
    transform: translate3d(0px, var(--cnvs-parallax-value), 0px);
    transition: transform 0.1s linear;
    will-change: transform;
}



/*---menu mobile---*/

body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
    display:none;
    position: relative;
    background-color: #000;
}

@media only screen and (max-width: 767px) {
    body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
        display:block;
        position: fixed;
        background-color: #000;
    }
}


body {
    background:#000;
}

.text-caps {
    text-transform: uppercase;
}

#header-wrap #logo img {
    max-width: 200px;
    height: auto;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    padding-bottom: 25px;
}

.aud-logo-footer {
    max-width: 200px;
    height: auto;
    padding-bottom: 25px;
}


.color-btn-primary {
    background-color: var(--aud-color-orange);
}

.section {
    margin:0;
    background: transparent;
}

.btn-aud {
font-family: "Lato", sans-serif;
border-radius: 2px;
font-weight: 400;
font-size: 16px;
}

.display-5 {
    text-transform: uppercase;
    font-size: 40px;
}

.display-3 {
    font-size: 55px;
}

p {
    font-size: 15px;
}

@media (min-width: 1800px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1600px;
    }
    
}

.aud-slider {
    background: url(../images/aud-bg-slide.jpg);
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center center; 
    height: 100%; 
    width: 100%; 
}

.aud-slider {
    height: 800px;
}

.aud-bg-1 {
background-color: var(--aud-bg-dark);
}

.aud-bg-2 {
    background-color: var(--aud-bg-secondary-dark);
}

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

.sec-why {
    background-image: url(../images/aud-bg-why.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.icon-top-block {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.sec-skyline {
    background-image: url(../images/aud-bg-skyline.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card-slide {
    padding: 50px;
}

.aud-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem; /* Sama seperti elemen utama */
    padding: 2px; /* Ketebalan border */
    background: linear-gradient(40deg, rgba(0, 0, 0, 0.273), rgba(255, 255, 255, 0.185)); /* Warna gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1; /* Letakkan di belakang konten elemen utama */
}

.aud-card-1 {
    background: rgba(211, 211, 211, 0.086);
    background: linear-gradient(172deg, rgba(0, 255, 255, 0.062) 0%, rgba(7, 7, 9, 0.33) 100%);
    box-shadow: 0 8px 32px 0 #15161f5e;
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 40px );
    /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
    border-radius: 2rem;
    z-index: 10;
    color: whitesmoke;
}

.aud-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem; /* Sama seperti elemen utama */
    padding: 2px; /* Ketebalan border */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.273), rgba(255, 255, 255, 0.185)); /* Warna gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1; /* Letakkan di belakang konten elemen utama */
}

.aud-card-2 {
    background: rgba(49, 48, 54, 0.147);
    background: linear-gradient(172deg, rgba(0, 255, 255, 0.09) 0%, rgba(7,7,9,0.499124649859944) 100%);
    box-shadow: 0 8px 32px 0 #15161f5e;
    backdrop-filter: blur( 5px );
    -webkit-backdrop-filter: blur( 40px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 2rem;
    padding: 20px 30px;
    z-index: 10;
    color: whitesmoke;
}


.pt-2 {
    padding: 10px 0;
}

.card-pd-area {
    position: relative;
    z-index: 2;
    padding: 50px;
}

.h-500 {
    height: 550px;
}



.f-lato, .top-tile {
    font-family: "Lato", sans-serif;
}

p {
font-family: "Lato", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
}

.span-title {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 20px;
}

h1 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;;
}

h4,ul li, #copyrights {
    font-family: "Lato", sans-serif;
}


.color-orange {
    color:var(--aud-color-orange);
}

.color-blue {
    color:var(--aud-color-blue) !important;
}

.exo-font {
    /* font-family: "Exo", sans-serif; */
    font-family: 'Optima';
}

.aud-btn {
    align-content: center;
    align-items: center;
    background-color: var(--aud-color-orange);
    font-size: 16px;
    border-radius: 2px;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    height: 55px;
    justify-content: flex-start;
    overflow: visible;
    padding: 10px 35px;
    position: relative;
    width: min-content;
}

.aud-btn-booking {
    font-family: "Lato", sans-serif;
    border-radius:2px;
    border: 0;
    padding: 5px 35px;
    background-color: var(--aud-color-orange);
}

/*----slide hero---*/

.img-side-slide {
position: absolute;
top: 50%;
right: -100px;
transform: translateY(-50%);
z-index: 1;
max-width: 1000px;
}

.position-card-slide {
    position: relative;
    z-index: 20;
}

@media only screen and (max-width: 767px) {
    .aud-btn-booking {
        border-radius:2px;
        border: 0;
        font-size: 16px;
        padding: 5px 25px;
        background-color: var(--aud-color-orange);
    }
}

.aud-btn-area .button {
    margin:0;
}

.img-arrow {
    padding-left: 2px;
    max-width: 30px;
}

.img-absolute-right {
    position: absolute;
    right:-500px;
    z-index: 1;
}

.img-absolute-center {
    text-align: center;
    position: relative;
    width: 100%;
    top: -300px;
    z-index: 1;

}
.aud-higlight-text  h3 {
color: var(--aud-color-orange);
font-size: 25px;
}

.aud-higlight-text {
    color: var(--aud-color-orange); }

.aud-rounded-20 {
    border-radius: 20px;
}

.p-lr-50 {
    padding:0 20px;
}

.p-lr-100 {
    padding: 0 100px;
}

.pd-25 {
    padding: 25px;
}

.pd-50 {
    padding: 50px;
}

.pd-70 {
    padding: 70px;
}


.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.icon-small {
    padding-right: 10px;
}

.img-right {
    padding: 0 50px;
    display: flex;
    justify-content: flex-end;
}

.image-container {
    position: relative;
    width: 100%; 
    height: 400px; 
    overflow: hidden;
    border-radius: 20px; 
    background-color: #f0f0f0; 
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover; 
    object-position: center; 
    border-radius: inherit; 
}

.card-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem; /* Sama seperti elemen utama */
    padding: 2px; /* Ketebalan border */
    background: linear-gradient(40deg, rgba(0, 0, 0, 0.273), rgba(255, 255, 255, 0.185)); /* Warna gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1; /* Letakkan di belakang konten elemen utama */
}

.card-blur {
    background: rgb(111, 110, 116);
    background: linear-gradient(155deg, rgba(0,255,255,0.09016106442577032) 0%, rgba(7,7,9,1) 100%);
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 40px );
    /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
    border-radius: 2rem;
    padding: 20px;
    z-index: 10;
    color: whitesmoke;
}


.card-blur-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem; /* Sama seperti elemen utama */
    padding: 2px; /* Ketebalan border */
    background: linear-gradient(180deg, rgba(234, 234, 234, 0.274), rgba(147, 147, 147, 0.214)); /* Warna gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1; /* Letakkan di belakang konten elemen utama */
}

.card-blur-blue {
    /* background: rgb(111, 110, 116);
    background: linear-gradient(160deg, rgb(0, 255, 255), rgb(7, 7, 9));  */
    background: rgba(49, 48, 54, 0.244);
    background: linear-gradient(156deg, rgba(0, 255, 255, 0.141) 0%, rgba(7,7,9,0.2049194677871149) 100%);
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 40px );
    /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
    border-radius: 2rem;
    padding: 20px;
    z-index: 10;
    color: whitesmoke;
}

.card-blur-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem; /* Sama seperti elemen utama */
    padding: 2px; /* Ketebalan border */
    background: linear-gradient(40deg, rgba(0, 0, 0, 0.273), rgba(255, 255, 255, 0.185)); /* Warna gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1; /* Letakkan di belakang konten elemen utama */
}

.card-blur-white {
    background: rgba(234, 234, 234, 0.795);
    background: linear-gradient(155deg, rgba(254, 254, 254, 0.09) 0%, rgba(219, 219, 219, 0.152) 100%);
    box-shadow: 0 8px 32px 0 #15161f5e;
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 40px );
    /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
    border-radius: 2rem;
    padding: 20px;
    z-index: 10;
    color: whitesmoke;
}

.why-card-space {
    padding: 50px;
}

.easy-icon {
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    place-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    flex: 0 0 auto;
    flex-flow: column;
    padding: 30px;
    width: 130px;
    height: 130px;

}

.space-card {
    padding: 0 20px;
}

.position-relative {
    position: relative;
}

.easy-icon-absolute {
    position: absolute;
    top:;
    left: 50%;
  transform: translate(-50%, -50%);
}

.easy-card {
    padding: 20px;
    height: 265px;
}

.aud-line-color-2 {
    margin: auto;
    border: 1px solid var(--aud-color-orange);
    width:150px;
    max-width: 100%;
}

.widget > h4 {
    margin-bottom: 10px;
    font-weight: 300;
    text-transform: capitalize;
}

.widget_links:not(.widget-li-noicon) li::before {
    content:none;
    padding:0;
}

#copyrights {
    padding: 0;
}

#footer .footer-widgets-wrap {
    padding: 50px 0;
}

.btn-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border: 1px solid #fff;
    color: var(--aud-color-orange);
    font-size: 25px;
}

.btn-arrow:hover {
    background-color: #fff;
    color: var(--aud-color-orange);
}

/*---logo---*/

.aud-logos {
    background-color: #081016;
}

  
.text-section {
    max-width: 40%;
}
.text-section h2 {
    font-size: 24px;
    color: #fff;
}
.text-section h1 {
    font-size: 36px;
    color: #00e0e0;
}
.text-section p {
    font-size: 16px;
    color: #aaa;
}
.navigation {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.navigation i {
    font-size: 24px;
    color: #00e0e0;
    cursor: pointer;
}
.cards-section {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    position: relative;
}


.card-testimonial {
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    place-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    /* background-color: rgba(49, 48, 54, 0.658); */
    background: rgba(49, 48, 54, 0.147);
    background: linear-gradient(172deg, rgba(0, 255, 255, 0.09) 0%, rgba(7,7,9,0.499124649859944) 100%);
    border-radius: 40px;
    border-radius: 10px;
    padding: 30px;
    width: 550px;
    position: relative;
    flex-shrink: 0;
    height: 300px;
    transition: transform 0.5s ease;
}
.card-testimonial .stars {
    color: #ff9900;
}
.card-testimonial p {
    font-size: 16px;
    color: #fff;
    margin: 20px 0;
}
.card-testimonial .author {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}
.card-testimonial .company {
    font-size: 12px;
    color: var(--aud-color-orange);
}
.card-testimonial .quote-icon {
    font-size: 24px;
    color: #ff9900;
}

.bottom-area {

    width: 100%;
}


.card-diver {
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    place-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    /* background-color: rgba(49, 48, 54, 0.658); */
    background: rgba(49, 48, 54, 0.147);
    background: linear-gradient(172deg, rgba(0, 255, 255, 0.09) 0%, rgba(7,7,9,0.499124649859944) 100%);
    border-radius: 40px;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    flex-shrink: 0;
    height: 400px;
    transition: transform 0.5s ease;
}

.driver-quote {
    position: absolute;
    top:50px;
    left: 25px;
    max-width: 50px;
}

.content-driver {
    padding-top: 50px;
}

.flex-control-nav {
    position: static;
    padding-top: 50px;
}

.testimonial .flex-control-nav li a {
    background-color: #fff;
    opacity: 1;
}

.testimonial .flex-control-nav li a.flex-active {
    background-color: var(--aud-color-orange);
}


.aud-testi-sec {
    padding: 150px 0;
}

/*--effect glass---*/



.effect-blur-who  {
    background-image: url('../images/img-blur-who.jpg');
    background-repeat: no-repeat;
	background-position: top top;
	background-size: cover;
	overflow-x: hidden;
	-webkit-backface-visibility: hidden;
}


.effect-testimonial {
    background-image: url('../images/img-blur-testimonial.jpg');
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow-x: hidden;
	-webkit-backface-visibility: hidden;
}

.effect-easy {
    background-image: url('../images/img-blur-easy.jpg');
    background-repeat: no-repeat;
    background-position: left center;
	background-size: cover;
}


.effect-about1 {
    background-image: url('../images/img-blur-about1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
	background-size: cover;
}


.effect-blur-about {
    background-image: url('../images/bg-blur-about.jpg');
    background-repeat: no-repeat;
    background-position:top right;
	background-size: contain;
}


.effect-blur-services {
    background-image: url('../images/img-blur-service.jpg');
    background-repeat: no-repeat;
    background-position: right;
	background-size: contain;
}


.effect-blur-pack {
    background-image: url('../images/bg-blur-pack.jpg');
    background-repeat: no-repeat;
    background-position: center center;
	background-size: cover;
}


.effect-license {
    background-image: url('../images/bg-blur-license.jpg');
    background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
}


/* .effect-blur-contact {
    background-image: url('../images/bg-blur-license.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
} */

.effect-blur-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-blur-license.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    transform: scaleX(-1); 
    z-index: -1; 
}


.effect-blur-faq {
    background-image: url('../images/bg-blur-faq.jpg');
    background-repeat: no-repeat;
    background-position:bottom right;
	background-size: contain;
}

/* .effect-blur-faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    right:0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-blur-faq.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    z-index: -1; 
} */


.absolute-right {
    position: absolute;
    right:-200px;
}

/*---about---*/

.aud-img-area {
    position: absolute;
    top: 50%; /* Offset di bawah kartu */
    transform: translateY(-40%); /* Menyeimbangkan posisi */
    z-index: 1; /* Di belakang kartu */
    width: 100%;
    display: flex;
    justify-content: center;
}

.offset-image {
    max-width: 80%; /* Atur ukuran gambar */
    transform: translateY(20px); /* Geser gambar ke bawah untuk efek offset */
}

.aud-parallax-bg {
    position: absolute;
    top:0;
 
}

.aud-about-banner {
    text-align: center;
}

.aud-about-banner img {
    max-width: 1300px;
    border-radius: 20px;
}


.page-title {
    height: 600px;
}


.stars-driver i {
    color: var(--aud-color-orange);
    font-size: 30px;
}

.stars-driver {
    padding-bottom: 30px;
}

/*---license--*/

.aud-license-area {
    padding: 50px 80px;
}

/*----services page---*/

.price-pack span {
    padding-top: 20px;
    color: #fff !important;
    font-weight: 300;
    font-size: 18px;
}

.title-pack{
    height: 110px;
}

.card-pack {
    text-align: left;
}

.aud-pack-icon {
z-index: 2;
position: absolute;
top:-10px;
left: -3px;
background-color: #000;
width: 70px;
height: 70px;
border-radius: 200px;
}

.list-pack li {
    font-weight: 300;
}

.list-pack {
margin-bottom: 20px !important;
min-height: 200px;
}

.carousel-pack {
    padding: 10px;
}
.carousel-container {
    position: relative;
    width: 80%;
    margin: auto;
  }


  
  .owl-carousel .item {
    color: #fff;
    text-align: center;
    margin: 10px;
  }
  
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .carousel-nav button {
    background: transparent;
    color: var(--aud-color-orange);
    border: none;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* .carousel-nav button {
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius:100%
    displ
  } */

  
  .carousel-nav button:hover {
    background: #fff;
  }

.card-services {
    min-height: 600px;
    padding: 25px;
}

.line {
    margin: 10px 0;
}

.card-fleets {
    position: relative;
    text-align: left;
    min-height: 500px;
}

.content-fleets {
    position: relative;
    z-index: 2;
}

.card-fleets .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Cover the entire card */
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    z-index: 1; /* Ensure the overlay is on top of the image */
}

.h-list-area {
    max-height: 200px; /* Maksimal tinggi 200px */
    overflow-y: auto; /* Tambahkan scroll jika konten melebihi tinggi */
    padding: 10px; /* Padding opsional untuk estetika */
    border-bottom: 1px solid #cccccc7b; /* Opsional: Tambahkan border */
}

/* Opsional: Tambahkan gaya scrollbar */
.h-list-area::-webkit-scrollbar {
    width: 8px;
}
.h-list-area::-webkit-scrollbar-thumb {
    background-color: #9a9a9a; /* Warna scrollbar */
    border-radius: 5px;
}
.h-list-area::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.check-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.check-list li {
    font-weight: 300;
    position: relative;
    padding-left: 35px; /* Space for the icon */
    margin-bottom: 10px; /* Add spacing between items */
}

.check-list li::before {
    content: "\f00c"; /* Unicode for Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Use solid style */
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius:100px;
    background-color: var(--aud-color-orange);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px; /* Icon size */
}

.aud-car {
   position: relative;
   top:40px;
   z-index: 99;
}

.title-car {
    min-height: 100px;
}

.line-services {
    padding: 20px 0;
    margin: auto;
    max-width: 200px;
}

.f-25 {
    font-size: 25px;
}

.f-20 {
    font-size: 20px;
}

/*--contact---*/

.aud-icon-circle {
    margin-right: 25px;
    border-radius: 100px;
}

.social-icon i {
    background-color: var(--aud-color-orange);
}

.maps-area iframe {
   margin: 30px 0;
}

.item-contact p {
    padding-bottom: 20px;
    line-height: 35px;
    font-size: 20px;
}

.item-contact img {
    padding: 10px;
}

.contact-card {
    padding: 100px;
}

.form-control.border-form-control {
    border-bottom: 1px solid;
}

.button-white {
    color: var(--aud-color-orange);
}


.toggle {
    --cnvs-toggle-base-color: var(--cnvs-heading-color);
    --cnvs-toggle-font-size: 1.125rem;
    --cnvs-toggle-title-color: var(--cnvs-heading-color);
    --cnvs-toggle-content-padding: 1.5rem 1.75rem;
    margin: 0 0 30px 0;
}

.toggle-header {
	border-radius: var(--cnvs-card-rounded);
	font-weight: 600;
}

.toggle-content {
	padding: 1.5rem 0;
	padding-bottom: .75rem;
	opacity: .8;
	margin-bottom: 0;
}

.toggle-closed {
	transition: .2s;
	opacity: 1;
}

.toggle-icon i {
    color: #fff;
}

.toggle-active .toggle-closed {
	display: block;
	transform: rotate(180deg);
	opacity: 1;
}

.border-contrast-300 {
    border-color: var(--aud-color-orange) !important;
}

.p-flex {
    display: flex;
    align-items: stretch; /* Menyamakan tinggi elemen anak */
}

.item-flex {
    display: flex;
    flex-direction: column; /* Untuk memastikan konten tetap teratur di dalam */
}

.slider-wrap .slide {
    min-height: 450px;
}


/*---footer---*/

.widget_links li a {
    padding: 0;
}

.line-100 {
    border-top: 1px solid #fe830240;
}

#footer {
    background-color: var(--aud-bg-dark);
}

#copyrights {
    background-color: var(--aud-bg-dark);
}

.dark #copyrights, #copyrights.dark {
    background-color: transparent;
}

.aud-contact-wrap  {
    position: relative;
    padding: 0;
}

.aud-contact-space {
    padding: 150px 0 100px 0;
}

/*---WA---*/

.float-wa {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    line-height:80px;
  }

.block-small {
    padding-right: 20px;
  }


  .aud-license-area .aud-title-area {
    padding: 0 50px;
}

.page-title {
    padding: 250px 0;
}

.check-licen {
    max-width: 30px;
}

.aud-icon-circle-footer {
    margin-right: 10px;
    border-radius: 100px;
}

.carousel-container {
    position: relative; 
}

.carousel-nav .owl-prev,
.carousel-nav .owl-next {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    cursor: pointer;
}

.carousel-nav .owl-prev {
    left: -50px; 
}

.carousel-nav .owl-next {
    right: -50px; 
}




/*---mobile--*/
@media only screen and (max-width: 767px) {


.aud-pack-icon {
    z-index: 999;
    position: fixed;
    top:-5px;
    left: -3px;
    background-color: #000;
    width: 70px;
    height: 70px;
    border-radius: 200px;
    }

.carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
}


.carousel-nav .owl-prev,
.carousel-nav .owl-next {
    position: static;
    top: 50%; 
    transform: translateY(-50%); 
    cursor: pointer;
}

.menu-link:hover::after {
    width: 0;
}



.card-diver {
    padding: 20px;
}

.sec-skyline {
    position: relative;
    height: 500px;
    margin: 50px 0;
}

.aud-3-easy .pt-100 {
    padding-top: 0;
}

.aud-3-easy .pt-70 {
padding-top: 10px;
}

.easy-card h4 {
    font-size: 25px;
}

.text-skyline {
    position: relative;
    padding-top: 25px;
    z-index: 2;
}


.sec-skyline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(7,7,9);
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.766) 0%, rgba(176,176,176,0) 100%);
    z-index: 1; /* Overlay berada di atas background */
}


.h-list-area {
        max-height: 100%; 
        overflow-y: hidden; 
        padding: 10px; 
        border-bottom: 0; 
}

.aud-card-1 {
    backdrop-filter: blur(3px);
}
     

.aud-slider {
    background: url(../images/aud-bg-slide.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 650px;
}

.aud-slider .aud-card-1 {
    padding: 30px;
}

.aud-slider .vertical-middle {
    justify-content: end;
}

.slide-side {
        width: 100%; }

.aud-contact-space {
    padding: 50px 0;
}

.display-3 {
    font-size: 40px;
    }

.display-5 {
    font-size: 30px;
}

.aud-icon-circle-footer {
    margin-right: 10px;
    border-radius: 100px;
}

.left-title-client {
    max-width: 100%;
    }

.aud-parallax-banner, .aud-parallax-banner-about {
        top: 0;
    }

.check-licen {
    max-width: 30px;
}

.page-title {
    padding: 50px;
    height: 150px;
}

.aud-contact-wrap  {
        padding: 0;
}

.h-500 {
    height: auto;
}

.img-absolute-right {
    position: static;
}

.card-pd-area {
    padding: 20px;
}
.display-5 {
    font-size: 35px;
}

.w-50 {
    width: 100% !important;
}

.p-5 {
    padding: 2rem !important;
}

.sepecial-req .aud-title-area {
    padding-top: 30px;
    text-align: center;
}

.sepecial-req .aud-higlight-text {
    text-align: center;
}

.sepecial-req .aud-btn-area {
    width: 100%;
    text-align: center;
}

.pd-70 {
    padding: 20px;
}

.w-30, .w-40 {
    width: 100%;
}

.block-small {
    padding-top: 25px;
}

.sec-m-25 {
    padding: 25px;
}

.card-3-easy {
padding-bottom: 50px;
}

.easy-card {
    padding: 20px;
}

.absolute-right {
    position: static !important;
}

.card-testimonial {
    width: 100%;
}

#header-wrap #logo img {
    padding: 20px 0;
    max-width: 150px;
    height: auto;
}

/* #header-wrap {
    background-color: #000;
} */

.menu-item.current > .menu-link::after {
    width: 0;
}

.cards-section {
    padding-top: 50px;
}


.p-lr-100 {
    padding: 0;
}

.aud-license-area {
    padding: 20px;
}

.widget_links {
    padding-top: 30px;
}

.col-mb-50 {
    margin-bottom: 0;
}

.card-services {
    height: auto;
}

.contact-card {
    padding: 50px;
}


}


.rounded-circle {
    border: 1px solid #fff !important;
    background-color: #000 !important;
}

.rounded-circle:hover {
    background-color: #fff !important;
}


/* Styles for tablets (portrait orientation) */
@media (min-width: 768px) and (max-width: 1020px) {

.aud-slider {
        background: url(../images/aud-bg-slide.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center right;
}

.img-side-slide {
    margin-top: 100px;
    padding: 20px;
    position: static;
}

.aud-slider {
    top:65px;
    height: 100%;
}

.list-pack li { font-size: 14px;}

.title-pack h4 {
    font-size: 18px;
}

.easy-icon {
    height: 100px;
    width: 100px;
}

.aud-3-easy .pd-25 {
    padding: 10px;
}

.left-title-client {
    max-width: 100%;
}

.page-title {
margin-top: 70px;
padding: 0 20px;
height: 250px;
    }

.aud-parallax-banner {
    top: -50px;
}
.w-30, .w-40, .w-50 {
        width: 100% !important;
    }

.img-absolute-right {
    position: relative;
    top:-100px;
    right: 0;
}

.why-card-space {
    padding: 45px;
}

.sec-why {
    background-image: url(../images/aud-bg-why.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 70% 50%;
}

.aud-license-area .aud-title-area {
    padding: 0;
}

.block-small {
        padding-top: 25px;
    }
    
.img-right {
    padding: 0;
}

.p-5 {
    padding: 1rem !important;
}

.h-500 {
    height: auto;
}



.p-lr-100 {
    padding: 0;
}

.aud-license-area {
    padding: 20px;
}

.display-5 {
    font-size: 35px;
}

.card-diver {
    height: auto;
}

.card-services {
   min-height: 500px;
}

.page-title-row {
    height: 200px;
}

}


/* Styles for tablets (landscape orientation) */
@media (min-width: 1021px) and (max-width: 1300px) {

.left-title-client {
    max-width: 100%;
}
    .aud-license-area .aud-title-area {
        padding: 0;
    }

    .icon-top-block {
        display: flex;
        align-items: start;
        min-height: 40px;
    }
}


/* iPad Pro (1024px to 1366px) */
@media only screen and (min-width: 1024px) and (max-width: 1360px) {
    .absolute-right {
        right: -100px;
    }

    .img-absolute-right {
        position: absolute;
        right: -200px;
        z-index: 1;
    }

    .img-side-slide {
        position: absolute;
        top: 50%;
        right: -150px;
        transform: translateY(-50%);
        z-index: 1;
        max-width: 900px;
    }

    .aud-slider {
        background: url(../images/aud-bg-slide.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
    }

    .sec-why {
        background-image: url(../images/aud-bg-why.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 70%;
    }

    .page-title {
        padding: 100px 0;
        height: 100%;
    }

    .aud-parallax-banner, .aud-parallax-banner-about {
        top:0;
    }
    
   .contact-area {
        padding-bottom: 50px;
    }

  
}


/* iPad Pro (landscape) */
@media only screen and (min-width: 1366px) and (max-width: 1500px) {

    .aud-parallax-banner, .aud-parallax-banner-about {
        top:0;
    }

    .icon-top-block {
        display: flex;
        align-items: start;
    }

    .img-side-slide {
        position: absolute;
        top: 50%;
        right: -100px;
        transform: translateY(-50%);
        z-index: 1;
        max-width: 1000px;
    }
    
}



.carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  
  .carousel-text {
    flex: 1;
    text-align: left;
  }
  

  .carousel-controls {
    display: flex;
    gap: 10px;
  }
  
  .carousel-controls button {
    background: #333;
    border: none;
    cursor: pointer;
    font-size: 25px;
  }

  .carousel-controls button i {
    padding: 5px;
  }
  
  .carousel-controls button:hover {
    background: #444;
  }
  
  .carousel-slides {
    right: -170px;
    max-width: 1000px; /* Atur lebar maksimum */
    flex: 2;
    display: flex;
    overflow: hidden;
    position: absolute;
  }
  
  .slide-side {
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
  }
  
  .testimonial-side {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 80%;
  }
  
  .stars {
    color: orange;
    font-size: 20px;
    margin-bottom: 10px;
  }



  /*---mobile--*/
@media only screen and (max-width: 767px) {

    .driver-quote {
        margin: auto;
        width: 100%;
        text-align: center;
        position: static;
    }

.flex-viewport {
    height: auto !important;
}

.card-diver {
    height: 100%;
}

.testimonial {
        padding: 20px !important;
       max-width: 100%;
    }
.carousel-slides {
        right:0;
        max-width: 500px; /* Atur lebar maksimum */
        flex: 2;
        display: flex;
        overflow: hidden;
        position: relative;
      }

.carousel {
        flex-direction: column; /* Ubah ke kolom untuk layar kecil */
        align-items: center;   /* Pusatkan elemen */
      }
    
.carousel-text {
        flex: unset; /* Hilangkan aturan flex */
        width: 100%; /* Jadikan lebar penuh */
        text-align: center; /* Opsional: Atur teks menjadi rata tengah */
        padding-right: 0; /* Hilangkan padding */
        margin-bottom: 20px; /* Tambahkan margin untuk jarak ke slides */
      }
    
.carousel-slides {
        width: 100%; /* Atur slides menjadi lebar penuh */
        max-width: unset; /* Hilangkan batas lebar */
    }

.card-testimonial {
    width: 350px;
}

}

body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
    position: fixed;
    background: #000;
}

/*---tablet---*/
@media (min-width: 768px) and (max-width: 1020px) {

body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
    display: block;
    padding: 20px 0;
}

.menu-item.current > .menu-link::after {
    display: none;
}

.menu-link:hover::after {
    width: 0;
}

/* .aud-slider {
    background-position: 10%;
} */

.contact-area {
        padding-bottom: 50px;
    }

    .carousel-slides {
        right:0;
        max-width: 500px; /* Atur lebar maksimum */
        flex: 2;
        display: flex;
        overflow: hidden;
        position: relative;
      }

.carousel {
        flex-direction: column; /* Ubah ke kolom untuk layar kecil */
        align-items: center;   /* Pusatkan elemen */
      }
    
.carousel-text {
        flex: unset; /* Hilangkan aturan flex */
        width: 100%; /* Jadikan lebar penuh */
        text-align: center; /* Opsional: Atur teks menjadi rata tengah */
        padding-right: 0; /* Hilangkan padding */
        margin-bottom: 20px; /* Tambahkan margin untuk jarak ke slides */
      }
    
.carousel-slides {
        width: 100%; /* Atur slides menjadi lebar penuh */
        max-width: unset; /* Hilangkan batas lebar */
    }

.slide-side {
    width: 100%;
}


}


@media only screen and (min-width: 1024px) and (max-width: 1360px) { 
    

    
.carousel-text {
        flex: unset; 
        width: 30%; 
        padding-right: 0; 
        margin-bottom: 20px; 
}
    
.carousel-slides {
        width: 80%; 
        max-width: unset; 
    }

.card-testimonial {
    margin-top:50px;
    width: 420px;
}
}


@media only screen and (min-width: 1366px) and (max-width: 1800px) {

.carousel-text {
    flex: none;
    width: 40%;
}

.carousel-slides {
    right: -400px;
 }
}



@media only screen and (max-width: 767px) {

    .aud-license-area .aud-title-area {
            padding: 0 20px;
        }
}    

.bold-highlight {
    font-weight: 700;
}

@media screen and (min-width: 1366px) and (max-width: 1800px) { 

    .aud-about-banner {
        text-align: center;
    }
    
    .aud-about-banner img {
        max-width: 1000px;
        border-radius: 20px;
    }

    .aud-license-area .aud-title-area {
        padding: 0 50px;
    }

    .aud-license-area {
        padding: 30px 50px;
    }

    .carousel-container {
        width: 100%;
    }
}

/*---small dekstop---*/

@media screen and (min-width: 1360px) and (max-width:1700px) {


    .img-right {
        padding: 0 30px;
        display: flex;
        justify-content: flex-end;
    }

    .page-title {
        height: 400px;
    }

    .effect-about1 {
        background-image: url('../images/img-blur-about1.jpg');
        background-repeat: no-repeat;
        background-position: 20%;
        background-size: cover;
    }

    .sec-why {
        background-image: url(../images/aud-bg-why.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }
}

@media screen  and (min-width:1400px) and (max-width: 1800px){
  
    .icon-top-block {
        display: flex;
        align-items: start;
        min-height: 70px;
    }

}


@media screen  and (min-width:998px) and (max-width: 1000px){ 
    .icon-top-block {
        display: flex;
        align-items: start;
        min-height: 70px;
    }


}

/*---large desktop---*/
@media screen and (min-width: 1800px) and (max-width: 1920px)  {
    .left-title-client {
        max-width: 25%;
    }
    .img-absolute-right {
        position: absolute;
        right: -50%;
        z-index: 1;
    }
}

/*---mobile--*/
@media only screen and (max-width: 767px) {

.mobile-btn {
    padding-bottom: 20px;
}
.carousel-drive {
    display: flex;
    align-items: center;
}
    .card-star {
        margin: 50px 0;
        position: relative;
        display: flex;
        width: 100%;
        min-height: 100%;
        justify-content: center;
        flex-flow: column;
        height: 400px;}
 }

/* mobile (portrait orientation) */
@media (min-width: 320px) and (max-width: 766px) {
    .aud-slider {
        background: url(../images/aud-bg-slide.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center right;
  
    }

    .sec-fleet {
        margin: auto;
        width: 80%;
    }
    .card-slide {
        padding: 20px;
    }

    .img-side-slide {
        margin-top: 40px;
        position: relative;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .img-side-slide img {
        width: 200%;
    }

    .display-5 {
        font-size: 30px;
    }

    .why-card-space {
        padding: 30px;
    }
    .card-testimonial {
        width: 260px;
        min-height: 400px;
    }

    #slider {
        margin-top: 50px;
    }

    .slide-side {
        width: auto;
    }

    .aud-license-area .aud-title-area {
        padding: 0;
    }

    .page-title {
        margin-top: 50px;
        padding: 50px;
        height: 125px;
    }

    .card-services {
        min-height: 300px; }
  }

/* mobile (portrait orientation) */
@media (min-width: 1025px) and (max-width: 1200px) {

    body:not(.is-expanded-menu) #header:not([data-mobile-sticky=true]) #header-wrap {
        display: block;
        display: contents;
        position: fixed;
    }

    .icon-top-block {
        display: flex;
        align-items: start;
        min-height: 70px;
    }

    .list-pack {
        margin-bottom: 20px !important;
        min-height: 250px;
    }
 }


 .carousel-hero .item {
    width: 500px;
    opacity: 0.5;
    transform: scale(0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-hero .item.center {
    transform: scale(1.5);
    opacity: 1;
}


.carousel-hero .owl-stage-outer {
    height: 500px;
}

