*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
*::after{
    box-sizing: inherit;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: black;
    overflow-x: hidden;
}

/* NAV */
nav{
width: 100%;
height: 70px;
background-color: #1f357e;
color: black;
display: flex;
position: fixed;
top: 0;
justify-content: space-between;
z-index: 99;
}
nav .logo{
width: 20%;
padding: 12px;
cursor: pointer;
}
nav .logo img{
    width: 130px;
}
nav .menu{
width: 60%;
display: flex;
justify-content: space-between;
padding: 15px;
}
nav .menu a{
color: #fff;
padding: 10px;
text-decoration: none;
border: 1px solid #4365d4;
border-radius: 5px;
background-color: #4365d4;
}
nav .menu a:hover{
color: white;
border: 1px solid #fff;
transition: 0.5s;
}
nav .divButton{
display: none;
}

.onOffMenu{
left: 0 !important;
}

@media(max-width:1030px){
    nav .menu a{
    font-size: .8em;
    }
}
@media(max-width:915px){
    nav .menu{
    position: fixed;
    height: 100vh;
    top: 0;
    left: -65%;
    background-color: #1f357e;
    flex-wrap: nowrap;
    width: 60%;
    display: block;
    transition: 0.5s;
    }
    nav .menu a{
    display: block;
    margin: 20px 0;
    font-size: 100%;
    }
    nav .divButton{
    display: flex;
    }
    nav div p i{
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin: 20px;
    }
    nav .logo img{
    width: 150px;
    }
}

/* ADS */
.adsdekstop{
    margin-top: 100px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}
.adsdekstop .banner{
    width: 45%;
    display: inline-block;
    margin-bottom: 10px;
}
.adsdekstop .banner img{
    width: 100%;
    border-radius: 5px;
}
.adsmobile{
    display: none;
}
@media(max-width:500px){
    .adsdekstop{
        display: none;
    }
    .adsmobile{
        display: block;
        margin-top: 100px;
        width: 100%;
        padding: 0 20px;
    }
    .adsmobile .banner{
        width: 100%;
        display: inline-block;
        margin-bottom: 10px;
    }
    .adsmobile .banner img{
        width: 100%;
        border-radius: 5px;
    }
}

/* JUDUL */

.judul{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 50px;
    color: #fff;
    padding-left: 20px;
}

/* KONTEN */
.content{
    width: 100%;
    display: flex;
    overflow: hidden;
}
.content .video{
    width: 70%;
    color: #fff;
    padding: 20px;
    position: relative;
}
.content .video p{
    width: 80%;
    margin-top: 20px;
}
.content .video a{
    font-size: 20px;
    color: #fff;
    background-color: #1f357e;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #1f357e;
    text-decoration: none;
}
.content .video a:hover{
    background-color: #4365d4;
}
.content .ads{
    height: 150vh;
    width: 30%;
    border: 1px solid lightcyan;
}

/* JUMP */

.jump{
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    z-index: 9;
    top: 0;
}
.jump .link{
    width: 100%;
    height: 100%;
    background-color: transparent !important;
    border: none !important;
}

/* LABEL */
.label{
    width: 100%;
    padding-left: 20px;
    margin-top: 50px;
}
.label div{
    margin-bottom: 50px;
}
.label div a{
    color: #fff;
    padding: 10px;
    border: 1px solid #1f357e;
    border-radius: 5px;
    text-decoration: none;
}
.label .tags{
    display: flex;
    flex-wrap: wrap;
}
.label .tags a{ 
    margin-right: 20px;
    margin-top: 20px;
    
}

/* SARAN */

.saran{
    width: 100%;
    display: flex;
    padding: 10px 20px;
    justify-content: start;
}

.saran a{
    padding: 10px;
    cursor:pointer;
    border-radius:5px;
    border:none;
    background: #1f357e;
    color:#fff;
    text-decoration: none;
}
.saran a:hover{
    background: #4365d4;
}

@media (max-width:980px){
    .content{
        display: block;
    }
    .content .video{
        width: 100%;
    }
    .content .ads{
        width: 100%;
        height: 50vh;
    }
}
@media (max-width:700px){
    .content .video iframe{
        width: 100%;
    }
    .content .video p{
        width: 100%;
    }
    .content .video section{
        width: 60%;
    }
}

/* TIP */

.tip{
    margin-top: 20px;
    width: 100%;
    padding: 20px;
}
.tip a{
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    background: #1f357e;
    font-size: 13px;
}
.tip a:hover {
    background: #CA1818;
    transition: 0.5s;
}

/* OTHER */

.part{
    width: 100%;
    padding-top: 75px;
}
.head-part{
    width: 100%;
    display: flex;
    padding: 20px 10px;
    justify-content: space-between;
}
.head-part h3{
    padding: 10px;
    background-color: #1f357e;
    color: white;
    border-radius: 10px;
}
.head-part a{
    font-size: 25px;
    color: #1f357e;
    text-decoration: none;
}
.head-part a:hover{
    color: #fff;
}
.list{
    width: 100%;
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
}
.list .contentother{
    width: 20%;
    text-align: center;
    margin: 20px;
}
.list .contentother .img-side{
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.list .contentother .img-side img{
    width: 100%;
    border-radius: 5px;
    border: 3px solid #bbb;
    border-radius: 5px;
}
.list .contentother .img-side img:hover{
    border: 3px solid #1f357e;
    transition: 0.5s;
}
.list .contentother .kualitas{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background-color: rgba(128, 128, 128, 0.5);
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    font-weight: 800;
}
.list .contentother .eps{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    border: 2px solid #fff;
    border-style: dotted;
    border-radius: 50%;
    color: lightblue;
    background-color: rgba(0, 0, 0, 0.9);
}
.list .contentother .pict{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background-color: rgba(128, 128, 128, 0.5);
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    font-weight: 800;
}
.list .contentother .video{
    position: absolute;
    top: 50px;
    right: 10px;
    padding: 5px;
    background-color: rgba(128, 128, 128, 0.5);
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    font-weight: 800;
}
.list .contentother .durasi{
    position: absolute;
    padding: 5px;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 5px;
}
.list .contentother .judul{
    font-size: 20px;
    color: #4365d4;
    text-decoration: none;
}
.list .contentother .judul:hover{
    color: #fff;
    transition: 0.5s;
}

@media (max-width:850px){
    .list .contentother{
        width: 25%;
    }
}

@media (max-width:650px){
    .head-part{
        align-items: center;
    }
    .head-part h3{
        font-size: 20px;
    }
    .head-part a{
        font-size: 20px;
    }

    .list .contentother .kualitas{
        font-size: 10px;
    }
    .list .contentother .pict{
        font-size: 10px;
    }
    .list .contentother .video{
        font-size: 10px;
        top: 40px;
    }
    .list .contentother .durasi{
        font-size: 10px;
    }
    .list .contentother .eps{
        font-size: 10px;
        border: 1px solid #fff;
        border-style: dotted;
    }
    .list .contentother .judul{
        font-size: 15px;
    }
}
@media (max-width:520px){
    .head-part h3{
        font-size: 14px;
    }
    .head-part a{
        font-size: 14px;
    }
    .list .contentother{
        width: 42%;
        margin:10px;
    }
    .list{
        padding: 10px 0px;
        justify-content: center;
    }
}
@media (max-width:450px){
    .list .contentother .img-side img{
        border: 1.5px solid #bbb;
    }
}


/* FOOTER */
footer{
width: 100%;
color: #fff;
padding-bottom: 30px;
}
footer img{
    width:150px;
}
footer .head{
color: #fff;
width: 100%;
padding: 50px 20px;

}
footer .bottom{
width: 100%;
border-top: 1px solid #1f357e;
padding: 50px 20px;
text-align: center;
}
footer .bottom .ads-footer{
width: 100%;
height: 150px;
margin-bottom: 50px;
border: 1px solid lavenderblush;
}
footer .bottom a{
color: #1f357e;
text-decoration: none;
margin: 0 10px;
}
footer .copyright{
text-align: center;
}