:root{
    --orange:##ff7300
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    text-transform: .2s linear;
}

html{
    font-size: 62.5%;
    scroll-behavior:smooth;
    scroll-padding-top: 6 rem;
    overflow-x: hidden;
}
/* dari sini */
section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background-color: rgba(225, 51, 153, .05);
}
.heading span{
    color: #ff6a00
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: 0.9rem 3.5rem ;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover{
    background: #ff6a00;   
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
}
 

/* sampe sini */
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
}
header .logo{
    font-size: 3rem;
    color: #333

}
header .logo span{
    color: #ff6a00

}
header .navbar a{
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
}
header .navbar a:hover{
    color: #000000
}
header .icons a{
    font-size: 2.5rem;
    color: #333;
    margin-left: 1.5rem;
}
header .icons a:hover{
    color: #ff6a00;
}

header #toggler{
    display: none;
}
header .fa-bars{
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: .1rem solid rgba(0, 0, 0, 0.3);
    display: none;
}
.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url(images/dashbord.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 50rem;
}
.home .content h3{
    font-size: 6rem;
    color: #000000;
}

.home .content span{
    font-size: 3.5rem;
    color: var(--orange);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p{
    font-size: 1.5rem;
    color: #000000;
    padding: 1rem 0;
    line-height: 1.5;
}

.about .row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.about .row .img{
    flex: 1 1 40rem;
    position: relative;
}

.about .row .video-container img{
    width: 100%;
    border: 0.5rem solid #ffa600;
    border-radius: 5rem;
    box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, .1);
    height: 100%;
    object-fit: cover;
}

.about .row .content{
    flex: 1 1 40rem;
}

.about .row .content h3{
    font-size: 3rem;
    color: #000000;
}

.about .row .content p{
    font-size: 1.5rem;
    color: #000000;
    padding: 5rem 0;
    padding-top: 1rem;
    line-height: 1.5rem;
}

/* icons */

.icons-container{
    background-color: #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{
    background-color: #fff;
    border: 1rem solid rgba(0, 0, 0, .1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 25rem;
    cursor: pointer;
}


.icons-container .icons img{
    height: 5rem;
    margin-right: 2rem;
}
.icons-container .icons a{
    color: #ff6a00;
}

.icons-container .icons h3{
    padding-bottom: 2rem;
    font-size: 2rem;

}
.icons-container .icons span{
    color: #555;
    font-size: 1.5rem;
}

.btn-satu{
    display: inline-block;
    background: #ffffff;
    color: #492d2d;
    cursor: pointer;
    font-size: 2rem;
}

.btn-satu:hover{
    color: #080606;
    font-weight: bold;
    font-size: 1.6rem;
}
/* ini product */

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border-radius: 1rem;
    border: .2rem solid rgba(0, 0, 0, .1);
    position: relative;
}

.products .box-container .box .classdiscount{
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .7rem 1rem;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    background-color: #ffa600;
    z-index: 1;
    border-radius: 5rem;
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-top:.1 rem;
    overflow: hidden;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box:hover .image img{
    transform: scale(0.95);
}

.products .box-container .box .image .icons{
    position: absolute;
    bottom: -7rem;
    left: 0;
    right: 0;
    top: rem;
    display: flex;
}

.products .box-container .box:hover .image .icons{
    bottom: 0;
}

.products .box-container .box .image .icons a{
    height: 5rem;
    line-height: 5rem;
    font-size: 1.2rem;
    width: 50%;
    background: #ff6a00;
    color: #fff;
}
.products .box-container .box .image .icons .cart-btn{
    border-left: .1rem solid #a8a8a8;
    border-right: .1rem solid #a8a8a8;
    width: 100%;
}

.products .box-container .box .image .icons a:hover{
    background: #8f8f8f;
    color: #eee;
}
.products .box-container .box .content{
    padding:2rem;
    text-align: center;
}
.products .box-container .box .content h3{
    font-size: 2.5rem;
    color: #333;
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: #ff6a00;
    font-weight: bolder;
    padding-top: 1rem;
}

.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color: #999
}

/* review */

.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    position: relative;
    border: .5rem solid #ffa60069
}

.review .box-container .box .fa-quote-right{
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 6rem;
    color: #b1b1b146;
}

.review .box-container .box .stars i{
    color: #ffa600;
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.review .box-container .box .p{
    color: #999;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top: 3rem;
}

.review .box-container .box .user span{
    font-size: 1.1rem;
    color: #ff0000;
}

.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.review .box-container .box .user img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.review .box-container .box .user h3{
    font-size: 1.5rem;
    color: #000000;
}

.contact .row{
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 1.5rem;
    align-items: center;
}

.contact .row form{
    flex: 1 1 40rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border: 1rem solid rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: .5rem;
    background-repeat: repeat-y;

}

.contact .row .image{
    flex: 1 1 40rem;
}

.contact .row .image img{
    width: 100%;

}

.contact .row form .box{
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
    border: .1rem solid rgba(0, 0, 0, .1);
    border-radius: .5rem;
    margin: .8rem 0;
    width: 100%;
}

.contact .row form .box:focus{
    border-color: #ff6a00;
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
}

/* footer */

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: left;

}
.footer .box-container .box{
    flex: 1 1 25rem;
}

.footer .box-container .box h3{
    color: #333;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: blox;
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a:hover{
    color: #ff6a00;
    text-decoration: underline;
    font-size: 1.6rem;
}

.footer .box-container .box img{
    margin-top: 1rem;
    display: flex;
    height: 4rem;
    width: 100%;

}

.footer .credit{

    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
    border-top: 1rem solid rgba(0, 0, 0, .1);
    text-align: center;
    background-color: #333;
    width: 100%;
    left: 0;
    bottom: 0;
    position: relative;
}

.footer .credit span{
    color: #ff6a00;
    margin: 0;
}

/* car shopping */






























/* media queries */


@media (max-width: 991px) {
    html{
    font-size: 55%; 
    }

    header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
    
    .home{
        background-position: center;
    }

}

    @media (max-width: 768px){
    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: absolute;
        width: 240px;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.774);
        height: 100vh;
        clip-path: polygon(0 0,100% 0, 0 0);
    }

    header #toggler:checked ~ .navbar{
        clip-path: polygon(0 0,100% 0, 100% 100%, 0% 100%);
    }
    header .navbar a{
        margin: 1rem;
        padding: 1rem;
        color: #fff;
        background: #ff8e3d;
        border: .5rem solid rgba(29, 14, 3, 0.1);
        display: block;
        text-align: center;
        margin-bottom: 20px;
        border-radius: 2rem;
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }




}

    @media (max-width: 450px) {
        html{
        font-size: 50%;
        }
    
        header{
            padding: 2rem;
        }

}