@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;700&family=Poppins:wght@500&display=swap');

*{
    font-family: 'DM Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    letter-spacing: -0.292683px;
    color: #1E0E62;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    list-style: none;
}

.nav-menu li a {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color:  #1E0E62;
    padding: 6px 15px;
}

.nav-menu li:hover{
    background-color: blue;
    border: none;
    border-radius: 100px;
}

.nav-btn2{
    outline: none;
    border: 2px solid #EBEAED;
    background: none;
    border-radius: 100px;
    color:  #1E0E62;
    font-weight: 500;
    height: 40px;
    width: 100px;
}

.nav-btn2:hover{
    background-color: blue;
}

.hamburger {
    position: absolute;
    display: none;
    top: 15px;
    right: 16px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 10px;
}

.row {
    justify-content: center;
    position: relative;
}

.pg-desc{
    position: relative;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1E0E62;
}

.action-btn{
    position: absolute;
    margin-top: 140px;
    display: block;
    background: #25DAC5;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    height: 60px;
    width: 170px;
    outline: none;
    border: none;
}

.action-btn:hover {
    background-color: blue;
}

.pg-img{
    position: absolute;
    margin-top: 240px;
    width: 540px;
    height: 341px;
}

.app-features {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: rgba(21, 20, 57, 0.4);
    position: relative;
    top: 500px;
}

@media only screen and (max-width: 1024px) {
    .ignore-br {
        font-size: 15px;
    }
}


@media only screen and (min-width: 481px) and (max-width: 923px) {

    br {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .nav-menu li a {
        padding: 7px;
    }

    .ignore-br {
        font-size: 18px;
    }

    .content-area {
        position: relative;
        top: 80px;
    }

    .pg-desc {
        font-size: 56px;
    }    
}


@media only screen and (min-width: 320px) and (max-width: 480px) {

    .container{
        margin: 0;
    }
    
    br{
        display: none;
    }

    .hamburger{
        display: flex;
        top: 20px;
        right: 30px;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu ul {
        width: 100%;
        flex-direction: column;
    }

    .nav-menu li a {
        position: relative;
        right: 8px;
        padding: 5px 10px;
    }

    .nav-menu li:hover{
        width: 150px;
    }

    .nav-btn2 {
        margin-left: -12px;
    }

    .nav-menu.active{
        display: block;
    }

    .pg-desc {
        position: relative;
        font-size: 42px;
        line-height: 50px;
        top: 20px;
    }

    .action-btn {
        position: relative;
        margin-top: 30px;
    }

    .pg-img {
        position: relative;
        top: -200px;
        width: 350px;
        height: 225px;
    }

    .app-features {
        top: -150px;
    }

    .ignore-br {
        font-size: 10px;
        line-height: 15px;
    }
}
