/*Fonts*/
@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Roboto-Black";
    src: url("../fonts/roboto/Roboto-Black.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

.z-9 {
    z-index: 9;
}

html {
    scroll-behavior: smooth
}

body {
    box-sizing: border-box;
    font-family: Roboto-Regular;
    background-color: #f2f2f3;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    font-family: Roboto-Regular;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 0;
}

a {
    color: #052045;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: #DA0E15;
}

h1 {
    font-size: 34px;
    line-height: 45px;
}

h1,
h2,
h3 {
    color: #052045;
    font-family: 'Roboto-Black';
    text-transform: uppercase;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
    font-family: Roboto-Medium;
}

h5 {
    font-size: 16px;
    font-family: Roboto-Bold;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.leaflet-tile,
.leaflet-marker-icon {
    max-width: none;
    max-height: none;
    /*object-fit: none;*/
}

textarea {
    resize: none;
}

button:focus {
    outline: none;
}

.cookiealert {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-size: 14px;
    background: #ffffff;
    color: #052045;
    border-radius: 0;
    box-shadow: 0 -1px 15px 0 rgb(0 0 0 / 15%);
}

.cookiealert p {
    display: inline;
    padding-right: 20px;
    font-size: 14px;
}

.cookiealert a {
    background: #da0e15;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
}

.main-btn {
    cursor: pointer;
    min-width: 290px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 15px 50px;
    background: #DA0E15;
    border-radius: 4px;
    font-family: Roboto-Black;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-in;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border: 2px solid #DA0E15;
}

.main-btn:focus {
    outline: none;
}

.main-btn:hover {
    /*color: #052045;*/
    /*background: transparent;*/
    /*border: 2px solid transparent;*/
}

.main-btn span {
    display: inline-block;
    transition: transform .2s ease;
}

.main-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(/uploads/images/icons/arrow-w-white.svg) no-repeat 50%;
    transition: transform .2s ease;
}

.main-btn.btn-border-red:after {
    background: url(/uploads/images/icons/arrow-w-red.svg) no-repeat 50%;
    transform: rotate(180deg);
}

.main-btn.btn-border-red:hover:after {
    transform: translateX(100%) rotate(180deg);
}

.main-btn:hover:after {
    transform: translateX(100%);
}

.main-btn:hover span {
    transform: translateX(500%) !important;
}

/*.main-btn:before, .main-btn:after {*/
/*    position: absolute;*/
/*    width: 53px;*/
/*    height: 2px;*/
/*    background: #DA0E15;*/
/*    content: '';*/
/*    opacity: 0.2;*/
/*    -webkit-transition: all 0.3s;*/
/*    -moz-transition: all 0.3s;*/
/*    transition: all 0.3s;*/
/*    pointer-events: none;*/
/*}*/

/*.main-btn:before {*/
/*    top: 0;*/
/*    left: 0;*/
/*    -webkit-transform: rotate(90deg);*/
/*    -moz-transform: rotate(90deg);*/
/*    transform: rotate(90deg);*/
/*    -webkit-transform-origin: 0 0;*/
/*    -moz-transform-origin: 0 0;*/
/*    transform-origin: 0 0;*/
/*}*/

/*.main-btn:after {*/
/*    right: -2px;*/
/*    bottom: 0;*/
/*    -webkit-transform: rotate(90deg);*/
/*    -moz-transform: rotate(90deg);*/
/*    transform: rotate(90deg);*/
/*    -webkit-transform-origin: 100% 0;*/
/*    -moz-transform-origin: 100% 0;*/
/*    transform-origin: 100% 0;*/
/*}*/

/*.main-btn:hover:before,*/
/*.main-btn:hover:after {*/
/*    opacity: 1;*/
/*}*/

/*.main-btn:hover:before {*/
/*    left: 50%;*/
/*    -webkit-transform: rotate(0deg) translateX(-50%);*/
/*    -moz-transform: rotate(0deg) translateX(-50%);*/
/*    transform: rotate(0deg) translateX(-50%);*/
/*}*/

/*.main-btn:hover:after {*/
/*    right: 50%;*/
/*    -webkit-transform: rotate(0deg) translateX(50%);*/
/*    -moz-transform: rotate(0deg) translateX(50%);*/
/*    transform: rotate(0deg) translateX(50%);*/
/*}*/

.btn-dark-blue {
    color: #ffffff;
    background: #052045;
    position: relative;
}

.btn-dark-blue:after {
    content: unset;
}

.btn-border {
    background: transparent;
    border: 2px solid #fff;
}

.btn-border:hover {
    color: #ffffff;
}

.btn-border-red {
    background: transparent;
    border: 2px solid #DA0E15;
    color: #DA0E15;
}

.btn-full-width {
    min-width: 100%;
}

.btn-red {
    color: #ffffff;
    background: #DA0E15;
    border-color: #DA0E15;
}

.btn-red.confirm-btn:hover {
    color: #052045;
}

.btn-red i.more-icon {
    color: #ffffff;
}

.btn-red:hover {
    color: #fff;
}

.btn-full-width:hover {
    color: #052045;
}

.dark-border-bottom {
    border-bottom: 1px solid #052045;
}

.main-title {
    font-size: 24px;
    font-family: Roboto-Black;
    color: #052045;
    text-transform: uppercase;
}

h1.main-title {
    font-size: 38px;
}

.sticky {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    background: #f2f0f0;
    box-shadow: 0px 20px 20px #00000029;
    padding: 20px 0;
    color: #ffff;
    margin-top: 0;
}

.loader {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: #052045;
    z-index: 99999999;
}

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

.vehicles-loader {
    width: 100%;
    float: left;
    z-index: 9999;
    height: 100%;
    background: rgba(255, 255, 255, .85);
    position: fixed;
    color: #5B5D61;
    top: 0;
    display: none;
}

.ajax.vehicles-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
    opacity: 0.7;
    background: white;
    top: 0;
    left: 0;
}

.vehicles-loader .loader-icon {
    border: 6px dotted #da0e15;
    border-radius: 50%;
    animation: 1s search-vehicle linear infinite;
    display: inline-block;
    width: 60px;
    height: 60px;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 41px;
}

.ajax-loader {
    width: 100%;
    float: left;
    z-index: 9999;
    height: 100%;
    background: rgba(255, 255, 255, .85);
    position: fixed;
    color: #5B5D61;
    top: 0;
    display: none;
}

.ajax-loader .loader-icon {
    border: 6px dotted #da0e15;
    border-radius: 50%;
    animation: 1s search-vehicle linear infinite;
    display: inline-block;
    width: 60px;
    height: 60px;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 41px;
}

@keyframes search-vehicle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.car-body {
    -webkit-animation: shake 0.2s ease-in-out infinite alternate;
    animation: shake 0.2s ease-in-out infinite alternate;
}

.car-line {
    transform-origin: center right;
    stroke-dasharray: 22;
    -webkit-animation: line 0.8s ease-in-out infinite;
    animation: line 0.8s ease-in-out infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.car-line-top {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.car-line-middle {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.car-line-bottom {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@-webkit-keyframes shake {
    0% {
        transform: translateY(-1%);
    }
    100% {
        transform: translateY(3%);
    }
}

@keyframes shake {
    0% {
        transform: translateY(-1%);
    }
    100% {
        transform: translateY(3%);
    }
}

@-webkit-keyframes line {
    0% {
        stroke-dashoffset: 22;
    }
    25% {
        stroke-dashoffset: 22;
    }
    50% {
        stroke-dashoffset: 0;
    }
    51% {
        stroke-dashoffset: 0;
    }
    80% {
        stroke-dashoffset: -22;
    }
    100% {
        stroke-dashoffset: -22;
    }
}

@keyframes line {
    0% {
        stroke-dashoffset: 22;
    }
    25% {
        stroke-dashoffset: 22;
    }
    50% {
        stroke-dashoffset: 0;
    }
    51% {
        stroke-dashoffset: 0;
    }
    80% {
        stroke-dashoffset: -22;
    }
    100% {
        stroke-dashoffset: -22;
    }
}

.bg-hawkes-blue {
    background-color: #d5d9df;
}

.lity {
    background: rgba(5, 32, 69, 0.8) !important;
}

.modal-backdrop {
    z-index: 2;
}

.p-relative {
    position: relative;
    padding-top: 180px;
}

.py-50 {
    padding: 50px 0;
}

.py-16 {
    padding: 16px 0;
}

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

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

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

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

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

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

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #d5d9df;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #c11b29;
}

/* Handle on hover */


/************************* TOP-HEADER *********************/
.mobile-top-header {
    display: none;
    margin-top: 20px;
    z-index: 9;
}

.header-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(218, 14, 21, 1) 42%, rgba(242, 242, 243, 1) 42%);
    min-height: 400px;
}

.header-wrapper:before {

    /*background: #DA0E15;
    content: "";
    width: 50%;
    min-width: 937px;
    min-height: 520px;
    position: absolute;
    clip-path: polygon(100% 0, 53% 100%, 82% 100%, 0 100%, 0 0);*/
}

span.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 7px;
    transition: .3s;
}

span.medium {
    width: 25px;
    height: 25px;
}

span.large {
    width: 35px;
    height: 35px;
}

span.extra-large {
    width: 56px;
    height: 56px;
}

span.icon img {
    margin-top: -2px;
}

span.icon img.icon-img-hover {
    display: none;
}

a:hover span.icon img.icon-img-hover {
    display: inherit;
}

a:hover span.icon img.icon-img {
    display: none;
}

.top-header,
.mobile-top-header,
header {
    position: absolute;
    margin: 0 auto;
    width: 100%;
}

.top-header {
    padding: 24px 0;
    font-family: Roboto-Medium;
    font-size: 16px;
    z-index: 9;
}

.top-header ul li,
.mobile-top-header ul li,
header .navigation .main-navigation .social-media li {
    display: inline-block;
}

header .navigation .main-navigation a:hover .icon,
.top-header ul li a:hover .icon,
.language-dropdown:hover .icon {
    transform: scale(1.1);
}

.top-header ul li {
    margin-right: 40px;
}

.top-header .top-header-vehicles ul li {
    margin-right: 30px;
}

.top-header ul li:last-child {
    margin-right: 0;
}

.top-header ul li a {
    line-height: 21px;
}


/************************* HEADER *********************/
header {
    z-index: 99;
    margin-top: 60px;
}

header.sticky .navigation a.logo {
    width: 200px;
    height: 35px;
    margin-top: 0;
}

header.sticky .language-dropdown,
header.sticky .authentication,
header.sticky .menu-icon {
    margin-top: 4px;
}

header.sticky .navigation a.logo .sticky-logo {
    display: inherit;
}

header.sticky .navigation a.logo img {
    display: none;
}

header.sticky #hamburger-menu a.logo img {
    display: block;
}

header .navigation {
    padding: 0;
}

header .navigation .main-navigation {
    margin-top: 10px;
}

header .navigation a.logo {
    width: 425px;
    height: 60px;
    display: inline-block;
    margin-top: -5px;
    padding: 0;
    margin-right: 0;
}

header .navigation a.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .navigation a.logo .sticky-logo {
    display: none;
}

header .social-media,
header .authentication {
    margin-right: 40px;
}

header .authentication a.log-out {
    margin-left: 20px;
}

header .language-dropdown {
    margin-right: 55px;
    position: relative;
    cursor: pointer;
}

header .language-dropdown .lang-wrap span.lang {
    color: #052045;
}

header .language-dropdown .lang-list {
    position: absolute;
    bottom: -90px;
    right: 0px;
    width: 150px;
    background: #d5d9df;
    opacity: 0;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    transform: rotateX(90deg);
    transform-origin: top;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 111;
}

header .language-dropdown .lang-list a {
    display: block;
    color: #052045;
    padding: 10px 20px;
    font-family: Roboto-Regular;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

header .language-dropdown .lang-list a:hover {
    color: #da0e15;
}

header .language-dropdown .lang-list a:last-child {
    border-bottom: 0;
}

header .language-dropdown .lang-list.show {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
}

header .language-dropdown .lang-list:before {
    content: "";
    position: absolute;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d5d9df;
    top: -10px;
}

header .language-dropdown:hover span.icon img.icon-img {
    display: none;
}

header .language-dropdown:hover span.icon img.icon-img-hover {
    display: inherit;
}

header .lang-wrap:hover span.lang {
    color: #da0e15;
}

header.sticky .language-dropdown .lang-list {
    bottom: -103px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}


header .menu-icon {
    display: inline-block;
    position: relative;
    width: 30px;
    font-size: 16px;
    cursor: pointer;
}

header .language-dropdown,
header .authentication,
header .menu-icon {
    margin-top: 2px;
}

.menu-icon .bar {
    height: 3px;
    background: #DA0E15;
    margin: 0 auto 6px;
    transition: transform 0.4s ease;
}

#hamburger-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, width .35s;
    z-index: 9999;
    padding: 30px;
}

#hamburger-menu .custom-row {
    width: 100%;
}

#hamburger-menu.open {
    opacity: 1;
    left: 0;
    visibility: visible;
    height: 100%;
}

#hamburger-menu.open:before {
    left: 0;
}

#hamburger-menu:before {
    content: "";
    background: #052045;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

#hamburger-menu:before {
    left: -100%;
    transition: left .35s ease;
}

#hamburger-menu .menu-links {
    color: #fff;
    margin-top: 30px;
}

#hamburger-menu .menu-links .main-menu {
    position: relative;
    z-index: 2;
    list-style: none;
}

#hamburger-menu .menu-links .main-menu,
#hamburger-menu .logo {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
}

#hamburger-menu.open .menu-links .main-menu,
#hamburger-menu .logo {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#hamburger-menu .menu-links .main-menu > li {
    font-size: 30px;
    font-weight: 600;
    padding: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .1s;
    transition: all .1s;
}

#hamburger-menu .menu-links .main-menu.show > li {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    transition-delay: .2s !important;
}

#hamburger-menu .menu-links .o-hidden {
    display: inline-block;
}

#hamburger-menu .menu-links .main-menu > li .link {
    font-family: 'Roboto-Bold';
    font-size: 24px;
    color: #fff;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all .2s;
    transition: all .2s;
    cursor: pointer;

}

#hamburger-menu.open .menu-links .main-menu > li .link {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#hamburger-menu .menu-links .main-menu > li .link i {
    font-size: 16px;
    margin-left: 5px;
    margin-top: -11px;
    position: relative;
    top: -1px;
}

#hamburger-menu .menu-links .main-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-menu .menu-links .main-menu .sub-menu ul {
    list-style: none;
}

#hamburger-menu .menu-links .main-menu .sub-menu li {
    color: #eee;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#hamburger-menu .menu-links .main-menu .sub-menu li a {
    font-family: 'Roboto-Bold';
    font-size: 28px;
    color: #fff;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all .7s;
    transition: all .7s;
}

#hamburger-menu .menu-links .main-menu .sub-menu li span.back {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

#hamburger-menu .menu-links .main-menu .sub-menu li span.back i {
    margin-right: 10px;
}

#hamburger-menu .menu-links .main-menu .sub-menu li a {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size: 22px;
}

#hamburger-menu .menu-links .main-menu .sub-menu.sub-open li a {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#hamburger-menu .menu-links .main-menu.show > li > div > .link {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

#hamburger-menu .menu-links .main-menu.show .sub-menu.sub-open {
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

#hamburger-menu .contact-info {
    margin-top: 50px;
    position: relative;
    z-index: 9;
}

#hamburger-menu .contact-info h4 {
    font-family: Roboto-Black;
    margin-bottom: 20px;
}

#hamburger-menu .contact-info h6,
#hamburger-menu .contact-info h4 {
    color: #fff;
}

#hamburger-menu .contact-info a {
    font-family: Roboto-Regular;
    font-size: 14px;
    display: flex;
    margin-bottom: 20px;
}

#hamburger-menu .contact-info .item h6 {
    margin-bottom: 30px;
    font-family: 'Roboto-Bold';
    font-size: 24px;
    margin-bottom: 10px;
}

#hamburger-menu .contact-info .item {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
}

#hamburger-menu.open .contact-info .item {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#hamburger-menu .contact-info a i {
    margin-right: 10px;
    display: inline-block;
    float: left;
    font-size: 16px;
    margin-top: 6px;
}

#hamburger-menu .contact-info a span {
    margin-top: 3px;
}

#addressAccordion .card {
    margin-bottom: 20px;
    background: transparent;
}

#addressAccordion .card-header {
    border-radius: 4px;
    padding: 0;
    color: #052045;
    position: relative;
    background: #fff;
    padding: 10px 0;
    cursor: pointer;
}

#addressAccordion .card-header .title {
    font-family: Roboto-Bold;
    font-size: 18px;
}

#addressAccordion .card .card-header[aria-expanded=true] .location-icon {
    background: #052045;
    color: #fff;
}

#addressAccordion .card-body,
#addressAccordion .card-body a {
    color: #ffffff;
}

#hamburger-menu .contact-info .item a span {
    display: inline-block;
    padding-left: 20px;
}


#hamburger-menu .contact-info:after {
    content: '';
    width: 1px;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: -40px;
    top: -170px;
    -webkit-transition: all .7s;
    transition: all .7s;
}

#hamburger-menu.open .contact-info:after {
    height: 100vh;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

#hamburger-menu .logo {
    margin-top: 0;
    width: 250px;
    height: 40px;
}

#hamburger-menu .close-navigation {
    position: relative;
    z-index: 9;
    top: 30px;
    display: inline;
    cursor: pointer;
}

#hamburger-menu .close-navigation .icon {
    width: 30px;
    height: 30px;
}

/************************* BREADCRUMBS *********************/
.custom-page .content-wrapper {
    margin-left: 350px;
}

.breadcrumbs-wrapper {
    margin-top: 34px;
}

.breadcrumbs-wrapper ol,
.content-wrapper ol {
    padding: 0;
    background: transparent;
    margin: 0;
}

.breadcrumbs-wrapper .breadcrumb-item + .breadcrumb-item::before,
.content-wrapper .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    color: #052045;
    font-size: 14px;
    margin: 0 15px;
    padding: 0;
}

.breadcrumbs-wrapper .breadcrumb-item a,
.breadcrumbs-wrapper .breadcrumb-item,
.content-wrapper .breadcrumb-item,
.content-wrapper .breadcrumb-item a {
    font-size: 20px;
    font-family: Roboto-Medium;
    padding: 0;
}

.breadcrumbs-wrapper .breadcrumb-item.active a,
.content-wrapper .breadcrumb-item.active {
    color: #DA0E15;
}

/************************* MAIN BANNER *********************/

.banner-wrapper {
    margin-top: 0;
    z-index: 0;
    padding-top: 100px;
    position: relative;
    background: rgb(218, 14, 21);
    background: linear-gradient(135deg, rgba(218, 14, 21, 1) 40%, rgba(242, 242, 243, 1) 40%);
}

.banner-wrapper .image-wrapper {
    position: relative;
    top: 175px;
    left: -140px;
}

.main-banner .image-wrapper .banner-img {
    min-width: 740px;
    height: 422px;
}


.main-banner .content-wrapper .content {
    margin-top: 185px;
    margin-left: 40px;
}

/************************* VEHICLES SEARCH FORM *********************/
.search-form .vehicle-categories {
    display: flex;
}

.search-form .vehicle-categories .form-group {
    margin-right: 30px;
}

.search-form .vehicle-categories .form-group:last-child {
    margin-right: 0;
}

.vehicles-search-form {
    margin-top: 40px;
}

.vehicles-search-form.p-relative {
    margin-top: 0;
}

.vehicles-search-form form {
    padding: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: Roboto-Regular;
    background: transparent linear-gradient(104deg, #848E9B66 0%, #A3ABB54D 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 36px #00000073;
    border: 1px solid #FFFFFF99;
    border-radius: 10px;
    opacity: 1;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    position: relative;
}

.vehicles-search-form form .input-group > .custom-select:not(:first-child), .vehicles-search-form form .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


.vehicles-search-form form .form-group {
    margin-bottom: 10px;
}

.vehicles-search-form form input[type=radio] {
    /*position: absolute;*/
    /*opacity: 0;*/
    /*width: 0;*/
    /*height: 0;*/
    position: absolute;
    opacity: 0;
    width: 51px;
    height: 48px;
    z-index: 1;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.vehicles-search-form form label {
    margin-right: 30px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.vehicles-search-form form .custom-label {
    margin-bottom: 10px;
    display: inline-block;
}

.vehicles-search-form form .custom-label .location-label {
    font-family: 'Roboto-Medium';
    padding-left: 25px;
    color: #052045;
    position: relative;
}

.vehicles-search-form form .custom-label .location-label:before {
    content: "\f061";
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    font-size: 14px;
    top: 0;
    /*transform: translateY(-50%);*/
    left: 5px;
}

.vehicles-search-form form label:last-child {
    margin-right: 0;
}

.vehicles-search-form form span.category-wrap {
    background: #FFFFFF;
    width: 170px;
    height: 65px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 0;
    display: inline-block;
    /*z-index: -1;*/
}

.vehicles-search-form form span.category-wrap object {
    position: relative;
    /*z-index: -1;*/
    bottom: 0;
    width: 100%;
    height: auto;
}

.vehicles-search-form form input[type=radio] + span.category-wrap {
    cursor: pointer;
}

.vehicles-search-form input[type=radio]:checked + span.category-wrap {
    box-shadow: 0 0 0 2px #da0e15;
}

.vehicles-search-form form input,
.vehicles-search-form form select {
    position: relative;
    height: 65px;
    border: 0;
    border-radius: 10px;
    padding-left: 50px;
    color: #052045;
    font-family: 'Roboto-Medium';
    font-size: 20px;
}

.vehicles-search-form form select[name="fixed_package"] {
    width: 100%;
}

form select {
    background-image: url(/uploads/images/icons/general/select-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-position-x: 95%;
    appearance: none;
    -webkit-appearance: none;
}

form.reservation-form select,
form.contact-form select,
.custom-modal form select {
    background-image: url(/uploads/images/icons/general/select-down-arrow-gray.svg);
}

form .form-control-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 9;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}

form .form-control-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicles-search-form form input:focus,
.vehicles-search-form form .form-control {
    outline: none;
    box-shadow: unset;
}

.vehicles-search-form form .input-group-text {
    position: absolute;
    left: 15px;
    z-index: 999;
    padding: 0;
    top: 18px;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.vehicles-search-form form button[type="submit"],
.vehicles-search-form form a.reset-btn {
    min-width: 100%;
    outline: none;
    min-height: 65px;
    border-radius: 10px;
    margin-top: 34px;
}

.vehicles-search-form form button[type="submit"] {
    padding: 15px 30px;
    color: #ffffff;
    background: #DA0E15;
    border: 0;
    transition: .3s ease-in;
}

.vehicles-search-form form button[type="submit"]:hover {
    background: #052045;
}

form button[type=submit]:not(.btn-full-width):hover:after,
form button[type=submit]:not(.btn-full-width):hover:before,
form .reset-btn:after,
form .reset-btn:before {
    content: unset;
}

.reservation-form button[type=submit]:hover:after,
.reservation-form button[type=submit]:hover:before {
    content: "";
}

.reservation-form button[type=submit]:after {
    content: "" !important;
}

.reservation-form button[type=submit]:hover {
    color: #052045;
}

.vehicles-search-form form .individual button[type="submit"],
.vehicles-search-form form a.reset-btn {
    padding: 0;
}

.vehicles-search-form form .individual button[type="submit"] i {
    font-size: 25px;
}

.vehicles-search-form form button[type="submit"] i {
    font-size: 35px;
}

.vehicles-search-form form a.reset-btn {
    background-color: transparent;
    position: relative;
    border: 2px solid #052045;
}

.vehicles-search-form form a.reset-btn span.icon {
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vehicles-search-form form a.reset-btn.animation-none:hover span {
    transform: translate(-50%, -50%) !important;
}

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.vehicles-search-form .form-options {
    display: none;
}

.fahrzeuge .form-options {
    position: absolute;
    left: 100px;
    bottom: -55px;
    font-family: Roboto-Medium;
    font-size: 16px;
    cursor: pointer;
    width: 200px;
    height: 55px;
    display: block;
    background: #ccd0d4;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.fahrzeuge .form-options.open i {
    transform: rotate(180deg);
}

.fahrzeuge .form-options .option {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 50%;
    color: #052045;
    transform: translateX(-50%);
}

.fahrzeuge .form-options.open {
    background: #da0e15;
}

.fahrzeuge .form-options.open .option {
    color: #ffffff;
}

.fahrzeuge .form-options .option i {
    margin-left: 10px;
    font-weight: 800;
}

.drp-buttons .applyBtn {
    background-color: #DA0E15;
    border-color: #DA0E15;
}

.daterangepicker .calendar-table tbody tr td.active {
    background-color: #DA0E15;
}

.daterangepicker .calendar-table thead {
    color: #052045;
}

.daterangepicker .calendar-table thead .monthselect,
.daterangepicker .calendar-table thead .yearselect {
    background: #ffffff;
    color: #052045;
    border: 1px solid #052045;
    height: 24px;
    border-radius: 4px;
}

.daterangepicker .calendar-table thead .available {
    background: #da0e15;
    color: #fff;
    border-radius: 4px;
}

.daterangepicker .calendar-table thead .next span, .daterangepicker .calendar-table thead .prev span {
    border-color: #ffffff;
}

.daterangepicker .calendar-table td.available:hover,
.daterangepicker .calendar-table th.available:hover,
.daterangepicker .drp-buttons .applyBtn:hover,
.daterangepicker .drp-buttons .applyBtn:focus {
    background-color: #052045;
    color: #ffffff;
}

.daterangepicker .drp-buttons .applyBtn:hover,
.daterangepicker .drp-buttons .applyBtn:focus {
    border-color: #052045;
}

.vehicles-search-form .individual {
    display: none;
}

.vehicles-search-form form .categories-options .range-input,
.vehicles-search-form form .categories-options {
    display: none;
}

.vehicles-search-form form .categories-options {
    margin-top: 15px;
}

.vehicles-search-form form .categories-options .slider-option {
    padding-right: 25px;
}

.vehicles-search-form form .categories-options .slider-option .ui-widget-content {
    margin: 10px 0 0 10px;
    height: 2px;
    border: 0;
    background-color: #DA0E15;
}

.vehicles-search-form form .categories-options .slider-option .ui-widget-content .ui-widget-header {
    background-color: #052045;
}

.vehicles-search-form form .categories-options .slider-option .ui-state-default,
.vehicles-search-form form .categories-options .slider-option .ui-widget-content .ui-state-default,
.vehicles-search-form form .categories-options .slider-option .ui-widget-content .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #ffffff;
    background: #ffffff;
    font-weight: normal;
    color: #454545;
    top: -9px;
    border-radius: 50%;
}

.vehicles-search-form form .categories-options .slider-option .ui-widget-content .ui-state-default:focus {
    outline: none;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper {
    margin-top: 20px;
    font-family: Roboto-Bold;
    font-size: 18px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li {
    display: inline-block;
    margin-right: 35px;
    font-size: 14px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(1) {
    margin-right: 22px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(2),
.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(3) {
    margin-right: 30px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(4) {
    margin-right: 35px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(5) {
    margin-right: 30px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(6) {
    margin-right: 30px;
}

.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(9) {
    margin-right: 15px;
}

.vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li {
    margin-right: 10px;
}

.vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(2) {
    margin-right: 20px;
}

.vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(6) {
    margin-right: 35px;
}

.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(1),
.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(6),
.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(7),
.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(8) {
    margin-right: 20px;
}

.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(2), .vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(3) {
    margin-right: 25px;
}

.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(5),
.vehicles-search-form form .categories-options .slider-option.vans #slider-wrapper ul li:nth-child(10) {
    margin-right: 15px;
}


.vehicles-search-form form .checkbox-option span.checkbox-label,
.search-form.limousine .limousine-directions span.checkbox-label {
    display: block;
}

.vehicles-search-form form .checkbox-option .form-group ul li {
    display: inline-block;
    margin-right: 16px;
}

.vehicles-search-form form .checkbox-option .form-group ul li:last-child,
.vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:last-child {
    margin-right: 0;
}

.vehicles-search-form form .checkbox-option input[type="checkbox"][id^="customCheckbox"] {
    display: none;
}

.vehicles-search-form form .checkbox-option label,
.search-form.limousine .limousine-directions label,
.search-form.limousine .services label,
.search-form.limousine .services a.form-btn {
    position: relative;
    background: #fff;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.vehicles-search-form form .checkbox-option label .icon,
.search-form.limousine .limousine-directions label .icon,
.search-form.limousine .services label .icon,
.search-form.limousine .services a.form-btn .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 0;
}

.vehicles-search-form form .checkbox-option label .icon img,
.search-form.limousine .limousine-directions label .icon img,
.serch-form.limousine .services label .icon img,
.serch-form.limousine .services a.form-btn .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 0;
}

.vehicles-search-form form .checkbox-option label:before,
.search-form.limousine .limousine-directions label:before,
.search-form.limousine .services label:before,
.search-form.limousine .services a.form-btn:before {
    background-color: #fff;
    color: #fff;
    content: " ";
    display: block;
    border-radius: 4px;
    border: 1px solid #da0e15;
    position: absolute;
    top: -10px;
    left: -5px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transition-duration: .2s;
    transform: scale(0);
    font-size: 14px;
}

.vehicles-search-form form .checkbox-option input[type="checkbox"]:checked + label:before,
.search-form.limousine .limousine-directions input[type="radio"]:checked + label:before,
.search-form.limousine .services input[type="radio"]:checked + label:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    background-color: #da0e15;
    transform: scale(1);
}

.vehicles-search-form form .checkbox-option input[type="checkbox"]:checked + label,
.search-form.limousine .limousine-directions input[type="radio"]:checked + label,
.search-form.limousine .services input[type="radio"]:checked + label {
    border: 2px solid #DA0E15;
}

/************************* NEWS *********************/
.box-item:focus {
    outline: none;
}

.box-item figure {
    width: 100%;
    height: 370px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.box-item figure:before {
    content: "";
    background: transparent linear-gradient(215deg, #00000000 0%, #052045 100%) 0% 0% no-repeat padding-box;
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    border-radius: 4px;
    z-index: 1;
}

.box-item figure:hover:before {
    background: #052045 0% 0% no-repeat padding-box;
    opacity: 0.8;
}

.box-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    position: relative;
    display: block;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
}

.box-item figure figcaption {
    padding: 20px;
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.box-item figure figcaption h2 {
    transform: translate3d(0, 140px, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-item figure figcaption .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    height: 75%;
}

.box-item figure figcaption .overlay p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.5s;
    transition: opacity 0.2s, transform 0.5s;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-item figure figcaption .overlay .main-btn {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 86px, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.box-item figure:hover img, .box-item figure:hover figcaption .overlay p,
.box-item figure:hover figcaption .overlay .main-btn {
    opacity: 1;
    visibility: visible;
}

.box-item figure:hover figcaption .overlay .main-btn {
    transform: translate3d(0, 0, 0);
    bottom: 20px;
    left: 20px;
    position: absolute;
}

.box-item figure:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.box-item figure:hover h2, .box-item figure:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #fff;
}

.box-item figure:hover figcaption .overlay p {
    transform: translate3d(0, 0, 0);
}

.box-item figure:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.box-item .btn-border {
    padding: 10px 40px;
    min-width: 240px;
}

.navigation-control {
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 15px;
    font-size: 20px;
    color: #da0e15;
}

.navigation-control:hover {
    color: #052045;
}

.navigation-control.control-prev {
    right: 50px;
}

/************************* VEHICLE STEPS *********************/
.vehicle-steps {
    color: #ffffff;
    position: relative;
}

.step-wrapper {
    margin-bottom: 30px;
}

.step-header {
    background: #ffffff;
    border-radius: 4px;
    transition: .4s ease;
}

.step-header button,
.reservation-form .equipment #equipmentCategory button {
    padding: 5px 5px 0;
    color: #052045;
    font-family: Roboto-Bold;
    text-transform: uppercase;
    display: inline-block;
    height: 52px;
    text-decoration: none;
    position: relative;
}

.step-header button span.title,
#addressAccordion .card-header span.title {
    margin-left: 55px;
    display: inline-block;
    transition: .4s ease;
}

.acc-collapse {
    position: absolute;
    z-index: 9;
}

.acc-collapse .step-body {
    background: white;
    width: calc(100% - 15px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.step-body {
    padding: 20px;
    color: #052045;

}

.vehicles-steps.accordion .img-wrap {
    min-width: 310px;
    height: 140px;
    border-radius: 4px;
}

.vehicles-steps.accordion .img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.step-body p {
    margin-top: 0;
    font-size: 16px;
}

.step-header button .step-no,
#addressAccordion .card-header .location-icon {
    float: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    font-size: 20px;
    font-family: 'Roboto-Black';
    color: #ffffff;
    background: #052045;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    transition: left .4s ease;
}

#addressAccordion .card-header .location-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-header button .step-no .no {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-header h6 {
    margin-bottom: 0;
    margin-left: 55px;
}

.step-header:hover {
    background: #DA0E15;
}

.custom-accordion .step-header .step-no .no .icon-img-hover,
.custom-accordion .step-header:hover .step-no .no .icon-img {
    display: none;
}

.custom-accordion .step-header:hover .step-no .no .icon-img-hover {
    display: inherit;
}

.step-header:hover button {
    color: #ffffff;
}

.step-header:hover button .step-no {
    background: #ffffff;
    color: #052045;
}

.step-header button[aria-expanded="true"] .step-no,
#addressAccordion .card-header[aria-expanded="true"] .location-icon {
    /*right: 5px;*/
    left: 87%;
    background: #ffffff;
    color: #052045;
}

.step-header button[aria-expanded="true"] .title,
#addressAccordion .card-header[aria-expanded="true"] .title {
    margin-left: 15px;
}

.step-header button[aria-expanded="true"] {
    background: #DA0E15;
}

.step-header button[aria-expanded="true"] {
    color: #ffffff;
}

/************************* SERVICES *********************/
.left-right .services-wrapper {
    padding-left: 0;
}

.right-left .services-image {
    padding-right: 0;
}

.left-right .services-wrapper .services-content {
    padding-right: 80px;
}

.right-left .services-wrapper .services-content {
    padding-left: 400px;
}

.services-wrapper .services-content {
    margin-top: 90px;
}

.content h2.main-title {
    font-size: 38px;
}

.content .services-image figure img {
    width: 100%;
    height: 100%;
}


/************************* FOOTER *********************/
footer {
    background-color: #DA0E15;
}

footer,
footer a {
    color: #ffffff;
}

footer a {
    display: block;
    font-size: 14px;
}

footer a:hover {
    color: #052045;
}

footer .top-footer {
    padding: 40px 0;
    font-family: Roboto-Regular;
}

footer .top-footer .logo a {
    display: inline-block;
    width: 250px;
    height: 40px;
}

footer .top-footer .logo a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer h4 {
    font-family: Roboto-Bold;
    margin-top: 10px;
    font-size: 24px;
}

footer ul.widgets-list,
footer .top-footer p {
    margin-top: 40px;
}

footer .top-footer p,
footer ul.widgets-list.newsletter li span {
    font-size: 14px;
}

.widgets-list li a:before {
    content: "\f45c";
    font-family: 'Font Awesome 5 Pro';
    background: white;
    border-radius: 0;
    font-size: 5px;
    top: -3px;
    position: relative;
    margin-right: 4px;
}

.widgets-list li a:hover:before {
    background: #052045;
}

footer ul.widgets-list.first-column {
    list-style: none;
}

footer ul.widgets-list.first-column li a:before {
    content: unset;
}

footer ul.widgets-list.first-column li {
    margin-bottom: 20px;
}

footer ul.widgets-list a {
    text-transform: unset;
}

footer .bg {
    background: url("/uploads/images/general/vehicles-footer.svg");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: 100%;
    height: 100px;
}

footer .bottom-footer {
    /*border-top: 2px solid rgba(255, 255, 255, 0.4);*/
    padding: 40px 0;
}

footer .bottom-footer p,
footer .bottom-footer a,
.newsletter-form span {
    font-size: 14px;
}

.newsletter-form label.error {
    color: #fff;
}

footer .bottom-footer p {
    margin-top: 0;
}

footer .bottom-footer p:first-child {
    border-right: 1px solid #fff;
    float: left;
    padding-right: 8px;
    margin-right: 8px;
}

footer .bottom-footer .bottom-list {
    text-align: right;
}

footer .bottom-footer .bottom-list ul li {
    display: inline-block;
    padding-left: 8px;
}

footer .bottom-footer .bottom-list ul li:last-child a {
    border-right: 0;
}

footer .bottom-footer .bottom-list ul li a {
    border-right: 1px solid #fff;
    padding-right: 8px;

}

footer .bottom-footer a {
    display: inline-block;
}

footer .bottom-footer p a {
    color: #052045;
}

/************************* NEWSLETTER *********************/
form.newsletter-form {
    margin-top: 10px;
}

form.newsletter-form button[type=submit]:hover:before,
form.newsletter-form button[type=submit]:hover:after {
    /*background: #ffffff;*/
}

form.newsletter-form button[type=submit]:hover:after {
    background-color: transparent;
}

form.newsletter-form button[type=submit]:hover {
    color: #fff;
    background: transparent;
}

form.newsletter-form,
form.newsletter-form input {
    position: relative;
}

form.newsletter-form input:not(input[type=checkbox]) {
    height: 45px;
    font-size: 14px;
    border-radius: 4px;
    border-color: transparent;
    padding-right: 60px;
}

footer.newsletter-form input[placeholder],
.discount input[placeholder] {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

form.newsletter-form input:focus {
    box-shadow: none;
    outline: none;
    border-color: transparent;
}

.widget-item .newsletter-form .checkbox input[type=checkbox] + .label-text:after {
    background: #052045;
    border-color: #052045;
    border-radius: 4px;
}

.widget-item .newsletter-form label,
.newsletter-form span.form-info {
    margin-top: 10px;
}

.widget-item .newsletter-form label:not(.error) {
    width: 90%;
    float: right;
    font-size: 14px;
    margin-bottom: 10px;
    padding-right: 1px;
}

.widget-item .newsletter-form input[name="privacy_policy"] {
    top: 10px;
}

.newsletter-form span.form-info {
    margin-top: 50px;
    display: none;
}
.newsletter-form button[type=submit]{
    margin-top: 80px;
}

/************************* VEHICLES-LIST *********************/
.vehicles-list .vehicle-item {
    margin-bottom: 30px;
}

.vehicles-list .vehicle-item .vehicle-wrapper {
    min-height: 500px;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.shape,
.vehicle-wrapper {
    background: #fff;
    border-radius: 4px;
    transition: all .3s ease-in;
    position: relative;
}

.shape-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    height: 66px;
    color: #ffffff;
    padding: 20px;
    font-family: Roboto-Black;
    text-transform: uppercase;
}

.shape-wrapper.left {
    font-size: 18px;
    left: 0;
    background: #052045;
    width: 43%;
    clip-path: polygon(0 0, 100% 0%, 58% 100%, 0% 100%);
    border-top-left-radius: 4px;
}

.shape-wrapper.left.limousine-location {
    font-size: 16px;
    width: 58%;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

.shape-wrapper.left.limousine-location.full {
    width: 100%;
    clip-path: unset;
}

.shape-wrapper.left.limousine-location span {
    display: inline-block;
}

.shape-wrapper.left.limousine-location span.location {
    position: absolute;
    padding-left: 0;
    padding-right: 30px;
}

.location-tooltip-inner.tooltip-inner {
    background-color: #fff;
    color: #052045;
    font-family: 'Roboto-Medium';
    z-index: 9;
}

.location .arrow {
    background-color: #fff;
}

.location-tooltip-inner.transfer.tooltip-inner {
    min-width: 320px;
    font-family: 'Roboto-Bold';
}

.shape-wrapper.limousine-location .icon {
    width: 10px;
    height: 15px;
}

.shape-wrapper.right.limousine-location {
    width: 55%;
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 0% 100%);
}

.shape-wrapper.right {
    border-top-right-radius: 4px;
}

.shape-wrapper.left span {
    /*line-height: 18px;*/
    display: inherit;
}

.shape-wrapper.right {
    font-size: 16px;
    right: 0;
    background: #DA0E15;
    text-align: right;
    width: 75%;
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 3% 100%);
}

.shape:before {
    position: absolute;
    height: 66px;
    z-index: 1;
    top: 0;
    color: #fff;
    font-family: Roboto-Black;
}

.shape:before {
    content: attr(data-category);
    width: 153px;
    left: 0;
    background: #052045;
    font-size: 24px;
    clip-path: polygon(0 0, 100% 0%, 58% 100%, 0% 100%);
    border-top-left-radius: 4px;
    padding-top: 15px;
    padding-left: 20px;
}

.shape h2 {
    margin-bottom: 20px;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure {
    width: 100%;
    height: 194px;
    position: relative;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure .img-overlay {
    content: "";
    background: #0520454D 0% 0% no-repeat padding-box;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: .6s ease-in;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure .img-overlay .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 0;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure .img-overlay .icon img {
    margin-top: 0;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure img.vehicle-img {
    /*margin-top: 15px;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-info {
    padding: 0 30px;
    color: #052045;
    font-family: Roboto-Black;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-info h3,
.modal h2 {
    margin-bottom: 30px;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue {
    /*min-height: 65px;*/
    height: 65px;
    font-size: 24px;
    min-width: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    transition: .3s ease-in;
    border: transparent;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue .title {
    transition: .3s ease-in;
    text-transform: none;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue i {
    opacity: 0;
    position: absolute;
    top: 50%;
    right: -43px;
    transform: translateY(-50%);
    transition: .5s ease-in;
}


.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue:before {
    content: unset;
}

.vehicles-list .vehicle-item .vehicle-wrapper:hover {
    box-shadow: 0px 0px 30px #0000004D;
}

.vehicles-list .vehicle-item .vehicle-wrapper:hover .vehicle-price .btn-dark-blue {
    background: #DA0E15;
    border-color: #DA0E15;
    color: #ffffff;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue:hover .title {
    transition: .6s ease-in;
    margin-left: -90px;
}

.vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue:hover i {
    opacity: 1;
    right: 27px;
}

.vehicles-list .vehicle-item .vehicle-wrapper figure:hover .img-overlay {
    opacity: 1;
}

.vehicles-details-list {
    font-family: Roboto-Medium;
    font-size: 18px;
    color: #052045;
}

.vehicles-details-list span.title {
    font-size: 16px;
}

/************************* CUSTOM MODAL *********************/
.modal {
    background: rgba(5, 32, 69, 0.8);
    z-index: 105000;
}

.modal-header {
    border-bottom: 0;
}

.modal-gallery .close {
    float: none;
    position: absolute;
    z-index: 3;
    top: 2px;
    right: 12px;
    font-weight: unset;
    opacity: 1;
    color: #052045;
    font-size: 28px;
    text-shadow: unset;
}

.modal-gallery .close span {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.modal .modal-content .modal-wrapper .modal-gallery .close:hover {
    color: #da0e15;
}

.modal .modal-content .modal-wrapper .modal-gallery .close:focus {
    outline: none;
}

.modal-content {
    padding: 0;
    color: #052045;
    font-family: Roboto-Black;
}

.modal-sidebar .sidebar-wrapper,
.vehicles-details-wrapper .details-info-sidebar .sidebar-wrapper {
    padding: 0 0 30px 30px;
}

.vehicles-details-wrapper .custom-border {
    border-radius: 4px;
}

.modal-dialog {
    max-width: 1030px;
}

.social-sharing ul li {
    display: inline-block;
}

#gallerySlider {
    padding: 30px;
}

#gallerySlider .gallery-indicators .item {
    padding-left: 0;
    cursor: pointer;
}

#gallerySlider .gallery-indicators .item .img {
    margin-bottom: 30px;
    border: 2px solid #F2F2F3;
}

#gallerySlider .gallery-indicators .active.item .img {
    border-color: #da0e15;
}

.gallery-indicators {
    position: unset;
    margin: 0;
    justify-content: left;
}

#gallerySlider .carousel-inner .carousel-item {
    height: 351px;
}

.vehicles-details-wrapper #gallerySlider .carousel-inner .carousel-item {
    height: 375px;
}

#gallerySlider .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls .carousel-control-prev {
    left: unset;
    right: 65px;

}

.carousel-controls .carousel-control-next {
    right: 20px;
}

.carousel-controls .carousel-control-next, .carousel-controls .carousel-control-prev {
    top: unset;
    bottom: 40px;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #da0e15;
    background: white;
    margin-right: 10px;
    display: inline-block;
    position: absolute;
    border: 1px solid #052045;
}

.carousel-controls .carousel-control-next span, .carousel-controls .carousel-control-prev span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s ease-in;
    color: #da0e15;
    line-height: 1;
}

.carousel-controls .carousel-control-next:hover span, .carousel-controls .carousel-control-prev:hover span {
}

.carousel-controls a span i {
    font-size: 24px;
}

.modal-main-content .vehicle-detail-desc,
.vehicles-details-wrapper .details-main-content {
    padding: 20px 42px 0;
    background: #F2F2F3;
    height: 100%;
}

.vehicles-details-wrapper .details-main-content {
    height: unset;
}

.modal-main-content .vehicle-detail-desc p:first-child {
    margin-top: 0;
}

.modal-main-content {
    margin-top: 40px;
}

.modal h5,
.vehicles-details-wrapper h5 {
    font-family: Roboto-Medium;
    font-size: 18px;
}

.modal .modal-details h5,
.vehicles-details-wrapper h5 {
    margin-bottom: 20px;
}

.vehicles-details-wrapper h5 {
    color: #052045;
}

/************************* RESERVATION *********************/
.vehicle-detail-info {
    padding: 30px;
    background: transparent linear-gradient(162deg, #FFFFFF66 0%, #FFFFFF80 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #052045;
    border-radius: 10px;
    opacity: 1;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.vehicle-detail-info figure img {
    border-radius: 4px;
}

.vehicle-detail-info.shape:before {
    border-top-left-radius: 10px;
}

.vehicle-detail-info.shape.limo-shape:before {
    font-size: 14px;
    padding-right: 40px;
}


.vehicles-details-list.dark-border-bottom h3 {
    font-size: 24px;
    text-transform: unset;
    margin-bottom: 10px;
}
.vehicles-details-list.dark-border-bottom h3 span.small-title{
    display: inline-block;
    font-size: 12px;
    font-family: Roboto-Regular;
}

.vehicles-details-list ul,
.vehicles-details-list .pick-up-location {
    margin-left: 40px;
    position: relative;
}

.vehicles-details-list ul:before {
    content: url(/uploads/images/icons/general/mietdauer-return-date.svg);
    display: block;
    background-size: cover;
    position: absolute;
    top: 11px;
    left: -40px;
}

.vehicles-details-list .pick-up-location:before,
.vehicles-details-list .pick-up-location.two-directions:after {
    display: block;
    background-size: cover;
    position: absolute;
    top: 11px;
    left: -40px;
}

.vehicles-details-list .two-directions-date h4 {
    position: relative;
}

.vehicles-details-list .two-directions-date h4:after {
    position: absolute;
    top: -2px;
    right: 0;
    background-size: cover;
}

.vehicles-details-list .two-directions-date .pick-up-date h4:after {
    content: url(/uploads/images/icons/general/pick-up-arrow.svg);
}

.vehicles-details-list .two-directions-date .return-date h4:after {
    content: url(/uploads/images/icons/general/return-arrow.svg);
}

.vehicles-details-list ul li,
.vehicles-details-list h4 {
    font-size: 20px;
}

.vehicles-details-list ul li {
    margin-bottom: 15px;
}

.vehicles-details-list ul.vehicles-dates li,
.vehicles-details-list .vehicles-dates h4 {
    /*display: flex;*/
    display: -webkit-inline-box;
    width: 100%;
}

.vehicles-details-list .vehicles-dates input.datetimepicker {
    height: 30px;
    font-size: 14px;
    padding: 10px;
    width: 70%;
}

.vehicles-details-list .two-directions-date .vehicles-dates input.datepicker {
    width: 65%;
}

.daterangepicker .drp-calendar .calendar-time {
    text-align: right;
    margin-right: 10px;
}

.vehicles-details-list ul.vehicles-dates li .editable,
.vehicles-details-list .vehicles-dates .editable {
    border-bottom: 2px dashed transparent;
}

.vehicles-details-list ul.vehicles-dates li .editable:hover,
.vehicles-details-list .vehicles-dates .editable:hover {
    border-bottom: 2px dashed #DA0E15;
    cursor: pointer;
}

.icon.info-tooltip {
    margin-left: 7px;
}

.tooltip-inner {
    background-color: #052045;
    color: #fff;
    font-family: Roboto-Regular;
    font-size: 12px;
    padding: 10px;
    opacity: 1;
}

.vehicles-details-list ul li span.title,
.vehicles-details-list .distance-location .title {
    display: inline-block;
    position: relative;
    top: 2px;
}

.vehicles-details-list .distance-location span.icon.medium {
    width: 22px;
    height: 22px;
    margin-right: 0;
}

.vehicles-details-list h5 {
    margin-bottom: 0;
}

.vehicles-details-list .base-price {
    font-family: Roboto-Bold;
    font-size: 16px;
}

.vehicles-details-list .price {
    font-family: Roboto-Regular;
}

.vehicles-details-list .base-price,
.vehicles-details-list .price {
    display: block;
}

.vehicles-details-list p,
.vehicles-details-list.total-price .taxes-info {
    margin-top: 0;
}

.vehicles-details-list.total-price .taxes-info span {
    font-family: Roboto-Bold;
}

.vehicles-details-list p,
.vehicles-details-list .price {
    font-size: 14px;
}

.vehicles-details-list.total-price h2 {
    text-transform: unset;
    margin-bottom: 0;
}

.vehicles-details-list.total-price .final-price {
    font-size: 40px;
    margin-top: 20px;
}

.vehicles-details-list.total-price .btn-red {
    min-width: 100%;
}

/************************* VEHICLE DETAIL OVERVIEW INFORMATION *********************/
.overview-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.overview-box .social-sharing h3 {
    margin-bottom: 30px;
}

.overview-box h4 {
    color: #052045;
    margin: 30px 0;
}

.information ul li {
    position: relative;
    margin-bottom: 30px;
}

.information ul li a {
    display: inline-block;
}

.information ul li .icon {
    position: absolute;
    left: 0;
}

.information ul li .title {
    display: inline-block;
    padding-left: 80px;
    font-family: 'Roboto-Black';
}

.reservation-detail .vehicle-overview .vehicle-detail-info figure {
    position: relative;
}

.reservation-detail .vehicle-overview .vehicle-detail-info figure .img-overlay {
    content: "";
    background: #0520454D 0% 0% no-repeat padding-box;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: .6s ease-in;
}

.reservation-detail .vehicle-overview .vehicle-detail-info figure .img-overlay .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 0;
}

.reservation-detail .vehicle-overview .vehicle-detail-info figure:hover .img-overlay {
    opacity: 1;
}

/************************* RESERVATION FORM *********************/
form.reservation-form input:focus,
form.search-form input:focus,
form.reservation-form select:focus,
form.search-form select:focus,
form.reservation-form textarea:focus,
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
    outline: none;
    box-shadow: unset;
}

.rates h3,
.insurance h3 {
    margin-bottom: 20px;
}

.reservation-form .form-box,
.reservation-form #equipmentCategory,
.reservation-form #equipmentCategory .card-header {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    color: #052045;
}

.reservation-form #equipmentCategory h3 .price-half-day {
    font-size: 16px;
    font-family: Roboto-Regular;
    text-transform: none;
    display: inline-block;
    margin-left: 5px;
}

.reservation-form #equipmentCategory .input-group {
    border: 1px solid #052045;
    border-radius: 4px;
    width: 150px;
    max-width: 100%;
}

.reservation-form #equipmentCategory .input-group button.btn-qty {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.reservation-form #equipmentCategory .input-group button.btn-qty[disabled="disabled"] {
    cursor: not-allowed;
}

.reservation-form #equipmentCategory .input-group button.btn-qty:focus {
    outline: none;
}

.reservation-form #equipmentCategory .input-group button.btn-qty .icon.large {
    width: 40px;
    height: 40px;
    margin-right: 0;
    padding: 8px;
}

.reservation-form #equipmentCategory .input-group .input-qty {
    border-radius: 0;
    height: 40px;
    border-top: 0;
    border-bottom: 0;
    border-color: #052045;
    text-align: center;
    color: #da0e15;
    font-size: 24px;
    font-family: Roboto-Bold;
}

.reservation-form input[type="radio"]:not(.force-checkbox):after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -4px;
    left: 0;
    position: relative;
    background-color: #ffffff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #DA0E15;
}

.reservation-form input[type="radio"],
.reservation-form input[type="checkbox"],
.reservation-form .final-details .form-box input[type=checkbox] {
    position: relative;
    cursor: pointer;
    -moz-appearance:initial;
}

.reservation-form input[type="checkbox"], .reservation-form input.force-checkbox {
    width: 5px;
}

.reservation-form input[type="radio"]:not(.force-checkbox):checked:after {
    border-radius: 15px;
    position: absolute;
    content: '';
    display: inline-block;
    visibility: visible;
    width: 12px;
    height: 12px;
    top: 0;
    left: 4px;
    background: #052045;
    border-color: transparent;
}

.reservation-form input[type="radio"]:not(.force-checkbox):checked:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    display: block;
    pointer-events: none;
    border: #DA0E15 solid 1px;
    border-radius: 50%;
    top: -4px;
    left: 0;
}

.reservation-form input[type="checkbox"]:before,
.reservation-form input[type="checkbox"]:after,
.reservation-form input.force-checkbox:before,
.reservation-form input.force-checkbox:after {
    content: "";
}

.reservation-form input[type="checkbox"]:disabled:before, .reservation-form input.force-checkbox:disabled:before {
    border-color: #7B7676;
}

.reservation-form input[type="checkbox"]:disabled:after, .reservation-form input.force-checkbox:disabled:after {
    border-color: #7B7676;
}

.reservation-form input[type="checkbox"]:before, .reservation-form input.force-checkbox:before {
    width: 0;
    height: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: #f00;
    position: absolute;
    top: 20px;
    left: 8px;
    z-index: 3;
    transform-origin: left top;
    transform: rotate(-40deg) skew(10deg);
    font-size: 45px;
    opacity: 0;
}

.reservation-form input[type="checkbox"]:after, .reservation-form input.force-checkbox:after {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    border: 1px solid #052045;
    border-radius: 4px;
    background: #fff;
}

.reservation-form input[type="checkbox"]:checked:before, .reservation-form input.force-checkbox:checked:before {
    width: 24px;
    height: 10px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    opacity: 1;
    /*transition: opacity .1s ease-out .4s, width .1s ease-out .2s, height .2s ease-out .2s;*/
    transition: opacity .1s ease-out .25s, width .1s ease-out .5s, height .2s ease-out .3s;
}

.reservation-form input[type="checkbox"]:disabled, .reservation-form input.force-checkbox:disabled {
    cursor: not-allowed;
}

.reservation-form .form-check.radio-check label.form-check-label {
    margin-left: 10px;
}

.reservation-form .form-check label.form-check-label {
    margin-left: 50px;
}

.reservation-form .insurance label.form-check-label {
    position: relative;
    top: 11px;
}

.reservation-form .insurance .tarife-price span.price {
    margin-top: 12px;
    display: inline-block;
}

.insurance .form-check {
    padding-bottom: 20px;
}

.reservation-form #equipmentCategory .equipment h5 {
    margin-bottom: 0;
}

.reservation-form #equipmentCategory .equipment .icon.extra-large {
    width: 100px;
    height: 100px;
}

.reservation-form #equipmentCategory .equipment .icon.extra-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reservation-form .accordion#equipmentCategory {
    background: transparent;
    padding: 0;
}

.reservation-form .accordion#equipmentCategory .card.equipment {
    background: transparent;
}

.reservation-form #equipmentCategory .equipment .card-header {
    background: #ffffff;
    border-radius: 4px;
    margin-bottom: 0;
    margin-top: 20px;
}

.reservation-form #equipmentCategory .equipment .card-header:first-child {
    margin-top: 0;
}

.reservation-form #equipmentCategory .equipment:first-child .card-header:nth-last-of-type(2) {
    margin-bottom: 0;
}

.reservation-form #equipmentCategory .equipment.card,
.reservation-form #equipmentCategory .equipment.card .card-header {
    border: none;
}

.reservation-form #equipmentCategory .equipment .card-header button {
    padding: 0;
    color: #052045;
    position: relative;
    transition: .4s ease-in;
    text-decoration: none;
    font-family: 'Roboto-Black';
    text-transform: uppercase;
    font-size: 20px;
}

.reservation-form #equipmentCategory .equipment .card-header button:before {
    content: "\f078";
    position: absolute;
    right: 20px;
    color: #052045;
    font-family: 'Font Awesome 5 Pro';
    top: 50%;
    transform: translateY(-50%);
    transition: .4s ease-in;
}

.reservation-form #equipmentCategory .equipment .card-header button[aria-expanded="true"]:before {
    transform: translateY(-50%) rotate(180deg);
}

.reservation-form #equipmentCategory .equipment .card-body {
    padding: 2px 20px 0 20px;
    background: #ffffff;
}

.reservation-form .form-box .equipment h5 {
    margin-bottom: 0;
}

.reservation-form #equipmentCategory .equipment .price {
    font-family: Roboto-Black;
    font-size: 20px;
    margin: 15px 0;
    display: inline-block;
}

.reservation-form .equipment-item {
    margin-bottom: 50px;
}

.reservation-form .form-box .form-check {
    margin-bottom: 20px;
}

.reservation-form button.confirm-btn,
.reservation-form button.submit-btn {
    float: right;
    min-width: 370px;
}

.reservation-form button.login-btn {
    min-width: 320px;
}

.reservation-form .register-link {
    position: relative;
}

.reservation-form .register-link:hover:before {
    content: "";
    width: 50px;
    height: 2px;
    background: #da0e15;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}

.reservation-form .final-details,
.reservation-form .final-details .login-box {
    display: none;
}

.reservation-form .final-details .auth-options ul li {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    font-family: Roboto-Medium;
}

.reservation-form .final-details #register .modal-header {
    display: unset;
    padding-right: 20px;
    border-bottom: 1px solid #d5d9df;
    background: rgb(218, 14, 21);
    background: -moz-linear-gradient(135deg, rgba(218, 14, 21, 1) 29%, rgba(242, 242, 243, 1) 29%);
    background: -webkit-linear-gradient(135deg, rgba(218, 14, 21, 1) 29%, rgba(242, 242, 243, 1) 29%);
    background: linear-gradient(135deg, rgba(218, 14, 21, 1) 29%, rgba(242, 242, 243, 1) 29%);
}

.reservation-form .final-details #register .modal-header .logo {
    width: 200px;
    height: 60px;
    display: inline-block;
}

.reservation-form .final-details .reservation-auth-info h3 {
    margin-bottom: 0;
}

.reservation-form .final-details .reservation-auth-info h3 span {
    font-size: 16px;
}

.reservation-form .final-details .reservation-auth-info .data-info {
    display: inline-block;
    font-family: Roboto-Medium;
    font-size: 12px;
    margin-bottom: 15px;
    color: #052045;
}


.reservation-form.individual .final-details {
    display: block;
}

.reservation-form .final-details input,
.reservation-form .final-details select,
.reservation-form .final-details textarea {
    font-size: 14px;
}

.reservation-form .final-details input:not(input[type=radio]),
.reservation-form .final-details select {
    height: 40px;
}

.reservation-form .final-details input:not(input[type=radio]),
.reservation-form .final-details select {
    color: #052045;
}

.reservation-form .final-details select {
    color: #7B7676;
}

.reservation-form .final-details .discount input {
    position: relative;
}

.reservation-form .final-details .code-btn {
    min-width: 80px;
    min-height: 40px;
    position: absolute;
    top: 24px;
    right: 16px;
    padding: 0;
    background: #da0e15;
    border-color: #da0e15;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.reservation-form .final-details .discount h6 {
    font-size: 14px;
    font-family: Roboto-Bold;
    margin-top: 5px;
}

.reservation-form .final-details .form-box .form-check {
    margin-bottom: 15px;
}

.reservation-form .final-details .form-box input[type=checkbox] {
    height: unset;
}

.reservation-form .final-details .form-box .more-info span {
    display: none;
    font-size: 14px;
    font-family: Roboto-Medium;
    color: #da0e15;
    margin-top: 10px;
    margin-left: 15px;
}

.reservation-form .final-details .form-box .agb-accept label {
    position: relative;
    top: 11px;
}

.reservation-form .final-details .radio-collapse {
    padding-left: 6px;
}

.reservation-form .final-details input#ausserhalb:checked ~ .radio-collapse {
    display: block;
}


.reservation-form .final-details .dates-wrapper label,
.reservation-form.individual .final-details .dates label {
    font-size: 14px;
    color: #7B7676;
    margin-bottom: 0;
}

.reservation-form .final-details .dates-wrapper input,
.reservation-form .final-details .dates input {
    padding-left: 50px;
}

.reservation-form .final-details .form-control:focus {
    border-color: #052045;
    border-width: 2px;
}

.reservation-form .final-details .back-btn {
    min-width: 210px;
    padding: 13px 50px;
}

.reservation-form.vehicle .form-check label.form-check-label {
    display: inline-flex;
}

.reservation-form.vehicle .checkboxes .form-check:last-child label {
    position: relative;
    top: 10px;
}

.reservation-form.vehicle .checkboxes .form-check label.form-check-label a,
.reservation-form .agb-accept .form-check label.form-check-label a {
    color: #DA0E15;
}

.reservation-form.vehicle .agb-accept .form-check label.form-check-label a {
    padding: 0 3px;

}

/************************* CUSTOM TOOLTIP *********************/
.tool {
    cursor: pointer;
}

.popover {
    border: 1px solid #052045;
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-right .arrow::after {
    border-right-color: #052045;
}

.popover-body {
    padding: 7px 20px;
    border-radius: 4px;
    border-color: #052045;
    background: #052045;
    color: #fff;
    border: 1px solid #052045;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    transition: .2s ease-in;
}

.popover-body:hover {
    background: #da0e15;
    border-color: #da0e15;
    border: 1px solid #da0e15
}

.popover-body a {
    font-family: Roboto-Medium;
    color: #fff;
}

.popover-body a.close.close-popover {
    position: absolute;
    top: 3px;
    right: 8px;
    z-index: 9;
    color: #052045;
    opacity: 1;
    text-shadow: unset;
    font-size: 22px;
}

.popover-body a.close.close-popover:hover {
    color: #da0e15;
}


/*== speech bubble ==*/


/************************* LIMOUSINE SERVICES *********************/
.content-with-img-title .content-wrapper {
    margin-top: 70px;
}

.content-with-img-title .content-wrapper h1 {
    font-size: 38px;
}

.search-form.limousine {
    z-index: 2;
}

.limousine-item .cat-location-wrapper {
    position: relative;
}

.limousine-item .cat-location-wrapper .long-arrow {
    position: absolute;
    top: 31px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid white;
    z-index: 9;
    width: 80px;
    background: #ffffff;
}

.limousine-item .cat-location-wrapper .long-arrow:before,
.limousine-item .cat-location-wrapper .long-arrow:after {
    content: "";
    position: absolute;
}

.limousine-item .cat-location-wrapper.one-direction .long-arrow:before,
.limousine-item .cat-location-wrapper.two-direction .long-arrow:before {
    left: 0;
    width: 10px;
    height: 10px;
}

.limousine-item .cat-location-wrapper.one-direction .long-arrow:before {
    background: #ffffff;
    top: -5px;
    left: -3px;
    border-radius: 50%;
}

.limousine-item .cat-location-wrapper.two-direction .long-arrow:before {
    top: -10px;
    left: -3px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.limousine-item .cat-location-wrapper .long-arrow:after {
    right: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffffff;
    top: -10px;
    right: -11px;
}

.limousine-item .cat-location-wrapper .cat-location-info {
    position: absolute;
    top: 20px;
    left: 47%;
    z-index: 9;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.limousine-item .cat-location-wrapper .cat-location-info .icon {
    margin-left: 7px;
}


.vehicles-list .limousine-price-info h6 {
    font-family: Roboto-Medium;
    font-size: 16px;
    color: #052045;
    margin-top: 30px;
}

.search-form.limousine .limousine-directions label {
    margin-right: 0;
}

.search-form.limousine .limousine-directions label {
    background-color: transparent;
    border: 2px solid #052045;
}

.search-form.limousine #one-direction button[type=submit] {
    min-width: 150px;
}

#two-direction {
    display: none;
}

.vehicles-search-form .distance-wrapper {
    position: relative;
    bottom: 1px;
    z-index: 2;
}

.vehicles-search-form .distance-wrapper .total-distance {
    display: flex;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px 40px;
    margin-left: 30px;
    position: relative;
    cursor: pointer;
}

.vehicles-search-form .distance-wrapper .total-distance .extra-large {
    width: 52px;
    height: 52px;
    margin-right: 25px;
}

.vehicles-search-form .distance-wrapper .total-distance h2 {
    font-size: 30px;
    text-transform: unset;
    font-family: Roboto-Medium;
    margin-bottom: 0;
    margin-top: 10px;
}

.vehicles-search-form .distance-wrapper .total-distance:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 24px;
    font-weight: 800;
    color: #052045;
    right: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .4s ease-in;
}

.vehicles-search-form .distance-wrapper .total-distance.open:after {
    transform: translateY(-50%) rotate(180deg);
}

.vehicles-search-form .distance-wrapper .total-distance:hover:after {
    color: #da0e15;
}

.vehicles-search-form .distance-wrapper .location-map {
    padding: 10px;
    margin: 0 30px;
    display: none;
    background-color: #fff;
    border-bottom-right-radius: 10px;
}

.vehicles-search-form .distance-wrapper .location-map iframe {
    margin-bottom: -6px;
}

.search-form.limousine .services .form-group {
    display: flex;
    float: right;
}

.search-form.limousine .services a.form-btn {
    display: inline-block;
    margin-right: 0;
}

.search-form.limousine .services label {
    margin-right: 0;
}

.services .radio-check {
    width: 85px;
}

.search-form.limousine .services .custom-label {
    position: relative;
    left: -15px;
}

.search-form.limousine .category-info {
    display: inline-block;
    color: #052045;
    font-size: 12px;
    font-family: Roboto-Bold;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.limousine-directions .radio-check {
    margin-top: 34px;
}

.services .radio-check:last-child .custom-label {
    left: 0;
}

#limousine-form .select2-container--default .select2-selection--single {
    border-radius: 10px;
}

.reservation-form.vehicle.individual .select2-container--default .select2-selection--single {
    border-radius: 4px;
}

#limousine-form .select2-container--default .select2-selection--single .select2-selection__rendered,
.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 65px;
    padding-left: 50px;
    padding-top: 20px;
    color: #052045;
    font-size: 20px;
    font-family: 'Roboto-Medium';
}

.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 7px;
}

.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
    font-size: 16px;
}

#limousine-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 20px;
    right: 15px;
    width: 20px;
    background-image: url(/uploads/images/icons/general/select-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-position-x: 95%;
    appearance: none;
    -webkit-appearance: none;
    transition: .3s;
}

.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

#limousine-form .select2-container--default .select2-selection--single .select2-selection__arrow b,
.reservation-form.vehicle.individual .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
}

#limousine-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow,
.reservation-form.vehicle.individual .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
}

.select2-results__option {
    font-size: 14px;
}

/************************* FAHRZEUGE OVERVIEW *********************/
.vehicles-details-list .pick-up-location:before {
    top: 45px;
    content: url(/uploads/images/icons/general/abholort-zielort.svg);
}

.vehicles-details-list .pick-up-location.two-directions:after {
    top: 45px;
    content: url(/uploads/images/icons/general/abholort-zielort-two-directions.svg);
    left: unset;
    right: 0px;
}

.vehicles-details-list .pick-up-location .location-item {
    margin-bottom: 30px;
}

.hide {
    display: none;
}

/************************* INDIVIDUAL RESERVATION *********************/
.reservation-form.vehicle.individual .final-details .form-box h3:first-child {
    margin-left: 0;
}

.reservation-form.vehicle.individual .final-details .form-box h3 {
    margin-left: 15px;
}

.reservation-form.vehicle.individual .final-details .form-box span.custom-label {
    font-size: 18px;
    font-family: Roboto-Black;
    color: #052045;
    margin-bottom: 10px;
    display: inline-block;
}


/************************* HISTORY *********************/
.content-with-boxes {
    margin-bottom: 120px;
}

.content-with-boxes .boxes-wrapper .boxes-bg {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 0;
}

.content-with-boxes .boxes-wrapper .boxes-bg.under {
    position: relative;
}

.content-with-boxes .boxes-wrapper .boxes-bg.over {
    position: absolute;
    bottom: -120px;
    right: -150px;
    box-shadow: 0px 0px 30px #0000004D;
}


/************************* TEAM *********************/
.content-with-boxes-overlay .box-item {
    margin-bottom: 30px;
}

.content-with-boxes-overlay .box-item figure {
    height: 250px;
}

.content-with-boxes-overlay .box-item.team-item figure {
    height: 350px;
}

.content-with-boxes-overlay .box-item.team-item figure figcaption .overlay {
    height: 36%;
}

.content-with-boxes-overlay .box-item.team-item figure:hover figcaption .overlay {
    height: 50%;
}

.content-with-boxes-overlay .box-item figure:before {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #052045CC 100%) 0% 0% no-repeat padding-box;
}

.content-with-boxes-overlay .box-item figure figcaption h2 {
    transform: translate3d(0, 40px, 0);
    font-size: 20px;
}

.content-with-boxes-overlay .box-item figure img {
    transform: scale(1.1);
}

.content-with-boxes-overlay .box-item figure:hover img {
    transform: scale(1.2);
}

.content-with-boxes-overlay .box-item figure figcaption p {
    text-transform: uppercase;
}

.content-with-boxes-overlay .box-item figure:hover figcaption h2 {
    transform: translate3d(0, 0, 0);
}

.content-with-boxes-overlay .box-item figure:hover:before {
    background: transparent linear-gradient(180deg, #05204580 0%, #052045E6 100%) 0% 0% no-repeat padding-box;
}

/************************* NEWS - Overview *********************/
.content-with-boxes-overlay .box-item.news-item figure figcaption p {
    text-transform: unset;
}

.box-item.news-item figure figcaption p {
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: unset;
    transform: translate3d(0, 135px, 0);
}

.content-with-boxes-overlay .box-item figure figcaption .overlay {
    height: 50%;
}

.content-with-boxes-overlay .box-item figure figcaption span.date,
.news-item figure figcaption span.date {
    display: inline-block;
    font-size: 14px;
    font-family: Roboto-Black;
}

.duplicable-content {
    display: none;
}

.content-with-boxes-overlay .box-item.news-item .overlay {
    height: 100%;
}

.content-with-boxes-overlay .box-item.news-item figure figcaption h2,
.content-with-boxes-overlay .box-item figure figcaption span.date,
.news-item figure figcaption span.date {
    transform: translate3d(0, 140px, 0);
    -webkit-line-clamp: 1;
}

.news-item figure figcaption span.date,
.news-item figure figcaption p {
    transition: transform 0.5s;
}

.content-with-boxes-overlay .box-item.news-item figure:hover figcaption h2,
.content-with-boxes-overlay .box-item.news-item figure:hover figcaption span,
.news-item figure:hover figcaption span.date {
    transform: translate3d(0, 0px, 0);
}

/************************* REGISTER FORM *********************/
.auth-modal .modal-body {
    padding: 0;
}

.auth-modal .modal-body .close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.auth-modal .modal-body .close,
.custom-modal .close {
    color: #052045;
    opacity: 1;
    font-size: 28px;
}

.auth-modal .auth-sidebar .bg {
    background: #da0e15;
    clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
    height: 100%;
}

.auth-modal .auth-sidebar a img {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    width: 200px;
}

.auth-modal .auth-login {
    padding: 40px 20px;

}

.auth-modal .auth-login .main-nav-tabs {
    margin-bottom: 40px;
    border-bottom: 2px solid #d5d9df;
}

.auth-modal .auth-login .main-nav-tabs li {
    display: inline-block;
    width: 50%;
}

.auth-modal .auth-login .main-nav-tabs > li > a {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.auth-modal .auth-login .main-nav-tabs > li > a:after {
    content: "";
    background-color: #da0e15;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: -2px;
    transition: all 250ms ease 0s;
    transform: scale(0);
}

.auth-modal .auth-login .main-nav-tabs > li > a.active:after,
.auth-modal .auth-login .main-nav-tabs > li:hover > a.active:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.auth-modal .forgot-password {
    text-align: right;
}

.auth-modal .forgot-password .nav-tabs {
    border-bottom: 0;
    /*display: unset;*/
}

.auth-modal .forgot-password .nav-tabs li a {
    font-size: 14px;
}

.auth-login input:not([type="checkbox"]) {
    font-size: 14px;
    font-family: Roboto-Regular;
    border-radius: 4px;
    height: 45px;
}

.auth-login .form-group .pwd-mask {
    position: relative;
}

.auth-login .form-group .pwd-mask .pwd-toggle {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ced4da;
}

.auth-login input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: unset;
    border: 2px solid #052045;
}

.auth-login .remember-row {
    font-family: Roboto-Regular;
    font-size: 16px;
}

.auth-login .remember-row label,
.auth-login .signupForm label,
.newsletter-form label {
    display: flex;
    margin: 0;
    position: relative;
}

.auth-login .remember-row label input,
.auth-login .signupForm label input,
.newsletter-form label input {
    margin-right: 8px;
    margin-top: 5px;
    opacity: 0;
    cursor: pointer;
}

.auth-login .remember-row .checkbox input[type=checkbox] + .label-text:before,
.auth-login .signupForm .checkbox input[type=checkbox] + .label-text:before,
.newsletter-form .checkbox input[type=checkbox] + .label-text:before {
    content: "";
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition: border .15s ease-in-out, color .15s ease-in-out;
}

.auth-login .remember-row .checkbox input[type=checkbox] + .label-text:before,
.auth-login .remember-row .checkbox input[type=checkbox] + .label-text:after,
.auth-login .signupForm .checkbox input[type=checkbox] + .label-text:before,
.auth-login .signupForm .checkbox input[type=checkbox] + .label-text:after,
.newsletter-form .checkbox input[type=checkbox] + .label-text:before,
.newsletter-form .checkbox input[type=checkbox] + .label-text:after {
    font-size: 11px;
    display: inline-block;
    width: 17px;
    height: 17px;
    padding: 3px;
    margin-left: 0;
    position: absolute;
    top: 2px;
    left: 0px;
}

.auth-login .remember-row .checkbox input[type=checkbox] + .label-text:after,
.auth-login .signupForm .checkbox input[type=checkbox] + .label-text:after,
.newsletter-form .checkbox input[type=checkbox] + .label-text:after {
    background-color: #da0e15;
    color: #fff;
    border-radius: 2px;
    border-color: #da0e15;
    line-height: 1;
}

.auth-login .remember-row .checkbox input[type=checkbox] + .label-text,
.auth-login .signupForm .checkbox input[type=checkbox] + .label-text,
.newsletter-form .checkbox input[type=checkbox] + .label-text {
    padding-left: 8px;
    font-size: 14px;
    cursor: pointer;
}

.auth-login .remember-row .checkbox input[type=checkbox]:checked + .label-text:after,
.auth-login .signupForm .checkbox input[type=checkbox]:checked + .label-text:after,
.newsletter-form .checkbox input[type=checkbox]:checked + .label-text:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
}

.auth-login .auth-heading p {
    margin-bottom: 20px;
}

.auth-login .signupForm .checkbox.privacy {
    font-size: 14px;
    font-family: Roboto-Regular;
}

.auth-login .signupForm .checkbox.privacy .label-text a {
    font-family: Roboto-Medium;
}

/************************* CONTACT PAGE *********************/
.contact-form .form-wrapper h3 {
    margin-bottom: 20px;
}

.contact-form .form-wrapper {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    color: #052045;
}

.content.contact-map .nav-tabs {
    margin-bottom: 40px;
}

.content.contact-map .nav-tabs li a {
    font-family: Roboto-Bold;
    color: #052045;
}

.content.contact-map .nav-tabs li a.active {
    color: #da0e15;
}

.content.contact-map iframe {
    margin-bottom: -8px;
    border: 2px solid #fff;
    border-radius: 4px;
}

label.error {
    font-size: 12px;
    font-family: Roboto-Medium;
    color: #da0e15;
    margin: 8px 0 0;
}

.contact-locations-info {
    padding-left: 15px;
}

.contact-locations-info ul li {
    position: relative;
    margin-bottom: 10px;
}

.contact-locations-info ul li a {
    display: inline-block;
    padding-left: 30px;
}

.contact-locations-info ul li a i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.contact-locations-info h6 {
    margin-top: 20px;
    font-family: Roboto-Bold;
    color: #052045;
}


/************************* NEWS DETAIL *********************/
.box-bg-wrapper {
    padding: 30px;
    background: #fff;
    margin-bottom: 30px;
}

.single-post .post-content .post-thumb .post-meta ul li {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
}

.single-post .post-content .post-thumb .img-thumb img,
.box-bg-wrapper {
    border-radius: 4px;
}

.single-post .post-content .post-thumb .img-thumb figure {
    height: 370px;
}

.single-post .post-content .post-thumb .img-thumb img {
    width: 100%;
    height: 100%;
}

.single-post .post-content .post-thumb .post-sharing h5 {
    color: #052045;
}

.pagination-wrapper {
    padding: 40px 0;
}

.pagination-wrapper .pagination-item:nth-of-type(2) {
    text-align: right;
}

.pagination-wrapper .paginate-link {
    background-color: #da0e15;
    border-radius: 4px;
    height: 45px;
    line-height: 45px;
    padding-left: 0;
    text-align: center;
    width: 45px;
    display: inline-block;
    transition: .3s ease-in;
}

.pagination-wrapper .paginate-link:hover {
    background-color: #052045;
}

.pagination-wrapper .paginate-link i {
    color: #fff;
}

.pagination-wrapper .pagination-details p {
    margin-top: 0;
}

form.search-news .form-control-icon {
    left: unset;
    right: 15px;
}

form.search-news input {
    font-size: 14px;
}

.sidebar .sidebar-categories ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.sidebar .sidebar-categories ul li a i {
    margin-right: 10px;
}

.sidebar .sidebar-item h3 {
    margin-bottom: 15px;
}

.sidebar .sidebar-latest-items .news-item {
    margin-bottom: 20px;
}

.sidebar .sidebar-latest-items figure {
    height: 55px;
    margin-top: 6px;
}

.sidebar .sidebar-latest-items figure img {
    width: 100%;
    height: 100%;
}

.sidebar .sidebar-latest-items a,
.sidebar .sidebar-latest-items p {
    font-size: 14px;
}

.sidebar .sidebar-latest-items a {
    font-family: Roboto-Bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sidebar .sidebar-latest-items p {
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar .sidebar-latest-items .news-short-desc {
    padding-left: 0;
}

/************************* FAQ *********************/
.content p a,
.custom-tab-content .tab-pane .card .card-body p a {
    color: #DA0E15;
}

.content p a {
    position: relative;
    overflow: hidden;
}

.content p a:after, .content p a:before {
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
    bottom: -8px;
}

.content p a:before {
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #da0e15;
    transform: scaleX(0);
}

.content p a:hover:before {
    transform: scale(1);
}

.custom-tabs {
    flex-direction: column;
    margin: 0 0 32px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.custom-tabs .nav-link,
.tabs-title {
    position: relative;
    display: block;
    margin: 0;
    padding: 13px 16px;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    color: #052045;
    transition: background-color 0.2s ease;
}

.custom-tabs .nav-link:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.custom-tabs .nav-link:hover {
    color: #DA0E15;
}

.tabs-title {
    text-transform: uppercase;
    font-family: Roboto-Black;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom: 0;
}

.tabs-title i {
    font-size: 35px;
    margin-right: 20px;
}

.custom-tabs .nav-link.active {
    background-color: #f6f6f6;
    color: #da0e15;
}

.custom-tabs .nav-link i {
    margin-right: 5px;
    font-size: 18px;
    position: relative;
}

.custom-tabs .nav-link.active .icon .icon-img {
    display: none;
}

.custom-tabs .nav-link .icon {
    margin-right: 20px;
}

.custom-tabs .nav-link.active .icon .icon-img-hover {
    display: inherit;
}

.custom-tab-content {
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.custom-tab-content button {
    color: #052045;
    font-family: Roboto-Black;
    width: 100%;
    padding: 20px 33px 20px 20px;
    text-align: left;
    text-decoration: none;
    position: relative;
}

.custom-tab-content button:before {
    content: "\f078";
    position: absolute;
    right: 20px;
    font-family: 'Font Awesome 5 Pro';
    color: #052045;
    font-size: 18px;
    transition: transform .3s;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}

.custom-tab-content button[aria-expanded="true"]:before {
    transform: translateY(-50%) rotate(180deg);
}

.custom-tab-content button:hover {
    text-decoration: none;
    color: #ffffff;
}

.custom-tab-content button:focus {
    text-decoration: none;
}

.custom-tab-content .card-header {
    padding: 0;
    transition: .3s;
}

.custom-tab-content .card-header:hover {
    background-color: #DA0E15;
}

.custom-tab-content .card-header:hover button,
.custom-tab-content .card-header:hover button:before {
    color: #ffffff;
}

.custom-tab-content .card-header .btn-link {
    transition: unset;
}

.custom-tab-content .card-header h5 {
    margin-bottom: 0;
}

.custom-tab-content .tab-pane .card-body p {
    margin-top: 0;
    margin-bottom: 20px;
}

.custom-tab-content .tab-pane .card-body ul li,
.custom-tab-content .tab-pane .card-body p {
    font-size: 14px;
}

.custom-tab-content .tab-pane .card-body figure {
    margin-bottom: 20px;
    width: 100%;
    border: 2px solid #d5d9df;
    border-radius: 4px;
}

.custom-tab-content .tab-pane .card-body figure a {
    display: inline-block;
    min-height: 400px;
}

.custom-tab-content .tab-pane .card-body figure a img {
    width: 100%;
    height: 100%;
}

.custom-tab-content .tab-pane .card-body .detail-content h4,
.custom-tab-content .tab-pane .card-body .detail-content h5 {
    font-family: Roboto-Black;
    color: #052045;
    text-transform: uppercase;
}

/************************* JOBS *********************/
#job-form input,
#job-form select,
#job-form textarea {
    font-size: 14px;
}

#job-form .form-control-file {
    height: 40px;
}

.jobs-list .job-item {
    margin-bottom: 30px;
}

.jobs-list .job-item .job-wrapper {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 36px rgba(0, 0, 0, 0.11);
    transition: .2s ease-in;
}

.jobs-list .job-item .job-wrapper:hover {
    box-shadow: none;
}

.jobs-list .job-item .job-wrapper .job-main-content {
    padding: 20px;
    background: #fff;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.jobs-list .job-item .job-wrapper figure {
    border-radius: 4px;
    overflow: hidden;
}

.jobs-list .job-item .job-wrapper figure:hover img {
    transform: scale(1.2);
}

.jobs-list .job-item .job-wrapper figure a {
    height: 140px;
    width: 100%;
    display: inline-block;
}

.jobs-list .job-item .job-wrapper figure img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform .5s;
}

.jobs-list .job-item .job-wrapper .job-main-content a.job-title {
    font-family: Roboto-Black;
    color: #052045;
    font-size: 18px;
}

.jobs-list .job-item .job-wrapper .job-main-content a.job-title:hover {
    color: #DA0E15;
}

.jobs-list .job-item .job-wrapper .job-main-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jobs-list .job-item .job-wrapper .job-main-content p,
.jobs-list .job-item .job-wrapper .job-main-content ul {
    margin-top: 10px;
}

.jobs-list .job-item .job-wrapper .job-main-content ul li .icon {
    margin-right: 0;
}

.jobs-list .job-item .job-wrapper .job-main-content ul li {
    font-size: 14px;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #d5d9df;
}

.jobs-list .job-item .job-wrapper .job-main-content ul li:last-child {
    margin-right: 0;
    border-right: 0;
}

.jobs-list .job-item .job-wrapper .main-btn {
    min-width: 100%;
    padding: 15px 20px;
}

.jobs-list .job-item .job-wrapper .job-sharing {
    border-top: 1px solid #e9e9e9;
    transition: all 0.5s;
    padding: 20px;

}

.jobs-list .job-item .job-wrapper .job-sharing span.share-title {
    float: left;
    margin-right: 10px;
    display: inline-block;
}

.sidebar-overview ul li {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-overview span.icon {
    position: absolute;
    left: 0;
}

.sidebar-overview .detail-info-wrapper {
    padding-left: 40px;
}

.sidebar-overview .detail-info-wrapper span.title {
    display: inherit;
    font-family: Roboto-Bold;
    color: #052045;
}

.sidebar-overview .detail-info-wrapper span.subtitle {
    font-size: 14px;
}

.single-post .post-content .post-thumb .post-desc p {
    margin: 20px 0;
}

.single-post .post-content .post-thumb .post-desc ul li {
    position: relative;
}

.single-post .post-content .post-thumb .post-desc ul li span {
    display: inline-block;
    padding-left: 15px;
}

.single-post .post-content .post-thumb .post-desc ul li i {
    color: #052045;
    margin-right: 8px;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.custom-modal .main-btn {
    min-width: 100%;
}

.custom-modal form button[type="submit"].main-btn:hover:before,
.custom-modal form button[type="submit"].main-btn:hover:after {
    content: "";
}

.custom-modal .modal-header,
.custom-modal .modal-body {
    padding: 20px;
}

.custom-modal .modal-header {
    padding-bottom: 0;
}

.custom-modal button.close {
    color: #052045;
}

.custom-modal form {
    font-family: Roboto-Regular;
    font-size: 16px;
}

.custom-modal form input:focus,
.custom-modal form select:focus,
.custom-modal form textarea:focus {
    outline: none;
    box-shadow: unset;
    border: 2px solid #052045;
}

.custom-modal .modal-header h4 {
    font-family: Roboto-Black;
    text-transform: uppercase;
    color: #052045;
    font-size: 22px;
}

/************************* IMPRESSUM PAGE *********************/

.content .content-info ul li span,
.content .content-info ul li h4,
.content .content-info p a {
    font-family: Roboto-Black;
    color: #052045;
}

.content .content-info p a:hover,
.content .content-info ul.custom-list li a:hover {
    color: #da0e15;

}

.content .content-info ul.custom-list {
    margin-top: 20px;
}

.content .content-info ul.custom-list li {
    border: 1px solid #d5d9df;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 4px;
    transition: .2s;
}

.content .content-info ul.custom-list li:hover {
    background: #da0e15;
    border-color: #da0e15;
}

.content .content-info ul.custom-list li:hover a {
    color: #fff;
}

.content .content-info ul.custom-list li a.list-wrap {
    padding-left: 30px;
    margin: 0;
}

.content .content-info ul.custom-list li a.list-wrap i {
    top: 15px;
    left: 15px;
    font-size: 22px;
}

.content .content-info ul li {
    position: relative;
}

.content .content-info ul li span.list-wrap,
.content .content-info ul li a.list-wrap {
    display: inline-block;
    padding-left: 15px;
    font-family: Roboto-Regular;
    margin: 8px 0;
}

.content .content-info ul li span.list-wrap i,
.content .content-info ul li a.list-wrap i {
    position: absolute;
    left: 0;
    top: 12px;

}

.content .content-info ul.custom-list li a {
    font-family: Roboto-Black;
    color: #052045;
}

.content .content-info ul li a.list-wrap {
    margin: 4px 0;
}

.content .content-info ul li a.list-wrap i {
    top: 6px;
}

/************************* AUTHENTICATION DROPDOWN *********************/
.authentication .auth-link {
    position: relative;
}

#auth-dropdown {
    position: absolute;
    bottom: -115px;
    right: 30px;
    min-width: 220px;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    transform: rotateX(90deg);
    transform-origin: top;
    opacity: 0;
    display: block;
    border: none;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    -webkit-box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

#auth-dropdown.show {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
    border: none;
}

#auth-dropdown:before {
    content: "";
    position: absolute;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d5d9df;
    top: -10px;
}

header.sticky #auth-dropdown {
    bottom: -133px;
}

#auth-dropdown ul li {
    padding-top: 8px;
}

#auth-dropdown ul li a {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
}

#auth-dropdown ul li a i {
    margin-right: 5px;
}

#auth-dropdown ul li:nth-child(2) {
    padding-bottom: 8px;
}

#auth-dropdown ul li:last-child {
    border-top: 1px solid #fff;
    padding-bottom: 8px;
}

/************************* MY ACCOUNT PAGE *********************/
#userModal .modal-header {
    border-bottom: 1px solid #d5d9df;
}

#userModal .form-wrapper {
    padding: 20px;
}

.account-user-data ul li i,
.account-user-data a i {
    margin-right: 5px;
}

.account-user-data ul li span {
    font-size: 14px;
    font-family: Roboto-Black;
}

.account-user-data h4 {
    margin-top: 15px;
    color: #052045;
    font-family: Roboto-Black;
}

.account-user-data a {
    font-size: 14px;
}

form.edit-user-account .form-wrapper {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    color: #052045;
    font-size: 14px;
    margin-bottom: 30px;
}

form.edit-user-account .form-wrapper h3 {
    margin-bottom: 15px;
}

form.edit-user-account .form-wrapper input,
form#edit-user-pwd .form-wrapper input {
    font-size: 14px;
    font-family: Roboto-Regular;
}

form.edit-user-account .form-wrapper input:focus,
form#edit-user-pwd .form-wrapper input:focus {
    outline: none;
    border: 2px solid #052045;
    box-shadow: unset;
}

form.edit-user-account .form-wrapper button {
    padding: 15px 20px;
}

form#edit-user-pwd .modal-footer .custom-row {
    width: 100%;
}

.account-info .sidebar-item p {
    font-size: 14px;
}

.account-info .sidebar-item .list-details {
    margin-top: 20px;
}

.account-info .sidebar-item .list-details li {
    position: relative;
    padding-left: 20px;
}

.account-info .sidebar-item .list-details li i {
    position: absolute;
    left: 0;
    top: 3px;
}

/************************* RESERVATION PAGE *********************/
.reservation-item .reservation-item-wrapper {
    background: #fff;
}

.reservation-item .reservation-item-wrapper .bg-wrapper {
    padding: 20px;
}

.reservation-item .reservation-item-wrapper .bg-wrapper a {
    font-family: Roboto-Black;
}

.reservation-item .reservation-item-wrapper .bg-wrapper span,
.reservation-item .reservation-item-wrapper .bg-wrapper a {
    font-size: 14px;
}

.reservation-item .reservation-item-wrapper h4 {
    font-family: Roboto-Black;
    text-transform: uppercase;
    font-size: 14px;
    color: #052045;
    margin-bottom: 0;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .responsive-title,
.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles {
    display: none;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles.show {
    display: block;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles h5 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #052045;
    font-size: 14px;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles figure {
    width: 150px;
    height: 80px;
    margin: 0;
    float: left;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles figure img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .reservation-vehicles .vehicle-info {
    float: left;
    margin-left: 10px;
}

.reservation-item .reservation-item-wrapper .bg:nth-child(even) .bg-wrapper {
    background: #d5d9df;
}

.limo-form {
    position: relative;
}

.limo-form .overlay {
    position: absolute;
    z-index: 99999;
    top: -40px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    height: calc(100% + 50px);
    width: 100%;

}

.limo-form .overlay .inner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-btn .view-more-hover {
    opacity: 0;
    transition: transform .5s;
    transform: translateX(-345%);
}

.vehicle-price .main-btn:hover span.title {
    display: none;
}

.main-btn:hover .view-more-hover {
    transform: translateX(-117%) !important;
    opacity: 1;
    text-transform: capitalize;
    font-size: 24px;
}

.oldtimer-list .shape-wrapper.left {
    font-size: 16px;
    width: 50%;
    clip-path: polygon(0 0, 100% 0%, 67% 100%, 0% 100%);
}

.oldtimer-list .shape-wrapper.right {
    width: 67%;
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 3% 100%);
}

/************************* MEDIA QUERIES *********************/
@media only screen and (max-width: 1440px) {
    .services-wrapper .services-content {
        margin-top: 0;
    }

    .left-right .services-wrapper .services-content {
        padding-right: 0;
    }

    .right-left .services-wrapper .services-content {
        padding-left: 166px;
    }

    .p-relative {
        padding-top: 235px;
    }

}

@media only screen and (min-width: 1921px) {
    .header-wrapper .top-header {
        background-repeat: repeat-x;
    }

}
@media only screen and (max-width: 1199px){
    header {
        margin-top: 20px;
    }
    .top-header {
        display: none;
    }
    .header-wrapper{
        background: linear-gradient(135deg, rgba(218, 14, 21, 1) 50%, rgba(242, 242, 243, 1) 50%);
    }
    header.sticky .navigation a.logo{
        margin-left: -50px;
    }
    header .navigation .main-navigation {
        display: -webkit-inline-box;
    }
    header .navigation a.logo {
        height: 45px;
        width: 332px;
    }
    header .social-media, header .authentication, header .language-dropdown {
        display: none;
    }
    .vehicles-search-form form span.category-wrap{
        width: 140px;
    }
    .vehicles-search-form form span.category-wrap svg{
        width: 100%;
        height: 100%;
    }
    .main-banner .image-wrapper .banner-img {
        min-width: 100%;
        height: 100%;
    }
    .main-banner .content-wrapper .content{
        margin-left: 0;
    }

}
@media only screen and (max-width: 1024px) {
    .g-recaptcha > div {
        width: 100% !important;
    }
    .g-recaptcha > div iframe{
        width: 100%;
    }
    header.sticky .navigation a.logo{
        margin-left: 0;
    }
    #page-wrapper {
        overflow-x: hidden;
    }

    #hamburger-menu .close-navigation {
        top: 7px;
    }

    .header-wrapper {
        background: linear-gradient(135deg, rgba(218, 14, 21, 1) 35%, rgba(242, 242, 243, 1) 35%);
    }

    header .navigation a.logo {
        width: 300px;
        margin-right: 0;
    }

    header .navigation .main-navigation {
        display: -webkit-inline-box;
    }

    header .social-media, header .authentication,
    header .language-dropdown {
        margin-right: 20px;
    }

    .auth-modal .modal-dialog {
        padding: 0 50px;
        margin-left: 50px;
    }

    .banner-wrapper {
        padding-top: 20px;
        background: linear-gradient(135deg, rgba(218, 14, 21, 1) 35%, rgba(242, 242, 243, 1) 35%);
    }

    .step-header button[aria-expanded="true"] .step-no, #addressAccordion .card-header[aria-expanded="true"] .location-icon {
        left: 84%;
    }

    .vehicles-search-form form span.category-wrap {
        width: 140px;
    }

    .vehicles-details-list ul li span.title, .vehicles-details-list .distance-location .title {
        font-size: 14px;
    }

    .vehicles-details-list.total-price .btn-red .btn-title {
        left: 45px;
        transform: translateY(-50%);
    }

    .final-details {
        font-size: 14px;
    }

    .vehicles-details-list.total-price .btn-red {
        padding: 15px 20px;
    }

    .services[data-id="limo-services"] {
        text-align: left !important;
    }

    .search-form.limousine .services .form-group {
        float: left;
    }

    .vehicles-search-form .distance-wrapper .total-distance h2 {
        font-size: 24px;
    }

    .vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price .btn-dark-blue {
        font-size: 20px;
    }

    .custom-modal .modal-content {
        margin: 0 40px;
    }

    .acc-collapse {
        position: unset;
        z-index: unset;
    }

    .acc-collapse .step-body {
        background: transparent;
    }
    footer .top-footer .logo a{
        width: 200px;
    }

}
@media only screen and (max-width: 990px){
    .search-form .vehicle-categories .form-group{
        margin-right: 22px;
    }
    .vehicles-search-form form button[type="submit"]{
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .search-form .vehicle-categories {
        display: inline-table;
    }
    .search-form .vehicle-categories .form-group{
        float: left;
    }
    .search-form .vehicle-categories .form-group:nth-of-type(2n) {
        margin-right: 0;
    }
    .main-banner {
        background: transparent;
    }
    .main-banner .content-wrapper .content {
        margin-left: 0;
    }

    .banner-wrapper .image-wrapper {
        left: 0;
    }

    .vehicles-search-form form span.category-wrap {
        width: 212px;
        height: 50px;
    }

    .vehicles-search-form form span.category-wrap img {
        width: 80px;
        height: 35px;
        object-fit: contain;
    }

    .vehicles-search-form form input, .vehicles-search-form form select {
        font-size: 14px;
        height: 50px;
    }

    .vehicles-search-form form .input-group-text {
        top: 12px;
    }

    .vehicles-search-form form button[type="submit"], .vehicles-search-form form a.reset-btn {
        min-height: 50px;
    }

    .vehicles-search-form form button[type="submit"] {
        padding: 0;
    }

    .vehicles-search-form form button[type="submit"] i {
        font-size: 28px;
    }

    .step-header button[aria-expanded="true"] .step-no, #addressAccordion .card-header[aria-expanded="true"] .location-icon {
        left: 93%;
    }

    .content h2.main-title {
        text-align: left !important;
    }

    .left-right .services-wrapper .services-content {
        padding: 0 55px;
        margin-bottom: 30px;
    }

    .right-left .services-wrapper .services-content {
        padding: 0 38px;
    }

    .p-relative {
        padding-top: 145px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(1),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(1) {
        margin-right: 70px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(2), .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(3) {
        margin-right: 85px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(4),
    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(5),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(2),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(3) {
        margin-right: 80px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(6) {
        margin-right: 67px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(4),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(5) {
        margin-right: 75px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(6) {
        margin-right: 66px;
    }

    .modal-details h2 {
        font-size: 20px;
    }

    .social-sharing ul li {
        margin-bottom: 8px;
    }

    .content-with-img-title .content-wrapper {
        margin-top: 0;
    }

    .vehicles-search-form .distance-wrapper .total-distance .extra-large {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .vehicles-search-form .distance-wrapper .total-distance h2,
    .breadcrumbs-wrapper .breadcrumb-item a, .breadcrumbs-wrapper .breadcrumb-item {
        font-size: 16px;
    }

    .vehicles-search-form .distance-wrapper .total-distance:after {
        right: 20px;
        font-size: 18px;
    }

    .content-with-img-title.custom-page .content-wrapper h1 {
        font-size: 34px;
    }

    .content-with-boxes .boxes-wrapper .boxes-bg.over {
        width: 340px;
        bottom: -65px;
    }

    .content-with-boxes {
        margin-bottom: 0;
    }

    .pagination-wrapper .pagination-item:nth-of-type(1) {
        margin-bottom: 20px;
    }

    .pagination-wrapper .pagination-item:nth-of-type(2) {
        text-align: left;
    }

    .auth-modal .modal-dialog {
        padding: 0 20px;
        margin-left: 0;
    }

    .auth-modal .auth-sidebar a img {
        width: 150px;
    }

    .custom-tab-content button {
        font-size: 14px;
        white-space: inherit;
        padding-right: 35px;
    }

    .custom-tabs .nav-link {
        font-size: 14px;
    }

    .custom-tabs .nav-link .icon {
        margin-right: 10px;
        width: 25px;
        height: 25px;
    }

    .tabs-title i {
        font-size: 25px;
        margin-right: 10px;
    }

    .contact-map .contact-locations-info {
        margin-bottom: 20px;
        padding-left: 0;
    }

    footer .bottom-footer .bottom-list {
        text-align: left;
        margin-top: 15px;
    }

    footer .bottom-footer .bottom-list ul li:first-child {
        padding-left: 0;
    }

    .reservation-item .reservation-item-wrapper .titles-wrapper {
        display: none;
    }

    .reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .responsive-title {
        display: block;
    }

    .reservation-item .reservation-item-wrapper .reservation-info .info-wrapper .wrap {
        margin-bottom: 10px;
    }

    .content-with-boxes-overlay .box-item.team-item figure {
        height: 420px;
    }

}
@media only screen and (max-width: 540px){
    .vehicles-search-form form span.category-wrap{
        width: 158px;
    }
}
@media only screen and (max-width: 428px) {
    .oldtimer-list .shape-wrapper.left {
        font-size: 16px;
    }

    .vehicles-search-form form span.category-wrap object {
        height: 45px;
    }

    .search-form .vehicle-categories {
        display: inline-table;
    }

    .search-form .vehicle-categories .form-group {
        float: left;
    }

    .search-form .vehicle-categories .form-group:nth-of-type(2n) {
        margin-right: 0;
    }

    .vehicles-search-form form span.category-wrap {
        width: 153px;
    }

    .main-title {
        font-size: 20px;
    }

    .vehicles-search-form form span.category-wrap svg {
        height: 100%;
        width: 100%;
    }

    .custom-page .content-wrapper {
        margin-left: 0;
    }

    .custom-page .content-wrapper {
        padding: 30px;
        color: #ffffff;
        font-family: Roboto-Regular;
        background: transparent linear-gradient(104deg, #848E9B66 0%, #A3ABB54D 100%) 0% 0% no-repeat padding-box;
        box-shadow: 0px 0px 36px #00000073;
        border: 1px solid #FFFFFF99;
        border-radius: 10px;
        opacity: 1;
        backdrop-filter: blur(13px);
    }

    .content.content-with-boxes-overlay {
        padding-top: 0px;
    }

    .content-with-img-title.custom-page {
        padding-bottom: 20px;
    }

    .content-with-boxes-overlay .box-item.team-item figure figcaption .overlay {
        height: 25%;
    }

    .content-with-boxes-overlay .box-item.team-item figure:hover figcaption .overlay {
        height: 35%;
    }

    .header-wrapper {
        background: linear-gradient(135deg, rgba(218, 14, 21, 1) 50%, rgba(242, 242, 243, 1) 50%);
        min-height: 200px;
    }

    header .navigation a.logo {
        width: 200px;
    }

    .reservation-form button.confirm-btn, .reservation-form button.submit-btn,
    .reservation-form .final-details .back-btn {
        min-width: 100%;
    }

    .reservation-form button.submit-btn {
        float: unset;
    }

    .reservation-form .final-details .form-box .agb-accept label {
        top: 6px;
    }

    .reservation-form input[type="checkbox"]:after, .reservation-form input.force-checkbox:after {
        width: 30px;
        height: 30px;
    }

    .reservation-form .form-check label.form-check-label {
        margin-left: 40px;
    }

    .reservation-form input[type="checkbox"]:before, .reservation-form input.force-checkbox:before {
        top: 15px;
        left: 4px;
    }
    .cookiealert p {
        margin-top: 0;
        display: block;
        margin-bottom: 20px;
    }
    #hamburger-menu.open {
        overflow-y: scroll;
    }

    header .menu-icon {
        margin-top: 3px;
    }

    #hamburger-menu {
        background: #052045;
        padding: 20px;
    }

    #hamburger-menu .custom-row {
        width: unset;
    }

    #hamburger-menu .logo {
        width: 175px;
        height: 40px;
    }

    #hamburger-menu .close-navigation {
        top: 9px;
        right: -20px;
    }

    #hamburger-menu .close-navigation .icon {
        width: 20px;
        height: 20px;
    }

    #hamburger-menu .menu-links .main-menu > li {
        font-size: 20px;
        padding: 0 10px 0px 0;
        margin-bottom: 8px;
    }

    #hamburger-menu .menu-links .main-menu > li .link,
    #hamburger-menu .menu-links .main-menu .sub-menu.sub-open li a {
        font-size: 22px;
    }

    #hamburger-menu .menu-links .main-menu .sub-menu li {
        padding-top: 8px;
        padding-bottom: 0;
    }

    #addressAccordion .card-header[aria-expanded="true"] .location-icon {
        left: 86%;
    }
    .single-post .post-content .post-thumb .img-thumb figure,
    .sidebar .sidebar-latest-items figure {
        height: 200px;
    }
    .rates {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 420px) {
    .vehicles-search-form form span.category-wrap {
        width: 145px;
    }
}

@media only screen and (max-width: 414px) {
    .reservation-form .final-details .form-box .agb-accept label {
        font-size: 14px;
        top: 0;
    }

    .reservation-form input[type="checkbox"]:after, .reservation-form input.force-checkbox:after {
        width: 20px;
        height: 20px;
    }

    .reservation-form input[type="checkbox"]:before, .reservation-form input.force-checkbox:before {
        top: 9px;
        left: 3px;
    }

    .reservation-form .form-check label.form-check-label {
        margin-left: 30px;
    }



    .main-title {
        font-size: 18px;
    }

    h1.main-title {
        font-size: 24px;
    }

    .content-with-img-title.custom-page .content-wrapper h1 {
        font-size: 28px;
    }



    h1,
    .content-with-img-title .content-wrapper h1 {
        font-size: 28px;
    }

    h1 {
        line-height: 34px;
    }

    header .navigation .main-navigation {
        margin-top: 0;
    }

    .vehicles-search-form form span.category-wrap {
        width: 146px;
    }

    .vehicles-search-form form span.category-wrap img {
        width: 70px;
        height: 30px;
    }

    .vehicles-search-form form input, .vehicles-search-form form select,
    .vehicles-search-form form span.category-wrap {
        height: 45px;
    }

    .banner-wrapper .image-wrapper {
        top: 90px;
    }

    .main-banner .content-wrapper .content {
        margin-top: 100px;
    }

    .vehicles-search-form form button[type="submit"], .vehicles-search-form form a.reset-btn {
        margin-top: 20px;
    }

    .step-header button[aria-expanded="true"] .step-no {
        left: 88%;
    }

    .content h2.main-title {
        font-size: 28px;
    }

    .left-right .services-wrapper .services-content {
        padding: 0 30px;
        margin-bottom: 20px;
    }

    .right-left .services-wrapper .services-content {
        padding: 0 15px;
    }

    footer .powered {
        text-align: left;
        margin-top: 10px;
    }

    .p-relative {
        padding-top: 120px;
    }

    .options-wrapper {
        margin-top: 30px;
    }

    .vehicles-search-form form .categories-options .slider-option {
        padding-right: 15px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li {
        margin-right: 30px;
    }

    .vehicles-search-form form .checkbox-option .form-group ul li {
        margin-right: 0;
    }

    form select {
        background-size: 15px;
    }

    .slider-items li {
        font-size: 14px;
    }

    .fahrzeuge .form-options {
        left: 50%;
        transform: translateX(-50%);
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(1),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(1) {
        margin-right: 28px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(2),
    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(3),
    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(4),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(2) {
        margin-right: 40px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(5) {
        margin-right: 35px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(6) {
        margin-right: 20px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(3),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(4),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(5) {
        margin-right: 30px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(6) {
        margin-right: 20px;
    }

    #gallerySlider .carousel-inner .carousel-item {
        height: 220px;
    }

    #gallerySlider .gallery-indicators .item:nth-child(2n) {
        padding-right: 0;
    }

    #gallerySlider .gallery-indicators .item .img {
        height: 100px;
        margin-bottom: 15px;
    }

    #gallerySlider .gallery-indicators .item .img img {
        height: 100%;
    }

    .carousel-controls .carousel-control-next, .carousel-controls .carousel-control-prev {
        bottom: 15px;
    }

    .modal-main-content {
        margin-top: 20px;
    }

    .modal-main-content .vehicle-detail-desc {
        padding-bottom: 20px;
    }

    .reservation-form h3 {
        font-size: 16px;
    }

    .reservation-form .tarife-price .price,
    .reservation-form .form-check.radio-check label.form-check-label {
        position: relative;
        top: 20px;
    }

    .reservation-form #equipmentCategory .equipment h5 {
        margin-top: 15px;
    }

    .reservation-form .insurance label.form-check-label {
        position: absolute;
        top: 0;
    }

    .reservation-form .insurance .form-check {
        margin-bottom: 50px;
    }

    .reservation-form .insurance .tarife-price span.price {
        margin-top: 0;
        top: 0;
    }

    .reservation-form .final-details .form-group .form-check.radio-check .form-check-label {
        position: unset;
    }

    .reservation-form .final-details .code-btn {
        top: 20px;
    }

    .reservation-form .final-details .form-box .agb-accept {
        text-align: left;
    }

    .reservation-form .final-details .back-btn {
        margin-left: 0;
    }

    .reservation-form #equipmentCategory .equipment .card-header button:before {
        right: 0;
    }

    .vehicles-search-form form.limousine.search-form span.category-wrap {
        width: 150px;
        height: 50px;
    }

    .search-form.limousine .services .custom-label {
        left: 0;
    }

    .vehicles-search-form .distance-wrapper .location-map {
        margin: 0 20px;
    }


    .content.content-with-boxes {
        padding: 20px 0;
    }

    .content.w-image {
        padding: 0;
    }

    .content-with-boxes .boxes-wrapper .boxes-bg.over {
        width: 190px;
        bottom: -30px;
        right: -22px;
        padding: 15px;
    }

    .boxes-description.col-xl-6.col-lg-6.col-md-12.col-12.mt-md-5.mt-xl-0.mt-lg-0 {
        margin-top: 60px;
    }

    .boxes-description {
        margin-bottom: 20px;
    }

    .breadcrumbs-wrapper {
        margin-top: 20px;
    }


    .shape-wrapper.left.limousine-location span.location {
        padding-right: 40px;
    }

    .limousine-directions .radio-check {
        margin-top: 15px;
    }

    .sidebar .sidebar-latest-items .news-short-desc {
        padding-left: 15px;
    }



    .auth-modal .auth-sidebar .bg {
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
        height: 55px;
    }

    .auth-modal .modal-body .close {
        top: 10px;
    }

    .custom-tab-content button {
        padding-right: 55px;
    }

    .custom-tab-content button:before {
        top: 20px;
        transform: rotate(0deg);
    }

    .custom-tab-content button[aria-expanded="true"]:before {
        transform: rotate(180deg);
    }

    .jobs-list .job-item .job-wrapper figure a {
        height: 180px;
    }

    .jobs-list .job-item .job-wrapper .job-sharing span.share-title {
        width: 100%;
        margin-bottom: 10px;
    }

    .custom-modal .modal-content {
        margin: 0;
    }

    .custom-modal form .form-control {
        font-size: 14px;
    }

    .content .content-info ul.custom-list li a.list-wrap i {
        top: 20px;
    }

    footer .bottom-footer p:first-child {
        border-right: 0;
    }

    footer .bottom-footer p:last-child {
        float: left;
    }


    .navigation-control.control-prev {
        right: 40px;
    }

    .reservation-form.vehicle .checkboxes .form-check:last-child label {
        top: 20px;
        display: inline-block;
    }

    .vehicles-list .vehicle-item .vehicle-wrapper {
        min-height: unset;
    }

    .vehicles-list .vehicle-item .vehicle-wrapper .vehicle-info {
        padding-bottom: 15px;
    }

    .vehicles-list .vehicle-item .vehicle-wrapper .vehicle-price {
        position: unset;
        width: unset;
        bottom: unset;
    }

    .vehicles-details-wrapper #gallerySlider .carousel-inner .carousel-item {
        height: 230px;
    }

    #gallerySlider .carousel-inner .carousel-item img {
        object-fit: contain;
    }

    .vehicle-detail-info .vehicles-details-list .distance-location h4 {
        margin-bottom: 20px;
    }

    .search-form .vehicle-categories .form-group {
        margin-right: 10px;
    }

    .vehicles-search-form form span.category-wrap svg {
        height: 45px;
        width: 100%;
    }
}

@media only screen and (max-width: 390px) {
    .vehicles-search-form form span.category-wrap {
        width: 126px;
    }
}

@media only screen and (max-width: 375px) {
    .vehicles-search-form form span.category-wrap {
        width: 135px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li {
        margin-right: 20px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(1),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(1) {
        margin-right: 22px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(2) {
        margin-right: 35px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(3),
    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(4) {
        margin-right: 32px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(5),
    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(2) {
        margin-right: 30px;
    }

    .vehicles-search-form form .categories-options .slider-option #slider-wrapper ul li:nth-child(6) {
        margin-right: 12px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(3) {
        margin-right: 24px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(4) {
        margin-right: 24px;
    }

    .vehicles-search-form form .categories-options .slider-option.lw-category #slider-wrapper ul li:nth-child(6) {
        margin-right: 10px;
    }

    .reservation-form h3,
    .reservation-form .tarife-price .price, .reservation-form .form-check.radio-check label.form-check-label,
    .reservation-form #equipmentCategory .equipment .card-header button,
    .reservation-form #equipmentCategory h3 .price-half-day,
    .vehicles-search-form .distance-wrapper .total-distance h2, .breadcrumbs-wrapper .breadcrumb-item a, .breadcrumbs-wrapper .breadcrumb-item {
        font-size: 14px;
    }

    .reservation-form .tarife-price .price, .reservation-form .form-check.radio-check label.form-check-label {
        top: 15px;
    }

    .reservation-form .form-box, .reservation-form #equipmentCategory, .reservation-form #equipmentCategory .card-header {
        padding: 20px;
    }

    #addressAccordion .card-header[aria-expanded="true"] .location-icon {
        left: 84%;
    }

    .content-with-img-title.custom-page .content-wrapper h1 {
        font-size: 28px;
    }

    .content-with-boxes .boxes-wrapper .boxes-bg.over {
        right: -15px;
    }

    .auth-modal .forgot-password .nav-tabs li a,
    .auth-login .remember-row .checkbox input[type=checkbox] + .label-text {
        font-size: 12px;
    }

    .auth-login .remember-row .checkbox input[type=checkbox] + .label-text {
        margin-top: 3px;
    }


}
