@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px !important;
    }
}

*{
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #161616;
    user-select: none;
}

.logo-kitakuliah{
    height: 40px;
    width: auto;
}

.bg-yellow-gradient{
    background: radial-gradient(67.57% 137.35% at 75.62% 100%, rgba(255, 213, 0, 0.5) 6.15%, #FFD500 66.92%, #FFC700 100%);
}

.bg-yellow{
    background: #FFD811;
}

.bg-orange{
    background: #FF9A00;
}

.bg-blue{
    background: #82C8E2;
}

.font-small{
    font-size: small;
}

.font-xsmall{
    font-size: x-small;
}

nav .menu-nav{
    display: flex;
}

nav .menu-nav a{
    text-decoration: none;
    color: #161616;
    position: relative;
    transition: all .2s;
}

nav .menu-nav a:after{
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #FF9A00;
    height: 4px;
    border-radius: 2px;
    transition: all .2s;
}

nav .menu-nav a:hover:after{
    width: 100%;
}

nav .menu-nav a.active{
    text-decoration: none;
    color: #FF9A00;
    font-weight: bold;
}

nav .menu-nav-right a{
    text-decoration: none;
    color: #161616;
    font-weight: bold;
}

.gold-border{
    background-image: url( 'assets/gold-border.svg' );
    background-repeat: no-repeat;
    background-size: fill;
    min-width: 250px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-border-2{
    background: linear-gradient(114deg, rgba(232, 181, 0, 1) 0%, rgba(255, 225, 120, 1) 44%, rgba(255, 238, 149, 1) 55%, rgba(238, 186, 0, 1) 100%);
    padding: 4px;
}

.gradient-orange{
    background-color: #FBAB7E;
    background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}

.gradient-blue{
    background: linear-gradient(326.39deg, #247797 -3.47%, #82C8E2 81.26%);
}

.artikel .owl-prev {
    height: 36px;
    width: 36px;
    border-radius: 20px !important;
    background-color: white !important;
    border: 2px solid lightgray !important;
    position: absolute;
    left: -48px;
    top: 50%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artikel .owl-prev:hover {
    color: #FF9A00 !important;
    border: 2px solid #FF9A00 !important;
}

.artikel .owl-next {
    height: 36px;
    width: 36px;
    border-radius: 20px !important;
    background-color: white !important;
    border: 2px solid lightgray !important;
    position: absolute;
    right: -48px;
    top: 50%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artikel .owl-next:hover {
    color: #FF9A00 !important;
    border: 2px solid #FF9A00 !important;
}

.spacer{
    height: 140px;
}

.rounded-top-custom{
    border-radius:  8px 64px 64px 8px;
}

@media screen and (max-width:768px){
    nav .menu-nav{
        padding-top: 24px;
        flex-direction: column;
        align-items: center;
    }

    .logo-kitakuliah{
        height: 32px;
    }

    .spacer{
        height: 350px;
    }
    
}