/* Navbar */

body
{
    margin:0;
    padding: 0;
}

#nav
{
    width: 100%;
    height: 70px;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

#lg
{
    color: white;
    display: flex;
    align-items: center;
    width: 50%;
    margin-left: 2%;
}

#enner-nav
{
    display: flex;
    width: 50%;
    text-decoration: none;
    justify-content: space-around;
    color: white;
}

.home
{
    color: white;
    text-decoration: none;
}

.box
{
    cursor: pointer;
    border-radius: 06px; 
    display: inline;
    padding: 5px;
    transition: all 0.3s;
    a 
    {
        margin-left: 10px;
        font-size: 16px;
        font-family: sans-serif;
    }
}

.box:hover
{
    background-color:white;
    color:black ;
    a
    {
        color:black;
        font-size: 16px;
        font-family: sans-serif;
        font-weight: 500;
    }
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* Slider */

html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: cover;
}