.nav-link {
    font-weight: 200;
    font-size: 18px;
}

.offcanvas.offcanvas-start {
    background-color: #ffc400;
    width: 40%;
    min-width: 250px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 20px;
}

.nav-link img {
    display: none;
}

.bazar-download-btn {
    display: flex;
    width: 215px;
    height: 75px;
    border-radius: 20px;
    padding: 15px 25px 15px 25px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.178);
    transition: 0.5s;
}

.bazar-download-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.418);
    transform: scale(1.1);
}

.navbar-brand {
    position: absolute;
    /* margin-top: -15px; */
}

header.scrolled {
    background-color: #ffffff46 !important;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.192);
    backdrop-filter: blur(10px);
    transition: background-color 200ms linear;
  }
  header{
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    z-index: 1;
}
.bazar-download-btn-green{
    display: flex;
    width: 220px;
    height: 75px;
    border-radius: 20px;
    padding: 15px 25px 15px 25px;
    align-items: center;
    justify-content: space-around;
    border: 0;
    background:linear-gradient(0,#1FBA41 10%,#2CF640 90%);
    box-shadow: 0 10px 10px rgba(11, 173, 46, 0.466);
    color: white;
    transition: 0.5s;
    margin: auto;
    margin-bottom: 20px;
}
.bazar-download-btn-green:hover{
    transform: scale(1.1);
}

.apk-download-btn{
    display: flex;
    width: 220px;
    border-radius: 20px;
    height: 75px;
    padding: 15px 25px 15px 25px;
    margin: auto;
    align-items: center;
    justify-content: space-around;
    border: 0;
    background:linear-gradient(0,#3a3a3a 10%,#a3a3a3 90%);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.466);
    color: white;
    transition: 0.5s;
}

.apk-download-btn:hover{
    transform: scale(1.1);
}
.logo{
    width: 100px;
}
/* Only desktop */
@media only screen and (min-width:992px) {

    .navbar-nav .nav-link.active::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FFA400;
        transform: translateY(5px);
        margin: auto;
    }

    .nav-item {
        padding-right: 20px;
        padding-top: 10px;

    }

}

/* Only mobile */
@media only screen and (max-width:991px) {
.logo{
    width: 75px;
}
    header{
        height: 80px;
    }
    .nav-link {
        font-weight: 100;
        font-size: 18px;
        margin-top: 40px;
        padding: 10px;
        margin: 10px;
        color: rgb(46, 46, 46);

    }

    .navbar-nav .nav-link.active {
        background-color: white;
        border-radius: 10px;
    }

    .nav-link img {
        padding-left: 10px;
        display: inline;
    }
    .bazar-download-btn{
        display: block;
        margin-left: auto;
        margin-top: 40px;
    }
    .bazar-download-btn img{
        margin-right: 5px;
    }
}