@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{
    max-width: 1140px;
}

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

.overV{
    opacity: 0.3;
}

.nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #1E0E62;
}

.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;
}


.act-btn{
    outline: none;
    border: 2px solid #EBEAED;
    background: none;
    border-radius: 100px;
    color: #1E0E62;
    height: 40px;
    padding: 20px;
    width: 120px;
    font-family: 'DM Sans';
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    align-items: center;
    text-align: center;
}

.row{
    margin-top: 100px;
}

.app-desc {
    position: relative;
    left: 5px;
}

.app-desc h2{
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 62px;
    line-height: 70px;
    letter-spacing: -1.5px;
    color: #1E0E62;
    margin-bottom: 15px;
}

.app-desc p {
    margin-top: 20px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(21, 20, 57, 0.4);
    mix-blend-mode: normal;
    opacity: 0.7;
}

.action-btn{
    margin-top: 20px;
    font-family: 'DM Sans';
    font-size: 20px;
    font-style: normal;
    position: absolute;
    display: block;
    background: #482BE7;
    border-radius: 100px;
    color: #fff;
    font-weight: 300;
    height: 50px;
    width: 190px;
    outline: none;
    border: none;
}

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

.page-img {
    position: relative;
    width: 420px;
    height: 420px;
    right: 50px;
    left: 105px;
}

@media screen and (max-width: 1024px) {

    .page-img {
        right: 0;
        left: 45px;
        top: -25px;
    }
    
}


@media screen and (max-width: 768px) {
    .container{
        max-width: 720px;
        margin: 15px;
        padding: 0;
    }

    .row{
        margin-top: 40px;
    }

    .hamburger{
        display: flex;
    }

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

    .nav.active{
        display: flex;
        margin-left: -10px;
    }

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

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

    .app-desc {
        position: relative;
        left: 10px;
    }

    .app-desc h2 {
        display: flex;
        font-size: 91px;
        line-height: 100px;
    }

    .app-desc p {
        display: flex;
        font-size: 31px;
        line-height: 45px;
    }

    .app-img {
        position: relative;
        bottom: 20px;
    }

    .page-img{
        top: 125px;
        left: 8px;
        width: 706px;
        height: 705px;
    }

}

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

    .container {
        margin: 15px;
        padding: 0;
        width: 88%;
    }

    br{
        display: none;
    }

    .hamburger{
        display: flex;
        right: 4px;
    }

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

    .nav.active{
        display: flex;
    }

    .row {
        position: relative;
        display: flex;
        top: 0;
    }

    .app-desc h2 {
        font-size: 44px;
        line-height: 50px;
    }

    .app-desc p {
        font-size: 19px;
        line-height: 30px;
    }

    .page-img {
        position: relative;
        width: 320px;
        height: 320px;
        left: 5px;
    }
}