*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.bg{
    padding-top: 105px;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(180deg, rgba(0,231,255,1) 0%, rgba(71,181,255,1) 52%, rgb(3, 85, 144)100%); */
    background: #00e7ff;
}
.menu{
    width: 100%;
    padding: 25px 80px 0 80px;
    position: fixed;
    top: 0px;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    z-index: 100000;
}

.menu.sticky{
    background: linear-gradient(90deg, rgba(0,231,255,1) 0%, rgba(71,181,255,1) 52%, rgb(3, 85, 144)100%);
}

#encompass{
    width: 200px;
    height: 80px;
}

.list-items{
    display: flex;
    align-items: center;
    list-style: none;
    margin-right: 20px;
}

.items{
    padding: 2px 15px 2px 15px;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 1s ease;
}

.items:hover{
    /* text-decoration: underline; */
    background-color: white;
    border-radius: 15px;
    color: #0072ff;
}
.container{
    
    
    padding: 10px;
    width: 80%;
    



}
p
{
    text-align: justify;
    font-size: large;
}

.hamburger{
    background-color: transparent;
    border: 0px;
    position: fixed;
    top: 50px;
    right: 28px;
}

.buttons-hm{
    margin: 5px;
    padding: 2px;
    display: none;
}

h2{
    text-align: left;
}
.pa
{
    font-size: large;
}

@media screen and (max-width: 1171px)
{
    .buttons-hm{
        display: block;
        z-index: 100;
    }
    .list-items{
        display: flex;
        flex-direction: column;
        position: absolute;
        text-align: center;
        background: linear-gradient(90deg, rgba(0,231,255,1) 0%, rgba(71,181,255,1) 52%, rgb(3, 85, 144)100%);
        top: 0px;
        left: -100%;
        height: 100vh;
        width: 100%;
        padding: 10px;
        transition: 1s ease-in-out;
    }

    .list-items li{
        padding: 10px;
        margin: 20px;
    }

    .list-items.active{
        left: 0%;
        position: fixed;
    }

    .buttons{
        flex-direction: column;
        align-items: center;
    }
}