@import url('https://fonts.googleapis.com/css2?family=Poppins');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    overflow-x: hidden;
}

:root{
    --heading1-font-size: 8vh;
    --heading2-font-size: 6vh;
    --main-color: rgb(18, 101, 255);
    --content-font-size: 2.4vh;
}

/* ---------------navbar css-------------- */
.navbar{
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    /* background-color: aqua; */
    width: 100vw;
    height: 90px;
    display: flex;
    justify-content: space-between;
}

.navbar .nav-part1{
    width: 25%;
    font-size: 7vh;
    padding: 20px;
    margin-left: 50px;
    span{
        color: rgb(18, 101, 255);
    }
}

.navbar .nav-part2{
    width: 55%;
    padding: 0;
    margin-top: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: space-around;
    span a{
        font-size: 2.5vh;
        font-weight: 500;
        outline: none;
        color: black;
        text-decoration: none;
    }
    span:hover{
        opacity: 0.4;
    }
    .btn{
        background-color: rgb(67, 133, 255); 
        color: white; 
        padding-left: 30px; 
        padding-right: 30px; 
        padding-top: 10px; 
        padding-bottom: 10px; 
        margin-right: 9px; 
        border-radius: 5px;
    }
}
/* ---------------navbar css-------------- */

/* -------------section-css-------------- */

.section{
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
}

.box{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    h1{
        font-size: var(--heading2-font-size);
    }
    p{
        font-size: var(--content-font-size);
    }
}

#section1{
    height: calc(100vh - 90px);
    /* background-color: rgb(5, 100, 184); */
    border-top: 1px solid rgb(228, 228, 228);
}

#box1{
    padding-left: 20%;
    display: flex;
    p{
        margin-bottom: 30px;
    }
    span a{
        text-decoration: none;
        cursor: pointer;
        color: black;
        font-size: var(--content-font-size);
        font-weight: 500;
        background-color: rgb(88, 88, 255);
        color: white;
        padding: 10px 40px;
        border-radius: 5px;
    }
}

.box img{
    height: 90%;
}


#box4{
    padding-right: 20%;
    display: flex;
    /*
    p{
        margin-bottom: 30px;
    }
    span a{
        text-decoration: none;
        cursor: pointer;
        color: black;
        font-size: var(--content-font-size);
        font-weight: 500;
        background-color: rgb(88, 88, 255);
        color: white;
        padding: 10px 40px;
        border-radius: 5px;
    } */
}

#box5{
    padding-left: 20%;
    display: flex;
    /*
    p{
        margin-bottom: 30px;
    }
    span a{
        text-decoration: none;
        cursor: pointer;
        color: black;
        font-size: var(--content-font-size);
        font-weight: 500;
        background-color: rgb(88, 88, 255);
        color: white;
        padding: 10px 40px;
        border-radius: 5px;
    } */
}

#box6 img{
    height: 75%;
}

#box8{
    padding-right: 20%;
    display: flex;
}

footer{
    height: 40vh;
    width: 100vw;
    background-color: rgba(65, 84, 255, 0.384);
}

