﻿
/*=========================
        Header
==========================*/

.bal-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 0;
}

.bal-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=========================
        Logo
==========================*/

.bal-logo img {
    height: 62px;
    width: auto;
    transition: .3s;
}

.bal-logo:hover img {
    transform: scale(1.05);
}


/*=========================
        Menu
==========================*/

.bal-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

    .bal-menu a {
        text-decoration: none;
        color: #203050;
        font-weight: 600;
        font-size: 15px;
        transition: .25s;
    }

        .bal-menu a:hover {
            color: #2563eb;
        }

/*=========================
        Buttons
==========================*/

.bal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #2563eb;
    border: 1px solid #2563eb;
    transition: .3s;
}

    .btn-login:hover {
        background: #2563eb;
        color: white;
    }

.btn-register {
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    background: #2563eb;
    transition: .3s;
}

    .btn-register:hover {
        background: #1748b6;
    }


/*=========================
      Mobile Button
==========================*/

.bal-mobile-btn {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    color: #203050;
    cursor: pointer;
}


/*=========================
      Responsive
==========================*/

@media(max-width:992px) {

    .bal-menu {
        display: none;
    }

    .bal-actions {
        display: none;
    }

    .bal-mobile-btn {
        display: block;
    }

    .bal-logo img {
        height: 52px;
    }
}

.hero-banner {    
    background-image: url('../image/balanding-logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    position: relative;
}
.hero-banner {
    min-height: 700px;
}

@media (max-width:992px) {

    .hero-banner {
        min-height: 520px;
    }
}

@media (max-width:768px) {

    .hero-banner {
        min-height: 430px;
    }
}


.bal-header {
    background: transparent;
    width: 100%;
}

.bal-navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bal-logo img {
    height: 58px;
    width: auto;
}

.bal-menu {
    display: flex;
    gap: 34px;
}

    .bal-menu a {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

.bal-actions {
    display: flex;
    gap: 12px;
}
