/* fonts */
@font-face {
    font-family: 'Louis-Bold-Italic';
    src: url('../fonts/Louis-BoldItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Louis-Italic';
    src: url('../fonts/Louis-Italic.ttf') format('truetype');
}

/* general style */
body {
    margin: 0;
}

/* Style Footer */
.foot {
    background-color: #e6e6e6;
    overflow: auto;
}
.moto{
    text-align: right;
    padding: 0.5rem;
    font-family: "Louis-Bold-Italic";
}
.moto span:nth-child(2) {
    color: #d59700;
}
.moto span {
    text-transform: uppercase;
    color: #393939;
    font-size: 1rem;
}
.moto::after{
    content: 'TM';
    display: inline-block;
    color: #393939;
    font-size: 0.5rem;
    padding-bottom: 0.5rem;
    vertical-align: bottom;
}
.copyright-2{
    margin-top:0;
    font-size:0.75rem;
    text-align: right;
    color: #393939;
    padding-right: 0.625rem;
}
.copyright{
    text-align: right;
    color: #393939;
    font-size: 1rem;
    padding: 0.2rem 0.2rem 0rem;
    border-top: 2px solid rgba(#393939, .5);
}

/* Style Responsive Footer */
@media only screen and (max-width: 1024px) {
    
}

/* Style Header */
.head {
    background-color: #e6e6e6;
    height: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    max-height: 80%;
    padding: 0 1rem;
}
.logo__chev{
    border-right: 2px solid rgba(57,57,57, 0.25) !important;
}

/* Style Responsive Header */
@media only screen and (max-width: 600px) {
    
}
@media only screen and (min-width: 1024px) {
    .head {
        padding: 0 0rem;
        justify-content: flex-start;
            
    }
}

/* Style Hero */
.hero {
    position: relative ;
    background-image: url(../images/m-bg.jpg);
    background-size: cover;
    height: 133.8vw;
    overflow: auto;
}
.hero::after{
    content: "";
    display: block;
    width: 95vw;
    height: 124.7199vw;
    background-image: url(../images/m-car.png);
    background-size: cover;
    position: absolute;
    bottom: 2.3125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hero h1{
    font-size: 2.3125rem;
    font-family: "Louis-Bold-Italic";
    color: #fff;
    margin: 1.875rem 1.25rem;
    width: 18.75rem;
}
/* Style Responsive Hero */
@media only screen and (max-width: 600px) {
    
}
@media only screen and (min-width: 1024px) {
    .hero {
        background-image: url(../images/d-bg.jpg);
        height: 48.355vw;    
    }
    .hero h1{
        font-size: 3.75rem;
        margin: 3.75rem auto;
        width: 46.25rem;
    }
    .hero span {
        display: block;
        text-align: right;
    }
    .hero::after{
        background-image: url(../images/d-car.png);
        width: 90vw;
        height: 36.044vw;
        bottom: 1.875rem;

        
    }
}
/* Style Menu */
.menu{
    font-family: "Louis-Italic";
    text-transform: uppercase;
}
.menu h2 {
    font-size: 0.875rem;
    background-color: #d59700;
    color: #393939;
    margin: 0;
    text-align: center;
    padding: 0.9375rem;
}
.menu .options {
    padding: 0.625rem 0rem;
    background: #fff;
    
}
.menu .options a {
    display: block;
    font-size: 0.875rem;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0.625rem;
    text-decoration: none;
}

/* Style Responsive Menu */
@media only screen and (max-width: 600px) {
    
}
@media only screen and (min-width: 1024px) {
    .menu{
        position: absolute;
        top: 18.75rem;
        right: 34.375rem;
        width: 16.875rem;
    }
    .menu::before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0.875rem;
        background-color: #d59700;
        -webkit-transform: skewX(-30deg);
        transform: skewX(-30deg);
        width: 100%;
        height: 3rem;
    }
    .menu h2{
        background-color: initial;
        position: relative;
        cursor: pointer;
    }
    .menu h2::before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: -4.875rem;
        background-color: #ffb709;
        -webkit-transform: skewX(-30deg);
        transform: skewX(-30deg);
        width: 4.0625rem;
        height: 3rem;
    }
    .menu h2::after{
        content: "";
        display: block;
        position: absolute;
        top: 1.5rem;
        right: -3.1875rem;
        border-top: 0.375rem solid #393939;
        border-left: 0.375rem solid transparent;
        border-right: 0.375rem solid transparent;
        
    }
    .menu .options{
        overflow: hidden;
        display: none;
        box-shadow: 0 1.25rem 1.25rem rgb(0 0 0 / 50%);
        opacity: 0;
        -webkit-transform: translateY(-50%) scaleY(0);
        transform: translateY(-50%) scaleY(0);
        transition: opacity .5s,-webkit-transform .5s;
        transition: transform .5s,opacity .5s;
        transition: transform .5s,opacity .5s,-webkit-transform .5s;
    }
    .menu .options.open {
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1);
        transform: translateY(0) scaleY(1);
        display: block;
    }
    .menu .options a:hover{
        background: linear-gradient(white,#e6e6e6);
        text-decoration: underline;
        
    }
}
