main {
    margin: 0;
}

/* HERO */

div.hero,
div.hero-mini {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

div.hero {
    height: 60vh;
}

.hero-image {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-tag {
    position: absolute;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-tag strong {
    font-weight: 800;
}

div.hero .hero-tag {
    right: 13%;
    bottom: 13%;
    text-align: right;
    font-size: 2rem;
}

div.hero-mini .hero-tag {
    bottom: 13%;
    font-size: 1.5rem;
    text-align: center;
}

@media (min-width: 600px) {
    div.hero {
        display: flex;
    }

    div.hero-mini {
        display: none;
    }
}

@media (max-width: 600px) {
    div.hero {
        display: none;
    }

    div.hero-mini {
        display: flex;
    }
}

/* Vehicle Name */
div.vehicle-name {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    text-align: center;
}

/* Inspiration Slideshow */

div.slideshow-item>img {
    width: 100%;
    height: 700px;
    object-fit: cover; 
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

div.inspiration-pitch{
    text-align: center;
    margin-top: 100px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

div.inspiration-pitch strong{
    font-weight: 700;
}

div.owl-dots > button:focus{
    outline: none;
}

@media (max-width: 600px) {
    div.slideshow-item>img {
        height: calc(100vw * 0.75);
    }
}

/* Feature Section(s) */

div.feature {
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div.feature > h1{
    font-size: 2.2rem;
}

div.feature-responsive-group{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

div.feature div.slideshow-items{
    order: 1;
    margin-top: 40px;
    width: 100%;
    max-width: 850px;
}

div.feature-pitch{
    order: 2;
    margin-top: 50px;
    font-family: Avenir;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 850px;
}

div.feature-description-container,
div.feature-header-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.feature-description{
    font-size: 1rem;
    text-align: left;
    width: 90%;
}

div.feature-headers{
    display: flex;
    margin-left: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

div.feature-header-row {
    display: flex;
    gap: 13px;
    font-size: 1rem;
    text-align: left;
    transition: 0.18s;
}

div.feature-header-row.highlight{
    color: #F36C3D;
}

div.feature-header-row.highlight > img{
    /* https://angel-rs.github.io/css-color-filter-generator/ */
    filter: brightness(0) saturate(100%) invert(55%) sepia(12%) saturate(4999%) hue-rotate(334deg) brightness(97%) contrast(96%);
}

@media (max-width: 600px) {
    div.feature div.slideshow-items{
        order: 2;
        margin-top: 0;
        max-width: 100vw;
        height: unset;
    }

    div.feature-pitch{
        order: 1;
        margin-top: 40px;
        flex-direction: column;
    }

    div.feature-description-container{
        width: 100%;
    }

    div.feature-description{
        text-align: center;
    }

    div.feature-header-container{
        margin-top: 50px;
        width: 100%;
    }

    div.feature-headers{
        width: 100%;
        margin-left: 0px;
        gap: 0;
    }

    div.feature-header-row{
        background-color: #F36C3D;
        color: white !important;
        width: 100%;
        font-size: 1.12rem;
        font-weight: 300;
        padding: 8px 13px;
        gap: 13px;
        box-sizing: border-box;
    }

    div.feature-header-row:not(.active){
        display: none;
    }

    div.feature-header-row.active > img{
        filter: invert(1);
        width: 6.5px;
    }

    img.slideshow-img {
        width: 100%;
    }
}

/* Specifications */

div.specifications{
    padding-top: 160px;
    text-align: center;
}

div.specification-tabs{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: 'Avenir';
    padding: 0 70px;
    color: #777777;
}

div.specification-tabs div.tab-item{
    padding: 20px 20px;
    cursor: pointer;
}

div.specification-tabs div.tab-item.active{
    font-weight: 700;
    color: #F36C3D;

}

.specification-content {
    margin-block-start: 50px !important;
    background-color: #F8F1E9;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 80px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 40px;
}

.specification-content .section {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    width: 100%;
}

@media (max-width: 600px) {
    div.specification-tabs{
        padding: 0px;
        gap: 10px;
        justify-content: center;
    }

    div.specification-tabs div.tab-item{
        background-color: #F0F0F0;
        flex-grow: 1;
    }

    div.specification-content {
        margin-block-start: 30px !important;
        padding: 40px;
        gap: 40px;
    }

    div.specification-content div.section {
        min-width: unset;
        width: 100%;
    }
}

div.specification-content .section .title{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #F36C3D;
    text-align: start;
    margin-bottom: 20px;
}

div.specification-content .section .row{
    font-family: 'Avenir';
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    padding: 8px 0;
    border-bottom: 1px solid #DFC5A6;
}

div.specification-content .section .row:nth-of-type(2){
    border-top: 1px solid #DFC5A6;
}

div.specification-content .section .topic,
div.specification-content .section .content {
    width: 50%;
    text-align: left;
    font-size: 1rem;
}

div.content-tab.hidden{
    display: none;
}

/* Booking */

div.booking {
    margin-top: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div.booking p.subtext {
    margin-top: 60px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

div.booking p.subtext strong {
    font-weight: 600;
}

.home-action-button-big.check-availability {
    margin-top: 100px;
}