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

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

.brand-title{
    color: #1E0E62;
    font-weight: 700;
    font-size: 25px;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    color: rgba(21, 20, 57, 0.4);
    padding: 1rem;
    display: block;
}

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

.search-icon {
    width: 25%;
    background: none;
    color: white;
    border: 0;
    outline: none;
}

.nav-btn {
    background: none;
    outline: none;
    border: 0;
    box-shadow: 0;
    padding: 15px;
    font-weight: 500;
    color: rgba(21, 20, 57, 0.4);
}

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

.nav-btn2 {
    background: #25DAC5;
    border: none;
    border-radius: 100px;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

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

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

.main-text{
    text-align: center;
    margin-top: 189px;
}

.main-text h2 {
    font-size: 72px;
    color:#1E0E62;
    font-weight: 700;
}

.main-text p{
    font-size: 22px;
    font-weight: 500;
    color: rgba(21, 20, 57, 0.4);
}

.action-btns{
    text-align: center;
    margin-top: 75px;
}

.btn-primary{
    background: #25DAC5;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    outline: none;
    border: none;
    font-size: 25px;
    padding: 20px 35px;
}

.btn-link {
    display: flex;
    margin-top: 5px;
    margin-left: 500px;
    text-align: center;
    color: #25DAC5;
    font-family: 'Poppins';
    font-weight: 500;
}


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

    .btn-primary {
        font-size: 20px;
        padding: 20px 30px;
    }

    .btn-link {
        position: relative;
        right: 85px;
    }
}

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

    .container{
        margin: 20px;
    }
    
    br{
        display: none;
    }

    .nav-menu{
        position: relative;
        left: 30px;
    }

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

    .form {
        position: relative;
        left: 30px;
    }

    .content-area{
        position: relative;
        left: 15px;
        top: 40px;
    }

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

    .main-text h2{
        font-size: 100px;
        line-height: 85px;
        position: relative;
        top: -100px;
    }

    .main-text p {
        position: relative;
        top: -65px;
        font-size: 35px;
    }

    .action-btns{
        position: relative;
        top: -75px;
    }

    .btn-primary {
        font-size: 35px;
        padding: 25px 35px;
    }

    .btn-link {
        margin-left: 320px;
        font-size: 35px;
    }
}


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

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

    .hamburger{
        display: flex;
        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{
        background-color: blue;
        border: none;
        border-radius: 50px;
        width: 75px;
    }

    .form{
        display: flex;
        flex-direction: column;
        position: relative;
        margin: 0;
        padding: 0;
        right: 15px;
    }

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

    .main-text h2{
        font-size: 58px;
        line-height: 50px;
        position: relative;
        top: -70px;
    }

    .main-text p {
        position: relative;
        top: -35px;
        font-size: 17px;
    }

    .action-btns{
        margin-top: 0;
    }

    .btn-primary {
        font-size: 20px;
        padding: 20px 30px;
    }

    .btn-link {
        margin-left: 205px;
    }
}
