:root {
    --color-body: #00205A;
    --color-primary-dark-blue: #03141F;
    --color-secondary-light-blue: #00205A;
    --color-secondary-light-red: #CB093D;
    --color-accent-sky-blue: #0085FF;
    --color-accent-light-grey: #F3F3F3;
    --color-accent-total-white: #ffffff;
    --color-selection-light-blue: #002468;
    --color-selection-sky-blue: #00aeff;
    --color-selection-light-red: #e70944;
    --color-border-grey: #9E9E9E;
    --color-checkbox-background: #051c2c;
    --color-background-info: #5B666D;

    --color-headings-light: #FFFFFF;
    --color-headings-dark: #00205A;
    --color-headings-accent: #0085FF;
    --color-paragraph: #00205A;

    --font-weight-extralight:200;
    --font-weight-light:300;
    --font-weight-regular:400;
    --font-weight-medium:500;
    --font-weight-semibold: 600;
}

*, 
*::after, 
*::before {
    box-sizing: border-box;
}

/* ---------- */
/* Typography */
/* ---------- */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-body);
    background-color: var(--color-primary-dark-blue);
}

h1, h3, h4 {
    color: var(--color-headings-dark);
}

h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
p::selection, 
a::selection,
li::selection,
label::selection {
    background: rgba(0, 133, 255, .1);
}

h1 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 4rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    color: var(--color-headings-light);
}

h3 {
    font-size: 3rem;
    margin-top: 6.4rem;
    margin-bottom: 2.8rem;
}

h4 {
    font-size: 1.5rem;
    margin: 2.5rem 0;
}

/* ----- */
/* Links */
/* ----- */

a {
    text-decoration: none;
}
.link-arrow {
    color: var(--color-accent-sky-blue);
    font-size: 1.4rem;
    font-weight: var(--font-weight-light);
}
.link-arrow::after {
    content: ">";
    margin-left: 9px;
}
.link-arrow:hover::after {
    margin-left: 14px;
    transition: margin 0.15s;
}

/* ----- */
/* Lists */
/* ----- */

.list {
    list-style: none;
    padding-left: 0;
}
.list--inline .list__item {
    display: inline-block;
    margin-right: 2rem;
}

/* ----- */
/* Icons */
/* ----- */

.icon-chat {
    height: 80px;
    width: 80px;
    fill: var(--color-accent-total-white);
}

/* ------- */
/* Buttons */
/* ------- */

.btn {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: var(--font-weight-medium);
    margin: 1rem 0;
    text-align: center;
}
.btn--primary {
    padding: 1.7rem 5rem;
    background: var(--color-secondary-light-blue);
    color: var(--color-headings-accent);
}
.btn--primary:hover {
    color: var(--color-selection-sky-blue);
    background: var(--color-selection-light-blue);
    outline: 2px solid var(--color-selection-sky-blue);
    outline-offset: -2px;
    transition: outline .1s, color .1s;
}
.btn--secondary {
    padding: 1.2rem 4rem;
    background: var(--color-secondary-light-red);
    color: var(--color-accent-total-white);
}
.btn--secondary:hover {
    background: var(--color-selection-light-red);
    transition: outline .1s, color .1s;
}
.btn--circled {
    display: flex;
    margin: 0 2rem;
    padding: 1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--color-secondary-light-blue);
    color: var(--color-headings-accent);
}
.btn--circled:hover {
    outline: 2px solid var(--color-selection-sky-blue);
    outline-offset: -2px;
    transition: outline .1s, color .1s;
}
.btn--arrow-left {    
    width: 22px;
    height: 22px;
    color: var(--color-accent-sky-blue);
}
.btn--arrow-right {    
    width: 22px;
    height: 22px;
    transform: rotate(180deg);
    color: var(--color-accent-sky-blue);
}
.btn--block {
    width: 100%;
    display: inline-block;
}
.btn-disable {
    opacity: .3;
    cursor: default;
}
.btn-disable:hover {
    outline: 0;
}
.btn-disable-car{
    opacity: .3;
    cursor: default;
}
.btn-disable-car:hover {
    outline: 0;
}
.btn-disable-vehicle{
    opacity: .3;
    cursor: default;
}
.btn-disable-vehicle:hover {
    outline: 0;
}
.btn--cards-right {
    display: flex;
    height: 100%;
    margin: 1rem;
}
.btn--cards-left {
    display: flex;
    height: 100%;
    margin: 1rem;
}
.btn--locations-right {
    transition: opacity 1s;
    opacity: 1;
}
.btn--locations-left {
    transition: opacity 1s;
    opacity: 1;
}
.btn-disable-locations {
    opacity: .3;
    cursor: default;
}
.btn-disable-locations:hover {
    outline: 0;
    transition: opacity 1s;
}

/* ----- */
/* Grids */
/* ----- */

.grid {
    display: grid;
}
.grid--cols-6 {
    margin: 0 2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
   
}
.grid--clients {
    margin: 0 2rem 5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 8%;
}

/* ----------- */
/* Collapsible */
/* ----------- */
.collapsible {
    cursor: pointer;
}
.collapsible__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.collapsible__heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.7rem;
    font-weight: var(--font-weight-extralight);
    color: var(--color-headings-light);
    opacity: 75%;
}
.icon-collapsible {
    height: 22px;
    width: 22px;
}
.collapsible__chevron {
    content: url("../images/Chevron.svg");
    transform: rotate(90deg);
    margin-top: 3px;
    transition: transform 0.3s;
}
.collapsible__calendar {
    content: url("../images/Calendar.svg");
    transition: transform 0.3s;
}
.collapsible__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.title__border {
    padding-bottom: 12px;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
}
.collapsible--expanded .collapsible__chevron {
    transform: rotate(-90deg);
}
.collapsible--expanded .collapsible__content {
    max-height: 100vh;
    opacity: 1;
}
.collapsible--expanded .collapsible__calendar {
    margin-top: 4px;
}


/* ------------- */
/* Dropdown menu */
/* ------------- */

.dropdown {
    min-width: 15rem;
    position: relative;
    margin: 2.5rem 0;
}
.dropdown-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary-dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 55px;
    padding: 1rem 2rem;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background 0.3s;
}
.dropdown-selected {
    color: var(--color-headings-light);
    font-size: 1.9rem;
    font-weight: var(--font-weight-extralight);
    opacity: .75;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.caret--chevron {
    height: 22px;
    transform: rotate(90deg);
    content: url("../images/Chevron.svg");
    transition: 0.3s;
}
.caret--chevron-rotate {
    transform: rotate(270deg)
}
.caret--calendar {
    display: flex;
    position: absolute;
    right: 0;
    padding-right: 15px;
    height: 22px;
    content: url("../images/Calendar.svg");
    transform: translate(0rem, 0rem);
    transition: 0.3s;
    z-index: 200;
}
.caret--calendar-translate {
    transform: translate(0, 1rem);
}
.menu {
    position: absolute;
    top: 38px;
    width: 100%;
    padding-left: 5rem;
    list-style: none;
    padding: 0;
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: solid 1px #363a43;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    color: var(--color-headings-dark);
    font-size: 1.6rem;
    font-weight: var(--font-weight-light);
    opacity: 0;
    display: none;
    transition: 0.2s;
    z-index: 100;
}
.menu li {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border: solid .5px rgba(0, 0, 0, 0.1);
}
.menu li:hover {
    background: #ebf4f8;
    font-weight: var(--font-weight-regular);
}
.active {
    background: var(--color-secondary-light-blue);
    color: var(--color-accent-total-white);
    font-weight: var(--font-weight-light);
}
.menu .active:hover {
    background: var(--color-secondary-light-blue);
    font-weight: var(--font-weight-light);
}
.menu-open {
    display: block;
    opacity: 1;
}
.dropdown-calendar {
    display: flex;
    position: relative;
    align-items: center;
    height: 55px;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
}
.language-desktop-dropdown {
    position: relative;
}
.language-desktop-select {
    display: flex;
    cursor: pointer;
}


/* -------------- */
/* Navigation Bar */
/* -------------- */

/* ::-webkit-scrollbar {
    display: none;
} */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 300;
}
.navbar.active {
    height: 100vh;
    overflow-y: scroll;
    transition: .5s ease height;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.nav {
    background-color: var(--color-primary-dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
    align-items: center;
    border-bottom: solid 1px var(--color-primary-dark-blue);
}
.nav__logo {
    width: 105px;
    margin-top: 1.4rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 30% 60%, 30% 62%, 0% 62%);
    filter: saturate(0) brightness(10);
}
.icon-signin__hidden {
    opacity: 0; /*When activate this icon in the future, delete this styile*/
} 
.hamburger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 20px;
    margin-left: 2rem;
}
.hamburger-line {
    width: 21px;
    height: 2px;
    background-color: var(--color-accent-total-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.hamburger__background {
    position: absolute;
    width: 21px;
    height: 20px;
    transform: translateY(-50%);
    opacity: .5;
}
.icon-signin {
    width: 16px;
    height: 17px;
    fill: var(--color-accent-total-white);
    margin-right: 2rem;
}
.collapsible__menu-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 100%;
    transition: .5s ease right;
}
.collapsible__menu-content.active {
    height: 100vh;
    overflow: scroll;
    right: 0;
}
.nav__menus {
    width: 100%;
    padding: 0 2rem;
    background-color: var(--color-accent-total-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.nav__list {
    border-bottom: 1px solid rgba(0, 32, 90, .4);
    padding-bottom: .5rem;
}
.menu__text-1 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-medium);
}
.nav__item-border {
    border-bottom: 1px solid rgba(0, 32, 90, .15);
}
.menu__text-2 {
    font-size: 1.6rem;
    font-weight: var(--font-weight-regular);
    margin-top: 5px;
}
.company__mobile-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.company__mobile-selected {
    color: var(--color-headings-dark);
}
.company__mobile-menu {
    margin-left: 3rem;
}
.company__mobile-items {
    margin-top: 3rem;
}
.company__mobile-items a {
    color: var(--color-headings-dark);
}
.company__mobile-items a:visited {
    color: var(--color-headings-dark);
}
.nav__item-mobile {
    display: block;
}
.nav__item-desktop {
    display: none;
}
.nav__item {
    padding: 3rem 0;
}
.nav__item > a,
.navBar-title,
.selected-language-mobile {
    color: var(--color-headings-dark);
}
.mobile-help-direction {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hamburger__line-1 {
    position: absolute;
    top: 32px;
    transform: translateY(-10px);
    transition: ease transform 1.2s, top 1.2s;
}
.hamburger__line-2 {
    transform: translateY(-1px);
    transition: ease opacity 1.2s, width 1.2s;
}
.hamburger__line-3 {
    position: absolute;
    top: 32px;
    transform: translateY(6px);
    transition: ease transform 1.2s, top 1.2s;
}
.hamburger-icon.active .hamburger__line-1 {
    top: 32px;
    position: absolute;
    transform: rotate(225deg);
    transition: ease transform 1.2s, top 1.2s;
}
.hamburger-icon.active .hamburger__line-2 {
    opacity: 0;
    width: 10.5px;
    transform: translateY(-2px);
    transition: ease opacity 1.2s, width 1.2s;
    position: absolute;
}
.hamburger-icon.active .hamburger__line-3 {
    top: 32px;
    position: absolute;
    transform: rotate(315deg);
    transition: ease transform 1.2s;
}
.hamburger-icon.active .hamburger__background {
    transform: translateY(calc(-50% - 1px));
}
.signin__desktop {
    display: none;
}
.language__link {
    display: flex;
    align-items: center;
}
.language-mobile {
    align-items: flex-start;
    flex-direction: column;
}
.language-options {
    margin-left: 3rem;
    margin-top: 1.5rem;
}
.language-options a,
.language-options a::selection,
.language-options a:visited {
    color: var(--color-headings-dark);
}
.language-options__size {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.language-desktop {
    display: none;
}
.dropdown-language-mobile-upper {
    display: flex;
    align-items: center;
    width: 100%;
}
.dropdown-language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.caret--chevron-mobile {
    margin-right: 1rem;
    height: 15px;
    transform: rotate(90deg);
    content: url("../images/Chevron.svg");
    transition: all .5s;
}
.language-icon {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
}
.language__limit {
    margin-right: 2rem;
}
.usa--flag {
    display: block;
    height: 100%;
    transform: translateX(-3px);
}
.flag {
    display: block;
    height: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
}
.help__link {
    display: flex;
    align-items: center;
}
.help-icon {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
    opacity: .95;
}
.help__limit {
    margin-right: 2rem;
}
.help--symbol {
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-accent-total-white);
    background-color: var(--color-secondary-light-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: var(--font-weight-semibold);
}

/* --------------- */
/* Locations Hover */
/* --------------- */
.locations-ribbon {
    display: none;
}

/* ------------- */
/* Company Hover */
/* ------------- */
.company-ribbon {
    display: none;
}

/* ------------- */
/* Title Section */
/* ------------- */
.title-section {
    padding-top: 64.8px;
    width: 100%;
    background-color: var(--color-accent-light-grey);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.background__about-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: auto;
    background-image: url(/images/Background_Page_Title.jpg);
    background-repeat: repeat;
    background-position: center;
}
.about-title {
    text-align: center;
    font-size: 4.5rem;
    margin: 0;
    padding-bottom: .25rem;
    font-weight: var(--font-weight-extralight);
}

/* ---------------- */
/* Waitlist Section */
/* ---------------- */
.contact-section {
    padding: 64.8px 0 5rem;
    width: 100%;
}
.contact-container {
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    max-width: 500px;
    margin: 4rem auto 0;
}
.background__contact-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: auto;
}
.contact-title {
    text-align: left;
    font-size: 4.5rem;
    margin: 0;
    color: var(--color-headings-accent);
    font-weight: var(--font-weight-extralight);
}
.contact-text {
    font-size: 1.4rem;
    color: var(--color-headings-light);
    font-weight: var(--font-weight-light);
    line-height: 2.4rem;
    margin-top: .5rem;
    opacity: .7;
    margin-bottom: 2rem;
}
.contact-text__span {
    font-size: 1.4rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-headings-dark);
}
.contact-text-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    line-height: 2.4rem;
    margin-top: 0;
    margin-bottom: 0.3rem;
}
form {
    line-height: 1.5;
    margin-top: 2rem;
}
label {
    display: block;
    color: var(--color-headings-light);
    font-size: 1.3rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: .6rem;
    opacity: .85;
}
input,
textarea {
    color: white;
    background-color: var(--color-primary-dark-blue);
    font-size: 1.6rem;
    font-weight: var(--font-weight-light);
    line-height: 1.5;
}
input[type='text'],
input[type='email'],
input[type='tel'],
select[id='location'],
select[id='service'],
select[id='duration'],
select[id='vehicle'],
textarea[id='message'] {
    border: 1px solid #8b8b8b;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1rem 1.5rem;
    width: 100%;
    transition: border 0.15s;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
select[id='location']:focus,
select[id='service']:focus,
select[id='duration']:focus,
select[id='vehicle']:focus,
textarea[id='message']:focus {
    border: 1px solid white;
    outline: 0;
}
input::placeholder {
    color: #575757;
    font-size: 1.6rem;
    font-weight: var(--font-weight-medium);
}
.full-name {
    display: flex;
    flex-direction: column;
}
.form-group {
    margin-bottom: 2.3rem;
}
.form-message {
    margin-top: 7.3rem;
}
select {
    color: var(--color-headings-light);
    font-size: 1.6rem;
    font-weight: var(--font-weight-light);
    background-color: #02111b;
}
.location-form {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}
.location-form select::-ms-expand {
    display: none; /*To remove button from IE11*/
} 
.location-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    float: right;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}
.location-form:after {
    content: '›';
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-accent-light-grey);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 1.5rem;
    top: 35px;
    opacity: .85;
    position: absolute;
    pointer-events: none;
}
button {
    border: 0;
    outline: 0;
}

/* ----------------------- */
/* ----------------------- */
/* ----------------------- */
/* ------Media Query------ */
/* ----------------------- */
/* ----------------------- */
/* ----------------------- */


@media screen and (max-width: 380px) {

    /* ----- */
    /* Grids */
    /* ----- */

    .grid--cols-6 {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    .grid--clients {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem 20%;
    }

    /* ------- */
    /* Buttons */
    /* ------- */
    .btn--primary.btn--availability {
        padding: 1.7rem 0rem;
    }
    .footer-contact__text {
        font-size: 4vw;
    }
}

@media screen and (min-width: 768px) {

    /* ----- */
    /* Grids */
    /* ----- */
    
    .grid--cols-3 {
        gap: 0 2rem;
        grid-template-columns: repeat(2, 1fr);
    }   
    .grid--cols-6 {
        margin: 0 4rem;
        grid-template-columns: repeat(6, 1fr);
    }
    .grid--clients {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem 2rem;
    }

    /* -------------- */
    /* Navigation Bar */
    /* -------------- */

    .hamburger-icon {
        margin-left: 4rem;
    }
    .nav__menus {
        padding: 0 4rem;
    }
}


@media screen and (min-width: 1024px) {

    /* ---------- */
    /* Typography */
    /* ---------- */

    body {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 5.5rem;
        margin-bottom: 3.4rem;
    }

    h2 {
        margin-top: 4rem;
        margin-bottom: 6.9rem;
    }

    h3 {
        font-size: 4.5rem;
        margin-top: 8.5rem;
        margin-bottom: 5.5rem;
    }
    h4 {
        font-size: 1.7rem;
    }

    /* ----- */
    /* Links */
    /* ----- */

    .link-arrow {
        font-size: 1.7rem;
    }

    /* ------- */
    /* Buttons */
    /* ------- */

    .btn {
        font-size: 1.5rem;
    }
    .btn-disable {
        opacity: 0;
    }
    .btn--payments {
        margin-left: 5rem;
    }
    .btn--deals {
        margin-left: 7rem;
    }

    /* ----- */
    /* Grids */
    /* ----- */

    .grid--cols-3 {
        gap: 0 5%;
        grid-template-columns: repeat(3, 1fr);
    }   
    .grid--cols-6 {
        margin: 0 6rem;
        gap: 1rem 4rem;
    }
    .grid--clients {
        margin: 2rem 6rem 9rem;
        gap: 1rem 4rem;
    }

    /* ------------- */
    /* Dropdown menu */
    /* ------------- */

    .menu {
        width: calc(100% - 2rem);
    }

    /* -------------- */
    /* Navigation Bar */
    /* -------------- */
    
    .nav__logo {
        margin-top: 1rem;
    }
    .hamburger-icon {
        display: none;
    }
    .icon-signin__hidden {
        display: none;
    }
    .collapsible__menu-content.active {
        height: auto;
        overflow: unset;
    }
    .nav__list {
        width: auto;
        display: flex;
        align-items: center;
        border: 0;
        font-size: 1.5rem;
    }
    .collapsible__content {
        width: auto;
        display: flex;
        max-height: 100%;
        opacity: 1;
    }
    .collapsible__menu-content {
        width: auto;
        display: flex;
        flex-direction: row;
        position: inherit;
        right: 0;
        max-height: 100%;
        padding: 0;
        opacity: 1;
    }
    .menu__text-1 {
        margin: 0;
        padding-bottom: 0;
        font-size: 1.5rem;
        font-weight: var(--font-weight-medium);
    }
    .menu__text-2 {
        margin: 0;
        padding-bottom: 0;
        font-size: 1.3rem;
        font-weight: var(--font-weight-regular);
    }
    .nav {
        padding: 0rem 6rem;
    }
    .menu-1 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .nav__item-border {
        border-bottom: none;
    }
    .menu__selected {
        display: flex;
        align-items: center;
        height: 69px;
        border-top: solid 2px rgba(0, 0, 0, 0);
        border-bottom: solid 2px var(--color-accent-sky-blue);
    }
    #bar__float {
        display: flex;
        align-items: center;
    }
    .menu__hover {
        display: flex;
        align-items: center;
        height: 69px;
    }
    .menu__hover:hover {
        border-top: solid 2px rgba(0, 0, 0, 0);
        border-bottom: solid 2px var(--color-accent-sky-blue);
    }
    .nav__item-mobile {
        display: none;
    }
    .nav__item-desktop {
        display: block;
        cursor: pointer;
    }
    .menu-2 {
        padding-left: 3rem;
    }
    .nav__menus {
        justify-content: space-between;
        width: calc(100vw - 265px);
        background-color: var(--color-primary-dark-blue);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .nav__item {
        display: flex;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
        height: 69px;
    }
    .nav__item > a,
    .navBar-title,
    .dropdown-language > a {
        color: var(--color-headings-light);
    }
    .menu-language {
        position: absolute;
        top: 60px;
        width: 110%;
        list-style: none;
        padding: .2rem;
        background: #fff;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: solid 1px #363a43;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        color: var(--color-headings-dark);
        font-size: 1.3rem;
        font-weight: var(--font-weight-light);
        opacity: 0;
        display: none;
        transition: 0.2s;
        z-index: 100;
    }
    .menu-open-language {
        display: block;
        opacity: 1;
    }
    .menu-language li {
        display: flex;
        padding: .6rem .5rem;
    }
    .menu-language li:hover {
        background-color: #ebf4f8;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        font-weight: var(--font-weight-regular);
    }
    .menu-language li a:visited {
        color: var(--color-headings-dark);
    }
    .caret--chevron-mobile {
        display: none;
    }
    .signin__desktop {
        display: flex;
        align-items: center;
    }
    .signin__limit {
        padding: 0.05rem;
        margin-right: .9rem;
    }
    .language-mobile {
        display: none;
    }
    .language-desktop {
        display: flex;
    }
    .language-icon {
        height: 16px;
        width: 16px;
    }
    .dropdown-selected-language {
        font-size: 1.3rem;
        font-weight: var(--font-weight-regular);
        color: var(--color-headings-light);
    }
    .language__limit {
        margin-right: 1.2rem;
    }
    .language__link {
        margin-right: -.5rem;
    }
    .help-icon {
        display: none;
    }

    /* --------------- */
    /* Locations Hover */
    /* --------------- */
    .locations-ribbon {
        display: none;
        position: absolute;
        left: 0;
        top: 69.99px;
        background: linear-gradient(rgba(3, 20, 31, 1) 70%, rgba(3, 20, 31, 0));
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        height: 350px;
    }
    .location-ribbon-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1400px;
        height: 220px;
        margin: 0 auto;
    }
    .hover-location:hover .locations-ribbon {
        display: flex;
    }
    .locations-container {
        display: flex;
        position: relative;
        align-items: center;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .location-container-block {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        transition: left 1s ease;
    }
    .location-container-one {
        left: 0%;
    }
    .location-container-two {
        left: 100%;
    }
    .location__ribbon-title {
        font-weight: var(--font-weight-extralight);
        color: var(--color-headings-accent);
        text-align: center;
        width: 270px;
        min-width: 270px;
        margin: 0;
    }
    .locations-inner-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .location__ribon-info {
        padding: 0 2rem;
        width: 240px;
    }
    .location__info-address {
        font-size: 1.3rem;
        font-weight: var(--font-weight-light);
        color: var(--color-headings-light);
    }
    .location__info-phone {
        font-size: 1.4rem;
        font-weight: var(--font-weight-light);
        color: var(--color-headings-light);
    }
    .location__info-phone span {
        font-weight: var(--font-weight-regular);
    }
    .location__ribbon-picture {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 260px;
        height: 150px;
        margin: 0 5%;
        overflow: hidden;
    }
    .picture__location-one {
        width: 108%;
    }
    .location__ribbon-bar {
        background-color: var(--color-accent-total-white);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 75px .5px;
        opacity: .5;
    }
    .location__ribbon-features {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }
    .location__features-text {
        display: flex;
        justify-content: center;
        color: var(--color-headings-light);
        font-size: 1.3rem;
        font-weight: var(--font-weight-light);
        line-height: 2.7rem;
        max-width: 300px;
        opacity: .75;
    }
    .locations-ribbon__nav {
        display: flex;
        position: absolute;
        justify-content: center;
        top: 220px;
        left: 50%;
        transform: translateX(-50%);
    }
    .locations__indicator {
        margin: 0 9px;
        border: 0;
        outline: 1px solid var(--color-accent-sky-blue);
        outline-offset: -1px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 12px;
        height: 12px;
        background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;  
    }
    .locations__indicator.locations-current-slide {
        background-color: var(--color-accent-sky-blue);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        transition: background-color 1s;
    }

    /* ------------- */
    /* Company Hover */
    /* ------------- */
    .company-ribbon {
        display: none;
        position: absolute;
        flex-direction: column;
        left: 0;
        top: 69.99px;
        background: linear-gradient(rgba(3, 20, 31, 1) 70%, rgba(3, 20, 31, 0));
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        height: 350px;
    }
    .company-ribbon-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 255px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .hover-company:hover .company-ribbon {
        display: flex;
    }
    .company-container-block{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        margin: 0 6rem;
    }
    .company__ribbon-title {
        font-weight: var(--font-weight-extralight);
        color: var(--color-headings-light);
        text-align: left;
        max-width: 295px;
        margin: 0 8% 0 0;
    }
    .company__ribbon-picture {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 250px;
        height: 150px;
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
    @media screen and (max-width: 1250px) {
        .company__ribbon-picture {
            display: none;
        }
    }
    .picture__staff {
        width: 108%;
    }
    .company__menus {
        display: flex;
        margin: 0 0 0 2rem;
        padding-bottom: .5rem;
    }
    .company__about {
        display: flex;
        flex-direction: column;
        min-width: 150px;
        margin: 0 4rem;
    }
    .company__about-title {
        font-size: 1.5rem;
        font-weight: var(--font-weight-regular);
        color: var(--color-headings-light);
        line-height: 2.7rem;
        margin: 0 0 0rem;
        width: 46px;
        background-image: linear-gradient(#fff 0 0);
        background-position: left bottom;
        background-size: 0% 1px;
        background-repeat: no-repeat;
        transition: background-size 0.3s;
    }
    .company__about-title:hover {
        background-size: 100% 1px;
    }
    .company__items {
        color: var(--color-headings-light);
        font-size: 1.3rem;
        font-weight: var(--font-weight-light);
        line-height: 3rem;
        list-style: none;
        padding-left: 1rem;
        opacity: .75;
    }
    .company__menus-block-two {
        display: flex;
        flex-direction: column;
    }
    .company__contact {
        display: flex;
        flex-direction: column;
        width: 230px;
        margin: 0;
    }
    .company__contact-title {
        font-size: 1.5rem;
        font-weight: var(--font-weight-regular);
        color: var(--color-headings-light);
        line-height: 2.7rem;
        margin: 0 0 0rem;
        width: 57px;
        background-image: linear-gradient(#fff 0 0);
        background-position: left bottom;
        background-size: 0% 1px;
        background-repeat: no-repeat;
        transition: background-size 0.3s;
    }
    .company__contact-title:hover {
        background-size: 100% 1px;
    }
    .company__follow {
        display: flex;
        flex-direction: column;
        width: 200px;
        height: 150px;
        margin: 0 0 0 4rem;
    }
    .company__follow-title {
        font-size: 1.5rem;
        font-weight: var(--font-weight-regular);
        color: var(--color-headings-light);
        line-height: 2.7rem;
        margin: 0 0 1rem;
    }
    .company__items a {
        color: var(--color-headings-light);
        font-size: 1.3rem;
        font-weight: var(--font-weight-light);
        line-height: 3rem;
    }
    .social-items {
        list-style: none;
        padding: 0;
        border-top: solid 1px rgba(255, 255, 255, .15);
        border-bottom: solid 1px rgba(255, 255, 255, .15);
    }
    .social-items a {
        color: var(--color-headings-light);
        font-size: 1.5rem;
        font-weight: var(--font-weight-light);
        line-height: 3rem;
        padding-left: 2rem;
    }
    .social-items-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: .75;
    }
    .social-items-block:hover {
        opacity: .95;
        background-color: rgba(0, 0, 0, .05);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .social-items-instagram {
        border-bottom: solid 1px rgba(255, 255, 255, .15);
    }
    .company__social-icon {
        padding: 4px;
        margin-right: 1rem;
        width: 25px;
        height: 25px;
        opacity: .85;
        filter: invert(1);
    }
    .company__hours {
        display: flex;
        flex-direction: column;
        min-width: 200px;
        margin-left: 0;
    }
    .company__hours-title {
        font-size: 1.5rem;
        font-weight: var(--font-weight-regular);
        color: var(--color-headings-light);
        line-height: 2.7rem;
        margin: 1.5rem 0 0rem;
    }

    /* ---------------- */
    /* Waitlist Section */
    /* ---------------- */   
    .contact-section {
        padding: 70px 0 5rem;
    } 
    .contact-text {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    .contact-text__span {
        font-size: 1.5rem;
    }
    .contact-container {
        padding: 0 6rem;
        margin-top: 6rem;
        max-width: 700px;
    }
    .contact-title {
        font-size: 6rem;
        /* margin-top: 9rem; */
        /* margin-bottom: .5rem; */
    }
    .full-name {
        display: flex;
        flex-direction: row;
    }
    .full-name .form-group {
        width: 100%;
    }
    .full-name .form-group:first-child {
        padding-right: 2rem;
    }
    .contact-block-one {
        width: 500px;
        /* padding-right: 4rem; */
        margin-right: 10%;
        padding-top: 2.5rem;
    }
    .contact-block-two {
        width: 600px;
        /* padding-left: 10rem; */
    }
}
