﻿
/*https://palettes.shecodes.io/palettes/1648*/

body {
    font-family: 'Lato', 'Noto Sans Thai', sans-serif;
    background: #000000;
    /*background: url('/Upload/home/bg-vehicles.jpg');
    background: url('/Upload/home/bg-sky.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;*/
}

.full-width {
    width: 100%;
}


@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.iti {
    width: 100%;
}

.timepicker {
    display: flex;
    justify-content: space-between;
}

    .timepicker .hours {
        width: 50%;
    }

    .timepicker .minute {
        width: 50%;
    }

/*****************************************
* Swiper
*****************************************/
.swiper-button-next, .swiper-button-prev {
    color: #c72a59;
}


/*****************************************
* Text Glow
*****************************************/
.text-shine {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

.text-glow {
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}

/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*****************************************
* Fade Image
*****************************************/
.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d01257;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 300px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    margin-top: 70px;
    min-height: 50vh;
}



@media(max-width: 830px) {
    #main-content {
        margin-top: 80px
    }
}

@media(max-width: 460px) {
    #main-content {
        margin-top: 70px
    }
}



/*****************************************
* Navbar 
*****************************************/
.navbar {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    /*background: #f4a7ba;*/
    /*background: #f12371;*/
    /*background: #c92882;*/
    /*background: linear-gradient(to bottom, #000000 0%, #951f63 100%);*/
    /*background: #000000;*/
    /*background: linear-gradient(to top, #000000 0%, #d01257 100%);*/
    /*background: #f48aaf;*/
    /*background: linear-gradient(to top, #000000 0%, #af003f 100%);*/
    background: #d01257;
    transition: 0.5s ease all;
    height: 70px;
}

    .navbar .navbar-share {
        position: absolute;
        top: 24px;
        right: 46px;
    }

        .navbar .navbar-share img {
            width: 34px;
        }


    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,227,76, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    .navbar .navbar-top {
        position: absolute;
        top: 20px;
        right: 24px;
    }

        .navbar .navbar-top .external-link, .navbar .navbar-top .external-link:hover {
            border: 1px solid #45CBCA;
            padding: 5px 13px 4px 13px;
            color: #000000;
            border-radius: 7px;
            font-size: 0.9rem;
            margin: 0px 5px;
            text-decoration: none;
            background: #45CBCA;
            text-transform: uppercase;
        }



    .navbar.bg-transparent {
        background-color: rgba(0, 0, 0, 0);
    }



    .navbar .navbar-brand .navbar-logo {
        height: 60px;
        transition: 0.5s ease all;
    }


.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #000000;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease all;
}


    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #ffe86d;
    }




@media (max-width: 460px) {

    .navbar {
        padding: 0rem 1rem;
        height: 70px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar .navbar-share {
        top: 26px;
        right: 60px;
    }

        .navbar .navbar-share img {
            width: 20px;
        }

    .navbar .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar .navbar-brand {
        top: 8px;
    }


        .navbar .navbar-brand .navbar-logo {
            height: 50px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        letter-spacing: 0px;
    }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }
}


.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 13px;
}



.toolbar-icon {
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-left: 1px solid #000000;
    margin-left: 20px;
    padding-left: 20px;
}

    .toolbar-icon .nav-toolbar-icon {
        position: relative;
    }

        .toolbar-icon .nav-toolbar-icon a {
            display: block;
            cursor: pointer;
            margin: 0.5rem;
        }

            .toolbar-icon .nav-toolbar-icon a img {
                width: 26px;
                transition: 0.2s ease all;
            }


        .toolbar-icon .nav-toolbar-icon .nav-badge {
            color: #ffffff;
            background: #e62b2b;
            width: 18px;
            position: absolute;
            top: -3px;
            right: 0px;
            text-align: center;
            font-size: 0.6rem;
            border-radius: 50%;
            padding: 3px 2px 1px 2px;
        }


@media (max-width: 460px) {

    .toolbar-icon {
        position: fixed;
        top: 16px;
        right: 65px;
        border-left: none;
    }
}



#menuModal {
    background: #d01257;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: #d01257;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                text-align: center;
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 50%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #000000;
                    font-size: 1.5rem;
                    letter-spacing: 0px;
                    text-align: center;
                    padding: 2px 0px;
                    text-transform: unset;
                }






/*****************************************
* Welcome Video
*****************************************/
#welcome-video {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #welcome-video {
        padding: 0px;
    }
}



#welcome-video .inverter-text-top {
    font-family: "Oswald", serif;
    letter-spacing: 2px;
    color: #ffe34c;
    position: absolute;
    bottom: auto;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    z-index: 2;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

    #welcome-video .inverter-text-top .inverter-headline {
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%;
        text-transform: uppercase;
    }

    #welcome-video .inverter-text-top .inverter-subheadline {
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        width: 100%;
    }

@media(max-width:460px) {
    #welcome-video .inverter-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #welcome-video .inverter-text-top .inverter-headline {
            font-size: 28px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        #welcome-video .inverter-text-top .inverter-subheadline {
            font-size: 16px;
            line-height: 20px;
        }
}



#welcome-video .footer-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
}

    #welcome-video .footer-button .btn-contact {
        padding: 18px 30px;
        color: #000000;
        background-color: #ffe34c;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }

    #welcome-video .footer-button .btn-contact-outline {
        padding: 18px 30px;
        color: #ffe34c;
        background-color: transparent;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }


@media(max-width:460px) {
    #welcome-video .footer-button .btn-contact {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }

    #welcome-video .footer-button .btn-contact-outline {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }
}



.welcome-video-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .welcome-video-wrapper .welcome-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .welcome-video-wrapper .welcome-video-container .welcome-video-video {
            object-fit: cover;
            position: relative;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 2px);
        }




/*.welcome-video-wrapper {
    --corner-radius: 40px;
    height: 60vh;
    min-height: 680px;
    max-width: 1920px;
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .welcome-video-wrapper .welcome-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .welcome-video-wrapper .welcome-video-container .welcome-video-video {
            object-fit: cover;
            position: relative;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 2px);
        }*/



/*****************************************
* Package
*****************************************/
#package {
    z-index: 2;
    position: relative;
    padding: 50px 0px 100px 0px;
    color: #d01257;
    /*background: #d01257;*/
    background: #000000;
    background: linear-gradient(to bottom, #000000 0%, #140209 100%);
    /*background: linear-gradient(0deg, #eeaabb 40%, transparent 45%);*/
    /*background: url('/Upload/home/bg-vehicles.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;*/
}

    #package .title {
        font-family: "Oswald", serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
    }


    #package .subtitle {
        font-weight: 400;
        font-size: 20px;
        margin-bottom: 30px;
        letter-spacing: 0px;
        text-align: center;
    }


@media(max-width:460px) {
    #package {
        padding: 20px 0px;
    }

        #package .title {
            font-size: 40px;
            line-height: 40px;
            margin-bottom: 20px;
            text-align: left;
        }

        #package .subtitle {
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 20px;
        }
}

.package-carousel-wrapper {
    padding: 20px 60px 20px 60px;
    width: 80%;
    margin: 0px auto;
}

@media(max-width:460px) {
    .package-carousel-wrapper {
        padding: 20px 20px 20px 20px;
        width: 100%;
    }
}

.package-collapse {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 0 50px 15px rgba(225, 45, 99, 0.2);
    /*background: #e12d63;*/
    /*background-image: linear-gradient(to bottom, rgba(238, 170, 187, 0), rgba(238, 170, 187, 1));*/
    /*padding: 60px 40px;*/
    border-radius: 20px;
    margin-bottom: 20px;
}

    .package-collapse .package-collapse-lists {
        width: 40%;
        padding: 60px 20px;
        background: #d01257;
        background: linear-gradient(to top, #000000 0%, #d01257 100%);
        border-radius: 20px 0px 0px 20px;
        /*border:1px solid red;*/
    }

        .package-collapse .package-collapse-lists .package-collapse-item {
            color: #ffffff;
            padding: 20px 15px;
            cursor: pointer;
        }

            .package-collapse .package-collapse-lists .package-collapse-item .header {
                display: flex;
                justify-content: space-between;
            }

                .package-collapse .package-collapse-lists .package-collapse-item .header .header-text {
                    font-family: "Oswald", serif;
                    width: calc(100% - 30px);
                    font-size: 24px;
                    line-height: 26px;
                    font-weight: 300;
                    text-transform: uppercase;
                    letter-spacing: 3px;
                }

                .package-collapse .package-collapse-lists .package-collapse-item .header .header-icon {
                    width: 20px;
                }

            .package-collapse .package-collapse-lists .package-collapse-item .detail {
                display: block;
                font-size: 18px;
                line-height: 20px;
                font-weight: 400;
                margin-top: 20px;
            }

            .package-collapse .package-collapse-lists .package-collapse-item.active {
                cursor: text;
            }

                .package-collapse .package-collapse-lists .package-collapse-item.active .header .header-icon {
                    transform: rotate(180deg);
                }

                .package-collapse .package-collapse-lists .package-collapse-item.active .detail.active {
                    display: block;
                }

    .package-collapse .package-collapse-mainpanel {
        width: 60%;
        padding: 130px 40px 60px 40px;
        text-align: right;
        position: relative;
        background: url('/Upload/home/bg-sky.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        background: linear-gradient(to top, #000000 0%, #ad003f 100%);
        border-radius: 0px 20px 20px 0px;
        /*background: #000000;*/
        /*background: #0a0a0a;
        background: #c31353;
        background: radial-gradient(circle at 10% 20%, rgb(255 0 109) 0%, rgb(0, 0, 0) 90.5%);
        background: linear-gradient(135.8deg, rgb(0, 0, 0) 27.1%, rgb(255 0 109) 77.5%);*/
    }

        .package-collapse .package-collapse-mainpanel img {
            width: 100%;
            margin-top: 20px;
        }

        .package-collapse .package-collapse-mainpanel .package-collapse-mainpanel-footer {
            text-align: center;
            margin-top: 20px;
        }

            .package-collapse .package-collapse-mainpanel .package-collapse-mainpanel-footer .btn-reservation,
            .package-collapse .package-collapse-mainpanel .package-collapse-mainpanel-footer .btn-reservation:hover {
                padding: 15px 30px;
                color: #ffffff;
                background-color: #c72a59;
                border-radius: 30px;
                text-transform: uppercase;
                font-weight: 600;
                letter-spacing: 2px;
                display: inline-block;
                text-decoration: none;
            }


@media(max-width:460px) {

    .package-collapse {
        padding: 0px;
    }

        .package-collapse .package-collapse-lists .package-collapse-item {
            padding: 20px 0px;
        }

        .package-collapse .package-collapse-lists {
            width: 100%;
            order: 2;
            border-radius: 0px;
            padding: 20px;
        }

        .package-collapse .package-collapse-mainpanel {
            width: 100%;
            padding: 0px 0px 200px 0px;
            order: 1;
            /*margin-bottom: 20px;*/
            border-radius: 0px;
        }

            .package-collapse .package-collapse-mainpanel img {
                width: 100%;
                margin-top: 30px;
            }
}


.vehicle-location {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 20px 15px 20px;
    margin-top: 10px;
    background: #e64c74;
}


    .vehicle-location .location-icon {
        width: 40px;
        font-size: 1.5rem;
        text-align: center;
    }

    .vehicle-location .drop-lists {
        width: 100%;
    }






.drop-lists-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .drop-lists-item:last-child {
        margin-bottom: 0px;
        border-bottom: none;
    }

    .drop-lists-item .drop-route {
        width: 70%;
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
    }

        .drop-lists-item .drop-route .fa-map-marker {
            margin-right: 5px;
        }


    .drop-lists-item .drop-discount {
        width: 30%;
        display: block;
        text-align: center;
        border-radius: 15px;
        font-size: 1.3rem;
        line-height: 2rem;
        font-weight: bold;
        text-decoration: line-through;
    }

    .drop-lists-item .drop-rate {
        width: 30%;
        display: block;
        text-align: center;
        border-radius: 15px;
        font-size: 1.3rem;
        line-height: 2rem;
        font-weight: bold;
    }



.vehicle-option {
    position: absolute;
    top: 40px;
    left: 40px;
}


@media(max-width:460px) {
    .vehicle-option {
        position: absolute;
        top: inherit;
        bottom: 40px;
        left: 50px;
    }
}


.vehicle-badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 20px;
}

    .vehicle-badge.passenger-badge {
        color: #ffffff;
        background: #d10034;
        border: 1px solid #d10034;
    }

    .vehicle-badge.luggage-badge {
        color: #ffffff;
        background: #ff6b3d;
        border: 1px solid #ff6b3d;
    }


@media(max-width:460px) {
    .vehicle-badge {
        font-size: 14px;
        line-height: 16px;
        padding: 4px 8px;
    }
}



.vehicle-start-price {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
    /*font-size: 1.5rem;
    line-height: 2rem;*/
}

    .vehicle-start-price .start-text {
        font-size: 20px;
        line-height: 22px;
        color: #ffffff;
    }

    .vehicle-start-price .start-price {
        text-align: center;
        padding-left: 20px;
        font-size: 56px;
        line-height: 56px;
        font-weight: bold;
        color: #ffffff;
    }



@media (max-width: 460px) {
    .vehicle-start-price .start-text {
        font-size: 20px;
        line-height: 22px;
    }

    .vehicle-start-price .start-price {
        font-size: 40px;
        line-height: 40px;
    }
   
}




/*****************************************
* Term Additional
*****************************************/
#term-additional {
    padding: 100px 0px 100px 0px;
    color: #000000;
    background: #d01257;
    background: url('/Upload/home/bg-term.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}


@media (max-width: 460px) {
    #term-additional {
        background-size: auto 100%;
        padding: 50px 0px 30px 0px;
        background-position: top left;
    }
}


.term-additional-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .term-additional-content .term-additional-content-item {
        color: #000000;
        width: 49%;
        padding: 40px;
        background: rgba(245, 206, 198, 0.6);
    }

        .term-additional-content .term-additional-content-item .header {
            color: #d01257;
            font-size: 22px;
            line-height: 26px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }

        .term-additional-content .term-additional-content-item ul {
            font-size: 1.2rem;
            line-height: 1.6rem;
            padding-left: 15px;
        }

            .term-additional-content .term-additional-content-item ul b {
                text-decoration: underline;
            }

@media (max-width: 460px) {
    .term-additional-content .term-additional-content-item {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }
}



/*****************************************
* New Term Additional
*****************************************/
#newterm-additional {
    padding: 0px;
    color: #000000;
    background: #d01257;
    /*background: url('/Upload/home/bg-term.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;*/
}


@media (max-width: 460px) {
    #newterm-additional {
        background-size: auto 100%;
        padding: 0px;
    }
}



.newterm-additional-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .newterm-additional-content .newterm-additional-content-item {
        width: 50%;
        color: #000000;
        background: #ffe34c;
        position: relative;
        padding: 100px;
    }

        .newterm-additional-content .newterm-additional-content-item.black-theme {
            color: #ffe34c;
            background: #000000;
        }


        .newterm-additional-content .newterm-additional-content-item .header {
            color: #ffe34c;
            font-family: "Oswald", serif;
            font-size: 36px;
            line-height: 36px;
            font-weight: 600;
            /*text-transform: uppercase;*/
            margin-bottom: 20px;
            padding-bottom: 10px;
        }

            .newterm-additional-content .newterm-additional-content-item .header span {
                background: #000000;
                padding: 8px 20px 12px 20px;
                display: inline-block;
            }

        .newterm-additional-content .newterm-additional-content-item ul {
            font-size: 18px;
            line-height: 26px;
            padding-left: 15px;
        }

            .newterm-additional-content .newterm-additional-content-item ul b {
                text-decoration: underline;
            }

@media (max-width: 460px) {

    .newterm-additional-content .newterm-additional-content-item .header {
        font-size: 40px;
        line-height: 40px;
    }

    .newterm-additional-content .newterm-additional-content-item {
        background-size: auto 100%;
        padding: 30px;
        width: 100%;
    }

        .newterm-additional-content .newterm-additional-content-item ul {
            font-size: 16px;
            line-height: 20px;
        }
}


/*****************************************
* Tour
*****************************************/
#tour-rate {
    padding: 100px 0px 150px 0px;
    background: #040203 url('/Upload/home/bg-sky.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
}

    #tour-rate .title {
        /*color: #d01257;*/
        color: #ffffff;
        font-size: 56px;
        line-height: 56px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        margin-bottom: 30px;
        text-align: center;
    }


@media (max-width: 460px) {
    #tour-rate {
        padding: 50px 0px 20px 0px;
    }
}

.tour-rate-table-wrapper {
    width: 100%;
    padding: 40px;
    background: #000000;
    margin-bottom: 30px;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}

    .tour-rate-table-wrapper .tour-rate-header {
        font-size: 30px;
        font-weight: 600;
        line-height: 36px;
        color: #d01257;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .tour-rate-table-wrapper table {
        width: 100%;
        color: #ffffff;
    }

        .tour-rate-table-wrapper table thead tr th {
            padding-bottom: 10px;
            font-size: 16px;
            font-weight: bold;
        }

        .tour-rate-table-wrapper table tbody tr td {
            font-size: 16px;
            font-weight: 600;
            padding: 5px;
        }


@media (max-width: 460px) {

    .tour-rate-table-wrapper .tour-rate-header {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }


    .tour-rate-table-wrapper {
        padding: 20px;
    }

        .tour-rate-table-wrapper table thead tr th {
            font-size: 10px;
            line-height: 12px;
        }

        .tour-rate-table-wrapper table tbody tr td {
            font-size: 12px;
            line-height: 16px;
            font-weight: 600;
            border-bottom: 1px solid #e5e5e5;
        }

            .tour-rate-table-wrapper table tbody tr td:nth-child(1) {
                width: 40%;
            }

            .tour-rate-table-wrapper table tbody tr td:nth-child(2),
            .tour-rate-table-wrapper table tbody tr td:nth-child(3),
            .tour-rate-table-wrapper table tbody tr td:nth-child(4),
            .tour-rate-table-wrapper table tbody tr td:nth-child(5) {
                width: 15%;
            }
}



/*****************************************
* Tour
*****************************************/
#home-tour-rate {
    padding: 100px 0px 150px 0px;
    background: url('/upload/home/bg-term.jpg'); 
    background-size: cover;
    background-attachment: fixed;
}

    #home-tour-rate .title {
        font-family: "Oswald", serif;
        color: #c72a59;
        font-size: 56px;
        line-height: 56px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
    }

        #home-tour-rate .title span {
            background: #000000;
            padding: 8px 20px 12px 20px;
            display: inline-block;
        }


@media (max-width: 460px) {
    #home-tour-rate {
        padding: 50px 0px 20px 0px;
    }

        #home-tour-rate .title {
            text-align: left;
            font-size: 40px;
            line-height: 40px;
        }

}


.home-tour-rate-table-wrapper {
    width: 100%;
    padding: 40px;
    background: #f3f3f3;
    margin-bottom: 30px;
    /*box-shadow: 0 0 5px rgba(255, 228, 87, 0.6) inset, 0 0 10px 2px rgba(255, 228, 87, 0.5) inset, 0 0 15px 4px rgba(255, 228, 87, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);*/
    /*box-shadow: 0 0 5px rgba(11, 56, 105, 0.6) inset, 0 0 10px 2px rgba(11, 56, 105, 0.5) inset, 0 0 15px 4px rgba(11, 56, 105, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

    .home-tour-rate-table-wrapper .home-tour-rate-header {
        font-size: 30px;
        font-weight: 600;
        line-height: 36px;
        /*color: #0b3869;*/
        color: #c72a59;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .home-tour-rate-table-wrapper table {
        width: 100%;
        color: #000000;
    }

        .home-tour-rate-table-wrapper table thead tr th {
            color: #c72a59;
            padding-bottom: 10px;
            font-size: 16px;
            font-weight: bold;
        }

        .home-tour-rate-table-wrapper table tbody tr td {
            font-size: 16px;
            font-weight: 600;
            padding: 5px;
        }


@media (max-width: 460px) {

    .home-tour-rate-table-wrapper .home-tour-rate-header {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }


    .home-tour-rate-table-wrapper {
        padding: 20px;
    }

        .home-tour-rate-table-wrapper table thead tr th {
            font-size: 10px;
            line-height: 12px;
        }

        .home-tour-rate-table-wrapper table tbody tr td {
            font-size: 12px;
            line-height: 16px;
            font-weight: 600;
            border-bottom: 1px solid #e5e5e5;
        }

            .home-tour-rate-table-wrapper table tbody tr td:nth-child(1) {
                width: 40%;
            }

            .home-tour-rate-table-wrapper table tbody tr td:nth-child(2),
            .home-tour-rate-table-wrapper table tbody tr td:nth-child(3),
            .home-tour-rate-table-wrapper table tbody tr td:nth-child(4),
            .home-tour-rate-table-wrapper table tbody tr td:nth-child(5) {
                width: 15%;
            }
}




/*****************************************
* Micro Inverter
*****************************************/
#home-reservation {
    z-index: 2;
    position: relative;
}



    #home-reservation .inverter-text-top {
        font-family: "Oswald", serif;
        letter-spacing: 2px;
        color: #c72a59;
        position: absolute;
        bottom: auto;
        max-width: 1190px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        left: 50%;
        z-index: 2;
        top: 20%;
        transform: translate(-50%, -50%);
        width: 100%;
        pointer-events: none;
        text-align: center;
    }

        #home-reservation .inverter-text-top .inverter-headline {
            font-size: 60px;
            line-height: 64px;
            font-weight: 600;
            margin-bottom: 15px;
            width: 100%;
        }

        #home-reservation .inverter-text-top .inverter-subheadline {
            font-size: 40px;
            line-height: 40px;
            font-weight: 400;
            width: 100%;
        }

    #home-reservation .btn-contact {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -90%);
        z-index: 2;
        padding: 18px 30px;
        color: #ffffff;
        background-color: #c72a59;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 22px;
    }


@media(max-width:460px) {
    #home-reservation .inverter-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #home-reservation .inverter-text-top .inverter-headline {
            font-size: 28px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        #home-reservation .inverter-text-top .inverter-subheadline {
            font-size: 16px;
            line-height: 20px;
        }
}


.microinverter-video-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .microinverter-video-wrapper .microinverter-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .microinverter-video-wrapper .microinverter-video-container .microinverter-video-video {
            object-fit: cover;
            position: relative;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 2px);
        }







/*****************************************
* Reservation Form
*****************************************/
#reservation {
    padding: 50px 0px;
    background: #040203 url(/Upload/home/bg-sky.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
}

    #reservation .title {
        font-family: "Oswald", serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
    }

    #reservation .subtitle {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #ffffff;
        margin-bottom: 40px;
    }


@media (max-width: 460px) {
    #reservation {
        padding: 50px 0px 100px 0px;
    }


        #reservation .title {
            font-size: 2rem;
            line-height: 2.5rem;
            margin-bottom: 0px;
        }

        #reservation .subtitle {
            font-size: 1rem;
            line-height: 1.5rem;
            margin-bottom: 20px;
        }
}



#reservation-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    #reservation-form .checkout-cart {
        width: 58%;
        padding: 20px;
        border-radius: 20px;
        background: #000000;
        margin-bottom: 30px;
        box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    }


    #reservation-form .checkout-detail {
        width: 40%;
        color: #d01257;
        position: relative;
    }


    #reservation-form .btn-primary, #reservation-form .btn-primary:hover {
        padding: 8px 50px 10px 50px;
        color: #ffffff;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #041837;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-top: 0px;
        height: inherit;
        border: 1px solid #041837;
        width: auto;
    }

    #reservation-form .btn-secondary, #reservation-form .btn-secondary:hover {
        padding: 8px 50px 10px 50px;
        color: #041837;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 1px solid #041837;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }


@media (max-width: 460px) {

    #reservation-form .checkout-cart {
        width: 100%;
        box-shadow: none;
        padding: 20px;
    }

    #reservation-form .checkout-detail {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
}




.selected-vehicle {
    padding: 20px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    .selected-vehicle .selected-item {
        width: calc(100% / 4 - 8px);
        padding: 3px;
        /*background: #f6f6f6;*/
        margin: 4px;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.3s ease all;
    }

        .selected-vehicle .selected-item.active {
            background: #c72a59;
            transform: scale(1);
        }

        .selected-vehicle .selected-item img {
            border-radius: 12px;
        }




@media (max-width: 460px) {
    .selected-vehicle {
        padding: 10px 0px;
    }


        .selected-vehicle .selected-item {
            width: calc(100% / 2 - 8px);
        }
}


.checkout-identify {
    /*background: #ffffff;*/
}

    .checkout-identify .remark {
        font-size: 0.7rem;
        color: #e03126;
        font-weight: bold;
        background-color: #fdf3f3;
        padding: 10px 20px;
        border: 1px solid #e86161;
    }

    .checkout-identify .fa-asterisk {
        font-size: 0.6rem;
        color: #e03126;
    }

    .checkout-identify .headline {
        font-size: 20px;
        font-weight: 600;
        padding: 10px 15px;
        border-bottom: 1px solid #d01257;
        color: #d01257;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-transform: uppercase;
    }

        .checkout-identify .headline .headline-no {
            background: #d01257;
            color: #ffffff;
            border-radius: 30px;
            margin-right: 10px;
            font-size: 0.8rem;
            width: 25px;
            height: 25px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .checkout-identify .identify-panel {
        font-size: 16px;
        padding: 15px 15px 10px 15px;
        color: #d5d5d5;
    }

        .checkout-identify .identify-panel.dark-theme {
            background-color: #0e0e0e;
            padding: 10px 15px 15px 15px;
            margin: 10px 0px;
        }



@media (max-width: 460px) {
    .checkout-identify .identify-panel {
        padding: 15px 0px;
    }
}




form .form-group label, label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #d01257;
}

form .form-group input {
    color: #ffffff;
    background: #232323;
    border: 1px solid #2f2f2f;
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 50px;
    font-size: 16px;
    letter-spacing: .025rem;
    line-height: 3rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0px;
    outline: none;
}

form .form-group textarea {
    color: #ffffff;
    background: #232323;
    border: 1px solid #2f2f2f;
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: .025rem;
    line-height: 1.3rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0px;
    outline: none;
}

form .form-group select {
    color: #ffffff;
    background: #232323;
    border: 1px solid #2f2f2f;
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 50px;
    font-size: 16px;
    letter-spacing: .025rem;
    line-height: 3rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0px;
    outline: none;
}

form .form-group input[type=file] {
    background: #232323;
    border: 1px solid #2f2f2f;
    background-clip: padding-box;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0rem;
    box-sizing: border-box;
    height: 36px;
    font-size: 0.8rem;
    letter-spacing: .025rem;
    font-weight: 300;
    color: #19110b;
    line-height: 2rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0px;
}



form .form-group.form-checkbox {
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
}


    form .form-group.form-checkbox .checkbox-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 0.8rem;
    }

        form .form-group.form-checkbox .checkbox-wrapper .checkbox-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 0.8rem;
            margin-bottom: 10px;
        }

            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item img {
                height: 36px;
            }



            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver img {
                    height: 50px;
                }

    form .form-group.form-checkbox input[type=checkbox] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
        margin-top: 5px;
    }


form button {
    color: #ffffff;
    font-weight: normal;
    line-height: 24px;
    background: #d01257;
    border: #d01257;
    border-radius: 0px;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    height: 60px;
    padding: 12px;
    outline: none;
}

    form button[disabled] {
        background: #d01257;
        opacity: 0.4;
    }

    form button:hover, form button:focus {
        background: #d01257;
        border: #d01257;
    }



/*****************************************
* Preview Select
*****************************************/
#preview-vehicle {
    margin-top: 0px;
    display: block;
}


@media(max-width: 460px) {
    #preview-vehicle {
        margin-top: 20px;
    }
}


.preview-item {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    transform: scale(1);
    transition: 0.2s ease all;
    border-radius: 20px;
    background: #000000;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

    .preview-item .preview-photo {
        padding: 10px;
    }

        .preview-item .preview-photo img {
            transform: scale(1);
            transition: 0.2s ease all;
            border-radius: 10px 10px 0px 0px;
        }


    .preview-item .preview-info {
        padding: 0px 0px 0px 0px;
    }

        .preview-item .preview-info .preview-name {
            font-family: "Oswald", serif;
            font-size: 34px;
            line-height: 36px;
            font-weight: 600;
            margin-bottom: 10px;
            padding: 0px 20px 0px 20px;
            color: #ffe34c;
        }

        .preview-item .preview-info .preview-option {
            padding: 0px 20px 15px 20px;
        }

        .preview-item .preview-info .preview-badge {
            font-weight: bold;
            font-size: 0.8rem;
            padding: 4px 5px;
            margin-right: 2px;
            transition: 0.2s ease all;
        }

            .preview-item .preview-info .preview-badge.passenger-badge {
                color: #ffe34c;
                background: transparent;
                border: 1px solid #ffe34c;
            }

            .preview-item .preview-info .preview-badge.luggage-badge {
                color: #ffe34c;
                background: transparent;
                border: 1px solid #ffe34c;
            }

        .preview-item .preview-info .preview-reservation {
            text-align: center;
            padding: 20px 20px 20px 20px;
        }

            .preview-item .preview-info .preview-reservation a {
                color: #ffffff;
                background: #0a1350;
                border: 2px solid #0a1350;
                padding: 10px 0px;
                display: block;
                width: 100%;
                margin: 0px auto;
                text-transform: uppercase;
                font-weight: bold;
                letter-spacing: 2px;
                font-size: 1rem;
                text-decoration: none;
                transition: 0.3s ease all;
            }

                .preview-item .preview-info .preview-reservation a:hover {
                    color: #ffffff;
                    background: #e03126;
                    border: 2px solid #e03126;
                }



@media(max-width: 460px) {
    .preview-item .preview-info .preview-name {
        padding: 0px 20px 5px 20px;
    }

    .preview-item .preview-info .preview-option {
        padding: 0px 20px 10px 20px;
    }
}


.preview-location {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 20px;
    width: 100%;
    color: #d1d1d1;
}

    .preview-location .preview-location-icon {
        width: 40px;
        font-size: 1.5rem;
        text-align: center;
    }

    .preview-location .preview-location-detail {
        width: calc(100% - 40px);
        font-size: 1rem;
        line-height: 1.5rem;
    }

        .preview-location .preview-location-detail .preview-title {
            font-size: 0.9rem;
            line-height: 1.4rem;
            font-weight: bold;
        }


.preview-passenger {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    width: 100%;
    color: #d01257;
}

    .preview-passenger .passenger-item {
        width: calc(100% / 3);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

        .preview-passenger .passenger-item .icon {
            width: auto;
            height: 34px;
            font-size: 1.5rem;
            text-align: center;
        }

        .preview-passenger .passenger-item .text {
            padding-left: 15px;
        }



.preview-price-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #d1d1d1;
}

    .preview-price-item:last-child {
        margin-bottom: 0px;
        border-bottom: none;
    }

    .preview-price-item .price-title {
        width: 60%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .preview-price-item .price-title .icon {
            width: 40px;
            padding-right: 10px;
        }

    .preview-price-item .price-price {
        width: 40%;
        text-align: right;
        color: #d01257;
        padding-right: 5px;
        font-weight: bold;
        font-size: 16px;
        line-height: 20px;
    }



/*****************************************
* Shipping Info
*****************************************/
#shipping-info {
    margin-bottom: 30px;
}

    #shipping-info .info-title {
        font-family: "Oswald", serif;
        color: #d01257;
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 20px;
    }

    #shipping-info .shippinginfo-item {
        display: flex;
        justify-content: flex-start;
        padding: 0px 0px 5px 0px;
    }

        #shipping-info .shippinginfo-item .label {
            width: 200px;
            font-weight: bold;
        }

        #shipping-info .shippinginfo-item .value {
            width: calc(100% - 100px);
        }


@media (max-width: 460px) {

    #shipping-info {
        margin-top: 30px;
        margin-bottom: 20px;
    }

        #shipping-info .info-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            text-align: left;
        }

        #shipping-info .shippinginfo-item {
            text-align: left;
        }
}



.order-success-contact {
    padding: 50px;
    text-align: center;
    background: #d01257;
    border-radius: 0px;
}

    .order-success-contact .order-success-text {
        padding-bottom: 30px;
        font-size: 20px;
        line-height: 22px;
        color: #000000;
    }


    .order-success-contact .order-success-button {
        color: #fff;
        background-color: #07b53b;
        border: 1px solid #07b53b;
        padding: 10px 0px;
        border-radius: 20px;
        display: block;
        width: 160px;
        margin: 0px auto;
        margin-top: 0px;
    }


    .order-success-contact .bank-account-display {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 30px;
    }

        .order-success-contact .bank-account-display .bank-icon {
            width: 80px;
        }

        .order-success-contact .bank-account-display .bank-info {
            width: calc(100% - 80px);
            text-align: left;
            padding: 0px 20px;
            font-weight: bold;
        }

            .order-success-contact .bank-account-display .bank-info .account-no {
                font-size: 30px;
                line-height: 34px;
                color: #000000;
            }

            .order-success-contact .bank-account-display .bank-info .account-name {
                font-size: 2rem;
                line-height: 2.5rem;
            }

                .order-success-contact .bank-account-display .bank-info .account-name a, .order-success-contact .bank-account-display .bank-info .account-name a:hover {
                    color: #000000;
                }


@media (max-width: 460px) {

    .order-success-contact {
        padding: 30px;
    }

        .order-success-contact .order-success-text {
            padding-bottom: 20px;
            font-size: 1rem;
            line-height: 1.3rem;
        }

        .order-success-contact .bank-account-display {
            margin-bottom: 20px;
        }

            .order-success-contact .bank-account-display .bank-icon {
                width: 60px;
            }

            .order-success-contact .bank-account-display .bank-info {
                width: calc(100% - 60px);
            }

                .order-success-contact .bank-account-display .bank-info .account-no {
                    font-size: 1.5rem;
                    line-height: 2rem;
                }

                .order-success-contact .bank-account-display .bank-info .account-name {
                    font-size: 1.5rem;
                    line-height: 2rem;
                }
}


/*****************************************
* Additional Content
*****************************************/
.additional-content {
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
    background: #000000;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}

    .additional-content .header {
        font-size: 20px;
        line-height: 22px;
        font-weight: 600;
        color: #d01257;
        padding-bottom: 10px;
    }

    .additional-content ul {
        padding-left: 25px;
        font-size: 16px;
        line-height: 20px;
        color: #d5d5d5;
    }

        .additional-content ul li {
            margin-bottom: 10px;
        }

/*****************************************
* Loading Vehicle
*****************************************/
#loading-vehicle {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    background: #ffffff;
    box-shadow: 0px 4px 12px #e8e8e8;
    border-radius: 20px;
}

.loader-vehicle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader-vehicle::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #FF3D00;
        border-bottom: 4px solid transparent;
        animation: rotation 0.3s linear infinite reverse;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*.calendar-wrapper {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: #000000;
    margin-bottom: 30px;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}

#loading-calendar {
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px #e8e8e8;
    border-radius: 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2;
}

.loader-calendar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader-calendar::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #FF3D00;
        border-bottom: 4px solid transparent;
        animation: rotation 0.3s linear infinite reverse;
    }



#calendar {
    max-width: 1100px;
    background: #000000;
}

.fc-toolbar h2 {
    font-family: "Oswald", serif;
    color: #d01257;
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
}

.fc th {
    background: #d01257;
    padding: 10px;
    color: #ffffff;
}

.fc-unthemed th, .fc-unthemed td {
    border-color: #d01257;
}

.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
    color: #d01257;
    padding: 10px;
}

.fc-unthemed td.fc-today {
    background: #d01257;
}

    .fc-unthemed td.fc-today .fc-day-number {
        color: #ffffff !important;
    }


.fc-button {
    height: 50px;
    padding: 10px 20px;
}
*/




/*****************************************
* Order Success
*****************************************/
#book-success {
    padding: 50px 0px 150px 0px;
}

    #book-success .title {
        font-family: "Oswald", serif;
        color: #000000;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
    }

        #book-success .title span {
            background: #ffe34c;
            padding: 8px 20px 12px 20px;
            display: inline-block;
        }

    #book-success .subtitle {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #ffffff;
        margin-bottom: 40px;
    }

    #book-success .thankyou-message {
        font-size: 3rem;
        margin-bottom: 10px;
        color: #091836;
        text-align: center;
    }

    #book-success .success-message {
        color: #ffffff;
        font-size: 22px;
        line-height: 26px;
        text-align: center;
        width: 70%;
        margin: 20px auto 30px auto;
    }

        #book-success .success-message .hilight {
            /*text-decoration: underline;*/
            color: #ff0000;
        }


    #book-success .success-orderno {
        font-size: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        #book-success .success-orderno .orderno {
            font-family: "Oswald", serif;
            background: #d01257;
            padding: 10px 50px;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 3px;
        }


@media (max-width: 460px) {
    #book-success .title {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 20px;
    }

    #book-success .success-message {
        width: 100%;
        margin: 20px auto 20px auto;
        font-size: 18px;
        line-height: 20px;
    }

    #book-success .success-orderno {
        font-size: 1.5rem;
    }
}



.book-success-content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #ffffff;
}

    .book-success-content .booking-success-message {
        width: 58%;
        padding: 20px;
        border-radius: 20px;
        background: #000000;
        box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    }

    .book-success-content .booking-success-detail {
        width: 40%;
    }

@media (max-width: 460px) {
    .book-success-content {
        margin-top: 10px;
    }

        .book-success-content .booking-success-message {
            width: 100%;
            padding: 20px;
            order: 2;
        }

        .book-success-content .booking-success-detail {
            width: 100%;
            order: 1;
        }
}



@media (max-width: 460px) {
    #book-success {
        padding: 50px 0px 100px 0px;
    }

    .booking-success-message .thankyou-message {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .booking-success-message .success-message {
        font-size: 1rem;
        line-height: 1.3rem;
    }
}


/*****************************************
* Main Backend
*****************************************/
#main-backend {
    padding: 50px 0px 100px 0px;
}

    #main-backend .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        #main-backend .title-header .title {
            font-family: "Oswald", serif;
            color: #ffffff;
            font-size: 60px;
            line-height: 66px;
            font-weight: 500;
            margin-bottom: 30px;
        }

    #main-backend .btn-search, #main-backend .btn-search:hover {
        font-size: 18px;
        line-height: 22px;
        height: 50px;
        padding: 10px;
        background: #d01257;
        font-weight: 600;
        outline: none;
        margin-top: 35px;
    }

    #main-backend .btn-save-rate, #main-backend .btn-save-rate:hover {
        color: #ffffff;
        background: #dd0000;
        height: 50px;
        padding: 0px 20px;
        text-transform: uppercase;
    }



.table-backend {
    font-size: 0.8rem;
}

    .table-backend thead tr th {
        font-size: 14px;
        padding: 0.25rem 0.75rem;
        background-color: #d01257;
        color: #ffffff;
        border: 2px solid #d01257;
    }


    .table-backend tbody tr td {
        color: #ffffff;
        font-size: 16px;
        line-height: 20px;
        padding: 0.50rem 0.75rem;
        border: 1px solid #d01257;
        vertical-align: middle;
    }



        .table-backend tbody tr td a, .table-backend tbody tr td a:hover {
            color: #000000;
            text-transform: uppercase;
        }

            .table-backend tbody tr td a img.icon {
                width: 14px;
                margin: 0px 3px;
            }

                .table-backend tbody tr td a img.icon.remove {
                    width: 13px;
                }

        .table-backend tbody tr td input[type=text] {
            color: #ffffff;
            background: #232323;
            border: 1px solid #2f2f2f;
            background-clip: padding-box;
            box-shadow: none;
            padding: 0 1rem;
            box-sizing: border-box;
            width: 100%;
            height: 50px;
            outline: none;
        }



    .table-backend .badge {
        display: inline-block;
        padding: 5px 8px 4px 8px;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: 0.25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .table-backend .label {
        font-weight: bold;
        margin-bottom: 0px;
    }

    .table-backend .text {
        margin-bottom: 5px;
    }

    .table-backend .font-icon {
        font-size: 1.5rem;
    }


    .table-backend .action-link, .table-backend .action-link:hover {
        background: #007bff;
        color: #ffffff;
        padding: 7px 20px;
        display: block;
        border-radius: 0.25rem;
        font-weight: bold;
        text-decoration: none;
    }




/*****************************************
* Tour
*****************************************/
#trips {
    padding: 100px 0px 150px 0px;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
}

    #trips .title {
        font-family: "Oswald", serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
    }

    #trips .subtitle {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #ffffff;
        margin-bottom: 40px;
    }


@media (max-width: 830px) {
    #trips {
        padding: 50px 0px 20px 0px;
    }
}




.trips-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.trips-item {
    width: calc(100% / 3 - 20px);
    margin: 10px;
    transition: 0.2s ease all;
    padding-bottom: 20px;
    cursor: pointer;
    border-radius: 30px;
    transform: scale(1);
    position: relative;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    background: #000000;
}

    .trips-item:hover {
        box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
        transform: scale(1.03);
    }

    .trips-item .trips-photo {
        padding: 5px;
    }

        .trips-item .trips-photo img {
            transform: scale(1);
            transition: 0.2s ease all;
            border-radius: 30px 30px 0px 0px;
        }


    .trips-item .trips-info {
        padding: 20px 0px 0px 0px;
    }

        .trips-item .trips-info .trips-name {
            color: #d01257;
            font-size: 20px;
            font-weight: 600;
            line-height: 20px;
            padding: 0px 20px 5px 20px;
        }

        .trips-item .trips-info .trips-detail {
            color: #d01257;
            font-size: 16px;
            font-weight: 400;
            line-height: 16px;
            padding: 0px 20px 10px 20px;
        }

        .trips-item .trips-info .trips-option {
            padding: 0px 20px 15px 20px;
        }

        .trips-item .trips-info .trips-badge {
            font-weight: bold;
            font-size: 0.8rem;
            padding: 4px 5px;
            margin-right: 2px;
            transition: 0.2s ease all;
        }

            .trips-item .trips-info .trips-badge.passenger-badge {
                color: #ffffff;
                background: #e03126;
                border: 1px solid #e03126;
            }

            .trips-item .trips-info .trips-badge.luggage-badge {
                color: #000000;
                background: #ebcd15;
                border: 1px solid #ebcd15;
            }

        .trips-item .trips-info .trips-reservation {
            text-align: center;
        }

            .trips-item .trips-info .trips-reservation a {
                color: #ffffff;
                background: #3170e7;
                border: 2px solid #3170e7;
                padding: 17px 20px;
                display: block;
                width: 80%;
                border-radius: 30px;
                margin: 20px auto 30px auto;
                text-transform: uppercase;
                font-weight: bold;
                letter-spacing: 2px;
                font-size: 1.2rem;
                text-decoration: none;
                transition: 0.3s ease all;
            }

    .trips-item:hover .trips-info .trips-reservation a {
        color: #ffffff;
        background: #2c63cb;
        border: 2px solid #2c63cb;
    }




@media (max-width: 460px) {

    .trips-item {
        width: 100%;
        margin: 0px auto 20px auto;
        border-radius: 20px;
    }

        .trips-item .trips-photo img {
            border-radius: 20px 20px 0px 0px;
        }
}


.trips-start-price {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px 10px;
    color: #ffffffff;
    background: #e22216;
    margin: 0px auto;
    border-radius: 20px;
}

    .trips-start-price .start-text {
        text-align: center;
        font-size: 18px;
        line-height: 22px;
    }

    .trips-start-price .start-price {
        text-align: center;
        font-size: 18px;
        line-height: 22px;
        font-weight: bold;
    }


        .trips-start-price .start-price .rate-price {
            font-weight: bold;
            font-size: 34px;
            line-height: 38px;
            border-radius: 20px;
        }


@media (max-width: 460px) {

    .trips-start-price {
        font-size: 1.5rem;
        line-height: 2rem;
    }

        .trips-start-price .start-price .rate-price {
            font-size: 2rem;
            line-height: 2.3rem;
        }
}




/*****************************************
* Reviews Form
*****************************************/
#reviews-form {
    padding: 100px 0px 50px 0px;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
}


    #reviews-form .title {
        font-family: "Oswald", serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
    }

    #reviews-form .subtitle {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #ffffff;
        margin-bottom: 40px;
    }


@media (max-width: 460px) {
    #reviews-form {
        padding: 50px 0px 20px 0px;
    }

        #reviews-form .title {
            margin-bottom: 20px;
            font-size: 3rem;
        }
}




.reviews-form-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .reviews-form-wrapper .review-transfer {
        width: 80%;
        margin: 20px auto 20px auto;
        padding: 40px;
        background: #000000;
        border-radius: 20px;
        box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    }

        .reviews-form-wrapper .review-transfer .header {
            font-size: 28px;
            font-weight: bold;
            color: #d01257;
        }

        .reviews-form-wrapper .review-transfer .subheader {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #d01257;
        }

        .reviews-form-wrapper .review-transfer .form-group label {
            color: #3170e7;
            font-size: 1rem;
        }

        .reviews-form-wrapper .review-transfer .form-group input {
            height: 50px;
            border-radius: 0px;
            font-size: 1rem;
        }

        .reviews-form-wrapper .review-transfer .form-group textarea {
            border-radius: 0px;
            font-size: 1rem;
        }

    .reviews-form-wrapper .review-lists {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

        .reviews-form-wrapper .review-lists .review-item {
            width: calc(100% / 2 - 20px);
            margin: 10px;
            background: #000000;
            padding: 20px;
            color: #000000;
            box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
        }

            .reviews-form-wrapper .review-lists .review-item .review-name {
                font-size: 1.5rem;
                font-weight: bold;
                color: #d01257;
                margin-bottom: 5px;
            }

            .reviews-form-wrapper .review-lists .review-item .review-message {
                color: #d01257;
                font-size: 16px;
                line-height: 20px;
                margin-bottom: 10px;
            }

        .reviews-form-wrapper .review-lists .rating-stars ul {
            font-size: 0.8rem;
        }

    .reviews-form-wrapper .viewmore {
        text-align: center;
    }

        .reviews-form-wrapper .viewmore .viewmore-btn {
            background: #3170e7;
            border: #3170e7;
            color: #ffffff;
            padding: 10px 20px;
            margin-top: 20px;
            display: block;
            border-radius: 10px;
            font-size: 1.2rem;
        }


@media (max-width: 460px) {
    .reviews-form-wrapper .review-transfer {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

        .reviews-form-wrapper .review-transfer .header {
            font-size: 1.2rem;
        }

        .reviews-form-wrapper .review-transfer .subheader {
            font-size: 1rem;
        }

    .reviews-form-wrapper .review-lists {
        width: 100%;
    }

        .reviews-form-wrapper .review-lists .review-item {
            width: 100%
        }
}

/* Rating Star Widgets Style  */
/* https://codepen.io/depy/pen/vEWWdw */
.rating-stars .rating-header {
    color: #e36509;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

    .rating-stars .rating-header span {
        background: #ed143d;
        color: #ffffff;
        padding: 5px 10px 5px 10px;
        font-size: 1rem;
    }


.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

    .rating-stars ul > li.star {
        display: inline-block;
    }

        /* Idle State of the stars */
        .rating-stars ul > li.star > i.fa {
            font-size: 24px; /* Change the size of the stars */
            color: #ccc; /* Color on idle state */
        }

        /* Hover state of the stars */
        .rating-stars ul > li.star.hover > i.fa {
            color: #FFCC36;
        }

        /* Selected state of the stars */
        .rating-stars ul > li.star.selected > i.fa {
            color: #FF912C;
        }




/*****************************************
* Contact Form
*****************************************/
#contact-form {
    background: url('/Upload/contact/bg-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 0px 150px 0px;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
}


    #contact-form .title {
        font-family: "Oswald", serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
    }

    #contact-form .subtitle {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #ffffff;
        margin-bottom: 40px;
    }


@media (max-width: 460px) {
    #contact-form {
        padding: 50px 0px;
    }

        #contact-form .title {
            margin-bottom: 20px;
            font-size: 3rem;
        }
}




.contact-form-wrapper {
    width: 60%;
    margin: 0px auto;
    padding: 40px;
    background: #000000;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}


    .contact-form-wrapper .header {
        font-size: 1.5rem;
        font-weight: bold;
        color: #d01257;
    }

    .contact-form-wrapper .subheader {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #d01257;
    }

    .contact-form-wrapper .form-group label {
        color: #3170e7;
        font-size: 1rem;
    }

    .contact-form-wrapper .form-group input {
        height: 50px;
        border-radius: 0px;
        font-size: 1rem;
    }

    .contact-form-wrapper .form-group textarea {
        border-radius: 0px;
        font-size: 1rem;
    }

@media (max-width: 460px) {

    .contact-form-wrapper {
        width: 100%;
        padding: 20px;
    }

        .contact-form-wrapper .header {
            font-size: 1.2rem;
        }

        .contact-form-wrapper .subheader {
            font-size: 1rem;
        }
}





/*****************************************
* Footer
*****************************************/
#footer {
    color: #ffe86d;
    padding: 40px 0px 0px 0px;
    background: linear-gradient(to top, #000000 5%, #c72a59 100%);
}

    #footer .container {
        padding-right: 0px;
        padding-left: 0px;
    }


@media (max-width: 460px) {

    #footer {
        padding: 20px 0px 0px 0px;
    }
}


.footer-bottom {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


    .footer-bottom .footer-header {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .footer-bottom .footer-text {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        padding: 10px 0px 20px 0px;
        color: #ffe86d;
    }

    .footer-bottom .footer-phone {
        font-size: 16px;
        line-height: 20px;
        padding: 5px 0px;
        margin-bottom: 20px;
    }

        .footer-bottom .footer-phone a, .footer-bottom .footer-phone a:hover {
            color: #ffe86d;
            font-weight: 600;
            text-decoration: none;
        }

    .footer-bottom .left-panel {
        width: calc(100% / 3);
        padding: 20px;
    }

        .footer-bottom .left-panel .footer-brand {
        }

            .footer-bottom .left-panel .footer-brand img {
                width: 40%;
                margin-bottom: 20px;
            }

        .footer-bottom .left-panel .qr-code {
            width: 40%;
        }

    .footer-bottom .middle-panel {
        width: calc(100% / 3);
        padding: 20px;
    }


    .footer-bottom .right-panel {
        width: calc(100% / 3);
        padding: 20px;
    }

@media (max-width: 460px) {
    .footer-bottom .left-panel .footer-brand img {
        width: 30%;
    }
}



.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 20px 0px;
}

    .footer-social .social-item {
        width: 36px;
        height: 36px;
        margin: 0px 5px;
    }

        .footer-social .social-item  img {
            /*filter: brightness(0%);*/
        }


.footer-copyright {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #434b55;
}


@media (max-width: 460px) {

    .footer-bottom .left-panel, .footer-bottom .middle-panel, .footer-bottom .right-panel {
        width: 100%;
        padding: 10px 20px;
    }

    .footer-bottom .footer-header {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .footer-bottom .footer-text {
        padding: 10px 0px 10px 0px;
    }
}





/*****************************************
* Customer
*****************************************/
#customer {
    padding: 100px 0px 0px 0px;
    background: #1e5799; /* Old browsers */
    background: -moz-linear-gradient(24deg, #c72a59 0%, #c72a59 48%, #000000 48%, #000000 100%);
    background: -webkit-linear-gradient(24deg, #c72a59 0%,#c72a59 48%,#2989d8 48%,#000000 100%);
    background: linear-gradient(24deg, #c72a59 0%, #c72a59 48%, #000000 48%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
    background: #2570bf;
    position: relative;
}

    #customer .title {
        font-family: "Oswald", serif;
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 40px;
        width: 100%;
        text-align: center;
        color: #3a6fbd;
    }

        #customer .title span {
            background: #fae457;
            padding: 8px 20px 12px 20px;
            display: inline-block;
        }


@media (max-width: 460px) {
    #customer {
        padding: 50px 0px 0px 0px;
        /*background: linear-gradient(52deg, #c72a59 0%, #c72a59 48%, #000000 48%, #000000 100%);*/
        background: #2570bf;
    }


        #customer .title {
            font-size: 36px;
            line-height: 36px;
            margin-bottom: 20px;
        }
}





@media (max-width: 460px) {
}


/*****************************************
* Customer
*****************************************/
#contact-modal {
}

    #contact-modal .title {
        color: #000000;
        font-size: 20px;
        margin-bottom: 10px;
    }

    #contact-modal .contact-lists {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #contact-modal .contact-lists .contact-item {
            width: calc(100% / 6);
            margin: 10px;
        }





/*****************************************
* Notice Box
*****************************************/
#notice-box {
    padding: 50px 0px 50px 0px;
    color: #000000;
    background: #c72a59;
}

.notice-box {
    width: 60%;
    margin: 0px auto;
}

    .notice-box .title {
        font-family: "Oswald", serif;
        color: #d5426e;
        font-size: 56px;
        line-height: 56px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
    }

        .notice-box .title span {
            background: #000000;
            padding: 8px 20px 12px 20px;
            display: inline-block;
        }

    .notice-box .detail {
        color: #000000;
        background: #e9e9e9;
        font-size: 20px;
        line-height: 28px;
        padding: 20px;
    }

        .notice-box .detail b, .notice-box .detail strong {
            color: #f10040;
        }

        .notice-box .detail a[href^="tel"],
        .notice-box .detail a[href^="mailto"] {
            color: #ffe34c;
            text-decoration: none;
        }


@media (max-width: 460px) {
    #notice-box {
        padding: 50px 0px 50px 0px;
        background-position: top left;
        background: #d01257;
    }

    .notice-box {
        width: 100%;
    }

        .notice-box .title {
            font-size: 40px;
            line-height: 40px;
            text-align: left;
        }


        .notice-box .detail {
            width: 100%;
            color: #000000;
            font-size: 20px;
            line-height: 26px;
            padding: 20px;
        }
}



/*****************************************
* customer-upload
*****************************************/
#customer-upload {
    padding: 0px 0px;
    background: linear-gradient(to bottom, #000000 0%, #c72a59 100%);
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}


#photoDropzone .image-lists {
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    #photoDropzone .image-lists .image-item {
        width: calc(100% / 5);
        background: #c72a59;
        padding: 2px;
        display: block;
        border: 1px solid #c72a59;
        position: relative;
    }

        #photoDropzone .image-lists .image-item .image-remove {
            color: #000000;
            background: #c72a59;
            text-align: center;
            padding: 0px 10px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            position: absolute;
            top: 0px;
            right: 0px;
            margin-top: 0px;
            outline: none;
            height: 30px;
        }


#photoDropzone #actions {
    margin: 2em 0;
}

/* Mimic table appearance */
#photoDropzone div.table {
    display: table;
    min-height: 300px;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    background: #130609;
    color: #ffffff;
}

    #photoDropzone div.table .file-row {
        display: table-row;
        background: #060204;
    }

        #photoDropzone div.table .file-row > div {
            display: table-cell;
            vertical-align: top;
            border-top: 1px solid #c72a59;
            padding: 8px;
        }

        #photoDropzone div.table .file-row:nth-child(odd) {
            background: #0e0e0e;
        }

/* The total progress gets shown by event listeners */
#photoDropzone #total-progress {
    opacity: 0;
    transition: opacity 0.3s linear;
}

/* Hide the progress bar when finished */
#photoDropzone #previews .file-row.dz-success .progress {
    opacity: 0;
    transition: opacity 0.3s linear;
}

/* Hide the delete button initially */
#photoDropzone #previews .file-row .delete {
    display: none;
}

/* Hide the start and cancel buttons and show the delete button */
#photoDropzone #previews .file-row.dz-success .start,
#photoDropzone #previews .file-row.dz-success .cancel {
    display: none;
}

#photoDropzone #previews .file-row.dz-success .delete {
    display: block;
}



/*****************************************
* Quick Booking
*****************************************/
#quick-booking {
    padding: 100px 0px 100px 0px;
    background: #000000;
    /*background: linear-gradient(45deg, #918122 0%, #fae042 48%, #000000 48%, #1c1c1c 100%);*/
    /*background: linear-gradient(24deg, #918122 0%, #fae042 48%, #000000 48%, #1c1c1c 100%);*/
}

    #quick-booking .title {
        font-family: "Oswald", serif;
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 40px;
        width: 100%;
        text-align: center;
        color: #ffffff;
    }


@media (max-width: 460px) {
    #quick-booking {
        padding: 50px 0px;
    }

        #quick-booking .title {
            font-size: 40px;
            line-height: 40px;
            margin-bottom: 30px;
        }
}



.quick-booking-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    background: #000000;
    color: #c72a59;
    border: 1px solid #c72a59;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    /*color: #ffdf32;
    border: 1px solid #ffdf32;
    box-shadow: 0 0 5px rgba(255, 233, 50, 0.6) inset, 0 0 10px 2px rgba(255, 233, 50, 0.5) inset, 0 0 15px 4px rgba(255, 233, 50, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
*/
}


    .quick-booking-item .quick-booking-pickup {
        width: 45%;
    }

        .quick-booking-item .quick-booking-pickup .pickup-label {
            font-size: 14px;
            color: #8d8d8d;
        }


    .quick-booking-item .quick-booking-switch {
        width: 20%;
        height: 60px;
        text-align: center;
        background: url(/frontend-assets/images/icons/car-black.png);
        background-repeat: no-repeat;
        background-size: auto 40px;
        background-position: top 10px center;
    }

        .quick-booking-item .quick-booking-switch img {
            height: 36px;
        }


    .quick-booking-item .quick-booking-dropoff {
        width: 25%;
    }


        .quick-booking-item .quick-booking-dropoff .dropoff-label {
            font-size: 14px;
            color: #8d8d8d;
        }

    .quick-booking-item .quick-booking-booking {
        width: 10%;
    }

        .quick-booking-item .quick-booking-booking a {
            color: #bf375b;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            background: #ffe34c;
            border: 3px solid #bf375b;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            padding: 10px 0px;
            outline: none;
            border-radius: 20px;
        }

            .quick-booking-item .quick-booking-booking a:hover {
                color: #000000;
                font-size: 16px;
                font-weight: 600;
                line-height: 18px;
                background: #eb0449;
                border: 1px solid #eb0449;
                /*background: #ffdf32;
                border: 1px solid #ffdf32;*/
            }


@media (max-width: 460px) {
    .quick-booking-item .quick-booking-pickup {
        width: 100%;
        margin-bottom: 5px;
        font-size: 20px;
        line-height: 20px;
    }

    .quick-booking-item .quick-booking-switch {
        display: none;
    }

    .quick-booking-item .quick-booking-dropoff {
        width: 100%;
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 20px;
    }

    .quick-booking-item .quick-booking-booking {
        width: 100%;
    }
}

/*****************************************
* Reviews Carousel
*****************************************/
#reviews-carousel {
    /*padding: 100px 0px;
    background: linear-gradient(190deg, #c72a59 0%, #c72a59 48%, #000000 48%, #000000 100%);*/
    padding: 50px 0px;
    /*background: linear-gradient(190deg, #ffe34c 0%, #c72a59 48%, #c72a59 48%, #000000 100%);*/
    background: url('/upload/home/bg-home-reviews.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

    #reviews-carousel .title {
        font-family: "Oswald", serif;
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 40px;
        width: 100%;
        text-align: center;
        color: #3a6fbd;
    }

        #reviews-carousel .title span {
            background: #fae457;
            padding: 8px 20px 12px 20px;
            display: inline-block;
        }


@media (max-width: 460px) {
    #reviews-carousel {
        padding: 50px 0px;
    }

        #reviews-carousel .title {
            font-family: "Oswald", serif;
            font-size: 36px;
            line-height: 36px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
}


/*https://codepen.io/donmar/pen/OZNEym*/
.reviews-carousel {
}


#reviews-carousel .swiper-container {

}


    #reviews-carousel .swiper-container .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

        #reviews-carousel .swiper-container .swiper-wrapper .swiper-slide {
            height: unset;
        }


.reviews-carousel-item {
    background: #ffffff;
    padding: 25px;
    color: #0b3869;
    border: #0b3869;
    min-height: 200px;
    box-shadow: 0 0 5px rgba(11, 56, 105, 0.6) inset, 0 0 10px 2px rgba(11, 56, 105, 0.5) inset, 0 0 15px 4px rgba(11, 56, 105, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height:100%;
    /*height: 320px;
    overflow: auto;*/
}

    .reviews-carousel-item .review-name {
        font-size: 36px;
        line-height: 36px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .reviews-carousel-item .review-message {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
    }



@media (max-width: 460px) {
    .reviews-carousel-item {
        /*min-height: 320px;*/
    }

}


/*****************************************
* clients Carousel
*****************************************/
.clients-lists {
    padding: 0px 0px 0px 0px;
}

    .clients-lists .swiper-container {
        position: relative;
    }

        .clients-lists .swiper-container:before,
        .clients-lists .swiper-container:after {
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            content: "";
            z-index: 2;
        }

      /*  .clients-lists .swiper-container:before {
            left: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0), #000000);
        }

        .clients-lists .swiper-container:after {
            right: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
        }*/


@media (max-width: 450px) {
    .clients-lists .swiper-container:before,
    .clients-lists .swiper-container:after {
        width: 100px;
        height: 100%;
    }
}


.client-item img {
    border-radius: 20px;
    border: 6px solid #284d83;
}


/*****************************************
* Quick Menu
*****************************************/
.quick-menu {
    position: fixed;
    bottom: 10%;
    right: 0;
    background: linear-gradient(to top, #000000 0%, #d01257 100%);
    padding: 10px 5px 10px 10px;
    width: 60px;
    border-radius: 0px 0px 0px 0px;
    z-index: 99;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(230, 0, 115, 0.5) inset, 0 0 15px 4px rgba(230, 0, 115, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
}

    .quick-menu .quick-menu-item {
        display: block;
        padding: 10px 5px;
    }

        .quick-menu .quick-menu-item  img {
            /*filter: brightness(0%);*/
            transform:scale(1);
            transition:0.1s ease all;
        }

            .quick-menu .quick-menu-item img:hover {
                transform: scale(1.1);
            }

@media (max-width: 430px) {
    .quick-menu {
        width: 50px;
        padding: 5px;
        border-radius: 15px 0px 0px 15px;
    }
}

