/*
    Author     : Pixel Industry
    Website    : www.pixel-industry.com
*/

/*
    TABLE OF CONTENTS
    ========================================================================= */
/*      1. CSS RESET
        2. DOCUMENT STYLES
        3. TYPOGRAPHY
        4. HEADER
        5. PAGE TITLES
        6. CUSTOM SECTION BACKGROUNDS
        7. ELEMENTS
            7.1. ACCORDION
            7.2. BLOCKQUOTE
            7.3. BUTTONS
            7.4. CALL TO ACTION
            7.5. CLIENT CAROUSEL
            7.6. CLIENT LIST
            7.7. COMPANY TIMELINE
            7.8. CUSTOM HEADING
            7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
            7.10. DRIVER APPLICATION
            7.11. EVENTS
            7.12. INTRO TITLE
            7.13. LATEST POSTS STYLE 01
            7.14. LATEST POSTS STYLE 02
            7.15. LATEST POSTS STYLE 03
            7.16. LIST WITH ICONS
            7.17. NUMBERS COUNTER
            7.18. PROMO BOXES
            7.19. SERVICES FEATURE BOX
            7.20. SERVICES GALLERY
            7.21. SERVICE ICON CENTER
            7.22. SERVICE ICON CENTER BOXED
            7.23. SERVICES ICON LEFT
            7.24. SERVICES ICON LEFT BOXED
            7.25. SERVICE LIST - small icons and text
            7.26. SERVICES LIST BIG ICONS
            7.27. SERVICES LIST BIG ICONS + DETAILS (text)
            7.28. SHIPPING QUOTE FORM
            7.29. SLIDER - MASTER SLIDER
            7.30. STATEMENT ELEMENT
            7.31. TABLE
            7.32. TABS
            7.33. TEAM MEMBERS
            7.34. TEAM MEMBERS LIST
            7.35. TESTIMONIAL
            7.36. TRACKING FORM
            7.37. VEHICLE GALLERY FULL
        8. HOME MINIMAL CUSTOM STYLES
        9. BLOG
        10. LOCATIONS PAGE
        11. CONTACT
        12. WIDGETS
        13. FOOTER
*/

/*
    1. CEE RESET
----------------------------------------------------------------------------- */

:root {
    --primary-color: #e8b470;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*:focus {
    outline: 0;
    text-decoration: none;
}

a:focus,
a:active {
    text-decoration: none;
    outline: 0;
}

/* ==========================================================================
    2. DOCUMENT STYLES
    ========================================================================= */
body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 22px;
    color: #777;
    background-color: #fff;
}

*[class^="row"] *[class^="row"]:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
    3. TYPOGRAPHY
    ========================================================================= */
p,
a,
span {
    color: #777;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 22px;
}

p {
    padding-bottom: 15px;
}

a {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 0;
    color: #333;
}

h1 {
    font-size: 30px;
    line-height: 30px;
}

h2 {
    font-size: 24px;
    line-height: 26px;
}

h3 {
    font-size: 21px;
    line-height: 24px;
}

h4 {
    font-size: 14px;
    line-height: 22px;
}

h5 {
    font-size: 16px;
    line-height: 18px;
}

h6 {
    font-size: 15px;
    line-height: 18px;
}

strong {
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img.float-left {
    float: left;
    margin: 12px 12px 12px 0;
}

img.float-right {
    float: right;
    margin: 12px 0px 12px 12px;
}

.img-fixed-bottom {
    position: relative;
    bottom: -70px;
}

ul,
ol {
    list-style-position: inside;
}

ul li,
ol li {
    padding-bottom: 5px;
}

blockquote+p {
    margin-top: 15px;
}

.required {
    color: #ce292d;
}

.text-big {
    font-size: 18px;
    line-height: 25px;
    color: #333;
}

.align-right {
    text-align: right;
}

a.read-more {
    float: right;
    position: relative;
}

a.read-more span {
    text-transform: uppercase;
    font-weight: 700;
    display: block;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.read-more:hover span {
    transform: translate(-15px, 0);
    -webkit-transform: translate(-15px, 0);
    -moz-transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0);
}

a.read-more i {
    font-size: 11px;
    line-height: 20px;
    opacity: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.read-more:hover i {
    opacity: 1;
}

a.download-link {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

a.download-link span {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.download-link span i {
    padding-right: 5px;
}

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

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

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

.svg-white .st0 {
    fill: #fff;
}

/* ==========================================================================
    4. HEADER
    ========================================================================= */
.header-wrapper {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-wrapper.header-transparent {
    background-color: transparent;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.header-transparent02 {
    background-color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.header-transparent.solid-color,
.header-wrapper.header-transparent02.solid-color {
    height: 145px;
    margin-top: 14px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.header-wrapper.header-transparent.solid-color .header-style01 .main-nav {
    background: #fff;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#header {
    position: relative;
    z-index: 1000;
}

#search {
    width: 40px;
    min-height: 80px;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 30px;
    float: right;
    z-index: 1005;
    background-color: transparent;
    padding-top: 20px;
}

.search-submit {
    background-image: url("../img/search.png");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 40px;
    min-height: 40px;
    border: none;
    text-indent: -9999px;
    position: absolute;
    cursor: pointer;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

#search:focus,
.search-submit:focus,
#m_search:focus {
    outline: none;
}

#m_search {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 10px 25px;
    position: absolute;
    top: 100%;
    width: 170px;
    right: 0;
    font-style: italic;
    color: #666;
    display: none;
}

/*
    MAIN NAVIGATION
*/
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: transparent;
}

.main-nav .row {
    margin-bottom: 0;
}

.main-nav {
    /* background-color: #ffffff;  */
    /* background: -moz-linear-gradient(top,  #ffffff 0%, #fcfcfc 100%);  */
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fcfcfc));  */
    /* background: -webkit-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%);  */
    /* background: -o-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%);  */
    /* background: -ms-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%);   */

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    margin-top: 30px;
    /*
    -webkit-box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2);
    -moz-box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2); */
    /* box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2);  */
}

.navbar {
    min-height: 80px;
    margin-bottom: 0;
}

.navbar-default {
    border: none;
    background: none;
}

#dl-menu {
    display: none;
}

.navbar-nav>li {
    padding-bottom: 0;
}

.navbar-nav>li>a {
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4caca;
    text-transform: uppercase;
}

@media (min-width: 991px) and (max-width: 1200px) {
    .navbar-nav>li>a {
        font-size: 9px;
    }
}

.navbar-default .navbar-nav>li>a {
    color: #d4caca;
    border-bottom: 3px solid transparent;
    border-bottom: 3px solid red;
}

.navbar-nav>li>a:hover {
    color: var(--primary-color) !important;
    transition: 2ms ease-in !important;
}

.nav>li>a {
    padding-left: 25px;
    padding-right: 25px;
    color: white;
}

.header-style01 .navbar-default .navbar-nav>li>a:hover {
    border-bottom: 3px solid;
}

.dropdown-menu {
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #eee;
    min-width: 240px;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
}

.dropdown .dropdown-menu .dropdown-submenu>a {
    position: relative;
}

.dropdown .dropdown-menu .dropdown-submenu>a:after {
    position: absolute;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #aaa;
    right: 0;
    top: 50%;
    margin-top: -3px;
}

.dropdown-menu>li {
    padding: 0 20px;
}

.dropdown-menu>li>a {
    font-size: 13px;
    color: #333;
    padding: 15px 0px;
    border-bottom: 1px dotted #ddd;
}

.dropdown-menu>li:last-child a {
    border: none;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    left: 100%;
    top: -3px;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown.dropdown-submenu>a {
    position: relative;
}

.navbar-header {
    padding-top: 24px;
    padding-left: 30px;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: none;
}

.navbar-collapse {
    float: right;
    padding: 0;
}

.nav>li.current-menu-item>a {
    border-bottom: 3px solid;
}

/*  HEADER STYLE 01 - WITH TOPBAR
    ------------------------------------------------------------------------- */
.header-style01 #top-bar-wrapper .row {
    margin-bottom: 0;
}

.header-style01 #quick-links {
    padding-top: 8px;
}

.header-style01 #quick-links li {
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style01 #quick-links li span,
.header-style01 #quick-links li a {
    color: #fff;
}

.header-style01 #top-bar-wrapper {
    padding: 20px 0 0;
    width: 100%;
}

/*  HEADER STYLE 02 - LIGHT TOPBAR
    ------------------------------------------------------------------------- */

.header-style02 #top-bar-wrapper .row {
    margin-bottom: 0;
}

.header-style02 #quick-links {
    padding-top: 8px;
}

.header-style02 #quick-links li {
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style02 #top-bar-wrapper {
    background-color: #fcfcfc;
    padding: 10px 0;
    width: 100%;
}

.header-style02 .navbar-header {
    padding-left: 0;
}

.header-style02 #search {
    margin-right: 0;
}

.wpml-languages {
    display: block;
    float: right;
    position: relative;
}

.wpml-languages a.active {
    display: block;
    padding: 8px 6px 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}

.wpml-languages a.active i {
    font-size: 9px;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.wpml-languages a.active img {
    width: 22px;
    float: left;
}

.wpml-languages a img {
    width: 22px;
}

.wpml-lang-dropdown {
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 102%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    overflow: hidden;
    border: 1px solid #ddd;
    width: 100%;
    display: none;
    z-index: 10001;
}

.wpml-lang-dropdown li {
    list-style: none;
    padding: 8px 15px;
}

.wpml-languages:hover ul.wpml-lang-dropdown {
    display: block;
}

.header-style02 .header-inner {
    padding: 20px 0;
}

.header-style02 .header-inner .main-nav {
    margin-top: 0;
    background: none;
}

.header-style02 .navbar-default .navbar-nav>li>a:hover,
.header-style02 .nav>li.current-menu-item>a {
    border: none;
    border-bottom: none;
    border-color: transparent;
}

.header-style02 .navbar-default .navbar-nav>li>a {
    border-bottom: none;
}

/*  HEADER STYLE 02 - DARK TOPBAR
    ------------------------------------------------------------------------- */
.header-style02 #top-bar-wrapper.dark {
    background-color: #333333;
}

.header-style02 #top-bar-wrapper.dark #quick-links li span,
.header-style02 #top-bar-wrapper.dark #quick-links li a {
    color: #ccc;
}

#top-bar-wrapper.dark .wpml-languages a.active,
#top-bar-wrapper.dark .wpml-lang-dropdown {
    background-color: #444;
    border: 1px solid #555;
}

#top-bar-wrapper.dark .wpml-languages a.active i {
    color: #ccc;
}

/*  HEADER STYLE 02 - DARK HEADER
    ------------------------------------------------------------------------- */
.header-wrapper.dark #top-bar-wrapper {
    background-color: #222;
}

.header-wrapper.dark #quick-links li span,
.header-wrapper.dark #quick-links li a {
    color: #ccc;
}

.header-wrapper.dark .wpml-languages a.active,
.header-wrapper.dark .wpml-lang-dropdown {
    background-color: #333;
    border: 1px solid #444;
}

.header-wrapper.dark .wpml-languages a.active i {
    color: #ccc;
}

.header-wrapper.dark {
    background-color: #333;
}

.header-wrapper.dark .main-nav {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.dark .navbar-default .navbar-nav>li>a {
    color: #fff;
}

.header-wrapper.dark .dropdown-menu {
    background-color: #333;
    border: 1px solid #444;
}

.header-wrapper.dark .dropdown-menu>li>a {
    color: #888;
    border-bottom: 1px dotted #444;
}

.header-wrapper.dark .dropdown-menu>li>a:hover {
    color: #fff;
}

.header-wrapper.dark .dropdown .dropdown-menu .dropdown-submenu>a:after {
    border-left: 5px solid #888;
}

.header-wrapper.dark .dropdown .dropdown-menu .dropdown-submenu>a:hover:after {
    border-left: 5px solid #fff;
}

.header-wrapper.dark #m_search {
    background: #333;
    border: 1px solid #444;
    color: #ccc;
}

/*  HEADER STYLE 03
    ------------------------------------------------------------------------- */
.header-style03 .info-container {
    float: right;
}

.header-style03 .info-container #quick-links,
.header-style03 .info-container .wpml-languages,
.header-style03 .info-container #search {
    float: left;
    padding: 0 10px;
}

.header-style03 .info-container #quick-links {
    padding-top: 10px;
}

.header-style03 #quick-links {
    padding-top: 8px;
}

.header-style03 #quick-links li {
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style03 .wpml-lang-dropdown {
    width: auto;
    left: 10px;
}

.header-style03 #search {
    min-height: 60px;
}

.header-style03 .logo-info-container {
    padding: 20px 0;
}

.header-style03 .logo-info-container .row {
    margin-bottom: 0;
}

.header-style03 .main-nav {
    margin-top: 0;
    border-top: 1px solid #eee;
    background: none;
}

.header-style03 .navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    float: left;
    width: 100%;
}

.header-style03 .navbar-nav>li>a {
    line-height: 30px;
}

.header-style03 .navbar {
    min-height: 30px;
}

.header-style03 .nav>li.current-menu-item>a {
    border-bottom: none;
}

.header-style03 .navbar a.btn {
    position: relative;
    top: 10px;
}

/*  HEADER STYLE 03 DARK
    ------------------------------------------------------------------------- */
.header-wrapper.dark .header-style03 .main-nav {
    border-top: 1px solid #444;
}

/* ==========================================================================
    5. PAGE TITLES
    ========================================================================= */
.page-title-style01 {
    padding-top: 200px;
    padding-bottom: 150px;
}

.page-title-negative-top {
    margin-top: 0 !important;
    padding-top: 185px;
}

.page-title-style01 .row,
.page-title-style02 .row {
    margin-bottom: 0;
}

.page-title-style01 h1 {
    color: var(--primary-color);
    text-align: center;
}

.breadcrumb-container {
    width: 100%;
    float: left;
}

.page-title-style01 .breadcrumb {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.breadcrum-list {
    font-size: 18px !important;
    padding-top: 10px;
}

.breadcrum-p {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center !important;
}

.breadcrumb-item a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #ed5f34;
}

.breadcrum-list:not(:last-child)::after {
    content: " - ";
    margin: 0 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.page-title-style02 {
    padding: 70px 0;
    margin-bottom: 70px;
}

.page-title-style02 h1 {
    color: #fff;
    margin-bottom: 0;
}

.page-title-style02 .breadcrumb-container {
    float: right;
    width: auto;
}

.pt-bkg01 {
    background-image: url("img/pics/contactus2.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg02 {
    background-image: url("../img/pics/page-title02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg03 {
    background-image: url("../img/pics/page-title03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg04 {
    background-image: url("../img/pics/page-title04.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg05 {
    background-image: url("../img/pics/page-title05.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg06 {
    background-image: url("../img/pics/page-title06.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg07 {
    background-image: url("../img/pics/page-title07.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg08 {
    background-image: url("../img/pics/blogs.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg09 {
    background-image: url("../img/blog/04.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg17 {
    background-image: url("../img/blog/05.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg18 {
    background-image: url("../img/blog/06.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg10 {
    background-image: url("../img/pics/page-title10.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg11 {
    background-image: url("../img/pics/page-title11.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg12 {
    background-image: url("../img/pics/page-title12.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg13 {
    background-image: url("../img/pics/page-title13.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg14 {
    background-image: url("../img/pics/page-title14.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg15 {
    background-image: url("../img/pics/page-title15.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg16 {
    background-image: url("../img/pics/page-title16.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================================
    6. CUSTOM SECTION BACKGROUNDS
    ========================================================================= */
.page-content .custom-bkg {
    padding-top: 70px;
    padding-bottom: 70px;
}

.page-content .custom-bkg-serv {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-content.column-img-bkg {
    padding: 0;
}

.page-content.column-img-bkg .row {
    margin-bottom: 0;
}

.custom-col-padding-both {
    /* padding-top: 120px; */
}

.custom-col-padding-bottom {
    padding-bottom: 120px;
}

.img-bkg01 {
    background-image: url("../img/pics/img-bkg01.webp");
    /* height:  449px; */
    height: 500px !important;
}

.img-bkg02 {
    background-image: url("../img/pics/img-bkg02.webp");
}

.img-bkg03 {
    background-image: url("../img/pics/img-bkg03.webp");
}

*[class*="img-bkg"] {
    background-size: cover;
}

.custom-bkg.bkg-grey {
    background-color: #f6f6f6;
}

.custom-bkg.bkg-light-blue {
    background-color: #f4fcfc;
}

.custom-bkg-serv.bkg-light-blue {
    background-color: #f4fcfc;
}

.custom-bkg.bkg-dark-blue {
    background-color: #2c3741;
}

.custom-bkg.bkg-dark-blue.transparent01 {
    background-color: rgba(37, 39, 46, 0.7);
}

.custom-bkg.bkg-dark-blue.transparent02 {
    background-color: rgba(37, 39, 46, 0.8);
}

.custom-bkg.bkg-dark-blue.transparent03 {
    background-color: rgba(37, 39, 46, 0.9);
}

.page-title-style01+.page-content.custom-bkg,
.page-title-style02+.page-content.custom-bkg {
    margin-top: -70px;
}

.page-content.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax01 {
    background-image: url("../img/pics/parallax0001.webp");
}

.parallax-features {
    background-image: url("../img/features.webp");
}

.parallax02 {
    background-image: url("../img/pics/parallax02.jpg");
}

.parallax03 {
    background-image: url("../img/pics/parallax03.jpg");
}

.parallax04 {
    background-image: url("../img/pics/parallax04.jpg");
}

.parallax05 {
    background-image: url("../img/pics/parallax05.jpg");
}

.parallax-why {
    background-image: url("../img/why-choose-us/why-choose-us.webp");
}

.page-content.dark h1,
.page-content.dark h2,
.page-content.dark h3,
.page-content.dark h4,
.page-content.dark h5,
.page-content.dark h6 {
    color: #fff;
}

.page-content.dark p,
.page-content.dark span,
.page-content.dark li,
.page-content.dark a {
    color: #eee;
}

*[class^="col-"].custom-bkg {
    padding: 30px;
}

*[class^="col-"].custom-bkg.dark h1,
*[class^="col-"].custom-bkg.dark h2,
*[class^="col-"].custom-bkg.dark h3,
*[class^="col-"].custom-bkg.dark h4,
*[class^="col-"].custom-bkg.dark h5,
*[class^="col-"].custom-bkg.dark h6 {
    color: #fff;
}

*[class^="col-"].custom-bkg.dark p,
*[class^="col-"].custom-bkg.dark a,
*[class^="col-"].custom-bkg.dark span,
*[class^="col-"].custom-bkg.dark li,
*[class^="col-"].custom-bkg.dark label {
    color: #eee;
}

/* ==========================================================================
    7. ELEMENTS
    ========================================================================= */

/*  7.1. ACCORDION
    ------------------------------------------------------------------------- */
.accordion .title {
    width: 100%;
    background-color: #f6f6f6;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 15px;
    float: left;
}

.accordion .title a {
    font-size: 15px;
    color: #333;
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-weight: 700;
    position: relative;
    width: 100%;
    padding-left: 20px;
    display: block;
    float: left;
}

.accordion .title::before {
    content: "\f067";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    display: block;
}

.accordion .title.active::before {
    content: "\f068";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    display: block;
}

.accordion .title a::after {
    display: none;
}

.accordion.careers .title {
    padding: 15px 62px 15px 20px;
}

.accordion.careers .title a {
    padding-left: 0;
}

.accordion.careers .title::before {
    display: none;
}

.accordion.careers .title a span {
    color: #333;
    font-weight: 600;
    width: 30%;
    display: block;
    float: left;
    font-size: 13px;
}

.accordion .job-position,
.accordion .job-end-date {
    text-transform: uppercase;
}

.accordion.careers .title::after {
    position: absolute;
    content: "";
    display: block;
    width: 52px;
    height: 100%;
    background-color: #e6e6e6;
    background-image: url("../img/accordion-closed.png");
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.accordion.careers .title.active::after {
    background-image: url("../img/accordion-opened.png");
    background-repeat: no-repeat;
    background-position: center;
}

.accordion.careers .title:hover::after {
    background-image: url("../img/accordion-opened.png");
    background-repeat: no-repeat;
    background-position: center;
}

.accordion .content {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-top: 20px;
}

/*
    7.2. BLOCKQUOTE
    ------------------------------------------------------------------------- */
blockquote {
    margin-left: 30px;
    border-left: 3px solid;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 25px;
    font-style: italic;
    color: #333;
}

/*  7.3. BUTTONS
    ------------------------------------------------------------------------- */
.btn {
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    display: inline-block;
    backface-visibility: hidden;
    float: right;

    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.btn span {
    color: #000000;
}

.dark .btn span {
    color: #000000;
}

.btn-big {
    padding: 12px 60px;
    font-size: 12px;
}

.btn-medium {
    padding: 10px 40px;
    font-size: 12px;
}

.btn-small {
    padding: 4px 20px;
    font-size: 11px;
}

.btn-yellow {
    background-color: var(--primary-color) !important;
}

.btn-centered {
    float: none;
    display: table;
}

.btn-yellow:hover {
    background-color: #fcc820 !important;
}

/*  7.4. CALL TO ACTION
    ------------------------------------------------------------------------- */
.call-to-action .text {
    width: 70%;
    float: left;
}

.call-to-action .btn {
    float: right;
    position: relative;
    top: 30px;
}

/*
    7.5. CLIENT CAROUSEL
    ------------------------------------------------------------------------- */
#client-carousel .owl-item img {
    opacity: 0.7;

    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
}

#client-carousel .owl-item:hover img {
    opacity: 1;
}

/*  7.6. CLIENT LIST
    ------------------------------------------------------------------------- */
.clients-li {
    width: 100%;
}

.clients-li li {
    list-style: none;
    float: left;
    width: 33.33333333%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid #eee;
}

.clients-li li:first-child {
    padding-left: 0;
}

.clients-li:nth-child(3n) {
    padding-right: 0;
}

.clients-li li img {
    opacity: 0.7;

    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;

    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.clients-li li:hover img {
    opacity: 1;
}

.col-md-6 .clients-li li {
    max-height: 92px;
}

/*  7.7. COMPANY TIMELINE
    ------------------------------------------------------------------------- */
.company-timeline {
    width: 100%;
}

.company-timeline li {
    list-style: none;
    float: left;
    width: 100%;
    position: relative;
}

.company-timeline li .timeline-item-details::before {
    position: absolute;
    content: "";
    display: block;
    left: 35px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    z-index: 1;
}

.company-timeline .icon-date-container {
    width: 70px;
    height: 70px;
    float: left;
    border: 2px solid #ddd;
    background-color: #fff;
    z-index: 2;
    position: relative;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.company-timeline .icon-date-container i {
    width: 70px;
    height: 70px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
}

.company-timeline .timeline-item-details {
    padding-left: 100px;
    position: relative;
    padding-bottom: 30px;
}

.company-timeline li:last-child .timeline-item-details {
    padding-bottom: 0;
}

/*
    7.8. CUSTOM HEADING
    ------------------------------------------------------------------------- */
.row .custom-heading:only-child {
    margin-bottom: -70px;
}

.custom-heading {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 12px;
    text-transform: uppercase;
}

.custom-heading::after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    left: 0;
    top: 0;
}

.custom-heading.centered {
    text-align: center;
}

.custom-heading.centered:after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    left: 50%;
    margin-left: -20px;
    top: 0;
}

/*
    7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
    ------------------------------------------------------------------------- */
.col-md-12 .custom-heading02:only-child {
    margin-bottom: 0;
}

.row .custom-heading02:only-child {
    margin-bottom: -30px;
}

.custom-heading02 {
    position: relative;
    margin-bottom: 40px;
}

.custom-heading02 h1,
.custom-heading02 h2,
.custom-heading02 h3,
.custom-heading02 h4 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
}

.custom-heading02 p {
    padding-top: 7px;
    text-transform: uppercase;
    text-align: center;
}

.custom-heading02:after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}

.custom-heading02.simple h1,
.custom-heading02.simple h2,
.custom-heading02.simple h3,
.custom-heading02.simple h4 {
    padding-bottom: 15px;
}

/*  7.10. DRIVER APPLICATION
    ------------------------------------------------------------------------- */
.driver-app-form fieldset {
    width: 33.33333333%;
    padding-right: 15px;
    float: left;
}

.driver-app-form fieldset:nth-child(3n) {
    padding-right: 0;
}

.driver-app-form .wpcf7-select {
    max-height: 34px;
}

/*
    7.11. EVENTS
    ------------------------------------------------------------------------- */
.table-responsive {
    overflow-y: hidden;
}

.events-table thead {
    border-bottom: 1px solid #e6e6e6;
}

.events-table thead th {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    padding-left: 15px;
    padding-bottom: 10px;
}

.events-table thead th:first-child {
    padding-left: 0;
}

.events-table tbody td {
    padding: 0 15px;
    vertical-align: middle;
}

.events-table .event-date {
    padding: 20px 0;
}

.events-table .event-date .day {
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.events-table .event-date .month {
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/*  7.12. INTRO TITLE
    ------------------------------------------------------------------------- */
.intro-title {
    width: 100%;
}

.intro-title p {
    font-size: 24px;
    line-height: 30px;
    color: #333;
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    text-align: center;
}

/*  7.13. LATEST POSTS STYLE 01
    ------------------------------------------------------------------------- */
.pi-latest-posts li {
    list-style: none;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.pi-latest-posts li:last-child {
    margin-bottom: 0;
}

.pi-latest-posts li .post-media {
    width: 100px;
    height: 100px;
    float: left;
    margin-bottom: 0;
}

.pi-latest-posts li .post-details {
    padding-left: 120px;
}

.pi-latest-posts li .post-details h4 {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts .post-date p {
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.pi-latest-posts .post-date i {
    padding-right: 3px;
}

/*  7.14. LATEST POSTS STYLE 02
    ------------------------------------------------------------------------- */
.pi-latest-posts02 li {
    width: 30%;
    float: left;
    margin-right: 30px;
    list-style: none;
}

.col-md-8 .pi-latest-posts02 li,
.col-md-9 .pi-latest-posts02 li {
    width: 46%;
}

.col-md-6 .pi-latest-posts02 li,
.col-md-4 .pi-latest-posts02 li,
.col-md-3 .pi-latest-posts02 li {
    width: 100%;
    margin-bottom: 20px;
}

.pi-latest-posts02 li:nth-child(3n) {
    padding-right: 0;
}

.pi-latest-posts02 .post-date,
.pi-latest-posts02 .post-date {
    width: 100px;
    float: left;
}

.pi-latest-posts02 .post-date .day {
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.pi-latest-posts02 .post-date .month {
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.pi-latest-posts02 .post-details {
    padding-left: 120px;
}

.pi-latest-posts02 li .post-details h4 {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts02 .post-category p {
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.pi-latest-posts02 .post-category i {
    padding-right: 3px;
}

/*  7.15. LATEST POSTS STYLE 03
    ------------------------------------------------------------------------- */
.pi-latest-posts03 li {
    list-style: none;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.pi-latest-posts03 li:last-child {
    margin-bottom: 0;
}

.pi-latest-posts03 li .post-media {
    width: 60px;
    height: 60px;
    float: left;
    margin-bottom: 0;
}

.pi-latest-posts03 li .post-media i {
    font-size: 36px;
}

.pi-latest-posts03 li .post-details {
    padding-left: 70px;
}

.pi-latest-posts03 li .post-details h4 {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts03 .post-date p {
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.col-md-8 .pi-latest-posts03 li,
.col-md-9 .pi-latest-posts03 li {
    margin-right: 30px;
    width: 48%;
}

.col-md-8 .pi-latest-posts03 li:nth-child(2n),
.col-md-9 .pi-latest-posts03 li:nth-child(2n) {
    margin-right: 0;
}

.col-md-6 .pi-latest-posts03 li,
.col-md-4 .pi-latest-posts03 li,
.col-md-3 .pi-latest-posts03 li {
    width: 100%;
    margin-bottom: 20px;
}

/*   7.16. LIST WITH ICONS
    ------------------------------------------------------------------------- */
.fa-ul li i {
    line-height: 20px;
}

.fa-ul.large-icons {
    margin-left: 0;
}

.fa-ul.large-icons li {
    margin-bottom: 20px;
}

.fa-ul.large-icons li:last-child {
    margin-bottom: 0;
}

.fa-ul.large-icons li i {
    font-size: 24px;
    width: 30px;
    height: 30px;
}

.fa-ul.large-icons .icon-container {
    float: left;
    width: 30px;
    height: 30px;
}

.fa-ul.large-icons .li-content {
    padding-left: 40px;
}

.fa-ul.large-icons .li-content h4 {
    padding-top: 3px;
}

/*  7.17. NUMBERS COUNTER
    ------------------------------------------------------------------------- */
.numbers-counter {
    padding: 20px;
    background-color: #fcfcfc;
}

.numbers-counter .counter-container {
    width: 100%;
    position: relative;
}

.numbers-counter .counter-container::after {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -15px;
}

.numbers-counter .number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 800;
    text-align: center;
    color: #333;
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.numbers-counter p {
    text-align: center;
}

/*  7.18. PROMO BOXES
    ------------------------------------------------------------------------- */
.promo-box {
    padding: 90px 20px;
}

.promo-box02 {
    padding: 30px 30px 90px 30px;
}

.promo-box02 p {
    text-align: center;
}

.promo-box h4,
.promo-box p {
    text-align: center;
}

.promo-box .btn {
    float: none;
    margin: 0 auto;
    display: table;
}

.promo-bkg01 {
    background-image: url("../img/pics/promo01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-bkg02 {
    background-image: url("../img/pics/promo02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/*
    7.19. SERVICES FEATURE BOX
    ------------------------------------------------------------------------- */
.services-negative-top {
    margin-top: -216px;
}

.custom-bkg .service-feature-box,
.parallax .service-feature-box {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: none;
}

.service-feature-box {
    box-shadow: 1px 0px 3px 0 #ddd;
    -webkit-box-shadow: 1px 0px 3px 0 #ddd;
    -moz-box-shadow: 1px 0px 3px 0 #ddd;
    border: 1px solid #eee;
}

.service-feature-box .service-media {
    position: relative;
    overflow: hidden;
}

.service-feature-box .service-media img {
    width: 100%;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;

    opacity: 1;
}

.service-feature-box .service-media:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);

    opacity: 0.7;
}

.service-feature-box .service-media a {
    background-color: #1b2936;
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
}

.service-feature-box .service-media span {
    color: #fff;
    padding-left: 20px;
    font-weight: 600;
}

.service-feature-box .service-media i {
    background-color: #2f3840;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 22px;
    margin-left: 20px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-feature-box .service-body {
    background-color: #fff;
    padding: 20px;
}

/*
    7.20. SERVICES GALLERY
    ------------------------------------------------------------------------- */
.services-gallery .col-md-3 {
    padding: 0;
    list-style: none;
}

.service-item-container {
    position: relative;
    overflow: hidden;
}

.service-item-container .service-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.service-item-container .service-item img {
    width: 100%;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;
}

.service-item-container .hover-mask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(49, 57, 63, 0.5);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-item-container .service-item:hover .hover-mask-container {
    opacity: 1;
}

.service-item-container figcaption {
    position: absolute;
    width: 100%;
    top: 40px;
}

.service-item-container figcaption h1,
.service-item-container figcaption h2,
.service-item-container figcaption h3,
.service-item-container figcaption h4,
.service-item-container figcaption h5 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.service-item-container figcaption h1:after,
.service-item-container figcaption h2:after,
.service-item-container figcaption h3:after,
.service-item-container figcaption h4:after,
.service-item-container figcaption h5:after {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}

.hover-mask-container .hover-details {
    position: absolute;
    bottom: 40px;
    left: 50%;

    transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.hover-mask-container .hover-details span {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    border: 3px solid;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-item-container .service-item:hover .hover-details {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
}

.service-item-container .service-item:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

/*
    7.21. SERVICE ICON CENTER
    ------------------------------------------------------------------------- */
.service-icon-center .icon-container {
    width: 100px;
    height: 100px;
    display: table;
    margin: 0 auto 20px;
    background-color: #fcfcfc;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-icon-center .icon-container i {
    font-size: 36px;
    color: #333;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100px;
    height: 100px;
}

.service-icon-center .icon-container img {
    width: 60px;
    height: 60px;
    position: relative;
    left: 50%;
    margin-top: 15px;
    margin-left: -30px;
}

.service-icon-center h1,
.service-icon-center h2,
.service-icon-center h3,
.service-icon-center h4,
.service-icon-center h5 {
    text-align: center;
    margin-bottom: 15px;
}

.service-icon-center p {
    text-align: center;
}

/*  7.22. SERVICE ICON CENTER BOXED
    ------------------------------------------------------------------------- */
.service-icon-center-boxed {
    width: 100%;
    background-color: #fcfcfc;
    padding: 30px 20px;
}

.service-icon-center-boxed .service-title {
    display: table;
    margin: 0 auto 10px;
}

.service-icon-center-boxed .service-title .icon-container {
    width: 60px;
    height: 60px;
    float: left;
}

.service-icon-center-boxed .service-title h4 {
    padding-left: 70px;
    padding-top: 20px;
}

.service-icon-center-boxed p {
    text-align: center;
    padding-bottom: 0;
}

.service-icon-center-boxed .icon-container i {
    width: 60px;
    height: 60px;
    font-size: 46px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/*
    7.23. SERVICES ICON LEFT
    ------------------------------------------------------------------------- */
.service-icon-left {
    width: 100%;
}

.service-icon-left .icon-container {
    float: left;
    width: 100px;
    height: 100px;
    background-color: #fff;

    border: 2px solid #ddd;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-icon-left .icon-container img,
.service-icon-left .icon-container svg {
    width: 60px;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    height: 60px;
    position: relative;
    top: 20px;
}

.service-icon-left .service-details {
    padding-left: 120px;
}

.service-icon-left .service-details h1,
.service-icon-left .service-details h2,
.service-icon-left .service-details h3,
.service-icon-left .service-details h4 {
    margin-bottom: 15px;
}

.service-icon-left .icon-container i {
    font-size: 60px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 100px;
    width: 100px;
}

/*
    7.24. SERVICES ICON LEFT BOXED
    ------------------------------------------------------------------------- */
.service-icon-left-boxed {
    background-color: #fcfcfc;
    padding: 30px 40px;
}

.service-icon-left-boxed .icon-container {
    float: left;
    width: 100px;
}

.service-icon-left-boxed .service-details {
    padding-left: 120px;
}

.service-icon-left-boxed .service-details h1,
.service-icon-left-boxed .service-details h2,
.service-icon-left-boxed .service-details h3,
.service-icon-left-boxed .service-details h4 {
    margin-bottom: 15px;
}

.service-icon-left-boxed .service-details p {
    padding-bottom: 0;
}

.col-md-3 .service-icon-left-boxed .icon-container {
    float: none;
    margin: 0 auto 20px;
}

.col-md-3 .service-icon-left-boxed .service-details {
    padding-left: 0;
}

.col-md-3 .service-icon-left-boxed .service-details h1,
.col-md-3 .service-icon-left-boxed .service-details h2,
.col-md-3 .service-icon-left-boxed .service-details h3,
.col-md-3 .service-icon-left-boxed .service-details h4,
.col-md-3 .service-icon-left-boxed .service-details p {
    text-align: center;
}

.service-icon-left-boxed i {
    font-size: 70px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100px;
}

/*  7.25. SERVICE LIST - small icons and text
    ------------------------------------------------------------------------- */
.service-list li {
    list-style: none;
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

.service-list li:last-child {
    padding-bottom: 0;
}

.service-list li .icon-container {
    width: 70px;
    height: 70px;
    float: left;
}

.service-list li p {
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-size: 18px;
    padding-top: 20px;
    padding-left: 95px;
}

.service-list li i {
    font-size: 46px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 70px;
}

/*  7.26. SERVICES LIST BIG ICONS
    ------------------------------------------------------------------------- */
.col-md-9 .service-list-big-icons li {
    width: 33.3%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.col-md-9 .service-list-big-icons li:nth-child(3n) {
    padding-right: 0;
}

.col-md-9 .service-list-big-icons li:first-child {
    padding-left: 0;
}

.service-list-big-icons {
    width: 100%;
}

.service-list-big-icons li {
    list-style: none;
    float: left;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.service-list-big-icons li .icon-container {
    background-color: #fff;
    width: 80px;
    height: 80px;
    float: left;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-list-big-icons .icon-container svg,
.service-list-big-icons .icon-container img {
    width: 60px;
    display: block;
    margin: 0 auto;
    height: 100%;
}

.service-list-big-icons li h4 {
    font-weight: normal;
    padding-left: 100px;
    padding-top: 30px;
}

.service-list-big-icons .icon-container i {
    font-size: 36px;
    width: 80px;
    height: 80px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/*  7.27. SERVICES LIST BIG ICONS + DETAILS (text)
    ------------------------------------------------------------------------- */
.service-list-big-icons-details li {
    margin-bottom: 20px;
}

.col-md-9 .service-list-big-icons-details li {
    width: 33.3%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.col-md-9 .service-list-big-icons-details li:nth-child(3n) {
    padding-right: 0;
}

.col-md-9 .service-list-big-icons-details li:first-child {
    padding-left: 0;
}

.service-list-big-icons-details {
    width: 100%;
}

.service-list-big-icons-details li {
    list-style: none;
    float: left;
}

.service-list-big-icons-details li .icon-container {
    background-color: #fff;
    width: 100px;
    height: 100px;
    float: left;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-list-big-icons-details li .icon-container svg,
.service-list-big-icons-details li .icon-container img {
    width: 60px;
    height: 100%;
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
}

.service-list-big-icons-details li .service-details {
    padding-left: 125px;
    padding-top: 10px;
}

.service-list-big-icons-details li .service-details h4 {
    margin-bottom: 15px;
}

.service-list-big-icons-details .icon-container i {
    width: 100px;
    height: 100px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 50px;
}

/*
    7.28. SHIPPING QUOTE FORM
    ------------------------------------------------------------------------- */
.wpcf7.shipping-quote {
    padding: 20px;
    background-color: #fcfcfc;
}

.wpcf7.shipping-quote label {
    width: 50%;
    float: left;
    padding-top: 8px;
}

.wpcf7.shipping-quote fieldset {
    width: 100%;
    margin-bottom: 5px;
}

.wpcf7.shipping-quote input.wpcf7-text {
    width: 50%;
    float: left;
    padding: 5px 15px;
}

.wpcf7.shipping-quote .submit {
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    float: right;
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*   7.29. SLIDER - MASTER SLIDER
    ------------------------------------------------------------------------- */
.header-style01+.master-slider {
    margin-top: -185px !important;
}

.master-slider .pi-caption01 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
}

.master-slider .pi-text {
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-size: 30px;
    color: #fff;
}

.master-slider {
    margin-bottom: 70px !important;
}

.master-slider.mb-0 {
    margin-bottom: 0 !important;
}

.master-slider.mb-30 {
    margin-bottom: 30px !important;
}

.master-slider .pi-caption02 {
    font-size: 21px;
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.master-slider .pi-button {
    padding: 12px 50px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;

    border: 2px solid;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.master-slider .pi-caption-dark {
    color: #03253c;
}

.master-slider .ms-view {
    background: transparent;
}

.master-slider .tooltip h1,
.master-slider .tooltip h2,
.master-slider .tooltip h3,
.master-slider .tooltip h4,
.master-slider .tooltip h5,
.master-slider .tooltip h6 {
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.master-slider .tooltip h6::after {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.master-slider .tooltip p,
.master-slider .tooltip span {
    color: #333;
}

.master-slider .tooltip img {
    float: left;
}

.master-slider .tooltip-text {
    padding-left: 85px;
}

.ms-skin-default .ms-tooltip {
    max-width: 300px;
}

/*   7.30. STATEMENT ELEMENT
    ------------------------------------------------------------------------- */
.statement p {
    padding: 0 50px;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

/*
    7.31. TABLE
    ------------------------------------------------------------------------- */
.table {
    width: 100%;
}

.table caption {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.table thead {
    background-color: #f6f6f6;
}

.table thead tr th {
    padding: 10px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.table thead tr th:first-child {
    text-align: left;
}

.table tbody {
    background-color: #fcfcfc;
}

.table tbody tr td {
    padding: 10px;
    text-align: center;
}

.table tbody tr td:first-child {
    text-align: left;
    color: #333;
    font-weight: 700;
}

/*  7.32. TABS
    ------------------------------------------------------------------------- */
.tabs {
    overflow: hidden;
}

.tabs li {
    list-style: none;
    float: left;
    background-color: #fcfcfc;
    overflow: hidden;
    position: relative;
    padding: 0;
    line-height: 55px;
    list-style: none;
    top: 3px;
    cursor: pointer;
    margin-right: 2px;
}

.tabs li a {
    color: #333;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 800;
    line-height: 55px;
    text-transform: uppercase;
    display: block;
}

.tab-content-wrap {
    width: 100%;
    overflow: hidden;
    float: left;
    padding-top: 30px;
}

.tabs li.active a {
    color: #fff;
}

/*
    7.33. TEAM MEMBERS
    ------------------------------------------------------------------------- */
.team-member img {
    margin-bottom: 20px;
}

.team-details {
    position: relative;
}

.team-details:after {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.team-details h1,
.team-details h2,
.team-details h3,
.team-details h4,
.team-details h5 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.team-details .position {
    font-style: italic;
}

/*
    7.34. TEAM MEMBERS LIST
    ------------------------------------------------------------------------- */
.team-list li {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    float: left;
}

.team-list li:last-child {
    margin-bottom: 0;
}

.team-list li img {
    float: left;
}

.team-list li .team-details-container {
    padding-left: 293px;
}

.team-list li .team-details {
    margin-bottom: 20px;
}

.col-md-3 .team-list li img,
.col-md-4 .team-list li img {
    float: none;
    display: table;
    margin: 0 auto 20px;
    width: 100%;
}

.col-md-3 .team-list li .team-details-container,
.col-md-4 .team-list li .team-details-container {
    padding-left: 0;
}

/*
    7.35. TESTIMONIAL
    ------------------------------------------------------------------------- */
.testimonial {
    background-color: #fcfcfc;
    padding: 30px;
}

.testimonial p {
    font-size: 14px;
    line-height: 22px;
    font-style: italic;
    text-align: center;
}

.testimonial-author p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    color: #333;
}

/*   7.36. TRACKING FORM
    ------------------------------------------------------------------------- */
.tracking {
    width: 100%;
    position: relative;
}

.tracking .package-id {
    padding: 5px 60px 5px 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    min-width: 100%;
}

.tracking .submit {
    width: 40px;
    height: 40px;
    background-image: url("../img/tracking-arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

/*  7.37. VEHICLE GALLERY FULL
    ------------------------------------------------------------------------- */
.vehicle-gallery .col-md-3 {
    padding: 0;
    list-style: none;
}

.gallery-item-container {
    position: relative;
    overflow: hidden;
}

.gallery-item-container .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.gallery-item-container .gallery-item img {
    width: 100%;
    height: auto;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;

    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}

.gallery-item-container .hover-mask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(49, 57, 63, 0.5);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.gallery-item-container .gallery-item:hover .hover-mask-container {
    opacity: 1;
}

.gallery-item-container figcaption {
    position: absolute;
    width: 100%;
    top: 40px;
}

.gallery-item-container figcaption h1,
.gallery-item-container figcaption h2,
.gallery-item-container figcaption h3,
.gallery-item-container figcaption h4,
.gallery-item-container figcaption h5 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.gallery-item-container figcaption h1:after,
.gallery-item-container figcaption h2:after,
.gallery-item-container figcaption h3:after,
.gallery-item-container figcaption h4:after,
.gallery-item-container figcaption h5:after {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}

.hover-mask-container .hover-zoom {
    position: absolute;
    bottom: 50%;
    left: 50%;

    width: 50px;
    height: 50px;

    margin-bottom: -25px;
    margin-left: -25px;

    transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;

    border: 2px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.hover-mask-container .hover-zoom a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 18px;

    width: 50px;
    height: 50px;
}

.gallery-item-container .gallery-item:hover .hover-zoom {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
}

.gallery-item-container .gallery-item:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

/*  VEHICLE GALLERY GRID
    ------------------------------------------------------------------------- */
.vehicle-gallery .col-md-4 {
    padding: 0;
    list-style: none;
}

.col-md-4 .gallery-item-container figcaption {
    top: 20px;
}

/* ==========================================================================
    8. HOME MINIMAL CUSTOM STYLES
    ========================================================================= */
.page-content.fixed.centered .container {
    position: absolute;
    top: 50%;
    left: 50%;
}

.page-content.fixed.centered .container .row {
    max-width: 100%;
}

.page-content.fixed.bottom .row {
    margin-bottom: 0;
    max-width: 100%;
}

.page-content.fixed.bottom .container {
    position: absolute;
    bottom: 0;
    left: 50%;
}

/* ==========================================================================
    9. BLOG
    ========================================================================= */

.blog-posts li {
    list-style: none;
}

.blog-posts .pagination {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.blog-posts .pagination ul {
    float: right;
}

.blog-posts .pagination li {
    float: left;
    background-color: #f5f9fc;
    border: 1px solid #ddd;
    list-style: none;
    margin-right: 5px;
    width: 30px;
    height: 30px;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.blog-posts .pagination li a {
    display: table-cell;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    text-align: center;
}

.blog-posts .pagination li.active a,
.blog-posts .pagination li:hover a {
    color: #fff;
}

.blog-post .post-body h3 {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*
    BLOG LIST
    ------------------------------------------------------------------------- */
.blog-posts.post-list .blog-post {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px dotted #ddd;
}

.post-list .blog-post .post-date,
.post-single .blog-post .post-date {
    width: 100px;
    float: left;
}

.post-list .blog-post .post-date .day,
.post-single .blog-post .post-date .day {
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.post-list .blog-post .post-date .month,
.post-single .blog-post .post-date .month {
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.post-list .blog-post .post-body,
.post-single .blog-post .post-body {
    padding-left: 130px;
}

.post-list .blog-post .post-body h3 {
    font-size: 18px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*
    BLOG STANDARD
    ------------------------------------------------------------------------- */

.post-media {
    width: 100%;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 25px;
}

.post-media .post-img img {
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    transition: all 2s ease 0s;
    opacity: 1;
}

.post-media .post-img:hover img {
    opacity: 0.7;

    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}

/*
    BLOG MASONRY
    ------------------------------------------------------------------------- */
.blog-posts.isotope.masonry {
    padding: 0;
}

.blog-posts.isotope.masonry li.blog-post.isotope-item {
    margin-bottom: 30px;
    width: 30%;
    margin-right: 15px;
    margin-left: 15px;
    background-color: #fff;
    float: left;
}

.blog-post.isotope-item .post-info {
    margin-bottom: 30px;
}

.blog-post.isotope-item .post-date {
    float: left;
    width: 50%;
}

.blog-post.isotope-item .post-date p {
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0 0 20px;
}

.blog-post.isotope-item .post-date i {
    padding-right: 3px;
}

.blog-post.isotope-item .post-info .post-category {
    width: 50%;
    float: right;
    position: relative;
}

.blog-post.isotope-item .post-info .post-category a {
    text-transform: uppercase;
    color: #eee;
    background-color: #565f66;
    padding: 7px 15px;
    position: absolute;
    right: 0;
}

.blog-post.isotope-item .post-body {
    padding: 0 20px;
}

.blog-post.isotope-item .post-media {
    margin-bottom: 15px;
}

.blog-post.isotope-item .post-footer {
    padding: 0 15px 15px 20px;
}

.post-footer .post-meta {
    width: 50%;
    float: left;
    padding-top: 3px;
}

.post-footer .post-meta li {
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px solid #ddd;
}

.post-footer .post-meta li:first-child {
    padding-left: 0;
}

.post-footer .post-meta li:last-child {
    border-right: none;
}

.post-footer .post-meta li.comments a {
    padding-left: 3px;
}

.post-footer .post-meta li.post-like:before {
    float: right;
    position: relative;
    top: 6px;
}

.post-footer .post-meta li.post-like .box {
    position: relative;
    top: -12px;
    padding-top: 12px;
}

.post-footer .post-meta li.post-like .box a {
    padding-right: 15px;
}

.post-footer a.read-more span {
    text-transform: none;
    font-weight: normal;
}

.post-footer .post-meta li.post-like:hover:before {
    color: #ff0101;
}

/*
    BLOG SINGLE POST
    ------------------------------------------------------------------------- */

/*  POST COMMENTS
    ------------------------------------------------------------------------- */
.post-comments {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.comments-li {
    float: left;
    margin-bottom: 30px;
    background: none;
    padding-left: 0;
    list-style: none;
}

.comments-li>li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    list-style: none;
    min-height: 75px;
}

.comments-li>li:last-child .comment {
    border: none;
    margin-bottom: 0;
}

.comments-li .comment {
    float: left;
    min-height: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.post-comments .comment+.children {
    margin-top: 30px;
}

.post-comments .children+.children {
    margin-top: 30px;
}

.comment .avatar {
    width: 70px;
    height: 70px;
    margin-right: 30px;
    float: left;
    border: 3px solid #eee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.comment-meta li {
    font-style: italic;
    list-style: none;
}

.comment-meta .author {
    font-size: 15px;
    font-family: "Raleway", Arial, sans-serif;
    color: #252525;
    font-weight: 600;
    font-style: normal;
}

.comment .comment-body {
    margin-left: 100px;
    margin-top: 15px;
}

.comment .comment-reply-link {
    display: block;
    margin-top: 15px;
    background: url("../img/blog/reply.png") no-repeat 0 center;
    padding-left: 22px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    float: right;
}

.post-comments .children {
    margin-left: 10%;
    float: left;
    padding: 0 0 0 20px;
    width: calc(90%);
}

.children li {
    list-style: none;
}

/*  COMMENT FORM
    ------------------------------------------------------------------------ */
.comment-form {
    width: 100%;
    float: left;
}

.comment-form fieldset {
    width: 50%;
    float: right;
    padding-right: 30px;
    margin-bottom: 20px;
}

.comment-form fieldset:nth-child(2n + 1) {
    padding-right: 0;
}

.comment-form .wpcf7-message {
    width: 100%;
}

.comment-form label {
    width: 100%;
    margin-bottom: 5px;
    display: block;
}

.comment-reply {
    padding: 13px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    float: right;
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/* ==========================================================================
    10. LOCATIONS PAGE
    ========================================================================= */
.page-title-map.page-title-negative-top #map {
    height: 800px;
    margin-top: -186px;
}

.locations-li>li {
    list-style: none;
    margin-bottom: 30px;
}

.locations-li>li h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.locations-li>li .fa-ul {
    margin-left: 20px;
}

/* ==========================================================================
    11. CONTACT
    ========================================================================= */
.wpcf7 fieldset {
    margin-bottom: 15px;
}

.wpcf7 label {
    width: 100%;
    padding-bottom: 10px;
}

.wpcf7-text,
.wpcf7-select,
.wpcf7-textarea {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 8px 15px;
}

.wpcf7 .wpcf7-submit {
    padding: 13px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    float: right;
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

#map {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}

#map img {
    max-width: none;
}

/* ==========================================================================
    12. WIDGETS
    ========================================================================= */
.aside-widgets>li {
    list-style: none;
}

.widget {
    display: block;
    width: 100%;
    margin-bottom: 45px;
}

.widget .title h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.widget ul>li {
    background-image: url("../img/arrow.png");
    background-repeat: no-repeat;
    background-position: 0 center;
    list-style: none;
    padding-left: 15px;
}

.widget li a {
    padding-top: 5px;
    display: block;
}

/*
   ASIDE SEARCH WIDGET
   -------------------------------------------------------------------------- */
.widget_search form {
    position: relative;
}

.widget_search .a_search {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    display: block;
    color: #777;
    font-style: italic;
    left: 0;
    top: 0;
    padding: 10px 60px 10px 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.widget_search .search-submit {
    background-image: url("../img/search.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 100%;
    border: none;
    text-indent: -9999px;
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    min-height: 40px;
    border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
}

/*
    LATEST POSTS WIDGET 01
    ------------------------------------------------------------------------- */
.rpw_posts_widget ul>li {
    position: relative;
    background: none;
    background-image: none !important;
    padding-left: 18px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.rpw_posts_widget ul>li::before {
    position: absolute;
    display: block;
    content: "\f073";
    font-family: "FontAwesome";
    font-size: 11px;
    top: 5px;
    left: 0;
}

.rpw_posts_widget ul>li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.rpw_posts_widget li h4 {
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    margin-bottom: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*  NAV MENU WIDGET
    ------------------------------------------------------------------------- */
.widget_nav_menu ul li {
    background-position: right center;
    padding-left: 0;
    border-bottom: 1px dotted #ddd;
}

.widget_nav_menu ul li:last-child {
    border-bottom: none;
}

/*
    NEWSLETTER WIDGET
    ------------------------------------------------------------------------- */
.widget_newsletterwidget .newsletter {
    width: 100%;
    float: left;
    position: relative;
}

.widget_newsletterwidget .newsletter .email {
    padding: 5px 60px 5px 15px;
    font-style: italic;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    height: 40px;
    border: 1px solid #ddd;
    min-width: 100%;
}

.footer-dark .footer-widget-container .newsletter .email {
    color: #bcc0c4;
    background-color: #565f66;
    border: none;
}

.newsletter .submit {
    width: 40px;
    height: 40px;
    background-image: url("../img/subscribe.png");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*  NEWS CAROUSEL
    ------------------------------------------------------------------------- */
.news-carousel-container .icon-title {
    float: left;
    border-right: 3px solid #1f2830;
    padding-right: 20px;
    margin-right: 20px;
    padding-top: 25px;
    padding-left: 15px;
    min-height: 80px;
}

.news-carousel-container .icon-title i,
.news-carousel-container .icon-title h3 {
    float: left;
    font-size: 24px;
}

.news-carousel-container .icon-title i {
    padding-right: 10px;
}

.news-carousel-container .owl-item {
    padding-top: 5px;
}

.news-carousel-container .owl-item h4 {
    margin-bottom: 5px;
}

.news-carousel-container .owl-item span {
    text-transform: uppercase;
}

*[class^="col-"].custom-bkg .news-carousel-container {
    margin: -15px;
}

/* ==========================================================================
     13. FOOTER
    ========================================================================= */
#footer .row {
    margin-bottom: 25px;
}

#footer-wrapper {
    padding-top: 70px;
    position: relative;
    background-image: url("../img/footer-bkg.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

#footer-wrapper.footer-dark {
    background-color: #000000;
}

#footer-wrapper.footer-light {
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.footer-dark .footer-widget-container .text-big {
    color: #fff;
}

.footer-dark .footer-widget-container .widget .title h3 {
    color: #fff;
}

.footer-widget-container>li {
    list-style: none;
}

.footer-dark .footer-widget-container p,
.footer-dark .footer-widget-container a,
.footer-dark .footer-widget-container address,
.footer-dark .footer-widget-container span,
.footer-dark .copyright-container p,
.footer-dark .copyright-container a,
.footer-dark .copyright-container span {
    color: #bcc0c4;
}

.footer-social-icons {
    margin-top: 15px;
}

.footer-social-icons>li {
    list-style: none !important;
    background-image: none !important;
    float: left;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    padding: 0 !important;
}

.footer-social-icons li a {
    width: 30px;
    height: 30px;
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    text-align: center;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.footer-social-icons li a:hover {
    color: #fff;
}

.footer-dark .footer-social-icons li a {
    background-color: #565f66;
    color: #fff;
}

.footer-light .footer-social-icons li a {
    background-color: #f6f6f6;
}

.copyright-container .row {
    margin-bottom: 0;
}

.footer-dark .copyright-container .row {
    border-top: 1px solid #384653;
    padding: 15px 0 10px 0;
}

.footer-light .copyright-container .row {
    border-top: 1px solid #ddd;
    padding: 15px 0 10px 0;
}

.copyright-container a,
.copyright-container p,
.copyright-container span {
    font-size: 11px;
}

/*
    SCROLL UP
    ------------------------------------------------------------------------- */
.scroll-up {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
    text-indent: -9999px;
    background-image: url("../img/to-top.png");
    background-repeat: no-repeat;
    background-color: #252525;
    z-index: 100;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.home-age-main-slider {
    /* height: 100vh;  */
}

.home-age-main-slider .carousel-inner {
    height: 100%;
}

.home-age-main-slider .carousel-inner .carousel-item {
    height: 100%;
}

.home-age-main-slider .carousel-inner .carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.home-age-main-slider .carousel-inner .carousel-item .carousel-caption {
    bottom: 42%;
}

.home-age-main-slider .carousel-inner .carousel-item .carousel-caption h5 {
    margin: 0px 0px 25px;
    padding: 0px;
    font-size: 68px;
    line-height: 70px;
    color: white;
}

.home-age-main-slider .carousel-inner .carousel-item .carousel-caption p {
    margin: 0px;
    padding: 0px 0px 15px;
    font-size: 26px;
    line-height: 25px;
    color: white;
}

.our-aim-and-our-promise-section .row {
    margin-bottom: 0px !important;
}

/* new start  */
.elementor-column-wrap {
    background-color: #202020;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.elementor-background-overlay {
    transition: background- 0.3s, border-radius 0.3s, opacity 0.3s;
    background-color: transparent;
    background-image: linear-gradient(180deg,
            rgba(32, 32, 32, 0) 5%,
            #0f0f0f 98%);
    opacity: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.elementor-widget-wrap {
    align-content: flex-end;
    align-items: flex-end;
    padding: 3em 3em 3em 3em;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
}

p {
    margin: 0;
}

p,
a,
span {
    color: black;
}

.elementor-widget-wrap-content {
    bottom: 6px;
    position: absolute;
    width: 80%;
    text-align: center;
    justify-content: center;
}

.aboutmore {
    color: var(--primary-color);
}

p.sub-sections-font-size {
    font-size: 15px;
}

p.sub-p-font-size1 {
    font-size: 14px;
}

.btn-bin {
    padding: 5px 28px;
    font-size: 12px;
}

.btn-bin:hover {
    background-color: #000000 !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color) !important;
}

.btn-bin:hover span {
    color: var(--primary-color) !important;
    /* Ensure the span inside the button also changes color */
}

.btn-big:hover {
    background-color: #000000 !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color) !important;
}

.btn-big:hover span {
    color: var(--primary-color) !important;
    /* Ensure the span inside the button also changes color */
}

.btn-bin1:hover {
    background-color: #000000 !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color) !important;
}

.btn-bin1:hover span {
    color: var(--primary-color) !important;
    /* Ensure the span inside the button also changes color */
}

.btn-bin1 {
    margin-bottom: 12px;
    padding: 3px 22px;
    font-size: 9px;
}

h4.height-pq {
    line-height: 0%;
    margin-bottom: 18px;
}

.navbar-nav .nav-item .nav-link {
    letter-spacing: 1px;
}

.h1-h {
    margin: 0px 0px 25px;
    padding: 0px;
    font-size: 68px;
    line-height: 70px;
    color: white;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 2rem !important;
        line-height: 40px !important;
    }
}

@media (min-width: 768px) {
    .carousel-caption h5 {
        font-size: 3.5rem !important;
    }
}

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

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

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

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

.float-left {
    float: left !important;
}

@media (max-width: 1000px) {
    .parallex-pad-cor {
        padding-top: 280px !important;
    }

    .header-color-change {
        background-color: #0f0f0f;
    }

    .ms-margin-top {
        margin-top: 100px;
    }

    .navbar-header {
        padding-top: 15px;
        padding-left: 5px;
    }
}

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

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

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

.offcanvasRight .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.offcanvasRight .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.offcanvasRight .breadcrumb-item.active {
    color: #aaa;
}

/* Offcanvas styling */
.offcanvasRight {
    width: 100vw;
    /* Full viewport width */
    max-width: none;
    /* Override Bootstrap's default max-width */
    margin-top: 0 !important;
    /* Reset margin to ensure alignment */
    background-color: black;
    /* Ensure background is black */
}

@media (max-width: 768px) {
    .offcanvas .offcanvas-end {
        width: 100vw !important;
    }
}

@media (max-width: 1000px) {
    .mob-head {
        margin-top: 0 !important;
    }
}

.dropdown-nav-a {
    line-height: 48px;
    font-family: "Raleway", "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4caca;
    text-transform: uppercase;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    /* Position below the nav item */
    left: 0;
    z-index: 1000;
    /* Ensure it appears above other content */
}

b {
    font-weight: bold;
}

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

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

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

@media (max-width: 767.98px) {
    .col-md-6 {
        padding-top: 0 !important;
    }
}

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

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

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

@media (min-width: 768px) {
    .pad-res {
        padding: 150px !important;
    }

    .pad-res-2 {
        padding-top: 70px !important;
        padding-bottom: 50px !important;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media (max-width: 768px) {
    .pad-res {
        padding: 15px !important;
    }

    .ser-marg {
        margin-top: 30px !important;
    }

    .pad-res-2 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

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

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

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

input:focus,
textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    /* Remove Bootstrap's default focus shadow */
}

.navbar-expand-lg .navbar-nav a {
    color: white !important;
}

.navbar-expand-lg .navbar-nav .dropdown-item {
    color: rgb(0, 0, 0) !important;
}

.text-yellow {
    color: var(--primary-color) !important;
}

.btn-bin-transparent {
    padding: 5px 28px;
    font-size: 12px;
    background-color: #00000000 !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-bin-transparent:hover {
    background-color: #000000 !important;
    transition: all 0.3s ease;
}

.btn-bin-transparent:hover span {
    color: var(--primary-color) !important;
    /* Ensure the span inside the button also changes color */
}

@media (max-width: 920px) {
    .slider-text {
        font-size: 50px !important;
        line-height: 50px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 660px) {
    .slider-text {
        font-size: 45px !important;
        line-height: 50px !important;
    }
}

@media (max-width: 425px) {
    .btn-bin {
        padding: 5px 15px;
    }
}

.mob-off-pad {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

@media (max-width: 768px) {
    .padding-our-vision {
        margin-top: 20px;
    }
}

/* Blog
---------------------*/
.blog-grid {
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-grid .blog-img {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.blog-grid .blog-img .date {
    position: absolute;
    background: #3a3973;
    color: #ffffff;
    padding: 8px 15px;
    left: 0;
    top: 10px;
    font-size: 14px;
}

.blog-grid .blog-info {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    background: #ffffff;
    padding: 20px;
    margin: -30px 20px 0;
    position: relative;
}

.blog-grid .blog-info h5 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
    color: #3a3973;
}

.blog-grid .blog-info p {
    margin: 0;
}

.blog-grid .blog-info .btn-bar {
    margin-top: 20px;
}

.px-btn-arrow {
    padding: 0 50px 0 0;
    line-height: 20px;
    position: relative;
    display: inline-block;
    color: #fe4f6c;
    -moz-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.px-btn-arrow .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
    -moz-transition: ease right 0.3s;
    -o-transition: ease right 0.3s;
    -webkit-transition: ease right 0.3s;
    transition: ease right 0.3s;
}

.px-btn-arrow .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

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

.justify-space-around {
    justify-content: space-around;
}

/* stats section */
.stats-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0px;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 100px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .stat-item h2 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .call-to-action .text {
        max-width: 100%;
    }

    .call-to-action .button-group {
        flex-direction: column;
    }
}

.call-to-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

@media (max-width: 345px) {
    .slider-btn-res {
        padding: 5px 15px;
    }
}

.airport-transfer-bg {
    background-image: url("../img/services/airport-transfer-2-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.concerts-and-festivals-bg {
    background-image: url("../img/services/concerts-and-festivals-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.wedding-transportation-bg {
    background-image: url("../img/services/wedding-transportation-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.prom-night-bg {
    background-image: url("../img/services/prom-night-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.group-transportation-bg {
    background-image: url("../img/services/group-transportation-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.fifa-bg {
    background-image: url("../img/services/fifa-worldcup-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.hourly-service-bg {
    background-image: url("../img/services/hourly-service-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.leisure-transportation-bg {
    background-image: url("../img/services/leisure-transportation-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.national-provider-bg {
    background-image: url("../img/services/national-provider-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.sporting-events-bg {
    background-image: url("../img/services/sporting-events-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.corporate-transportation-bg {
    background-image: url("../img/services/corporate-limo-service-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.cruise-port-transfers-bg {
    background-image: url("../img/services/cruise-port-transfers-page.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.mkt-bg {
    background-image: url("../img/fleet/lincoln-mkt/lincoln-mkt.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.genesis-bg {
    background-image: url("../img/fleet/hyundai-genesis/genesis.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

/* Change the focus color for the accordion header */
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(250, 195, 18, 0.5);
    /* Adjust shadow color */
    outline: none;
    /* Remove default outline if needed */
}

/* Change the active color for the accordion header */
.accordion-button:not(.collapsed) {
    background-color: #f5fcfc;
    /* Active background color */
    color: #000000;
    /* Active text color */
    border-color: #000000;
    /* Active border color */
}

/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000f5;
    /* Change this to your desired background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    /* Fully visible by default */
    visibility: visible;
    /* Ensure it's initially visible */
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* Smooth fade-out */
}

/* Logo styling */
.logo-container {
    margin-bottom: 20px;
    /* Adjust spacing between logo and spinner */
}

.preloader-logo {
    width: 250px;
    /* Adjust the size of the logo */
    height: auto;
}

/* Hide preloader when not needed */
#preloader.hidden {
    display: none;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .content-section {
        display: block;
        padding-left: 10px;
        padding-right: 0px;
    }
}

/* Change the progress bar color */
.nprogress .bar {
    color: var(--primary-color) !important;
    /* Replace with your desired color */
}

@media (max-width: 425px) {
    .content-section-img {
        height: auto !important;
        width: auto !important;
    }
}

.serv-pad-left-sez {
    padding-left: 42px;
}

@media (max-width: 1024px) {
    .serv-pad-left-sez {
        padding-left: 10px;
    }
}

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

.padding-left-white-serv {
    padding-left: 80px;
}

@media (max-width: 1024px) {
    .padding-left-white-serv {
        padding-left: 10px;
    }
}

.padding-left-blue-serv {
    padding-left: 40px;
}

@media (max-width: 1024px) {
    .padding-left-blue-serv {
        padding-left: 10px;
    }
}

.form-control-error {
    border: 1px solid red !important;
}

#nprogress .bar {
    background: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.logo-border-1 {
    border: 1px solid #000 !important;
    border-radius: 100% !important;
    background-color: #000 !important;
    margin-right: 30px;
    margin-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-border {
    margin-top: 30px;
    margin-right: 20px;
}

ol li {
    font-size: 14px;
    font-weight: 800;
    color: rgb(51, 51, 51);
}

.reserv-booking {
    padding-bottom: 65px;
}

#bro_reservation-container {
    position: relative;
    width: 100%;
    height: auto;
}

#bro_reservation-container .loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    display: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#bro_reservation-container .loader .spinner-border {
    width: 3rem;
    height: 3rem;
}

#bro_reservation,
#bro_reservation-container #bro_reservation,
#dl-menu,
#m_search,
#preloader.hidden,
.accordion .title a::after,
.accordion.careers .title::before,
[wire\:loading] .pt-bkg01,
[wire\:loading] .pt-bkg02,
[wire\:loading] .pt-bkg03,
[wire\:loading] .pt-bkg04,
[wire\:loading] .pt-bkg05,
[wire\:loading] .pt-bkg06,
[wire\:loading] .pt-bkg07,
[wire\:loading] .pt-bkg08,
[wire\:loading] .pt-bkg09,
[wire\:loading] .pt-bkg10,
[wire\:loading] .pt-bkg11,
[wire\:loading] .pt-bkg12 {
    display: none;
}

.feature-section {
    padding: 60px 0;
    background-color: #fff;
    /* White background for the section itself */
}

.feature-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure cards in a row have equal height */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #ffd700;
    /* Gold/Yellow color for icons */
    font-size: 3rem;
    /* Adjust icon size */
    margin-bottom: 15px;
    display: flex;
    /* To allow margin-bottom */
    justify-content: center;
}

.feature-icon img {
    max-width: 80%;
}

.feature-title {
    font-weight: 700;
    /* Bold title */
    color: #343a40;
    /* Dark text color */
    margin-bottom: 10px;
    text-align: center;
}

.feature-description {
    color: #6c757d;
    /* Muted text color */
    font-size: 0.95rem;
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: #ffd700;
    /* Yellow divider */
    margin: 0 auto 40px;
    border-radius: 2px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .btn-bin {
        margin-bottom: 5px !important;
    }

    .services-btn .btn {
        font-size: 9px !important;
    }
}

@media (max-width: 323px) {
    .services-btn .btn {
        font-size: 11px !important;
    }
}

.features-section {
    background-color: #ffffff;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark transparent background */
    color: #fff;
    /* White text for contrast */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card h3,
.feature-card p {
    color: #fff;
    /* Ensure text is visible */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8b470, #d8a860);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.main-content {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 10px;
}

.main-subtitle {
    color: #e8b470;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .main-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

.btn-hover {
    width: 250px;
    height: 60px;
    font-size: 22px;
    font-weight: 700;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right,
            #eaeaea,
            #d4a05a,
            #eaeaea,
            #d4a05a,
            #eaeaea);
    background-size: 300% 100%;
    background-position: 0 0;
    animation: 1s ease-in-out infinite alternate gradientBounce;
    transition: 0.4s ease-in-out;
    text-shadow: 1px 1px 2px rgba(232, 180, 111, 0.6);
}

@keyframes gradientBounce {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .btn-hover {
        width: 230px;
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .btn-hover {
        width: 218px;
        height: 45px;
        font-size: 18px;
    }
}

@media (min-width: 425px) and (max-width: 767px) {
    .btn-hover {
        width: 200px;
        height: 37px;
        font-size: 15px;
    }
}

@media (min-width: 375px) and (max-width: 424px) {
    .btn-hover {
        width: 170px;
        height: 34px;
        font-size: 14px;
    }
}

@media (min-width: 320px) and (max-width: 374px) {
    .btn-hover {
        width: 150px;
        height: 30px;
        font-size: 14px;
    }
}

.btn-hover:hover {
    animation-play-state: paused;
}

/* why choose us */

.why-choose-us {
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header .accent {
    color: var(--primary-color);
}

.section-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: #b0ada7;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    height: 100%;
    background: linear-gradient(135deg,
            rgba(232, 180, 112, 0.1) 0%,
            rgba(232, 180, 112, 0.05) 100%);

    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(232, 180, 112, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-card h3 {
    color: #ffffff;
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #b0ada7;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    flex-grow: 1;
    text-align: center;
}

.cta-button {
    background-color: var(--primary-color);
    color: #1c1b19;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 40px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(232, 180, 112, 0.3);
    color: #1c1b19;
    text-decoration: none;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 40px 0;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .header-number-a {
        line-height: 30px;
    }
}

.section-header p {
    line-height: 25px;
}

.slider-text-1 {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 430px) {
    .header-number-a {
        font-size: 35px !important;
        font-weight: 600 !important;
    }

    .slider-text-1 {
        font-size: 14px !important;
        line-height: 15px !important;
    }

    .slider-text-p {
        font-size: 16px !important;
        line-height: 20px;
    }

    .header-number-a {
        line-height: 25px;
    }
}

@media (max-width: 375px) {
    .header-number-a {
        font-size: 35px !important;
    }
}

@media (max-width: 325px) {
    .header-number-a {
        font-size: 25px !important;
    }

    .header-number-a {
        line-height: 20px;
    }
}

@media (max-width: 550px) {
    .header-number-a {
        font-size: 35px;
    }
}

@media (max-width: 920px) {
    .slider-text-1 {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 10px !important;
    }
}

.vehicles-section {
    background-color: #1c1b19;
    padding: 3rem 1.5rem;
    min-height: 100vh;
}

.vehicles-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header styles */
.vehicles-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vehicles-subtitle {
    font-size: 1.125rem;
    color: #999999;
}

/* Vehicle card styles */
.vehicle-card {
    background-color: #262420;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #1c1b19;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.card-specs {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive adjustments for different breakpoints */
@media (max-width: 991px) {
    .vehicles-title {
        font-size: 2rem;
    }

    .vehicles-subtitle {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .vehicles-section {
        padding: 2rem 1rem;
    }

    .vehicles-title {
        font-size: 1.75rem;
    }

    .vehicles-subtitle {
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-specs {
        font-size: 0.875rem;
    }
}

.section-wrapper h2 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* fleet details */

:root {
    --fleet-primary-black: #0a0a0a;
    --fleet-luxury-gold: #c9a96e;
    --fleet-pearl-white: #fafafa;
    --fleet-charcoal: #2d2d2d;
    --fleet-silver: #e8e8e8
}

.fleet-page-wrapper {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--fleet-charcoal);
    overflow-x: hidden
}

.fleet-brand-logo,
.fleet-nav-links .nav-link:hover {
    color: var(--fleet-luxury-gold) !important
}

.fleet-navigation-bar {
    background: linear-gradient(135deg, var(--fleet-primary-black) 0, var(--fleet-charcoal) 100%) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    transition: .3s
}

.fleet-feature-card,
.fleet-showcase-caption {
    backdrop-filter: blur(20px);
    text-align: center
}

.fleet-brand-logo {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px
}

.fleet-nav-links .nav-link {
    color: var(--fleet-pearl-white) !important;
    font-weight: 500;
    transition: color .3s;
    position: relative
}

.fleet-nav-links .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fleet-luxury-gold);
    transition: width .3s
}

.fleet-vehicle-showcase {
    overflow: hidden
}

.fleet-showcase-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(.85) contrast(1.1);
    transition: .5s
}

.fleet-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, .6) 0, rgba(45, 45, 45, .3) 100%)
}

.fleet-showcase-caption {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 169, 110, .15);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, .3);
    color: #fff
}

.fleet-showcase-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5)
}

.fleet-showcase-subtitle {
    font-size: 1.2rem;
    opacity: .9;
    font-weight: 300
}

.fleet-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 110, .2);
    border: 2px solid var(--fleet-luxury-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.fleet-carousel-controls:hover {
    background: var(--fleet-luxury-gold);
    transform: translateY(-50%) scale(1.1)
}

.fleet-carousel-indicators {
    bottom: 30px
}

.fleet-carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--fleet-luxury-gold);
    background: 0 0;
    margin: 0 8px;
    transition: .3s
}

.fleet-carousel-indicators button.active {
    background: var(--fleet-luxury-gold);
    transform: scale(1.2)
}

.fleet-content-section {
    padding: 6rem 0;
    background: var(--fleet-pearl-white);
    position: relative
}

.fleet-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0, var(--fleet-luxury-gold) 50%, transparent 100%)
}

.fleet-content-block {
    margin-bottom: 5rem
}

.fleet-content-image {
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    transition: .4s;
    position: relative;
    overflow: hidden
}

.fleet-content-image::before,
.fleet-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 169, 110, .1) 0, transparent 50%);
    opacity: 0;
    transition: opacity .3s
}

.fleet-content-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25)
}

.fleet-content-text {
    padding: 2rem 0
}

.fleet-content-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fleet-primary-black);
    margin-bottom: 2rem;
    position: relative
}

.fleet-content-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--fleet-luxury-gold);
    border-radius: 2px
}

.fleet-content-lead {
    font-size: 1.3rem;
    color: var(--fleet-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6
}

.fleet-content-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8
}

.fleet-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0
}

.fleet-feature-item {
    padding: .8rem 0;
    border-bottom: 1px solid var(--fleet-silver);
    display: flex;
    align-items: center;
    transition: .3s
}

.fifa-close-btn,
.fifa-overlay {
    display: flex;
    align-items: center
}

.fleet-feature-item:hover {
    padding-left: 10px;
    background: rgba(201, 169, 110, .05)
}

.fleet-feature-icon {
    color: var(--fleet-luxury-gold);
    margin-right: 15px;
    font-size: 1.2rem
}

.fleet-cta-button,
.fleet-features-showcase {
    color: #fff;
    position: relative;
    overflow: hidden
}

.fleet-cta-button {
    background: linear-gradient(135deg, var(--fleet-luxury-gold) 0, #b8941f 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(201, 169, 110, .3)
}

.fleet-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s
}

.fleet-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, .4)
}

.fleet-cta-button:hover::before {
    left: 100%
}

.fleet-features-showcase {
    padding: 6rem 0;
    background-color: #1c1b19
}

.fleet-features-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.fleet-feature-card {
    background: rgba(255, 255, 255, .08);
    transition: .4s;
    border: 1px solid rgba(201, 169, 110, .2);
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2rem 1.2rem;
    border-radius: 20px;
}

.fleet-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
    border-color: var(--fleet-luxury-gold)
}

.fleet-feature-icon-wrapper {
    color: var(--fleet-luxury-gold);
    position: relative;
    z-index: 2;
    transition: .3s;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.fleet-feature-card:hover .fleet-feature-icon-wrapper {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(201, 169, 110, .5)
}

.fleet-feature-title {
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: #fff
}

.fleet-feature-description {
    opacity: .9;
    position: relative;
    z-index: 2;
    color: #fff
}

.fleet-final-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2
}

.fleet-reserve-button {
    background: var(--fleet-luxury-gold);
    border: 3px solid var(--fleet-luxury-gold);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--fleet-primary-black);
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: 1px
}

.fleet-reserve-button:hover {
    background: 0 0;
    color: var(--fleet-luxury-gold);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 169, 110, .5)
}

.fleet-footer {
    background: var(--fleet-primary-black);
    color: var(--fleet-pearl-white);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--fleet-luxury-gold)
}

.fleet-footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fleet-luxury-gold);
    margin-bottom: 1rem
}

.fleet-footer-description {
    opacity: .8;
    line-height: 1.6
}

.fleet-contact-link {
    color: var(--fleet-luxury-gold);
    transition: .3s
}

.header-number {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 600;
}

.header-number:hover {
    color: var(--primary-color) !important;
}
