/* nav{
    margin: 0;
    padding: 0;
    color: black;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
} */
@import url('https://fonts.googleapis.com/css2?family=Wallpoet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');

body {
    overflow-x: hidden;
    font-family: DM Sans, sans-serif !important;
}

nav {
    height: 5rem;
    width: 100vw;
    background-color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
}

/*Styling logo*/
.logo {
    padding: 1vh 1vw;
    text-align: center;
}

.logo img {
    height: 70px;
    width: 60px;
}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 40vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;

}

.nav-links-2 {
    display: flex;
    list-style: none;
    width: 60vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;

}

@media only screen and (max-width:992px) {
    .nav-links-2 {
        display: none;
    }
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #0c1825;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #0c1825;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/
.login-button {
    background-color: transparent;
    border: 1.5px solid #0c1825;
    border-radius: 10px;
    padding: 16px 25px;
    margin-left: 2vw;
    font-size: 16px;
    cursor: pointer;

}

.login-button:hover {
    color: #ffffff;
    background-color: #000000;
    border: 1.5px solid #0c1825;
    transition: all ease-in-out 350ms;
}

.join-button {
    color: #ffffff;
    background-color: #0c1825;
    border: 1.5px solid #0c1825;
    border-radius: 10px;
    padding: 16px 25px;
    font-size: 16px;
    cursor: pointer;
}

.join-button:hover {
    color: white;
    background-color: black;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: black;
    margin: 5px;
    transition: all 0.3s ease;

}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: white;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}






.headerImg:hover {
    height: 550px !important;
}

@media (max-width:993px) {
    div .row .img-container .logo img {
        height: 70px;
        width: 60px;
    }
}

.logoTop {
    height: 70px !important;
    width: 60px !important;
}

.logoBody {
    height: 75% !important;
    width: 75% !important;
}

@media only screen and (max-width:992px) {
    .logoBody {
        height: 100% !important;
        width: 100% !important;
    }
}




.investmentbotmargin {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.wallpoet-regular {
    font-family: "Wallpoet", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: x-large;
}
.krona-one-regular {
    font-family: "Krona One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }