/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Sacramento', cursive; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #b9b5b5;
    max-width: 100vw;
    overflow-x: hidden;
}

/* navbar start here */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0px 90px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.navbar .container {
    width: calc(100vw - 180px);
    display: flex;
    justify-content: space-between;
}

.navbar .logo img {
    /* padding: 20px 20px; */
    /* float: left; */
    line-height: 80px;
    margin-top: 5px;
}

.navbar .checkbtn {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
    right: 0;
}

.navbar .navbar-nav {
    float: right;
    list-style: none;
    margin: 0;
    right: 100px;
    padding: 0;
    display: flex;
}

.navbar .navbar-nav .nav-item {
    text-align: center;
    justify-content: center;

}

.navbar .navbar-nav .nav-item .nav-link {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    padding: 12px;
    line-height: 80px;
    text-transform: uppercase;
    font-weight: bolder;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.99);
    border-radius: 6px;
    color: #FF0073;
    transition: 0.3s ease-in;
    border-radius: 30px;
}


.navbar .navbar-nav .nav-item .nav-link:active {
    transition: 0.5s ease all;
}

@media (max-width:1000px) {


    .navbar .checkbtn {
        display: block;
    }

    .navbar .navbar-nav {
        position: fixed;
        width: 100%;
        height: 50vh;
        background: #2c3e50;
        top: 80px;
        right: -100%;
        text-align: center;
        transition: 0.5s;
        display: block;
    }

    .navbar .navbar-nav .nav-item {
        display: block;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 20px;
    }


    #check:checked~ul {
        right: 0%;
    }
}

@media (max-width:700px) {
    .navbar {
        padding: 0 15px;
    }

    .navbar .container {
        width: calc(100vw - 30px);
    }
}



/* Navbar end here */

/* Hero Start here */

.hero {
    max-width: 100vw;
    height: 80vh;
    background: url(./images/Hero.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* text-align: center; */
}

.hero .container h1 {
    font-size: 8em;
    text-shadow: (255, 255, 255, 0.4);
}

.hero .container {
    background: rgba(0, 0, 0, 0.1);
    /* border-radius: 50%; */
    /* width: 300px;
    height: 300px; */
    color: #FF0073;
    margin: 0 auto;
    text-align: center;
    /* box-shadow: 5px 10px #fff; */
    box-shadow: 0 0 0 8px #f7f7f71e;
    border-radius: 3px;
    margin-left: 100px;
}

.hero .container .caption {
    color: #fff;
    top: -10px;
}

.hero .container .tag {
    color: yellow;
}

.line {
    padding: 0 90px;
    border: 5px solid yellow;
    width: 70vw;
    margin: auto;
    border-style: dashed;
}

@media (max-width:1000px) {
    .hero {
        height: 100vh;
    }
}

@media (max-width:500px) {
    .hero .container {
        margin-left: auto;
    }
}

/* HEro end here */

/* Slider Start Here */

.slideshow {
    margin: 20px 100px;
    height: 630px;
}

.slideshow .container {
    position: relative;
    width: calc(100vw - 200px);
    height: 100%;
    /* border: 1px solid black; */
    overflow: hidden;
}

.container .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    animation: animate 20s linear infinite;
}

.container .slider .slide {
    width: 20%;
    height: 100%;
    float: left;
}


.container .slider .slide.slide1 {
    background: url(./images/1.jpg);
    background-size: cover;
    background-position: center;
}

.container .slider .slide.slide2 {
    background: url(./images/2.jpg);
    background-size: cover;
    background-position: center;
}

.container .slider .slide.slide3 {
    background: url(./images/3.jpg);
    background-size: cover;
    background-position: center;
}

.container .slider .slide.slide4 {
    background: url(./images/4.jpg);
    background-size: cover;
    background-position: center;
}

.container .slider .slide.slide5 {
    background: url(./images/5.jpg);
    background-size: cover;
    background-position: center;
}

@keyframes animate {
    0% {
        left: 0;
    }

    15% {
        left: 0%;
    }

    20% {
        left: -100%;
    }

    35% {
        left: -100%;
    }

    40% {
        left: -200%;
    }

    55% {
        left: -200%;
    }

    60% {
        left: -300%;
    }

    75% {
        left: -300%;
    }

    80% {
        left: -400%;
    }

    95% {
        left: -400%;
    }

    100% {
        left: -500%;
    }
}


@media (max-width:1000px) {
    .slideshow {
        margin: 20px 0;
        height: 560px;
    }

    .slideshow .container {
        width: 100vw;
        height: 560px;
    }
}

/* Slide End here */

/* Menu Start here */

.menu-name {
    font-family: 'Lobster', cursive;
    font-size: 50px;
    text-align: center;
    color: #FF0073;
    background-color: #fff;
    width: 500px;
    margin: auto;
    border-radius: 25px;
}

.menu .container {
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin: 50px; */
    /* background: #fff; */
    height: 580px;
    position: relative;
    padding: 90px;
}

.menu .container .menu1 {
    width: 40%;
    z-index: 2;
    position: absolute;
    left: 125px;
    top: 100px;
    height: 450px;
    background: #fff;
    float: left;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 75% 22%;
    grid-gap: 10px;
    padding: 10px;
}

.menu .container .menu1 div {
    text-align: center;
    /* margin-top: 15px; */
    padding: 15px 0;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.menu .container .photo1 {
    width: 60%;
    z-index: 1;
    position: absolute;
    left: 325px;
    top: 50px;
    height: 450px;
    background: url(./images/M1.jpg);
    background-size: cover;
    border-radius: 15px;
}

@media (max-width:1000px) {
    .menu .container {
        flex-direction: column;
        padding: 20px;
        height: 300px;
    }

    .menu .container .menu1 {
        position: absolute;
        z-index: 0;
        width: 70%;
        left: auto;
        top: 20px;
        height: 250px;
        grid-gap: 0px;
        padding: 10px;
        background: url(./images/M1.jpg);
    }

    .menu .container .menu1 div {
        padding: 0;
        height: fit-content;
        background: rgba(255, 255, 255, 0.3);
    }

    .menu .container .photo1 {
        /* position: absolute;
        z-index: 0;
        top: 280px;
        height: 250px;
        margin: auto;
        left: auto; */
        display: none;
    }
}


.menu .container1 {
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin: 50px; */
    /* background: rgb(247, 0, 255); */
    height: 580px;
    position: relative;
    padding: 40px 90px;
    /* margin-bottom: 20px; */
}

.menu .container1 .photo1 {
    width: 60%;
    z-index: 1;
    position: absolute;
    left: 325px;
    top: 50px;
    height: 450px;
    background: url(./images/p3.jpg);
    background-size: cover;
    border-radius: 15px;
}


.menu .container1 .menu1 {
    width: 40%;
    z-index: 2;
    position: absolute;
    left: 125px;
    top: 100px;
    height: 450px;
    background: #FFF;
    float: left;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 75% 22%;
    grid-gap: 10px;
    padding: 10px;
}

.menu .container1 .menu1 div {
    text-align: center;
    /* margin-top: 15px; */
    padding: 15px 0;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

@media (max-width:1000px) {

    .menu-name {
        width: 45%;
    }

    .menu .container1 {
        flex-direction: column;
        padding: 20px;
        height: 300px;
    }

    .menu .container1 .menu1 {
        position: absolute;
        z-index: 0;
        width: 70%;
        left: auto;
        top: 20px;
        height: 250px;
        grid-gap: 0px;
        padding: 10px;
        background: url(./images/p3.jpg);
    }

    .menu .container1 .menu1 div {
        padding: 0;
        height: fit-content;
        background: rgba(255, 255, 255, 0.3);
    }

    .menu .container1 .photo1 {
        /* position: absolute;
        z-index: 0;
        top: 280px;
        height: 250px;
        margin: auto;
        left: auto; */
        display: none;
    }


}

@media (max-width:562px) {
    .menu-name {
        font-size: 35px;
        width: 55%;
    }

    .menu .container1 .menu1 {
        width: 85%;
    }

    .menu .container1 .menu1 div {
        font-size: 15px;
    }


    .menu .container .menu1 {
        width: 85%;
    }

    .menu .container .menu1 div {
        font-size: 15px;
    }
}





.clear {
    clear: both;
}

.divider {
    /* display: block; */
    width: 100%;
    height: 20px;
    position: relative;
    clear: both;
}

/* Menu end here */

/* About us Start here */
.about {
    display: flex;
    width: 80%;
    height: 800px;
    /* border: 1px solid black; */
    background: url(./images/paralax.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
}

.aboutus {
    display: flex;
    position: relative;
    width: 40%;
    margin: 40px;
    border-radius: 50%;
    height: 90%;
    /* border: 1px solid black; */
    text-align: center;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    float: left;
    margin-left: 55px;

}

.aboutus h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 15px;
}

.aboutus .box {
    padding: 50px;
    padding-top: 5px;
}

.aboutus p {
    font-size: 18px;
    line-height: 30px;
    color: yellow;
}

.contactus {
    display: flex;
    position: relative;
    width: 40%;
    margin: 40px;
    height: 90%;
    /* border: 1px solid black; */
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    /* float: left; */
    padding: 40px;
}

.contactus .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;

    /* padding: 5px 20px; */
}

.contactus h2 {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    transform: translateY(-20px);
}

.contactus .inputBox input,
.contactus .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    background: transparent;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid blue;
    outline: none;
    resize: none;
}

.contactus .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: yellow;
}

.contactus .inputBox input:focus~span,
.contactus .inputBox input:valid~span,
.contactus .inputBox textarea:focus~span,
.contactus .inputBox textarea:valid~span {
    color: #fff;
    font-size: 12px;
    transform: translateY(-20px);
}

.contactus .inputBox input[type="submit"] {
    width: 100px;
    background: #fff;
    color: #ff0073;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 20px;
}

.contactus .inputBox input[type="submit"]:hover {
    color: #fff;
    background: #ff0073;
}


@media (max-width:1000px) {
    .about {
        width: 100vw;
        margin: 0;
        position: relative;
        justify-content: center;
    }

    .about .aboutus {
        display: inline;
        position: absolute;
        width: 100%;
        border-radius: 0;
        height: 50%;
        margin: 0;
        flex-direction: unset;
        clear: both;
        height: 400px;
        left: 0;
    }

    .about .contactus {
        display: inline-flex;
        position: absolute;
        width: 100%;
        margin: auto;
        top: 400px;
        height: 400px;
        margin: auto;
        clear: both;
        flex-direction: column;
        border-radius: 0;
        left: 0;
        right: 0;
        padding: 5px;

    }

    .about .aboutus h3 {
        margin-top: 30px;
        font-size: 30px;
    }

    .about .aboutus p {
        font-size: 16px;
    }

    .about .contactus h2 {
        transform: translateY(0);
        font-size: 30px;
    }
}

@media (max-width:500px) {
    .about .aboutus h3 {
        margin-top: 25px;
        font-size: 25px;
        padding: 0;
    }

    .about .aboutus p {
        font-size: 14px;
    }

    .about .contactus h2 {
        margin-bottom: 0;
    }
}

/* About Us end here */

/* Footer Start Here */


footer {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;

}

.socials a:hover i {
    color: #FF0073;
}

.footer-bottom {
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}