*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
}

/*--------Menubar---------*/
.menu{
    width: 100%;
    padding: 25px 80px 0 80px;
    position: fixed;
    top: 0px;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    z-index: 100000;
    background: linear-gradient(90deg, rgba(0,231,255,1) 0%, rgba(71,181,255,1) 52%, rgb(3, 85, 144)100%);
}

.list-items{
    display: flex;
    align-items: center;
    list-style: none;
    margin-right: 20px;
}

.menu-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;
}

.menu-items:hover{
    /* text-decoration: underline; */
    background-color: white;
    border-radius: 15px;
    color: #0072ff;
}

.hamburger{
    background-color: transparent;
    border: 0px;
    position: fixed;
    top: 16px;
    right: 8px;
}

.buttons-hm{
    margin: 5px;
    padding: 2px;
    display: none;
}

#encompass{
    width: 200px;
    height: 80px;
    /* margin-left: 25px; */
}

#back{
    height: 40px;
    width: 40px;
}

@media screen and (max-width: 518px){
    .menu{
        padding: 25px 10px 0 10px;
    }

    #encompass{
        width: 150px;
        height: 60px;
    }

    #back{
        height: 30px;
        width: 30px;
        padding: 2px;
    }
}

/*---------Front Section---------*/

#home{
    background: linear-gradient(90deg, rgba(0,231,255,1) 0%, rgba(71,181,255,1) 52%, rgb(3, 85, 144)100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

#container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 70%;
}

#heading{
    font-size: 50px;
    font-weight: 600;
    font-family: 'Montserrat', 'Open Sans', 'sans-serif';
    color: white;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

.heading{
    font-size: 50px;
    font-weight: 600;
    font-family: 'Montserrat', 'Open Sans', 'sans-serif';
    color: #0072ff;
    margin: 50px 0px 0px 0px;
    padding: 10px;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

.span-text{
    margin-left: 180px;
}

#rupee{
    height: 350px;
    width: 400px;
}

@media screen and (max-width: 1262px){
    .money, .span-text{
        font-size: 33px;
        margin: 20px 0px 0px 0px;
    }
    .span-text{
        margin-left: 100px;
    }
    #rupee{
        height: 300px;
        width: 350px;
    }
}
@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;
    }
}


@media screen and (max-width: 933px){
    #container{
        flex-direction: column;
        justify-content: center;
    }

    .money, .span-text{
        font-size: 30px;
        margin: 15px 0px 0px 0px;
    }
    .span-text{
        margin-left: 50px;
    }

    #rupee{
        height: 250px;
        width: 300px;
    }
}

/*---------Content Section---------*/

#invest{
    height: 120vh;
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    background-image: url("Images/background.jpg");
    background-size: cover;
    background-position: center;
}
.internal-container{
    margin-bottom: 3%;
    font-family: 'Montserrat', sans-serif;
}
.container{
    width: 70%;
    height: fit-content;
    /* margin: auto; */
    justify-content: center;
    margin-top: 9%;
    
}

@media screen and (max-width: 933px){
    .container{
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 30%;
    }
}

ul{
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid darkblue;
}

.items{
    margin: 3px;
    padding: 10px;
    text-align: center;
}

ul li.items:hover{
    /* border-bottom: 10px solid darkblue; */
    background-color: darkblue;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 1s ease;
}

.selected{
    background-color: darkblue;
    color: white;
    border-radius: 6px;
    transition: all 1s ease;
}

.img{
    height: 400px;
    width: 30%;
}

.zero, .first, .second, .third, .fourth{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 1s ease;

    /* background-color: #fff; */
    padding-bottom: 5%;
    /* opacity: 0.75; */

}

.second, .third, .fourth{
    display: none;
}

.content{
    width: 60%;
    padding: 15px;
    /* height: 400px; */
    align-items: center;
}

@media screen and (max-width: 600px){
    .img{
        height: 300px;
        width: 40%;
        margin: 3px;
    }

    .zero, .first, .second, .third, .fourth{
        flex-direction: column;
    }

    .content{
        width: 90%;
        text-align: justify;
    }
}

.text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    /* opacity: 1;     */
}

@media screen and (max-width: 340px){
    .span-text, .money{
        font-size: 22px;
    }
    .zero{
        flex-direction: column;
    }
    .text{
        width: 95%;
    }
    #rupee{
        height: 275px;
        width: 275px;
    }

    }

.redirect{
    padding: 8px 25px 8px 25px;
    color: white;
    background-color: darkblue;
    border-radius: 6px;
}




.contact-form, #contact-div{
    width: 45%;
    height: 100%;
    margin-top:0%;
    background-color: #fff;
    border: 2px solid darkblue;
    box-shadow: 0 30px 30px 0 rgba(0,0,0,0.2);
    padding: 1px 25px 1px 25px;
    
}

@media screen and (max-width: 768px){
    #encompass-logo{
        width: 150px;
        height: 60px;
    }

    .contact-form{
        width: 90%;
    }

    .buttons{
        flex-direction: column;
        margin: auto;
    }

    .button{
        width: 60%;
    }
}

#contact-form h6{
    /* text-align: center; */
    font-size: 15px;
    color: darkblue;
    /* margin-bottom: 20px; */
}

.form-element{
    margin: 5px 0px 5px 0px;
    padding: 5px;
    width: 100%;
}

.phone{
    display: flex;
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
}

.button{
    margin: 0px 3px 5px 3px;
    padding: 8px;
    background-color: darkblue;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', 'Open Sans', 'sans-serif';
    border: 1px solid white;
    border-radius: 5px;
    text-align: center;
}

.red{
    color: red;
}
