:root {
    --01-base--darker: #252626;
    --01-base--lighter: #f1eae3;
    --01-base--light: #6c7272;
    --font--heading-s: 40px;
    --font--heading-xs: 32px;
    --02-primary--base: #8a4a16;
    --padding-button-y: 1rem;
    --padding-button-x: 1.5rem;
    --elements--border-width: .5px;
    --elements--border-radius-m: 5px;
    --01-base--base: #272622;
    --02-primary--darker: #2f1813;
    --font--par-s: 16px;
    --01-base--dark: #1c1f21;
    --size--10-px: .625rem;
    --00-standard--white: #fafafa;
    --00-standard--black: #070707;
    --font--par-m: 18px;
    --font--par-xxs: 12px;
    --col-gap: 20px;
    --col-row: 20px;
    --02-primary--dark: #503123;
    --padding-s: .625rem;
    --padding-l: 2.5rem;
    --padding-button-icon: 3rem;
    --elements--border-radius-l: 10px;
    --padding-m: 1.5rem;
    --02-primary--light: #d2004a;
    --elements--border-radius-s: 3px;
    --size--40-px: 2.5rem;
    --font--heading-l: 72px;
    --black: black;
    --02-primary--70: rgb(168 40 26);
    --white: white;
    --elements--border-radius-xl: 30px;
    --font--par-xl: 24px;
    --09-system--error: #a8281a;
    --02-primary--lighter: #dcf8fa;
    --structure--container-w-min: 80vw;
    --structure--container-w-min-ipad: 95vw;
    --structure--container-w-max: 1080px;
    --03-secondary--base: #ff9500;
    --09-system--succes: #26a827;
    --09-system--warning: #d6790f;
    --09-system--neutral: #1a56c4;
    --size--20-px: 1.5rem;
    --size--ch-max-m: 25ch;
    --size--ch-max-s: 10ch;
    --size--ch-max-l: 50ch;
    --elements--border-radius-xs: 1px;
    --font--heading: Gayathri, sans-serif;
    --font--allcaps: "Montserrat medium";
    --font--par: Quicksand, sans-serif;
    --font--misc: Gallerymodern;
    --font--heading-xl: 90px;
    --size--0-px: 0px;
    --size--100-vh: 100vh;
    --size--80-vh: 80vh;
    --size--50-vh: 50vh;
    --size--10-vh: 0vh;
    --size--20-vh: 20vh;
    --font--heading-m: 56px;
    --font--par-l: 21px;
    --font--par-xs: 14px;
    --size--90-vh: 90vh;
    --90-vh: var(--size--90-vh);
    --size--60-vh: 60vh;
    --03-secondary--darker: white;
    --03-secondary--dark: white;
    --03-secondary--light: #ffe0b4;
    --03-secondary--lighter: #fff4e6;
    --elements--border-radius-100: 0px;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url('../images/custom-checkbox-checkmark.589d534424.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

body {
    background-color: var(--01-base--darker);
    /*background-color: #8a4a16;*/
    color: var(--01-base--lighter);
    font-family: Quicksand, sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
    transition: all .325s cubic-bezier(.216, .416, .25, 1);
}

h1 {
    background-image: linear-gradient(308deg, var(--01-base--light), white);
    color: #235050;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: var(--font--heading-s);
    -webkit-text-fill-color: transparent;
    background-image: radial-gradient(circle at 0 0, #fff, rgba(255, 255, 255, .71));
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 100;
    line-height: 1.5;
}

h3 {
    color: var(--01-base--lighter);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}

p {
    color: #a1a7a7;
    margin-bottom: 0;
    font-size: 20px;
}

a {
    color: var(--02-primary--base);
    text-decoration: none;
    transition: all .275s;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
}

.ml-2-5 {
    margin-left: .625rem;
}

.font-center {
    text-align: center;
}

.section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    min-height: 30px;
    padding-top: 10vh;
    padding-bottom: 10vh;
    display: flex;
    position: relative;
}

.mt-10 {
    margin-top: 2.5rem;
}

.h-20vh {
    height: 20vh;
}

.h-50vh {
    height: 50vh;
}

.flex-verti_cc {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.flex-horiz_cc {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
}

.flex-horiz_cc.is_cta-wrapper {
    align-items: flex-end;
    min-width: 100%;
}

.flex-horiz_cc.gap-10 {
    padding-bottom: 20px;
    padding-left: 20px;
}

.btn {
    padding: var(--padding-button-y) var(--padding-button-x);
    border: var(--elements--border-width) solid var(--01-base--light);
    border-radius: var(--elements--border-radius-m);
    background-color: var(--01-base--base);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: var(--02-primary--darker);
    font-size: var(--font--par-s);
    text-align: center;
    letter-spacing: 2px;
    text-transform: none;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
    white-space: nowrap;
    font-weight: 400;
    transition: all .3s;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}

.btn:hover {
    background-color: var(--01-base--dark);
    text-shadow: 0 0 5px #fff;
    border-color: #857e73;
    transform: scale(1.02);
}

.btn.menu {
    box-shadow: none;
    color: #e9e9e9;
    text-transform: none;
    background-color: rgba(255, 230, 0, 0);
    border-style: none;
    padding-left: 5px;
    padding-right: 5px;
}

.btn.menu:hover {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--02-primary--base);
    transform: none;
}

.btn.menu.partnerpage {
    letter-spacing: 1px;
    text-transform: none;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 14px;
}

.btn.text {
    padding-right: var(--size--10-px);
    padding-left: var(--size--10-px);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--01-base--dark);
    background-color: rgba(249, 222, 201, 0);
    border-style: none;
}

.btn.white {
    background-color: var(--00-standard--white);
    color: var(--00-standard--black);
}

.btn.white.text {
    color: rgba(250, 250, 250, .8);
    font-family: Quicksand, sans-serif;
    font-size: var(--font--par-m);
    background-color: rgba(250, 250, 250, 0);
}

.btn.white.text:hover {
    color: #fafafa;
}

.btn.white.text.menu {
    color: rgba(250, 250, 250, .3);
}

.btn.white.text.menu:hover {
    color: #fafafa;
}

.h-10vh {
    height: 10vh;
}

.flex-horiz_c_right {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.text-tagline {
    font-size: var(--font--par-xxs);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.text-lighter {
    color: var(--01-base--lighter);
}

.image-container {
    border: 5px solid #fff;
    border-radius: 1000px;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 612.5px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 200px rgba(84, 75, 66, .12);
}

.image-container-image.stretch100x100 {
    object-fit: cover;
    min-width: 120%;
    min-height: 120%;
}

.flex-horiz_c_left {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.stretch100x100 {
    object-fit: cover;
    object-position: 50% 50%;
    width: 600px;
    min-width: 100%;
    height: 600px;
}

.stretch100x100.markering {
    object-fit: contain;
    width: 800px;
    position: relative;
    right: -25vw;
}

.stretch100x100.homepage {
    object-position: 50% 50%;
    width: 100%;
    height: auto;
}

.container {
    grid-column-gap: var(--col-gap);
    grid-row-gap: var(--col-row);
    grid-template: "."
                 "Area"
                 / 1fr;
    grid-auto-columns: 1fr;
    width: 80vw;
    min-width: 80vw;
    max-width: 1080px;
    min-height: 5px;
    display: flex;
}

.pill {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--02-primary--dark);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    color: #f0e1e1;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid rgba(221, 168, 168, .09);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: -8px;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 600;
    transition: all .2s;
    display: flex;
}

.pill.fleet {
    background-color: rgba(35, 80, 80, .37);
    padding-top: 5px;
    padding-bottom: 5px;
}

.pill.fleet.eco {
    background-color: rgba(57, 100, 61, .5);
}

.pill.fleet.massage-cahir {
    background-color: rgba(107, 136, 136, .37);
}

.pill.is-steps {
    background-color: rgba(35, 80, 80, .28);
    margin-bottom: 0;
}

.pill.margin-top {
    margin-top: 28px;
}

.absolute-underlay {
    z-index: -1;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
}

.absolute-underlay.booking-page-bg {
    background-image: url('../images/marrallisa-kreijkes-silverdrive-private-chauffeur-86.webp');
    background-position: 0 0;
    background-size: cover;
    background-attachment: fixed;
}

.absolute-underlay.city-underlay {
    background-image: radial-gradient(circle, rgba(35, 80, 80, .33), rgba(0, 0, 0, 0) 55%);
}

.wrapper.flex-horiz-cc {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    align-items: center;
    display: flex;
}

.wrapper.flex-horiz-cc.fleet-extras {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
}

.wrapper.flex-verti-ss {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.wrapper.flex-horiz_cc.gap-10.nopad {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
    padding-left: 0;
}

.wrapper.max-wid {
    max-width: 400px;
}

.wrapper.review-wrapper {
    min-width: 100%;
}

.col {
    grid-column-gap: var(--col-gap);
    grid-row-gap: var(--col-gap);
    perspective: 1000px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 10px;
    display: flex;
}

.col.card {
    background-color: rgba(34, 37, 39, .16);
    padding-top: 40px;
    padding-bottom: 40px;
}

.col.card.flex-verti_cc {
    background-color: rgba(34, 37, 39, .02);
}

.col.flex-verti-cc {
    grid-column-gap: var(--col-gap);
    grid-row-gap: var(--col-row);
    justify-content: center;
    align-items: center;
}

.col.flex-verti-cc.mb-10 {
    grid-column-gap: var(--col-gap);
}

.col.flex-verti_cc {
    align-items: center;
}

.col.flex-verti_cc.p-10.mob-no-pad.verti-ss {
    justify-content: center;
    align-items: flex-start;
}

.col.flex-verti_cc.card {
    background-image: radial-gradient(circle at 25% 0, rgba(255, 255, 255, .03), rgba(0, 0, 0, 0) 61%), linear-gradient(76deg, rgba(0, 0, 0, 0) 31%, rgba(255, 255, 255, .02) 31%), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .03));
}

.col.flex-horiz_c_right, .col.flex-horiz_c_left {
    flex-direction: row;
    align-items: center;
}

.col.flex-horiz_c_left.services {
    background-color: rgba(255, 255, 255, .01);
    background-image: linear-gradient(60deg, rgba(0, 0, 0, 0) 51%, rgba(255, 255, 255, .02) 51%), radial-gradient(circle at 20% 0, rgba(255, 255, 255, .18), rgba(0, 0, 0, 0) 76%);
    transition: all .2s;
}

.col.flex-horiz_c_left.services:hover {
    background-color: rgba(255, 255, 255, .04);
}

.col.flex-horiz_c_left.services.reviews-edit {
    padding: var(--padding-l);
}

.col.sticky {
    z-index: -1;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .38) 46%, rgba(41, 41, 41, 0));
    border-left: 1px solid rgba(255, 255, 255, .05);
    height: 300vh;
    margin-left: -59px;
    padding-left: 60px;
    padding-right: 20px;
    position: relative;
}

.col.number-counter {
    align-items: flex-end;
}

.col.p-10.mob-no-pad.cc {
    justify-content: center;
    align-items: center;
}

.col.flex-horiz-dist-full {
    grid-column-gap: var(--padding-button-icon);
    grid-row-gap: var(--padding-button-icon);
    flex-flow: row;
}

.col.fleet-bottom-wrapper {
    justify-content: center;
    align-items: flex-end;
}

.col.no-gap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.col.aligned-mid {
    justify-content: center;
    align-items: flex-start;
}

.col.menu-align {
    justify-content: flex-start;
    align-items: flex-end;
}

.col.menu-left {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.paragraph {
    font-weight: 300;
}

.paragraph.font-s {
    color: var(--01-base--light);
    font-size: var(--font--par-s);
}

.paragraph.text-light {
    color: var(--01-base--lighter);
}

.card {
    padding: var(--padding-l);
    border: 1px solid var(--01-base--base);
    border-radius: var(--elements--border-radius-l);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(20, 43, 58, .2);
    background-image: radial-gradient(circle at 25% 0, rgba(255, 255, 255, .09), rgba(0, 0, 0, 0) 61%), linear-gradient(76deg, rgba(0, 0, 0, 0) 31%, rgba(255, 255, 255, .02) 31%), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .1));
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 100%;
    display: flex;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.card.outline {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(54, 54, 54, 0);
    background-image: radial-gradient(circle at 30% 0, rgba(255, 255, 255, .02), rgba(0, 0, 0, 0)), linear-gradient(65deg, rgba(0, 0, 0, 0) 42%, rgba(255, 255, 255, .03) 42%), linear-gradient(282deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .03));
    flex-direction: column;
    justify-content: space-between;
    min-width: 100%;
    display: flex;
}

.collection-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.blog-content h2 {
    color: var(--02-primary--base);
}

.blog-content h3 {
    color: var(--01-base--lighter);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Quicksand, sans-serif;
}

.blog-content.rich-text li {
    color: var(--01-base--light);
}

.blog-content.rich-text blockquote {
    border-left-color: var(--02-primary--dark);
    border-radius: var(--elements--border-radius-m);
    color: rgba(241, 234, 227, .94);
    background-color: rgba(255, 255, 255, .01);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: Argestadisplay Webfont, sans-serif;
    font-weight: 400;
}

.font-marked {
    padding-right: var(--padding-s);
    padding-left: var(--padding-s);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 91%, var(--02-primary--darker) 94%);
    color: var(--01-base--light);
    -webkit-text-stroke-width: .1px;
    -webkit-text-stroke-color: var(--02-primary--base);
}

.footer {
    background-color: var(--01-base--darker);
}

.footer.section {
    background-color: rgba(11, 16, 16, 0);
    padding-bottom: 15vh;
    overflow: hidden;
}

.page-wrapper {
    max-width: 100vw;
    overflow: hidden;
}

.opac-40 {
    opacity: .4;
}

.gap-10 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.text-light {
    color: var(--02-primary--light);
}

.pr-10 {
    padding-right: 2.5rem;
}

.flex-horiz-dist-full {
    justify-content: space-between;
    align-items: center;
    min-width: 100%;
    display: flex;
}

.bg-grad-darker {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(358deg, var(--01-base--darker), rgba(7, 7, 7, 0));
}

.mr-2-5 {
    margin-right: .625rem;
}

.h-100vh {
    height: 100vh;
}

.z-10 {
    z-index: 10;
    position: relative;
}

.mt-5 {
    margin-top: 1.5rem;
}

.pr-5 {
    padding-right: 1.5rem;
}

.m-10 {
    margin: 2.5rem;
}

.flex-verti_top_c {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.p-10 {
    padding: 2.5rem;
}

.form-field {
    border-radius: var(--elements--border-radius-s);
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0));
    border: 1px solid rgba(255, 255, 255, .15);
    min-width: 200px;
    height: 50px;
    /*margin-bottom: 20px;*/
    font-size: 14px;
    transition: all .2s;
}

.form-field:hover {
    color: #fff;
    border-top-color: #9c9c9c;
    border-left-color: #9c9c9c;
    border-right-color: #9c9c9c;
}

.form-field:focus {
    color: #fff;
}

.form-field::placeholder {
    color: #857e73;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
}

.h-80vh {
    height: 80vh;
}

.h-40vh {
    height: 40vh;
}

.absolute-toplay {
    z-index: 10;
    pointer-events: none;
    width: 100%;
    min-width: 20px;
    height: 100%;
    min-height: 20px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.absolute-toplay.bg-grad-darker.footer-grad {
    background-image: linear-gradient(180deg, var(--01-base--darker), rgba(32, 32, 32, 0) 37%), linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(358deg, var(--01-base--darker), rgba(7, 7, 7, 0));
}

.absolute-toplay.bg-grad-dark.fleet-grad {
    background-image: radial-gradient(circle farthest-corner at 0% 50%, rgba(0, 0, 0, .36), rgba(70, 70, 70, 0) 42%), linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(0deg, var(--01-base--dark), rgba(19, 19, 19, 0) 84%);
}

.absolute-toplay.bg-grad-dark.fleet-cta-grad {
    background-image: linear-gradient(180deg, #090d0d, rgba(37, 37, 37, 0)), linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(0deg, var(--01-base--darker), rgba(19, 19, 19, 0) 84%);
}

.absolute-toplay.bg-grad-dark.special-grad {
    background-image: radial-gradient(circle, rgba(11, 16, 16, .48), rgba(39, 39, 39, 0) 46%), linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(0deg, #0b1010, rgba(19, 19, 19, 0) 84%);
}

.absolute-toplay.hero-toplay {
    background-image: radial-gradient(circle farthest-corner at 50% 0%, var(--01-base--darker), rgba(0, 0, 0, 0));
}

.pt-10 {
    padding-top: 2.5rem;
}

.opac-60 {
    opacity: .6;
}

.bg-grad-dark {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(to top, var(--01-base--dark), rgba(19, 19, 19, 0) 84%);
}

.bg-grad-dark.blog-c {
    justify-content: center;
    align-items: flex-start;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.mt-2-5 {
    margin-top: .625rem;
}

.mb-5 {
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-xs {
    width: var(--size--10-px);
    height: var(--size--10-px);
}

.icon-m {
    width: var(--size--40-px);
    height: var(--size--40-px);
}

.flex-verti_c_left {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.content-image {
    aspect-ratio: 1;
    border-radius: var(--elements--border-radius-m);
    object-fit: cover;
}

.content-image.stretch100x100 {
    aspect-ratio: 1;
    height: 300px;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
}

.tagline {
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-radius: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    line-height: 140%;
}

.tagline.text-lighter {
    text-shadow: 0 1px 5px #000;
}

.tagline.text-lighter.extra-option {
    font-weight: 300;
}

.tagline.refer {
    color: rgba(255, 255, 255, .14);
    letter-spacing: 3px;
    font-size: 8px;
}

.hero-heading {
    font-size: var(--font--heading-l);
    text-align: center;
    margin-top: 29px;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.section_hero {
    height: auto;
    overflow: hidden;
}

.section_hero.section.h-90vh {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    justify-content: flex-start;
    align-items: center;
    /*min-height: 90vh;*/
    /*padding-top: 5vh;*/
    /*padding-bottom: 5vh;*/

    min-height: 100vh;
    padding-bottom: 5vh;
}

.container-medium {
    justify-content: space-between;
    width: 80vw;
    min-height: 50px;
    display: flex;
}

.container-medium.flex-horiz-dist-full.is-mobile-full-width {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

.container-medium.menu-container {
    min-height: 0;
}

.container-small {
    grid-column-gap: var(--col-gap);
    grid-row-gap: var(--col-gap);
    width: 60vw;
    min-width: 980px;
    min-height: 50px;
    display: flex;
}

.section-styling {
    z-index: -1;
    justify-content: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.section-styling.z-hi {
    z-index: 0;
}

.section-styling.world-styling {
    justify-content: center;
    align-items: flex-end;
}

.effect-neon {
    background-color: var(--02-primary--base);
    opacity: .13;
    filter: blur(100px);
    border-radius: 100%;
    width: 200px;
    height: 300px;
}

.effect-neon.is-topmid {
    width: 10vw;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 45vw;
    right: 0%;
}

.section-brands.section {
    height: 10vh;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-text {
    color: rgba(241, 234, 227, .76);
    text-align: center;
    font-size: 18px;
}

.hero-lining {
    background-image: linear-gradient(1deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 24%, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0) 87%, rgba(255, 255, 255, .45));
    width: 1px;
}

.background-print {
    background-image: linear-gradient(180deg, black, var(--black)), url('../images/image-2-traced.svg');
    object-fit: cover;
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto 100%;
    min-width: 100%;
    min-height: 100%;
}

.background-print.hero-image-padding.hide-mob {
    width: 100px;
    height: 100px;
    display: block;
}

.mid-split-y {
    background-image: radial-gradient(circle, rgba(255, 255, 255, .21), rgba(0, 0, 0, 0));
    width: 1px;
    min-width: 1px;
    height: 10vh;
}

.hero-dashboard {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    flex-direction: row;
}

.hero-dashboard.card {
    padding: var(--padding-s);
    align-items: center;
    min-width: 80px;
    min-height: 80px;
}

.hero-dashboard.card.is-homepage {
    padding-right: var(--padding-m);
    grid-column-gap: var(--padding-m);
    grid-row-gap: var(--padding-m);
    background-image: radial-gradient(circle at 30% 0, rgba(255, 255, 255, .23), rgba(0, 0, 0, 0) 52%), linear-gradient(53deg, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, .04) 50%), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .1));
    border-color: rgba(100, 100, 100, .42);
    padding-left: 1rem;
}

.hero-dashboard.card.is-homepage.blog-edit {
    z-index: 10;
    padding-right: var(--padding-s);
    justify-content: space-between;
    width: 50vw;
    padding-left: 2rem;
    position: fixed;
    top: auto;
    bottom: 20px;
    left: auto;
    right: 25vw;
}

.section--content.section.phone-book-now {
    min-width: 100vw;
}

.section--content.section.phone-book-now.smaller, .section--content.section.main-section {
    padding-top: 0;
}

.content-icontext {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    flex-direction: column;
    display: flex;
}

.section-background {
    min-width: 100%;
}

.image-waves {
    filter: blur(4px);
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.background-neon {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--02-primary--70) 49%, rgba(42, 200, 211, 0));
    opacity: .09;
    width: 100%;
    height: 100%;
    position: absolute;
}

.nav {
    z-index: 100;
    /*margin-top: var(--padding-l);*/
    justify-content: center;
    height: auto;
    display: flex;
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    /* background: #1e1e1e radial-gradient(circle at 50% 0, rgba(255, 255, 255, .08), rgba(0, 0, 0, 0) 65%); */
    padding: 0.5rem;
}

.logo-wrapper {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    color: var(--white);
    justify-content: center;
    align-items: center;
    font-family: Gayathri, sans-serif;
    display: flex;
}

.brands-shade-cover {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.btn-arrow {
    padding-top: var(--padding-s);
    grid-column-gap: var(--padding-m);
    grid-row-gap: var(--padding-m);
    opacity: .7;
    justify-content: flex-start;
    align-items: center;
    min-width: 190px;
    display: flex;
    position: relative;
}

.btn-arrow:hover {
    opacity: 1;
}

.button-arrow-text {
    color: var(--white);
    white-space: nowrap;
}

.service-wrapper {
    display: flex;
    transform: translate(187px);
}

.service-card {
    padding: var(--padding-m);
    flex-direction: column;
    justify-content: space-between;
    width: 30vw;
    height: 40vw;
    display: flex;
    position: relative;
}

.service-card.card {
    border-bottom-right-radius: var(--elements--border-radius-xl);
    padding: 0;
    overflow: hidden;
}

.service-card-cms {
    width: 30vw;
}

.service-card-coll-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    display: flex;
}

.service-card-content {
    z-index: 2;
    padding: var(--padding-m);
    border-top-left-radius: var(--elements--border-radius-xl);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    pointer-events: none;
    /*background-color: rgba(80, 67, 35, 0.37);*/
    background-color: rgb(138 96 22 / 23%);
    /*background-image: linear-gradient(58deg, rgba(255, 255, 255, .01) 39%, rgba(0, 0, 0, 0) 40%), radial-gradient(circle at 80% 0, rgba(255, 255, 255, .16), rgba(0, 0, 0, 0) 33%);*/
    background-image: linear-gradient(58deg, rgba(255, 255, 255, .01) 39%, rgba(0, 0, 0, 0) 40%), radial-gradient(circle at 80% 0, rgb(138, 74, 22), rgba(0, 0, 0, 0) 33%);
    border-top: 1px solid rgba(255, 255, 255, .12);
    justify-content: space-between;
    width: 100%;
    min-width: 100%;
    display: flex;
    position: relative;
}

.bg-gray-underpanel {
    z-index: -1;
    background-image: linear-gradient(to bottom, var(--01-base--darker), var(--01-base--base));
    width: 100%;
    height: 50%;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.bg-gray-underpanel.top {
    background-image: linear-gradient(0deg, var(--01-base--darker), var(--01-base--base));
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.service-photo {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.service-card-background {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.service-card-bg-cover {
    /*background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(148deg, rgba(255, 255, 255, .03) 39%, rgba(0, 0, 0, 0) 39%), linear-gradient(rgba(0, 0, 0, .05), rgba(10, 10, 10, .84));*/
    background-image: linear-gradient(rgba(138, 74, 22, 0), rgba(138, 74, 22, 0)),
    linear-gradient(148deg, rgba(138, 74, 22, .03) 39%, rgba(0, 0, 0, 0) 39%),
    linear-gradient(rgba(0, 0, 0, .05), rgba(10, 10, 10, .84));
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.service-card-bg-cover:hover {
    /*background-image: linear-gradient(rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)), linear-gradient(148deg, rgba(255, 255, 255, .03) 39%, rgba(0, 0, 0, 0) 39%), linear-gradient(rgba(0, 0, 0, .05), rgba(10, 10, 10, .84));*/
    background-image: linear-gradient(rgba(138, 74, 22, .08), rgba(138, 74, 22, .08)),
    linear-gradient(148deg, rgba(138, 74, 22, .03) 39%, rgba(0, 0, 0, 0) 39%),
    linear-gradient(rgba(0, 0, 0, .05), rgba(10, 10, 10, .84));
}

.coll-list-wraper {
    justify-content: flex-start;
    display: flex;
}

.section-sticky {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(180deg, var(--01-base--base), rgba(41, 41, 41, 0) 46%, #000), url('../images/marrallisa-kreijkes-silverdrive-private-chauffeur-15.webp');
    background-position: 0 0, 0 0, 50% 100%;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, fixed;
    justify-content: center;
    align-items: flex-start;
    height: 400vh;
    padding-top: 10vh;
    display: flex;
    position: relative;
}

.sticky-content-area.wrapper {
    flex-flow: column;
    max-width: 400px;
    margin-bottom: 100px;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 28.3vh;
    bottom: 10vh;
}

.bg-lining-blur {
    justify-content: space-between;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.sticky-conpartiment {
    height: 100vh;
    position: relative;
}

.sticky-blur-bg {
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    width: 55%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
}

.h2 {
    margin-bottom: 0;
}

.number-counter-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100px;
    height: 80vh;
    padding-right: 20px;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 30vh;
}

.nc-line-container {
    background-color: rgba(255, 255, 255, .1);
    justify-content: center;
    align-items: flex-start;
    width: 1px;
    height: 100px;
    display: flex;
}

.nc-round-container {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
}

.content-background {
    min-width: 100%;
}

.features-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "Area Area-2 Area-3"
                       "Area-6 Area-5 Area-4";
    min-width: 100%;
}

.faq-heading {
    text-align: center;
}

.footer-nav {
    background-image: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .08), rgba(0, 0, 0, 0) 65%);
    justify-content: center;
    align-items: flex-start;
    height: 100px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.footer-line {
    background-image: radial-gradient(circle, rgba(255, 255, 255, .18), rgba(0, 0, 0, 0));
    width: 100%;
    height: 1px;
}

.footer-menu {
    justify-content: space-between;
    min-width: 100%;
    display: flex;
}

.blog-hero-section.section.is-edit {
    justify-content: flex-start;
    align-items: center;
    min-height: 110vh;
    padding-bottom: 0;
    overflow: hidden;
}

.blog-hero-section.section.cities {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
}

.scroll-down-animation {
    width: 50px;
}

.blog-image-section.section.no-top-vh {
    padding-top: 0;
}

.blog-image-section.section.fleet-edit {
    z-index: 10;
    background-color: #090d0d;
    padding-top: 0;
}

.blog-main-image {
    aspect-ratio: 2 / 3;
    border-radius: var(--elements--border-radius-l);
    object-fit: cover;
    min-width: 100%;
    max-height: 400px;
}

.about-main-image {
    aspect-ratio: 16 / 9;
    border-radius: var(--elements--border-radius-l);
    object-fit: contain;
    min-width: 100%;
    max-height: 400px;
}

.blog-main-image.sq {
    aspect-ratio: 1;
}

.blog-main-image.sq.md-darker {
    filter: brightness(48%);
}

.blog-collection-list-wrapper {
    min-width: 100%;
}

.blog-cover {
    padding-right: var(--padding-m);
    padding-bottom: var(--padding-m);
    padding-left: var(--padding-m);
    background-image: linear-gradient(rgba(8, 8, 8, 0) 18%, rgba(0, 0, 0, .9));
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.blog-cover:hover {
    background-image: linear-gradient(rgba(8, 8, 8, .42), rgba(0, 0, 0, .9));
}

.blog-title {
    margin-bottom: 0;
}

.blog-title.small {
    font-size: 22px;
    font-weight: 400;
}

.blog-collection-list-smaller {
    min-width: 100%;
}

.blog-card.card {
    border-color: rgba(79, 81, 81, .18);
    height: 400px;
    overflow: hidden;
}

.blog-card-thumbnail-image {
    object-fit: cover;
    min-height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.blog-collectiuon-item {
    padding-left: 0;
    padding-right: 0;
}

.blog-collection-list-smal {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.about-us-hero-section.section {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.about-us-hero-section.section.overflow-none {
    overflow: hidden;
}

.about-us-hero-section.section.blog {
    padding-bottom: 0;
}

.fleet-section {
    justify-content: center;
    align-items: center;
    display: flex;
}

.fleet-card {
    border-radius: var(--elements--border-radius-m);
    border: 1px solid rgba(255, 255, 255, .2);
    height: 70vh;
    margin: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.fleet-thumbnail-image {
    object-fit: cover;
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.fleet-image-cover {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.fleet-image-cover.bg-grad-dark {
    background-image: linear-gradient(86deg, rgba(0, 0, 0, .57), rgba(31, 31, 31, 0) 23%), radial-gradient(circle at 0 0, rgba(0, 0, 0, .64), rgba(32, 32, 32, 0) 49%), linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(269deg, rgba(0, 0, 0, .54), rgba(19, 19, 19, 0) 48%);
    justify-content: center;
    align-items: center;
    display: flex;
}

.fleet-content-wrapper {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.fleet-content-wrapper.m-10 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.fleet-content-wrapper.m-10.container-medium {
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.fleet-main-content-wrapper {
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
}

.fleet-main-content-wrapper.top-box {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 450px;
    display: flex;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
}

.fleet-icon {
    width: 15px;
    height: 15px;
}

.circle-bg {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.circle-bg.flex-verti_top_c {
    background-image: linear-gradient(rgba(0, 0, 0, 0), #070707 42%, #0b1010);
    justify-content: center;
    align-items: center;
}

.circle-bg.flex-verti_top_c.no-bg {
    background-image: none;
}

.cir-top {
    position: relative;
    bottom: 234px;
    left: 15px;
}

.cir-bot {
    position: relative;
    top: 209px;
    left: -33px;
    transform: rotate(180deg);
}

.review-wrapper.card.pad-s {
    padding: var(--padding-m);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1), rgba(20, 20, 20, .01) 35%, rgba(0, 0, 0, 0) 38%), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .02));
    margin-bottom: 10px;
}

.review-wrapper.card.pad-s:hover {
    background-color: rgba(34, 37, 39, .46);
}

.review-rating-star {
    width: 12px;
}

.reviews-collection-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.reviews-fade-out {
    background-image: radial-gradient(circle farthest-corner at 50% 90%, var(--01-base--darker), rgba(34, 34, 34, 0) 43%), linear-gradient(180deg, rgba(41, 41, 41, 0), var(--01-base--darker));
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    padding-top: 188px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.nav-button-container.card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    min-width: 0%;
    margin-right: 0;
    padding: 10px 31px 10px 20px;
    position: static;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
}

.menu-button {
    width: 40px;
    height: 40px;
    padding: 6px 11px;
}

.nav-split-line {
    background-color: rgba(255, 255, 255, .09);
    width: 1px;
    height: 100%;
}

.section-reviews.section {
    padding-top: 0;
}

.city-name.tagline {
    color: var(--01-base--light);
    letter-spacing: 5px;
    font-family: Quicksand, sans-serif;
    font-size: 16px;
}

.map-background {
    z-index: -1;
    background-image: linear-gradient(180deg, var(--01-base--darker), rgba(71, 71, 71, 0) 43%, var(--01-base--darker)), url('../images/group-39657_1.webp'), url('../images/image-18_1.webp'), radial-gradient(circle farthest-corner at 50% 50%, var(--02-primary--darker), rgba(0, 0, 0, 0));
    background-position: 0 0, 45% 15%, 50%, 0 0;
    background-repeat: repeat, no-repeat, no-repeat, repeat;
    background-size: auto, 50vw, cover, auto;
    background-attachment: scroll, fixed, fixed, scroll;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.menu-open {
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    width: 50vw;
    height: 90vh;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
}

.menu-open.card {
    background-color: rgba(12, 30, 42, .87);
    background-image: radial-gradient(circle at 20% 0, rgba(255, 255, 255, .12), rgba(0, 0, 0, 0) 51%), linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .1));
    display: none;
    bottom: 30px;
}

.menu-open.card.sitemap-edit {
    background-image: radial-gradient(circle farthest-corner at 20% 0%, rgba(255, 255, 255, .12), rgba(0, 0, 0, 0) 51%), linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(282deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .1)), linear-gradient(94deg, var(--02-primary--darker), rgba(49, 49, 49, 0)), linear-gradient(to bottom, rgba(19, 45, 47, .86), rgba(19, 45, 47, .86)), url('../images/marrallisa-kreijkes-silverdrive-private-chauffeur-16.webp');
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    background-size: auto, auto, auto, auto, auto, cover;
    height: 100vh;
    display: flex;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.menu-text {
    color: var(--white);
    padding-top: 0;
    font-family: Quicksand, sans-serif;
    font-size: 40px;
    font-weight: 100;
    line-height: 1;
}

.menu-text.smaller {
    opacity: .68;
    font-size: 30px;
}

.menu-con {
    opacity: .73;
    background-color: rgba(35, 80, 80, 0);
    border-radius: 5px;
    width: 30px;
    padding: 5px;
}

.menu-con.first-option {
    margin-left: 7px;
}

.menu-link {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}

.menu-link.w--current {
    padding-right: 60px;
}

.menu-link.first-option {
    background-image: linear-gradient(265deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .1));
    border-radius: 20px;
    padding-right: 50px;
    position: relative;
}

.contact-page-grad-cover {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.contact-page-grad-cover.bg-grad-dark {
    background-image: linear-gradient(0deg, var(--01-base--darker), rgba(19, 19, 19, 0) 84%), radial-gradient(circle farthest-corner at 50% 50%, rgba(0, 0, 0, .68), rgba(255, 255, 255, 0));
}

.form-block {
    grid-column-gap: var(--padding-s);
    grid-row-gap: var(--padding-s);
    display: flex;
}

.form-block.card {
    padding-top: 4rem;
}

.form-label {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.htnl-embed.container-medium {
    background-color: rgba(237, 237, 237, 0);
}

.image-mid-aligner {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.pageloader-main {
    z-index: 1000;
    background-color: var(--01-base--darker);
    background-image: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .17), rgba(0, 0, 0, 0) 87%);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.pageloader-logo-image {
    width: 100px;
}

.pageloader-logo-image.opac-60 {
    margin-bottom: 24px;
}

.loader-wrapper {
    border: 1px solid var(--01-base--base);
    border-radius: var(--elements--border-radius-s);
    justify-content: flex-start;
    align-items: center;
    width: 200px;
    height: 10px;
    padding-left: 1px;
    padding-right: 1px;
    display: flex;
}

.loader-inner {
    border-radius: var(--elements--border-radius-s);
    background-color: var(--02-primary--base);
    width: 20px;
    min-height: 100%;
}

.pageloader-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.service-card-text {
    font-size: 21px;
    font-weight: 400;
}

.line {
    background-image: linear-gradient(rgba(0, 0, 0, 0), #fff);
    width: 1px;
    height: 5px;
}

.circle-button-container {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    min-width: 150px;
    height: 70px;
    display: flex;
}

.circle-button-text {
    color: var(--white);
    font-size: 21px;
}

.hero-spacing-block.h-40vh {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
}

.circle-button-arrow-container {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.circle-button-circle {
    outline-offset: 0px;
    border-radius: 100px;
    outline: 1px solid rgb(168, 40, 26);
    width: 50px;
    height: 50px;
    position: relative;
    left: -30px;
}

.body-2 {
    background-color: #0e0f0f;
}

.fleet-name {
    color: var(--white);
    text-shadow: 0 1px 20px #000;
    -webkit-text-fill-color: inherit;
    background-image: none;
    background-clip: border-box;
    margin-top: 0;
    margin-bottom: 0;
}

.booking-wrapper {
    position: relative;
}

.booking-wrapper.card {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(82deg, rgba(0, 0, 0, 0) 33%, rgba(255, 255, 255, .02) 33%), radial-gradient(circle at 25% 0, rgba(255, 255, 255, .16), rgba(0, 0, 0, 0) 53%), linear-gradient(350deg, rgba(0, 0, 0, .31), rgba(255, 255, 255, .08));
    justify-content: center;
    align-items: center;
    min-height: 800px;
    overflow: hidden;
}

.fleet-hero.section.h-80vh {
    border-bottom-left-radius: var(--elements--border-radius-xl);
    border-bottom-right-radius: var(--elements--border-radius-xl);
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.fleet-main-image.stretch100x100 {
    min-height: 100%;
}

.hero-icon {
    object-fit: contain;
    background-color: rgba(240, 225, 225, .27);
    border-radius: 10px;
    width: 45px;
    min-width: 45px;
    height: 45px;
    min-height: 45px;
    max-height: 30px;
    padding: 12px;
}

.hero-icon.pulsar {
    background-color: rgb(136 70 24);
    background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, .22), rgba(0, 0, 0, .05));
}

.hero-link-button.btn.white {
    grid-column-gap: 10px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(250, 250, 250, .62);
    background-image: radial-gradient(circle at 30% 0, #fff, rgba(0, 0, 0, 0));
    border-radius: 8px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 25px 12px 15px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.hero-buttons-text {
    font-size: var(--font--par-m);
    text-transform: none;
    text-shadow: 0 1px 18px #613637;
    font-weight: 400;
    line-height: 25px;
    display: flex;
}

.book-button-small {
    text-align: left;
    font-size: 12px;
}

.fleet-round-arrow {
    z-index: -1;
    display: none;
    position: absolute;
    top: -62px;
    bottom: auto;
    left: 0%;
    right: auto;
}

.image-pointer-wrapper {
    width: 300px;
    height: 80px;
    position: absolute;
    top: auto;
    bottom: 10vh;
    left: 10vw;
    right: auto;
}

.image-pointer-wrapper.is-homepage {
    /*bottom: 17.7vh;*/
    /*left: 5vw;*/
    bottom: 3.7vh;
    left: 16vw;
}

.image-pointer-bg-edit {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .12), rgba(80, 80, 80, 0) 54%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: flex-start;
    align-items: center;
    width: 88%;
    height: 100%;
    padding-left: 20px;
    display: flex;
    overflow: hidden;
}

.pointer-wrapper-line1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0), #fff);
    width: 1px;
    height: 100px;
    position: absolute;
    top: auto;
    bottom: -16%;
    left: auto;
    right: 0%;
    transform: rotate(45deg);
}

.pointer-wrapper-line1.part2 {
    perspective-origin: 100%;
    transform-origin: 100%;
    background-image: linear-gradient(106deg, rgba(0, 0, 0, 0), #fff);
    width: 200px;
    height: 1px;
    top: auto;
    bottom: 2%;
    left: auto;
    right: 35px;
    transform: rotate(0);
}

.bold {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
}

.fleet-cta.section.h-50vh {
    border-bottom-left-radius: var(--elements--border-radius-xl);
    border-bottom-right-radius: var(--elements--border-radius-xl);
    height: 70vh;
    overflow: hidden;
}

.mid-split {
    background-image: radial-gradient(circle, #fff, rgba(0, 0, 0, 0));
    width: 100%;
    height: 1px;
}

.booking-page-mid-splitter {
    background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .09), rgba(0, 0, 0, 0) 46%);
    width: 100%;
    height: 130px;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.booking-line {
    background-image: radial-gradient(circle, rgba(255, 255, 255, .17), rgba(0, 0, 0, 0));
    height: 1px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.booking-skeleton-loader {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .06) 46%, rgba(26, 26, 26, 0));
    width: 300px;
    height: 1000px;
    position: absolute;
    transform: rotate(-12deg);
}

.hero-bg-image-for-mobile.stretch100x100 {
    display: none;
}

.hero-section.section.h-60vh {
    min-height: 60vh;
}

.hero-section.section.h-60vh.overflow-none {
    overflow: hidden;
}

.scroll-down-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 1px;
    margin-bottom: 0;
    display: flex;
    position: relative;
    top: 34px;
}

.scroll-down-lottie {
    width: 30px;
}

.scroll-down-label.tagline {
    font-size: 16px;
}

.logo-strip-wrapper-2 {
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
}

.logo-strip-2 {
    grid-column-gap: 7vw;
    grid-row-gap: 0vw;
    justify-content: flex-start;
    padding-right: 7vw;
    display: flex;
}

.logo-icon {
    opacity: .7;
    justify-content: center;
    align-items: center;
    width: 12rem;
    min-width: 12rem;
    display: flex;
}

.footer-bottom {
    justify-content: center;
    align-items: center;
    height: 30px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.referral-link {
    padding: 8px;
}

.review-wraper {
    aspect-ratio: auto;
    object-fit: contain;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #fff;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    margin-top: 40px;
    margin-right: 20px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
}

.review-name-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-top: 20px;
    padding-right: 12px;
    display: flex;
}

.customer-name {
    font-size: 10px;
}

.reviw-title {
    width: 80%;
    font-family: Argestadisplay Webfont, sans-serif;
}

.top-service-card {
    border-radius: var(--elements--border-radius-l);
    border: 1px solid rgba(158, 158, 158, .2);
    min-width: 800px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-photo-hihlight {
    aspect-ratio: 1;
    border-radius: var(--elements--border-radius-l);
    object-fit: cover;
    height: 300px;
    margin-bottom: 0;
}

.follow-instagram-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-image: radial-gradient(circle at 30% 0, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0) 59%);
    justify-content: flex-start;
    align-items: center;
    height: 100px;
    padding-left: 40px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.follow-text {
    color: var(--white);
}

.seperator-line-menu {
    background-image: radial-gradient(circle at 30%, rgba(255, 255, 255, .28), rgba(0, 0, 0, 0));
    height: 1px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.service-sub {
    max-width: 400px;
    padding-right: 40px;
}

.services-page-text-wrapper {
    padding-top: 20px;
}

.blog-date.tagline {
    color: var(--white);
    font-size: 10px;
}

.fleet-wrapper {
    min-width: 100%;
}

.moving-svg-routing-bg.absolute-underlay {
    background-image: linear-gradient(180deg, var(--01-base--darker), rgba(6, 9, 9, 0) 56%, #0b1010), url('../images/image-2-traced.svg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
}

.moving-grad-bar {
    background-image: linear-gradient(90deg, rgba(11, 16, 16, 0), var(--01-base--darker) 29%, var(--01-base--darker) 74%, rgba(70, 70, 70, 0));
    width: 100vw;
    height: 100%;
}

.logo-menu {
    position: absolute;
    top: 5vh;
    bottom: auto;
    left: 4.3vw;
    right: auto;
}

.live-box {
    z-index: 10;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #dbf5dc;
    border: 1px solid #03bd1d;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 16px;
    display: flex;
    position: absolute;
    top: -6%;
    bottom: auto;
    left: auto;
    right: 9%;
}

.lottie-animation {
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    display: flex;
}

.text-succes-2 {
    color: #03bd1d;
    letter-spacing: 1px;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.success-message {
    background-color: rgba(221, 221, 221, 0);
}

.error-message-2 {
    background-color: var(--09-system--error);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.list {
    font-size: 14px;
}

.checkbox-field {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.city-name {
    color: var(--white);
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: 35px;
}

.city-link.flex-verti_cc.mb-10 {
    opacity: .6;
    margin-bottom: 0;
    padding: 25px;
}

.city-link.flex-verti_cc.mb-10:hover {
    opacity: 1;
}

.page-bg {
    background-image: linear-gradient(0deg, var(--01-base--darker), rgba(26, 26, 26, 0) 45%), url('../images/image-18_1.webp');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    min-height: 100%;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.review-avatar {
    border-radius: 100%;
    width: 60px;
    height: 60px;
}

.book-now {
    width: 150px;
    position: absolute;
    top: 45%;
    bottom: auto;
    left: 60%;
    right: auto;
}

.blog-category.pill {
    background-color: rgba(35, 80, 80, .33);
    position: absolute;
    top: 20px;
    bottom: auto;
    left: 20px;
    right: auto;
}

.city-button.pill {
    background-color: rgba(35, 80, 80, .27);
}

.city-button.pill:hover {
    background-color: rgba(35, 80, 80, .7);
}

.city-collection-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
}

.book-now-phone {
    object-fit: cover;
    width: 1300px;
    height: 1300px;
}

.book-now-phone-aligner {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.booking-title {
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: var(--font--heading-s);
    font-weight: 400;
}

.blog-content-section.section {
    padding-top: 0;
    padding-bottom: 0;
}

.links-page {
    position: absolute;
    top: 2%;
    bottom: auto;
    left: auto;
    right: 20vw;
}

.rich-text h1 {
    margin-top: 40px;
}

.rich-text h2 {
    background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, .93), rgba(255, 255, 255, .45));
    margin-top: 40px;
    margin-bottom: 20px;
}

.rich-text h3 {
    color: rgba(241, 234, 227, .78);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Argestadisplay Webfont, sans-serif;
}

.rich-text h4 {
    color: rgba(241, 234, 227, .8);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Argestadisplay Webfont, sans-serif;
    font-size: 20px;
}

.rich-text ol, .rich-text ul {
    font-size: 18px;
}

.rich-text p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.back-to-btn {
    background-color: rgba(35, 80, 80, .23);
    font-size: 20px;
}

.pagination-title {
    font-size: 20px;
}

.pagination-title.blog-name, .splitter {
    color: var(--01-base--light);
}

.section-world.section {
    padding-top: 5vh;
    overflow: hidden;
}

.section-world.section.h-80vh {
    overflow: hidden;
}

.world-bg.stretch100x100 {
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    display: flex;
}

.world-map {
    filter: blur(5px);
    height: 100%;
}

.world-locations {
    opacity: .41;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.lottie-animation-container {
    width: 100%;
    height: 50%;
    position: absolute;
}

.world-map-lottie {
    transform-style: preserve-3d;
    width: 50px;
    position: absolute;
    top: 4vh;
    bottom: auto;
    left: auto;
    right: 37vw;
    transform: rotateX(40deg) rotateY(0) rotateZ(0);
}

.world-map-lottie._2 {
    top: 11.1vh;
    right: 60vw;
}

.world-map-lottie._3 {
    width: 30px;
    top: 5vh;
    right: 50vw;
}

.world-map-lottie._4 {
    top: auto;
    bottom: 27%;
    left: auto;
    right: 24%;
}

.world-bottom-grad {
    background-image: linear-gradient(180deg, rgba(28, 31, 33, 0), var(--01-base--darker));
    height: 300px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.flag {
    object-fit: cover;
    border-radius: 20px;
    width: 15px;
}

.thidewihdwqehd238ui2bid {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50%;
    background-size: 20px 20px;
    border-radius: 100px;
    width: 20px;
    height: 15px;
}

.container-large {
    width: 100vw;
}

.fleet-navigation {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-image: url('../images/silverdrive-navigation-panel.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
    width: 720px;
    height: 100px;
    padding: 30px 49px 20px;
    display: flex;
}

.fleet-menu.tagline.text-lighter {
    transition: all .2s;
}

.fleet-menu.tagline.text-lighter:hover {
    text-shadow: 0 1px 5px #fff;
}

.fleet-menu-icon {
    width: 30px;
    height: 30px;
}

.fleet-menu-button {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    opacity: .86;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    transition-duration: .4s;
    display: flex;
}

.fleet-menu-button:hover {
    opacity: 1;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .03), rgba(0, 0, 0, 0) 55%);
}

.fleet-menu-button.w--current {
    background-image: url('../images/current.png'), radial-gradient(circle, rgba(255, 255, 255, .1), rgba(0, 0, 0, 0) 57%);
    background-position: 50% 90%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 12px, auto;
}

.fleet-split {
    background-image: radial-gradient(circle, rgba(255, 255, 255, .23), rgba(0, 0, 0, 0));
    width: 1px;
    height: 40px;
    margin-left: 5px;
    margin-right: 5px;
}

.link {
    color: var(--white);
}

.world-top-grad {
    background-image: linear-gradient(180deg, var(--01-base--darker), rgba(34, 37, 39, 0));
    height: 300px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.link-for-city {
    padding: 5px 28px;
}

.link-block {
    padding: 16px;
}

.collection-list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.collection-list-2 {
    flex-flow: column;
    display: flex;
}

.artist-block {
    position: relative;
    display: inline-block;
    width: 100%;
}

.artist-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem
}

.artist-name {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.artist-socials {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 10px;
    left: 13px;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.artist-block:hover .artist-socials {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 991px) {
    body {
        font-size: 21px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: var(--font--heading-s);
    }

    p {
        font-size: 21px;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .flex-horiz_cc {
        flex-direction: row;
        align-items: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .flex-horiz_c_right {
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .container {
        flex-direction: column;
        width: 95vw;
    }

    .pill {
        padding: 3px 10px;
        font-size: 7px;
    }

    .col.number-counter.z {
        width: 50px;
    }

    .col.fleet-bottom-wrapper {
        justify-content: center;
        align-items: flex-start;
    }

    .card {
        padding: var(--padding-m);
    }

    .hide-ipad-down {
        display: none;
    }

    .hero-heading {
        font-size: var(--font--heading-l);
    }

    .container-medium {
        width: 90vw;
    }

    .container-small {
        flex-direction: column;
        width: 80vw;
        min-width: 300px;
    }

    .background-print.hero-image-padding.hide-mob {
        display: none;
    }

    .section--content.section.phone-book-now {
        justify-content: flex-start;
        align-items: center;
        min-height: 600px;
    }

    .service-wrapper {
        flex-flow: column;
        transform: translate(0);
    }

    .service-card.card {
        width: 400px;
        height: 500px;
    }

    .service-card-coll-list {
        flex-flow: column;
    }

    .number-counter-wrapper {
        width: 50px;
        padding-right: 50px;
    }

    .nc-round-container {
        width: 30px;
        height: 30px;
    }

    .menu-open.card {
        width: 100vw;
        top: 0%;
        bottom: auto;
        left: auto;
        right: 0%;
    }

    .form-block.card {
        padding-bottom: 4rem;
    }

    .fleet-hero.section.h-80vh {
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 88px;
        padding-left: 20px;
    }

    .hero-buttons-text {
        font-weight: 400;
    }

    .fleet-round-arrow {
        display: block;
    }

    .image-pointer-wrapper.fleet {
        position: relative;
        left: 0;
    }

    .homepage-number-counter {
        font-size: 12px;
    }

    .hero-bg-image-for-mobile {
        display: none;
    }

    .hero-bg-image-for-mobile.stretch100x100 {
        min-height: 100%;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: var(--font--heading-xs);
    }

    p {
        font-size: 16px;
    }

    .section {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .flex-horiz_cc.is_cta-wrapper {
        flex-flow: column;
        justify-content: center;
        align-items: flex-start;
    }

    .btn.white.text.hide-mob {
        display: block;
    }

    .text-tagline {
        font-size: 10px;
    }

    .hide-mob {
        display: none;
    }

    .stretch100x100.homepage {
        min-height: 100%;
    }

    .pill.fleet {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        padding: 3px 6px;
    }

    .wrapper.flex-horiz_cc.gap-10.nopad.mob-vert {
        flex-flow: column;
    }

    .wrapper.mob-edit {
        margin-top: 10px;
    }

    .col.flex-horiz_c_left.services {
        flex-flow: column;
    }

    .col.p-10.mob-no-pad {
        padding-left: 0;
        padding-right: 0;
    }

    .card {
        padding: var(--padding-m) var(--padding-m) var(--padding-s);
    }

    .pr-10 {
        padding-right: 1.5rem;
    }

    .pr-5 {
        padding-right: 1rem;
    }

    .p-10 {
        padding: 1.5rem;
    }

    .form-field {
        margin-bottom: -2px;
    }

    .pt-10 {
        padding-top: 15rem;
    }

    .tagline.text-lighter {
        font-size: 8px;
    }

    .hero-heading {
        font-size: var(--font--heading-s);
    }

    .container-medium.flex-horiz-dist-full.is-mobile-full-width {
        position: absolute;
        top: auto;
        bottom: 0%;
        left: 0%;
        right: 0%;
    }

    .container-medium.mob-vert {
        flex-flow: column-reverse;
    }

    .container-medium.mob-vert.mob-invert {
        flex-flow: wrap;
    }

    .container-small {
        width: 90vw;
    }

    .section-styling.world-styling {
        min-width: 0;
    }

    .hero-text {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }

    .hero-dashboard.card.is-homepage {
        flex-flow: row;
        justify-content: space-around;
        align-items: center;
        min-width: 100%;
    }

    .hero-dashboard.card.is-homepage.blog-edit {
        padding-right: var(--padding-s);
        bottom: 0;
        right: 0;
    }

    .nav {
        height: 60px;
        margin-top: -2px;
        padding: unset;
    }

    .logo-wrapper.w--current {
        padding-left: 20px;
    }

    .service-card.card {
        width: 100%;
        height: 400px;
    }

    .service-container {
        min-width: 90vw;
    }

    .service-card-cms, .service-card-coll-list {
        width: 100%;
    }

    .coll-list-wraper {
        width: 100%;
        min-width: 100%;
    }

    .features-grid {
        grid-template: "Area Area-2"
                   "Area-3 Area-6"
                   "Area-5 Area-4"
                   / 1fr 1fr;
    }

    .footer-nav {
        height: auto;
        position: relative;
    }

    .footer-menu {
        flex-flow: column;
    }

    .blog-collection-list-smal {
        grid-template-columns: 1fr 1fr;
    }

    .fleet-card {
        height: 50vh;
        margin: 10px;
    }

    .fleet-content-wrapper.m-10.container-medium {
        margin-top: var(--padding-m);
        margin-left: var(--padding-m);
    }

    .fleet-main-content-wrapper.top-box {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
    }

    .fleet-icon {
        width: 12px;
        height: 12px;
    }

    .circle-bg.flex-verti_top_c {
        top: -18%;
    }

    .circle-bg.flex-verti_top_c.no-bg {
        top: 20%;
    }

    .review-wrapper.card.pad-s {
        margin-bottom: 10px;
    }

    .nav-button-container.card {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        margin-right: -20px;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 20px;
    }

    .nav-split-line {
        display: none;
    }

    .menu-text.smaller {
        opacity: .65;
        font-size: 26px;
    }

    .menu-con.first-option {
        margin-left: 7px;
    }

    .menu-link {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 40px;
    }

    .menu-link.first-option {
        background-image: linear-gradient(264deg, rgba(0, 0, 0, 0) 28%, rgba(255, 255, 255, .06));
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .form-label {
        margin-top: 10px;
    }

    .circle-button-text {
        font-size: 18px;
    }

    .circle-button-circle {
        width: 40px;
        height: 40px;
    }

    .fleet-name {
        font-size: var(--font--par-xl);
    }

    .image-pointer-wrapper.is-homepage {
        display: none;
        bottom: 247px;
        transform: scale(.7);
    }

    .hero-bg-image-for-mobile {
        display: block;
    }

    .logo-icon {
        width: 10rem;
        min-width: 10rem;
    }

    .top-service-card {
        min-width: 0;
    }

    .service-photo-hihlight {
        aspect-ratio: 1;
        min-width: 100%;
    }

    .services-page-text-wrapper {
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .book-now-phone {
        width: 800px;
        height: 800px;
    }

    .pagination-title {
        font-size: 16px;
    }

    .world-bg.stretch100x100 {
        min-width: 600px;
    }

    .fleet-navigation {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        width: 500px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 30px;
    }

    .h-20vh.flex-verti_cc.mob-hide {
        display: none;
    }

    .h-20vh.flex-verti_cc.mob-10vh {
        height: 10vh;
    }

    .btn.white.text {
        font-size: var(--font--par-s);
    }

    .btn.white.text.hide-mob {
        display: none;
    }

    .container {
        flex-direction: column;
    }

    .pill.mt-10 {
        margin-top: 60px;
    }

    .wrapper.flex-horiz-cc.mob-vert {
        flex-flow: column;
    }

    .wrapper.flex-horiz-dist-full.mt-5 {
        justify-content: space-between;
        align-items: flex-start;
    }

    .wrapper.flex-horiz-dist-full.mob-vert {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        flex-flow: column;
    }

    .wrapper.mob-edit {
        margin-bottom: 20px;
    }

    .col.sticky {
        -webkit-backdrop-filter: blur();
        backdrop-filter: blur();
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .12) 46%, rgba(41, 41, 41, 0));
    }

    .footer.section {
        padding-bottom: 31px;
    }

    .page-wrapper.md-less-high {
        margin-top: -300px;
    }

    .bg-grad-dark.blog-c {
        justify-content: center;
        align-items: flex-start;
        padding-right: 7px;
        display: flex;
    }

    .hero-heading {
        font-size: var(--font--heading-s);
    }

    .padding-global {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        display: flex;
    }

    .container-medium.flex-horiz-dist-full.is-mobile-full-width {
        width: 98vw;
    }

    .container-medium.fleet {
        width: 100vw;
    }

    .container-medium.menu-container {
        width: 100vw;
        padding-left: 5px;
    }

    .container-small.mob-edit {
        padding-top: 70px;
    }

    .section-brands.section {
        height: 10vh;
        padding-top: 6vh;
    }

    .hero-dashboard.card.is-homepage {
        padding-bottom: var(--padding-m);
        grid-column-gap: var(--padding-s);
        grid-row-gap: var(--padding-s);
        border-radius: var(--elements--border-radius-s);
        background-color: rgba(9, 21, 29, .5);
    }

    .hero-dashboard.card.is-homepage.fleet-edit {
        display: none;
    }

    .hero-dashboard.card.is-homepage.blog-edit {
        padding-bottom: var(--padding-s);
        padding-left: var(--padding-s);
        justify-content: space-around;
    }

    .section--content.section.phone-book-now {
        min-height: 400px;
    }

    .content-icontext, .content-icontext.pr-5 {
        margin-top: 10px;
    }

    .logo-wrapper.w--current {
        padding-left: 10px;
    }

    .service-card-cms {
        padding-left: 0;
        padding-right: 0;
    }

    .section-sticky {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, #080909), linear-gradient(to bottom, transparent, transparent), linear-gradient(180deg, var(--01-base--base), rgba(41, 41, 41, 0) 46%, #000), url('../images/mobile-micro.jpg');
        background-position: 0 0, 0 0, 0 0, 100% 100%;
        background-size: auto, auto, auto, cover;
        background-attachment: scroll, scroll, scroll, fixed;
    }

    .features-grid {
        grid-template: "Area"
                   "Area-2"
                   "Area-3"
                   "Area-6"
                   "Area-4"
                   "Area-5"
                   / 1fr;
    }

    .blog-collection-list-smal {
        grid-template-columns: 1fr;
    }

    .fleet-card {
        height: 280px;
    }

    .fleet-content-wrapper.m-10.container-medium {
        margin-top: var(--padding-s);
        margin-bottom: .25rem;
        margin-left: var(--padding-s);
    }

    .circle-bg.flex-verti_top_c {
        top: -28%;
    }

    .circle-bg.flex-verti_top_c.no-bg {
        top: 40%;
    }

    .cir-top {
        min-width: 150vw;
        bottom: 120px;
    }

    .cir-bot {
        min-width: 150vw;
        top: 235px;
        left: 0;
    }

    .nav-button-container.card {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        margin-right: -10px;
    }

    .city-name.tagline {
        font-size: 8px;
    }

    .menu-open.card {
        justify-content: flex-start;
        align-items: flex-start;
        display: none;
    }

    .menu-list.flex-verti_c_left {
        margin-top: 35px;
    }

    .menu-text.smaller {
        white-space: nowrap;
    }

    .htnl-embed.container-medium {
        width: 100vw;
    }

    .circle-button-container.mob-hide {
        display: none;
    }

    .circle-button-text.mr-2-5.xs, .circle-button-text.xs {
        font-size: 12px;
    }

    .hero-buttons-text {
        font-size: var(--font--par-s);
    }

    .image-pointer-wrapper.is-homepage {
        bottom: 159px;
        left: -40px;
    }

    .image-pointer-wrapper.fleet {
        transform: scale(.7);
    }

    .city-coll-list {
        text-align: right;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-end;
        display: flex;
    }

    .footer-bottom {
        text-align: center;
    }

    .logo-menu {
        top: 10px;
        left: 10.6vw;
    }

    .book-now-phone-aligner {
        margin-top: 83px;
        margin-left: 36px;
    }

    .mob-title-spacer {
        height: 20px;
    }

    .pagination-title {
        white-space: nowrap;
        font-size: 14px;
        margin-top: 18px;
        margin-left: 15px;
    }

    .fleet-navigation {
        transform: scale(.7);
    }
}

#w-node-_0099a887-5e11-69ac-d4c3-d8b6437dd3c7-e5aa2810 {
    grid-area: Area;
}

#w-node-dae4ff63-0f2d-359a-aa2d-4b489a9e9772-e5aa2810 {
    grid-area: Area-2;
}

#w-node-_5df66b57-25b1-d9fa-1fd5-fae6e315ad79-e5aa2810 {
    grid-area: Area-3;
}

#w-node-_50eceb5f-4da6-8757-8dfb-13b1cb845692-e5aa2810 {
    grid-area: Area-6;
}

#w-node-f8951046-0b04-acef-959c-e8257defe359-e5aa2810 {
    grid-area: Area-5;
}

#w-node-_81b6042a-b3ce-4834-5216-b75d61ccdb7a-e5aa2810 {
    grid-area: Area-4;
}

#w-node-_51bec604-be49-b09d-20b4-7e8577a8ed38-e5aa2813, #w-node-_5694f6ae-6ac6-7ba8-23a1-643cb08c74de-e5aa2814, #w-node-_1aa600e9-2c55-5097-d045-da3d3fe37577-e5aa2815, #w-node-a5a65af4-30d1-12a7-cafc-5ba17dbfc5bb-e5aa281a, #w-node-_774aba4e-80bf-e46c-594d-afcc7f52f923-e5aa281c, #w-node-a5a65af4-30d1-12a7-cafc-5ba17dbfc5bb-f6a88d11, #w-node-a5a65af4-30d1-12a7-cafc-5ba17dbfc5bb-fbfa0118, #w-node-a5a65af4-30d1-12a7-cafc-5ba17dbfc5bb-69282336, #w-node-a5a65af4-30d1-12a7-cafc-5ba17dbfc5bb-ecdb63e4 {
    grid-area: Area;
    align-self: end;
    justify-self: start;
}


@font-face {
    font-family: 'Argestadisplay Webfont';
    src: url('../fonts/argestadisplay-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panamera Thin';
    src: url('../fonts/panamera-thin-bf656d45809fc0b.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panamera Regular';
    src: url('../fonts/panamera-regular-bf656d458090a6d.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
