* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: auto;
    padding: 20px 75px;
    z-index: 10;
}

.logo h2 {
    color: #4a2dff;
}

.btn-menubar {
    outline: none;
    border: none;
    padding: 10px 10px 4px 10px;
    color: #fff;
    background-color: #141534;
    display: flex;
}

.btn-menubar svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-bottom: 0;
}

.lg-hidden {
    display: none;
}

.menu_left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;

}

.btn-contact {
    border: none;
    outline: none;
    padding: 8px 18px;
    color: #fff;
    background-color: #141534;
}

.menu-li .menu {
    list-style: none;
    display: flex;
    gap: 30px;
    width: 100%;
}

.menu-li .menu a {
    text-decoration: none;
    color: inherit;
    font-size: 15px;
}

.header{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background: url('./img/bgheader.svg');
    background-size: cover;
}
.row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.col{
    flex-basis: 50%;
}
.text-content{
    padding-left: 75px;
}
.text-content h1{
    font-size: 3.5rem;
    line-height: 4rem;
    text-transform: capitalize;
}
.text-content p{
    font-size: 1.2rem;
    margin: 1.5rem 0;
}
.text-content button {
    border: none;
    outline: none;
    padding: 8px 16px;
    color: #fff;
    background-color: #4a2dff;
}
.col img{
    display: block;
    width: 100%;
    height: 100%;
    padding: 3rem;
}


@media (max-width:900px) {
    .sm-hidden {
        display: none;
    }

    .lg-hidden {
        display: block;
    }

    .navbar {
        padding: 10px 25px;
    }

    .menu-li {
        position: fixed;
        top: -550px;
        left: 0px;
        color: inherit;
        background-color: #fff;
        padding: 10px 25px;
        width: 100%;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        transition: all 1s ease;
        transform-origin: bottom;
    }

    .navbar.active {
        background-color: #fff;
    }

    .menu-li.active {
        left: 0;
        top: 60px;
        opacity: 1;
        visibility: visible;
    }

    .menu-li .menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

}

@media (max-width:1200px) {
    .text-content h1 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .text-content p {
        font-size: 1rem;
        margin: 8px 0;
    }
}

@media (max-width:900px) {
    .row {
        flex-direction: column;
    }
    .col{
        flex-basis: 100%;
    }
    .col img{
        padding: 0;
    }

    .text-content {
        order: 2;
        padding: 40px 40px;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }
    .text-content p {
        font-size: 1rem;
    }
}

@media (max-width:500px) {
    .text-content {
        padding: 20px 15px;
    }

    .text-content h1 {
        font-size: 2rem;
    }

}
