#header_head {
    display: flex;
    align-content: center;
    align-items: baseline;
    justify-content: space-between;
    background-color: rgb(180, 0, 0);
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

::-webkit-scrollbar {
    background-color: rgb(180, 0, 0);
}

body {
    margin: 0%;
    /*background: linear-gradient(180deg, #d00, #500, #000);*/
}

.dual_btn {
    display: flex;
    justify-content: space-evenly;
}

#header_head div {
    width: 50%;
    display: grid;
    margin: 0% 3%;
}

#mobile_nav {
    display: flex;
    padding: 0%;
    justify-content: space-evenly;
    width: 100%;
}

.nav_btn {
    text-decoration: none;
    color: #fff;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.subheader {
    height: 70lvh;
    text-align: center;
    justify-items: center;
    display: grid;
    place-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.white_title {
    padding: 3%;
    color: white;
    font-weight: 700;
    background: #000000c2;
}

.btn_model {
    display: block;
    background-color: #f00;
    color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    text-decoration: none;
    -o-border-radius: 10px;
    padding: 1% 3%;
    border: 3px solid #fff;
    transition: 500ms;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    -ms-transition: 500ms;
    -o-transition: 500ms;
    font-size: large;
}

.btn_model:hover {
    background-color: #fff;
    color: #f00;
    font-size: x-large;
    border: #f00;
    transition: 500ms;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    -ms-transition: 500ms;
    -o-transition: 500ms;
}

.btn_active {
    background-color: grey;
    color: white;
}

.sec_y {
    display: grid;
    margin: 2% 0%;
    height: fit-content;
    align-items: center;
    max-height: max-content;
}

.sec_y h1 {
    text-align: center;
    color: #fff;
}

#header_body {
    width: 100%;
    min-height: 25lvh;
    height: 90lvh;
    max-height: 130lvh;
    background-color: #d00;
    display: grid;
}

.content {
    text-align: center;
}

#header_body .content {
    display: grid;
    align-items: center;
    color: #fff;
    width: fit-content;
    place-content: center;
    justify-self: center;
    align-self: center;
    text-align: center;
    background: #00000090;
    padding: 3%;
    border-radius: 30px;
}

#header_body .dashboard_model {
    display: grid;
    width: 100%;
    min-width: max-content;
    grid-template-columns: 15% 75%;
    justify-content: space-evenly !important;
    align-content: center !important;
}

#mobile_nav {
    display: flex;
    justify-content: inherit;
    width: 100%;
    margin: 0%;
    text-align: center;
}

.sec_x {
    width: 100%;
    height: 100lvh;
    display: flex;
    justify-content: center !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background: #00000048;
}

.sec_x .img_bkg_btn_model {
    width: 50%;
}

.sec_x div {
    width: 100%;
    justify-content: center;
    text-align: center;
    justify-content: center;
    display: grid;
    align-items: center;
}

.sec_x div h1 {
    margin: 0%;
}

.sec_x .content {
    text-align: center;
    background: #000000a6;
    width: 60%;
    display: grid;
    justify-self: center;
    padding: 3%;
    border-radius: 20px;
    color: white;
}

#p1 {}

#p2 {}

#check_menu {
    display: none;
}

.phoneMenu {
    display: none;
}

#p1 {
    background: linear-gradient(90deg, rgba(253, 29, 29, 0.349) 0%, rgba(105, 0, 0, 0.616) 100%), url(../img/car_1.jpg);
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#p2 {
    background: linear-gradient(90deg, rgba(32, 32, 32, 0.349) 0%, rgba(75, 75, 75, 0.616) 100%), url(../img/car_5.jpg);
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sec_x#p3 {}

.static {
    display: flex;
    justify-content: space-around;
    margin: 0%;
    text-align: center;
    height: 30lvh;
    align-items: center;
}

.static div {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    color: white;
}

.sec_x#p4 {}

@media (min-width:1440px) {}

@media (min-width:1025px) and (max-width:1439px) {
    #mobile_nav {
        display: flex;
    }
}

@media (min-width:901px) and (max-width:1024px) {
    #mobile_nav {
        display: none;
        justify-content: inherit;
        width: 100%;
        margin: 0%;
        position: fixed;
        top: 10%;
        background-color: rgb(228, 0, 0);
        z-index: 50;
        left: 0%;
        text-align: center;
    }
    #mobile_nav a {
        display: block;
        padding: 3% 6%;
        background-color: #fff;
        color: #a00;
        border: #500 3px solid;
    }
    #mobile_nav a:hover {
        display: block;
        margin: 3% 6%;
        background-color: #a00;
        color: #fff;
    }
    #check_menu {
        display: block;
        color: #fff;
        background-color: #fff;
    }
    .phoneMenu {
        display: block;
    }
    .subheader {
        min-width: 901px !important;
        width: auto;
        max-width: 1024px !important;
    }
}

@media (min-width:601px) and (max-width:900px) {
    #mobile_nav {
        display: none !important;
        justify-content: inherit;
        width: 100%;
        margin: 0%;
        position: fixed;
        top: 10%;
        background-color: rgb(228, 0, 0);
        z-index: 50;
        left: 0%;
        text-align: center;
    }
    #mobile_nav a {
        display: block;
        margin: 3% 6%;
        background-color: #fff;
        color: #a00;
    }
    #mobile_nav a:hover {
        display: block;
        margin: 3% 6%;
        background-color: #a00;
        color: #fff;
    }
    #check_menu {
        display: block;
        color: #fff;
        background-color: #fff;
    }
    .phoneMenu {
        display: block;
    }
    .static {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin: 0%;
        max-height: max-content;
        text-align: center;
        max-height: max-content;
        height: 30lvh;
        align-items: center;
    }
    .subheader {
        min-width: 601px !important;
        width: auto;
        max-width: 9001px !important;
    }
}

@media (max-width:600px) {
    #mobile_nav {
        justify-content: inherit;
        width: 100%;
        margin: 0%;
        display: none;
        position: fixed;
        top: 10%;
        background-color: rgb(228, 0, 0);
        z-index: 50;
        left: 0%;
        text-align: center;
    }
    #mobile_nav a {
        display: block;
        padding: 3% 6%;
        background-color: #fff;
        color: #a00;
    }
    #mobile_nav a:hover {
        display: block;
        margin: 3% 6%;
        background-color: #a00;
        color: #fff;
    }
    #check_menu {
        display: grid;
        justify-self: right;
        color: #fff;
        background-color: #fff;
    }
    .phoneMenu {
        display: block;
    }
    .static {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin: 0%;
        max-height: max-content;
        text-align: center;
        height: 30lvh;
        align-items: center;
    }
    .subheader {
        width: 1024px !important;
    }
}