* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    /* overflow: hidden; */
}



/* webpage design */
#shape {

    position: absolute;
    z-index: -5;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* background-color: black; */

}

/* outline */
.outline {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
}

.box1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
background-color: #140114; ;
    height: 100vh;
    width: calc(25vw + 5px);
    background-color: black;
}
.box2 {
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 25vw;
    fill: "black";
    z-index: -2;
}

.box4 {
    position: absolute;
    top: 0px;
    left: 25vw;
    height: 100vh;
    width: 75vw;
    z-index: -4;
}

.box4>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -4;
}

/* triangles */
.design_left {
    position: absolute;
    top: 50%;
    left: 0px;
    height: 50%;
}

.triangle1 {
    height: 300px;
    width: 300px;
    position: absolute;
    left: -150px;
    top: 0px;
    background: #EDE6FB;
    transform: rotate(-45deg);
}
.triangle2{
    height: 150px;
    width: 150px;
    position: absolute;
    left: -75px;
    top: 75px;
    background: #140101    ;
    transform: rotate(-45deg);
}


/* body of the webpage */
#landing_page{
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}


/* nav bar */

#navigation_bar{
    display: flex;
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 15vh;
    /* background-color: wheat; */
}
.navigation_left{
    position: relative;
    top: 0px;
    left: 0px;
    width: 60%;
    /* background-color: rgb(15, 10, 1); */
    box-sizing: border-box;
    display: flex;
    /* justify-content: space-evenly; */
    align-items: center;
}
.logo{
    margin-left: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.logo>img{
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.logo_text{
    /* border: 2px solid wheat; */
   color: white;
   font-size: 3rem;
}
.navigation_right{
    position: relative;
    top: 0px;
    right: 0px;
    width: 40%;
    /* background-color: rgb(15, 10, 1); */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: end;
}
.login{
    border: none;
   margin-right: 100px;
    height: 70px;
    width: 70px;
    background-color: rgb(0, 0, 0);
    border-radius: 100%;
    cursor: pointer;
}

.login>img{
    filter: invert(100%);
}



/* hero section */
#hero_section{
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 50vw;
    height: 100vh;
    /* background-color: wheat; */
    justify-content: center;
    align-items: center;
}
.content{
    height: 25vh;
}
.content1{
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    padding-bottom: 25px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}
.content2{
    font-size: 3rem;
    color: white;
    font-weight: lighter;
    padding-bottom: 25px;
    font-family:Verdana, Geneva, Tahoma, sans-serif ;
}
.content3{
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}
.btn{
    height: 50px;
    width: 150px;
    border-radius: 20px;
    margin: 10px;
}
.btn>a{
    text-decoration: none;
    color: black;
    font-size: 2rem;
    font-weight: bold;
}


/* footer */
#footer{
    display: flex;
    /* flex-direction: column; */
    position: absolute;
    z-index: 5;
    top: 90vh;
    left: 0px;
    width: 100vw;
    height: 10vh;
    /* background-color: wheat; */
    /* justify-content: center; */
    align-items: center;
    padding: 0px 10vh;
}
.social{
    margin: 0px 20px;
    height: 7vh;
    width: 7vh;
    border-radius: 100%;
    /* background-color: rgb(250, 250, 250); */
}
.social>a>img{
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
