@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    /* background: #dcf2ff; */
}

:root {
    --main-clr: #0AEDFD;
}

.home {
    width: 100%;
    height: 100vh;
    background: url('../images/homebg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    /* z-index: -1; */
    overflow: hidden;
}

.home-overlay {
    background: #000000ce;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    z-index: 2;
    position: relative;
    height: 120px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.menu{
    display: none;
}
.menu i{
    font-size: 25px;
    color: var(--main-clr);
    cursor: pointer;
}
.navbar-content a {
    text-decoration: none;
    color: #fff;
}

.active {
    border-bottom: 2px solid var(--main-clr);
}

.navbar-content button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 16px;
    outline: none;
    border: none;
    border-radius: 30px;
    background: var(--main-clr);
    color: #fff;
}

.navbar-content button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #fff;
    border-radius: 50%;
    background: #000;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.second-log {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.first-logo {
    width: 100px;
}

.first-logo img {
    width: 100%;
}

.regby {
    font-size: 10px;
    color: #fff;
}

.niti,
.nextlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.niti img,
.nextlogo img {
    height: 65px;
    margin-top: 12px;
}

.niti p {
    color: #E0B26A;
    font-family: Montserrat;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;

}

.nextlogo p {
    color: #6583A6;
    font-family: Oleo Script;
    font-size: 10px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;

}



.home-content {
    width: 100%;
    height: calc(100% - 150px);
    position: relative;
    z-index: 2;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-content h1{
    font-size: 4rem;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #0AEDFD;
    text-underline-offset: 8px;
}


@media (width <=700px){
    .first-logo{
        width: 50px;
    }
    .niti img ,.nextlogo img{
        height: 24.5px;
    }
    .niti p ,.nextlogo p{
       font-size: 7px;
    }
    .navbar-content {
        display: none;
    }
    .menu{
        display: block;
    }
    .home {
        height: 50vh;
        /* aspect-ratio: 16/9; */
    }
    .home-content h1{
        font-size: 2rem;

    }
}


