/* NAVBAR SECTION */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 0px 110px;
    height: 80px;
    width: auto;
    overflow: hidden;
    border-bottom: 1px solid #dadada;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    z-index: 999;
}
.bacButton {
    width: auto;
    padding: 0px 24px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    padding: 18px 45px;
    color: #ffffff;
    background: var(--gradient-background);
    border-radius: 30px;
    cursor: pointer;
}

.bacButton:hover {
    background: linear-gradient(
        90deg,
        rgb(5, 100, 124) 0%,
        rgb(19, 77, 114) 50%,
        rgb(39, 52, 105) 100%
    );
}

.bacButton {
    display: none;
}

.bacButton.show {
    display: inline-block;
}

/* Navbar */
@media (max-width: 900px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        padding: 16px 0 16px 16px;
        height: 60px;
        width: auto;
        overflow: hidden;
        border-bottom: 2px solid #dadada;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .navbar img {
        width: 60%;
    }
    .bacButton {
        display: none;
        padding: 0px 12px;
        height: 45px;
    }
    .bacButton.show {
        display: none;
    }
}
@media (max-width: 480px) {
    .navbar {
        padding: 0px 16px;
    }
    .bacButton {
        display: none;
    }
    .bacButton.show {
        display:none;
    }
}