*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: sans-serif;
}
:root{
    --primary-color: rgb(25,29,35);
    --secondary-color: rgb(255,0,0);
}
.container{
    max-width: 1280px;
    margin: 0 auto;
}
.nav{
    width: 100%;
    height: 130px;
    z-index: 1000;
    /* margin-left: 30px; */
    position: absolute;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 10px;
}
.nav-left{
    width: 800px;
    height: 120px;
    display: flex;
    gap: 20px;
}
.nav-left header{
    width: 200px;
}
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;
}
/* hero section */
.hero-container{
    width: 100%;
    height: 700px;
    z-index: -1;    
    align-items: center;
    /* justify-content: first-baseline; */
    display: flex;
    padding: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/breadcrumb.jpg);
}
.hero-item{
    width: 300px;
    height: 200px;
    margin-top: 150px;
}
.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;
}
/* hero section end */
/* options section */
.options-container{
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.options-item{
    width: 400px;
    height: 400px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.options-item img{
    width: 350px;
    height: 200px;
    object-fit: cover;
}
.options-item h4{
    color: #ff0000;
    font-size: 1.5rem;
    text-transform: uppercase;
    width: 200px;
    text-align: center;
}
@media screen and (max-width:768px) {
    .options-container{
        flex-direction: column;
    }
    .options-item{
        width: 80%;
        height: auto;
    }
}
/* options section end */
/* services section */
.services-container{
    width: 100%;
    display: flex;
    background-color: rgb(247,240,236);
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services-item{
    display: flex;
    width: 95%;
    height: 250px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.services-items{
    width: 700px;
    height: 200px;
}
.services-items h1{
    font-size: 3.375rem;
    width: 700px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}
.services-items1{
    width: 700px;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.services-items1 h6{
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.125rem;
    line-height: 26.91px;
    width: 550px;
    letter-spacing: 0.3px;
}
.services-items1 p{
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 26px;
}
.services-items1 button{
    margin: 0 auto;
    display: flex;
    background-color: #000;
    width: 150px;
    height: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    justify-content: center;
    align-items: center;
}
.services-items1 button:hover{
    border: 1px solid #ff0000;
    color: #ff0000;
}
@media screen and (max-width:768px) {
    .services-item{
        flex-direction: column;
        height: auto;
    }
    .services-items{
        width: 90%;
        height: auto;
    }
    .services-items1{
        width: 90%;
        height: auto;
    }
    .services-items h1{
        width: 100%;
        font-size: 2rem;
    }
    .services-items1 h6{
        width: 100%;
        font-size: 1rem;
    }
}
/* services section end */
/* amenites section */
.amenities-container{
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    justify-content: center;
    background-color: rgb(247,240,236);
    align-items: center;
    gap: 20px;
}
.amenities-item{
    width: 400px;
    height: 250px;
    justify-content: center;
    display: flex;
    padding: 10px;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
}
.amenities-item .amenities-icon{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.amenities-item .amenities-icon:hover{
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
}
.amenities-item h3{
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 500;
}
.amenities-item p{
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 100;
    line-height: 26px;
    width: 300px;
}
@media screen and (max-width:768px) {
    .amenities-container{
        flex-direction: column;
        display: flex;
    }
    .amenities-item{
        width: 90%;
    }
    .amenities-item p{
        width: 90%;
    }
}
/* amenities section end */
/* slider section */
.slider-container{
    width: 100%;
    padding-top: 100px;
    gap: 10px;
    background-color: rgb(247,240,236);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-item{
    width: 600px;
    height: 600px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.slider-item img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.slider-info{
    width: 450px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.slider-info h6{
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}
.slider-item p{
    line-height: 32px;
    font-size: 1rem;
    color: var(--primary-color);
}
@media screen and (max-width:768px) {
    .slider-container{
        flex-direction: column;
    }
    .slider-item{
        width: 90%;
        height: auto;
    }
}
/* slider section end */
/* background-video section */
.background-video{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    background-image: url(./images/11zon_resized-qylufa9892vi1doil73gnaizff5z8pzuflqxeuxvys.png);
    background-size: cover;
    background-repeat: repeat-y;
}
.backgroundvideo-item{
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.backgroundvideo-item h1{
    text-transform: uppercase;  
    font-size: 4.375rem;
    color: #fff;
}
.backgroundvideo-item a{
    text-decoration: none;
}
.backgroundvideo-item a .play{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 1px solid #fff;
    background-color: inherit;
    color: #fff;
}
.backgroundvideo-item a .play:hover{
    background-color: var(--secondary-color);
}
@media screen and (max-width:768px) {
    .background-video{
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        height: auto;
    }
    .backgroundvideo-item{
        width: 90%;
        height: 300px;
    }
    .backgroundvideo-item h1{
        font-size: 1.5rem;
    }
    .backgroundvideo-item a .play{
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}
/* background-video section end */
/* visit section  */
#visit{
    background-color: #DBD6D6;
    padding: 1rem;
}
.visit-container{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 2rem;
}
.visit-item{
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 300px;
}
.visit-item h1{
    font-size: 3.15rem;
    text-transform: uppercase;
}
.visit-item h4{
    padding-top: 50px;
    font-weight: 100;
    text-decoration: underline;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #181D24;
}
.visit-item p{
    color: #181D24;
    font-weight: 600;
    font-size: 1.65rem;
    padding-top: 30px;
    line-height: 2rem;
}
.visit-item1{
    width: 300px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.visit-item1 button{
    width: 200px;
    height: 60px;
    background-color: #000;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    color: #fef;
}
.visit-item1 button:hover{
    color: #ff0000;
    transition: 0.7s ease-in-out;
}
@media screen and (max-width:768px) {
    .visit-container{
        flex-direction: column;
    }
    .visit-item{
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .visit-item1{
        width: 100%;
        height: auto;
        justify-content: flex-start;
        align-items: flex-end;
    }
}
/* visit 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 */