*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   font: sans-serif; 
}
.container{
    max-width: 1160px;
    margin: 0 auto;
}
.navbar{
    width: 100%;
    display: flex;
    height: 100px;
    z-index: 1;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 120px;
    /* background-color: blue; */
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}
.nav-left{
    width: 800px;
    height: 120px;
    display: flex;
    gap: 30px;
}
.nav-left header{
    width: 100px;
}
header img{
    width: 70px;
    height: 100px;
    object-fit: contain;
}
.navlinks{
    display: flex;
    gap: 10px;
}
.navlinks ul{
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
}
.navlinks li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}
.navlinks li a:hover{
    text-decoration: underline;
    color: #ff0000;
}
.nav-right{
    width: 300px;
    height: 60px;
    align-items: center;
    display: flex;
}
.nav-right p{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.menue{
    display: flex;
    gap: 5px;
    cursor: pointer;
    flex-direction: column;
}
.bar{
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, red, blue);
}
.nav-active{
    display: block;
}
@media screen and (max-width:768px) {
    .navbar{
        display: flex;
        width: 100%;
        /* max-width: 0; */
        left: 0;
        height: 10vh;
        /* background: linear-gradient(180deg, rgb(24,29,36), rgb(255,20,20)); */
        /* background-color: #FFF; */
        justify-content: space-between;
        align-items: center;
        gap: 190px;
        top: 90px;
        padding: 10px;
        z-index: 1000;
    }
    .container{
        max-width: 0;
        margin: 0;
    }
    .navlinks{
        width: 100%;
        position: absolute;
        right: 0px;
        height: 90vh;
        gap: 40px;
        background: linear-gradient(120deg, rgb(24,29,36), rgb(255,20,20));
        opacity: 0.9;
        display: flex;
        flex-direction: column;
        align-items: center;
        left: 20px;
        right: 0;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.7s ease-in-out;
    }
    .navlinks ul{
        flex-direction: column;
    }
    .menue{
        display: flex;
    }
    .nav-active {
        display: flex;
    }
    .nav-links.hidden{
        transform: translateX(0);
    }
    .nav-right{
        display: none;
    }
}
/* hero-section */
.hero-container{
    width: 100%;
    z-index: -1;
    height: 700px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    background-repeat: no-repeat;
    background-image: url(./images/breadcrumb.jpg);
}
.hero-item{
    width: 300px;
    height: 200px;
    margin-top: 150px;
    margin-left: 30px;
}
.hero-item h1{
    color: #fff;
    font-size: 3.825rem;
}
.hero-item .hero-link{
    display: flex;
    gap: 7px;
    padding-top: 10px;
}
.hero-link a{
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
}
.hero-link a:hover{
    text-decoration: underline;
}
.hero-link h5{
    color: #fff;
}
.hero-link p{
    color: #fff;
    font-size: 1.15rem;
    text-decoration: underline;
}
/* CONTENTS SECTION */
.contents-container{
    width: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    display: flex;
}
.contents-item{
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 350px;
}
.contents{
    display: flex;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}
.contents img{
    width: 350px;
    height: 250px;
    object-fit: cover;
    position: absolute;
}
.contents-item a{
   text-decoration: none;
}
.contents-item h3{
    text-transform: uppercase;
    color: rgb(24,29,36);
    font-size: 1.25rem;
    font-weight: bold;
}
.contents-item h3:hover{
    color: #ff0000;
}
.contents-item p{
    text-transform: uppercase;
    font-size: 1.1rem;
    color: rgb(24,29,36);
}
.content-button{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    content: '';
    justify-content: center;
    align-items: center;
    display: flex;
    transition: 0.3s ease-in;
    text-align: center;
    position: relative;
    opacity: 0;
    background-color: rgb(24,29,36);
}
.content-button button{
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.contents-item .content-button:hover{
    opacity: 1;
}
@media screen and (max-width:768px) {
    .contents-container{
        flex-direction: column;
    }
    .contents-item{
        width: 90%;
    }
    .contents{
        width: 90%;
    }
    .contents img{
        width: 80%;
    }
}
/* CONTENTS SECTION END */
/* footer */
.footer-container{
    width: 100%;
    padding: 10px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #191D23;
}
.nav-footer{
    width: 100%;
    max-width: 1280px;
    height: 70px;
    border-bottom: 1px solid #2F3337;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.nav-footer .navfooter-links{
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-footer .navfooter-links a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.nav-footer .navfooter-links a:hover{
    color: #ff0000;
}
.footer-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding-bottom: 50px;
}
.footer-item img{
    width: 150px;
}
.footer-item h4{
    text-transform: uppercase;
    color: #71677b;
}
.footer-item p{
    color: #fff;
    font-size: 0.875rem;
}
.footer-end{
    padding: 30px;
    color: #71677b;
    align-items: center;
    justify-content: center;
    display: flex;
}
@media screen and (max-width:768px) {
    .nav-footer{
        display: none;
    }   
}
/* footer end */