@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Poppins:wght@400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
    transition: .2s all linear;
    user-select: none;
    -webkit-user-select: none;
}

:root {
    --navbackground: #f5f5f5;
    --navhover: white;
    --navtext: #0A0838;
    --color1: #AB79F0;
    --color2: #6F58BF;
    --color3: #efb61a;
    --color4: #f4d35d;
    --color5: #ffec99;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
}

::-webkit-scrollbar {
    display: none;
}

section {
    padding: 5rem 10%;
}

nav {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.3rem 10%;
    z-index: 100;
}

nav.sticky {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.256), rgba(0, 0, 0, 0.233));
    backdrop-filter: blur(30px);
}

nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1536px;
}

nav .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo img {
    width: 1.7rem;
    margin-right: .2rem;
}

nav .logo p {
    font-size: 23px;
    font-weight: 900;
    font-family: "quicksand";
    color: var(--navhover);
}

nav .navbar {
    display: flex;
    align-items: center;
}

nav .navbar ul li {
    display: inline-block;
}

nav .navbar ul li a {
    padding: 2rem;
    color: var(--navhover);
    font-size: 15px;
    font-weight: 500;
}

nav.sticky .navbar ul li a {
    color: var(--navhover);
}

nav .navbar ul li a:hover {
    color: var(--color3);
}

nav.sticky .navbar ul li a:hover {
    color: var(--color2);
}

nav .navbar .button {
    color: white;
    display: none;
    z-index: 1;
    font-size: 30px;
    font-weight: 700;
}

nav .navbar .button i {
    display: none;
}

nav.sticky .navbar .button #iconnav {
    color: var(--navhover);
}

nav .navbar .button #iconnav:hover,
nav .navbar .button #closenav:hover {
    color: var(--color3);
    cursor: pointer;
}

@media (max-width: 1300px) {
    nav {
        padding: 1rem 5%;
    }
}

@media (max-width: 950px) {
    nav .navbar .button {
        display: block;
    }

    #iconnav {
        display: block;
    }

    nav .navbar ul {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.8);
    }

    nav .navbar ul.open {
        left: 0;
    }

    nav .navbar ul li {
        padding: 1rem 0;
    }

    nav .navbar ul li a {
        font-size: 20px;
        font-weight: 700;
        padding: 1rem 2rem;
        font-family: "quicksand";
        color: white;
    }
}

@keyframes appear {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes appeartop {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes appearbottom {
    from {
        opacity: 0;
        transform: translateY(100px) scale(.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes appearleft {
    from {
        opacity: 0;
        transform: translateX(-500px) scale(.5);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes appearright {
    from {
        opacity: 0;
        transform: translateX(100px) scale(.5);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* beranda section */
.beranda {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 845px;
}

.beranda .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1536px;
}

.beranda::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../../img/static/bgbaru.jpg) no-repeat center;
    background-size: cover;
    z-index: -1;
    filter: brightness(.7);
}

.beranda .left {
    display: flex;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    padding: 12rem 0;
    animation: appearleft .5s linear;
}

.beranda .left .top {
    color: var(--navhover);
    font-size: 2.7rem;
    letter-spacing: 3px;
}

.beranda .left .top h1 {
    font-weight: 700;
    line-height: 1.1;
}

.beranda .left .top h1 span {
    position: relative;
    color: var(--color4);
}

.beranda .left .bottom {
    margin-top: 6rem;
    display: flex;
    align-items: center;
}

.beranda .left .bottom a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--navhover);
    border-radius: 30px;
    padding: .2rem 1rem .2rem 0;
    letter-spacing: 2px;
}

.beranda .left .bottom a:hover {
    letter-spacing: 3px;
    backdrop-filter: blur(30px);
}

.beranda .left .bottom a span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding: .1rem;
    border: 2px solid var(--navhover);
    border-radius: 50%;
    margin-right: 1rem;
    animation: buttonberanda 2s linear infinite alternate;
}

@keyframes buttonberanda {
    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

.beranda .left .bottom a:hover span {
    transform: scale(1.2);
}

.beranda .left .bottom a p {
    font-size: 15px;
    font-weight: 500;
}

.beranda .right {
    position: relative;
    display: flex;
    padding: 2rem 0;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    align-items: end;
    justify-content: flex-end;
}

.beranda .right .top {
    width: 26rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(30px);
    background: linear-gradient(240deg, rgba(0, 0, 0, 0.082), rgba(0, 0, 0, 0.078));
    color: var(--navhover);
    animation: appearright .5s linear;
}

.beranda .right .top p {
    font-size: 17px;
    font-weight: 500;
}

.beranda .right .top span {
    font-size: 13px;
}

.beranda .right .bottom {
    display: flex;
    justify-content: space-between;
    color: var(--navhover);
    margin-top: 5rem;
    animation: appearbottom .5s linear;
}

.beranda .right .bottom .box {
    padding: 0 2rem;
}

.beranda .right .bottom .box span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.beranda .right .line {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    right: -12%;
    top: 40%;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    animation: appear .7s linear;
}

.beranda .right .line::before {
    content: '';
    position: absolute;
    bottom: -20rem;
    width: 2px;
    height: 300px;
    border-radius: 20px;
    background: rgb(189, 189, 189);
    animation: appeartop 1s linear;
}

.beranda .right .line::after {
    content: '';
    position: absolute;
    bottom: -5rem;
    width: 3px;
    height: 60px;
    border-radius: 20px;
    background-color: var(--color3);
    animation: appeartop 1s linear;
}

@media (max-width: 1300px) {
    .beranda .left .top {
        font-size: 2.4rem;
    }

    .beranda .right .top {
        width: 24rem;
    }

    .beranda .right .top p {
        font-size: 15px;
    }

    .beranda .right .top span {
        font-size: 11px;
    }

    .beranda .right .bottom {
        margin-top: 3rem;
    }
}

@media (max-width: 950px) {
    .beranda {
        padding: 5rem 10% 1rem;
    }

    .beranda .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .beranda .left,
    .beranda .right {
        height: 100%;
    }
    
    .beranda .left {
        padding: 4rem 0 0 0;
    }

    .beranda .right {
        height: 100%;
        padding: 0;
    }

    .beranda .right .bottom {
        margin-top: 1.5rem;
    }

    .beranda .right .line {
        display: none;
    }
}

@media (max-width: 500px) {
    .beranda {
        padding: 5rem 5% 1rem;
    }

    .beranda .left .top {
        font-size: 2rem;
    }

    .beranda .left .bottom a {
        background: linear-gradient(120deg, rgba(0, 0, 0, 0.084), rgba(0, 0, 0, 0.377));
        backdrop-filter: blur(5px);
    }

    .beranda .left .bottom a p {
        font-weight: 600;
    }

    .beranda .right {
        align-items: center;
    }

    .beranda .right .top {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }

    .beranda .right .top p {
        font-size: 14px;
        font-weight: 600;
    }

    .beranda .right .top span {
        font-size: 12px;
    }

    .beranda .right .bottom .box {
        text-align: center;
    }
}

/* wrappersection */
.wrappersection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: url(../../img/static/bg.jpg) no-repeat center;
    background-size: cover;
}

.wrappersection .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: 1536px;
}

/* tentangkami section */
.tentangkami {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    width: 100%;
    height: 100%;
    padding: 5rem 15%;
    z-index: 1;
}

.tentangkami .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-right: 2rem;
    animation: appearbottom linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.tentangkami .left span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color3);
    letter-spacing: 2px;
}

.tentangkami .left h1 {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1.3;
    letter-spacing: 2px;
}

.tentangkami .right {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    animation: appearright linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.tentangkami .right p {
    font-size: 15.5px;
    line-height: 2;
}

.tentangkami .right .button {
    display: flex;
}

.tentangkami .right .button a {
    display: flex;
    align-items: center;
    color: var(--navhover);
    background: #2E353D;
    padding: .5rem 1.5rem;
    border-radius: 30px;
}

.tentangkami .right .button a p {
    font-size: 15px;
}

.tentangkami .right .button a span {
    margin-left: .5rem;
}

@media (max-width: 1460px) {
    .tentangkami .left h1 {
        font-size: 3.4rem;
    }

    .tentangkami .right p {
        font-size: 15px;
    }
}

@media (max-width: 1305px) {
    .tentangkami .left h1 {
        font-size: 3.2rem;
    }

    .tentangkami .right p {
        font-size: 14px;
    }

    .tentangkami .right .button a {
        padding: .4rem 1.3rem;
    }

    .tentangkami .right .button a p {
        font-size: 14px;
    }

    .tentangkami .right .button a span {
        font-size: 1.2rem;
    }
}

@media (max-width: 1235px) {
    .tentangkami {
        padding: 5rem 10%;
    }
    
    .tentangkami .left h1 {
        font-size: 3rem;
    }

    .tentangkami .right p {
        line-height: 1.8;
    }
}

@media (max-width: 1065px) {
    .tentangkami {
        padding: 5rem 5%;
    }
}

@media (max-width: 950px) {
    .tentangkami {
        grid-template-columns: repeat(1,1fr);
        padding: 5rem 10%;
    }

    .tentangkami .left {
        padding: 0;
    }

    .tentangkami .left span {
        font-size: 1.5rem;
    }

    .tentangkami .right {
        margin-top: 2rem;
    }

    .tentangkami .right p {
        font-size: 15.5px;
        line-height: 2;
    }

    .tentangkami .right .button {
        margin-top: 2rem;
    }

    .tentangkami .right .button a {
        padding: .5rem 1.5rem;
    }

    .tentangkami .right .button a p {
        font-size: 15px;
    }
}

@media (max-width: 810px) {
    .tentangkami .left span {
        font-size: 1.2rem;
    }

    .tentangkami .left h1 {
        font-size: 2.7rem;
    }

    .tentangkami .right p {
        font-size: 14px;
    }
}

@media (max-width: 735px) {
    .tentangkami .left h1 {
        width: 25rem;
    }
}

@media (max-width: 500px) {
    .tentangkami {
        padding: 5rem 5%;
    }

    .tentangkami .left h1 {
        width: 100%;
        font-size: 2.5rem;
    }
}

/* info section */
.info {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5rem 15%;
}

.info .title {
    display: flex;
    flex-direction: column;
    animation: appearleft linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.info .title span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color3);
    letter-spacing: 2px;
}

.info .title h1 {
    font-size: 2.5rem;
}

.info .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    width: 100%;
    height: 100%;
    margin-top: 5rem;
    gap: 2rem;
    z-index: 1;
}

.info .content .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.059));
    border-radius: 30px;
    animation: appearbottom linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.info .content .box .icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding: .5rem;
    background: #2E353D;
}

.info .content .box img {
    width: 100%;
    height: 100%;
}

.info .content .desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info .content .desc span {
    margin-top: 1.5rem;
    font-size: 18px;
    font-weight: 600;
}

.info .content .desc p {
    margin-top: .5rem;
    font-size: 14px;
}

@media (max-width: 1235px) {
    .info {
        padding: 5rem 10%;
    }
}

@media (max-width: 1065px) {
    .info {
        padding: 5rem 5%;
    }
}

@media (max-width: 950px) {
    .info {
        padding: 5rem 10%;
    }

    .info .content {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    }
}

@media (max-width: 810px) {
    .info .content {
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    }

    .info .title span {
        font-size: 1.2rem;
    }

    .info .title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .info {
        padding: 5rem 5%;
    }

    .info .title h1 {
        font-size: 2.5rem;
    }

    .info .content {
        margin-top: 3rem;
    }
}

/* video section */
.video {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5rem 15% 1rem;
}

.video .title {
    display: flex;
    flex-direction: column;
    animation: appearleft linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.video .title span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color3);
    letter-spacing: 2px;
}

.video .title h1 {
    font-size: 2.5rem;
}

.video .content {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    width: 100%;
    margin-top: 2rem;
}

.video .content video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video .credit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    gap: 3rem;
}

.video .credit > div {
    text-align: center;
}

.video .credit > div span{
    font-weight: 600;
}

.video .instansi {
    display: flex;
    margin-top: 5rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.video .instansi span {
    color: var(--color3);
    font-weight: 600;
}

@media (max-width: 1235px) {
    .video {
        padding: 5rem 10%;
    }
}

@media (max-width: 1065px) {
    .video {
        padding: 5rem 5%;
    }
}

@media (max-width: 950px) {
    .video {
        padding: 5rem 10%;
    }
}

@media (max-width: 810px) {
    .video .title span {
        font-size: 1.2rem;
    }

    .video .title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .video {
        padding: 5rem 5%;
    }

    .video .title h1 {
        font-size: 2.5rem;
    }
}

/* laporkan section */
.laporkan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 10% 5rem;
    overflow: hidden;
}

.laporkan .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    width: 100%;
    height: 30rem;
    padding: 0;
    max-width: 1536px;
}

.laporkan::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    filter: brightness(.8);
    top: 0;
    left: 0;
    background: url(../../img/static/bg2.png) no-repeat fixed;
    background-size: 100%;
    background-position: 50% 60%;
    z-index: -1;
    filter: brightness(.5);
}

.laporkan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: url(../../img/static/bg.jpg) no-repeat center;
    background-size: cover;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.laporkan .left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.laporkan .left .top {
    display: flex;
    flex-direction: column;
    color: var(--navhover);
}

.laporkan .left .top span {
    color: rgb(255, 235, 120);
    font-size: 20px;
    font-weight: 600;
}

.laporkan .left .top h1 {
    font-weight: 800;
    font-size: 3.6rem;
    font-family: "quicksand";
}

.laporkan .left .top p {
    font-family: "quicksand";
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 2;
}

.laporkan .left .top .button {
    margin-top: 2rem;
}

.laporkan .left .top .button a {
    color: var(--navhover);
    padding: .5rem 1rem;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.354), rgba(255, 255, 255, 0.354));
    backdrop-filter: blur(30px);
    border-radius: 30px;
}

.laporkan .left .top .button a:hover {
    color: var(--color2);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.354), rgba(255, 255, 255, 0.354));
}

.laporkan .left .bottom {
    display: flex;
    gap: 0 2rem;
    align-items: center;
    color: white;
}

.laporkan .left .bottom .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
    border-radius: 20px;
    background: transparent;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.103), rgba(255, 255, 255, 0.089));
}

.laporkan .left .bottom .box .title{
    color: var(--color4);
    font-weight: 500;
}

.laporkan .left .bottom .box .content {
    display: flex;
    gap: 2rem;
}

.laporkan .left .bottom .box .content .cowo,
.laporkan .left .bottom .box .content .cewe {
    text-align: center;
}

.laporkan .left .bottom .box .content .cowo span,
.laporkan .left .bottom .box .content .cewe span {
    margin-top: 1rem;
    font-size: 2.4rem;
    font-weight: 600;
}

.laporkan .right{
    display: flex;
    align-items: center;
    justify-content: end;
}

.laporkan .right .content{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5rem 0;
}

.laporkan .right .content .cowo,
.laporkan .right .content .cewe{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16rem;
    padding: 1rem;
    border-radius: 10px;
    background:rgba(203, 203, 203, 0.09);
    backdrop-filter: blur(5px);
}

.laporkan .right .content .cowo p,
.laporkan .right .content .cewe p{
    color: var(--color4);
    font-weight: 500;
}

.laporkan .right .content .cowo h3,
.laporkan .right .content .cewe h3{
    font-size: 2.6rem;
    letter-spacing: .5px;
    font-weight: 600;
}

.laporkan .right .content .cowo h3 span,
.laporkan .right .content .cewe h3 span{
    font-size: 1.5rem;
}

@media (max-width: 1350px) {
    .laporkan .wrapper {
        grid-template-columns: repeat(1,1fr);
        height: 100%;
    }

    .laporkan .left .bottom .box {
        margin-top: 5rem;
    }

    .laporkan .right{
        margin-top: 3rem;
        justify-content: start;
    }

    .laporkan .right .content{
        flex-direction: row;
        justify-content: center;
        gap: 0 2rem;
    }
}

@media (max-width: 1065px) {
    .laporkan .left .top p {
        width: 100%;
    }
}

@media (max-width: 950px) {
    .laporkan .left .top p {
        font-size: 1.2rem;
    }
}

@media (max-width: 680px) {
    .laporkan .left .bottom {
        justify-content: center;
        gap: 0 1rem;
    }

    .laporkan .left .bottom .box .title{
        font-size: 15px;
    }

    .laporkan .left .bottom .box .content {
        gap: 1rem;
    }

    .laporkan .left .bottom .box .content .cowo span,
    .laporkan .left .bottom .box .content .cewe span {
        font-size: 2rem;
    }

    .laporkan .left .bottom .box .content .cowo p,
    .laporkan .left .bottom .box .content .cewe p {
        font-size: 15px;
    }

    .laporkan .right{
        justify-content: center;
    }

    .laporkan .right .content{
        justify-content: center;
        gap: 0 1rem;
    }

    .laporkan .right .content .cowo,
    .laporkan .right .content .cewe{
        width: 15rem;
    }
}

@media (max-width: 600px) {
    .laporkan .left .top p {
        font-size: 1rem;
    }

    .laporkan .left .top .button a {
        font-size: 15px;
    }

    .laporkan .left .bottom .box .title{
        font-size: 13px;
    }

    .laporkan .left .bottom .box .content .cowo span,
    .laporkan .left .bottom .box .content .cewe span {
        font-size: 1.5rem;
    }

    .laporkan .left .bottom .box .content .cowo p,
    .laporkan .left .bottom .box .content .cewe p {
        font-size: 13px;
    }

    .laporkan .right .content .cowo,
    .laporkan .right .content .cewe{
        width: 12rem;
    }
}

@media (max-width: 545px) {
    .laporkan {
        padding: 10rem 5% 5rem;
    }

    .laporkan .left .bottom .box {
        padding: 1rem;
    }

    .laporkan .left .bottom .box .content {
        gap: .5rem;
    }

    .laporkan .left .bottom .box .content .cowo p,
    .laporkan .left .bottom .box .content .cewe p {
        font-size: 11px;
    }

    .laporkan .right .content{
        justify-content: space-between;
        gap: 0 .5rem;
    }

    .laporkan .right .content .cowo,
    .laporkan .right .content .cewe{
        width: 10rem;
    }

    .laporkan .right .content .cowo h3,
    .laporkan .right .content .cewe h3{
        font-size: 1.6rem;
    }
}

/* panduan Section */
.panduan {
    position: relative;
    display: flex;
    justify-content: center;
}

.panduan .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: 1536px;
}

.panduan .title {
    padding: 0 2rem;
}

.panduan .title span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color3);
}

.panduan .title h1 {
    font-size: 2.5rem;
}

.panduan .content {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem 1.5rem;
}

.panduan .content .slide-content {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: fit-content;
}

.panduan .content .slide-content .card-wrapper {
    display: flex;
    padding: 1rem 0;
}

.panduan .content .slide-content .card-wrapper .card {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;
    width: 22rem;
    border-radius: 20px;
    color: black;
    box-shadow: 5px 5px 20px #bebebe,
            -5px -5px 20px #ffffff;
}

.panduan .content .slide-content .card-wrapper .card .image {
    width: 100%;
    height: 28rem;
    overflow: hidden;
}

.panduan .content .slide-content .card-wrapper .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panduan .content .slide-content .card-wrapper .card:hover img {
    transform: scale(1.1);
}

.panduan .content .slide-content .card-wrapper .card .text {
    padding: 1rem 1.5rem;
}

.panduan .content .slide-content .card-wrapper .card .text h5 {
    font-size: 16px;
    text-align: center;
    font-family: "quicksand";
}

.panduan .content .arrow {
    justify-content: center;
    align-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: #efb61a7a;
    display: none;
}

.panduan .content:hover .arrow {
    display: flex;
}

.panduan .content .swiper-button-next::after,
.panduan .content .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
    color: var(--navhover);
}

.panduan .content .swiper-pagination {
    margin-top: .5rem;
}

.panduan .content .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color4);
}

@media (max-width: 770px) {
    .panduan {
        padding: 5rem 5%;
    }
}

@media (max-width: 810px) {
    .panduan .title span {
        font-size: 1.2rem;
    }
}

@media (max-width: 735px) {
    .panduan .title {
        padding: 0;
    }

    .panduan .content {
        padding: 1rem 0 1.5rem;
    }
}

@media (max-width: 515px) {
    .panduan .content .slide-content .card-wrapper .card {
        margin: 0 1rem;
        width: 90%;
    }

    .panduan .content .arrow {
        width: 2rem;
        height: 2rem;
    }

    .panduan .content .swiper-button-next::after,
    .panduan .content .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 460px) {

    .panduan .content .slide-content .card-wrapper .card {
        margin: 0 1rem;
        width: 90%;
    }

    .panduan .content .slide-content .card-wrapper .card .text h5 {
        font-size: .9rem;
    }
}

@media (max-width: 427px) {
    .panduan .content .slide-content .card-wrapper .card {
        width: 20rem;
    }
}

@media (max-width: 380px) {
    .panduan .content .slide-content .card-wrapper .card {
        width: 100%;
    }
}

/* footer section */
.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 10% 0;
    background: url(../../img/static/bg.jpg) no-repeat center;
    background-size: cover;
    backdrop-filter: blur(30px);
    z-index: 1;
}

.footer .wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 1536px;
}

.footer .top,
.footer .bottom {
    display: flex;
    justify-content: space-between;
    color: black;
}

.footer .top {
    padding-bottom: 2rem;
    border-bottom: 1px solid black;
}

.footer .top .left .title {
    display: flex;
    gap: 0 1rem;
    align-items: center;
}

.footer .top .left .title img {
    width: 3.5rem;
    object-fit: contain;
}

.footer .top .left .title img:first-child {
    width: 12rem;
    filter: drop-shadow(0 0 1px white);
}

.footer .top .left .text {
    margin-top: 1rem;
    width: 30rem;
    text-align: justify;
}

.footer .top .left .text p {
    font-family: "quicksand";
    font-size: 14px;
    line-height: 1.8;
}

.footer .top .right ul li {
    display: inline-block;
}

.footer .top .right ul li a {
    padding: .5rem;
    letter-spacing: 1px;
    /* color: var(--navhover); */
    color: black;
    font-size: .8rem;
    font-weight: 400;
    text-transform: uppercase;
}

.footer .top .right ul li a:hover {
    color: var(--color3);
}

.footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer .bottom .copyright {
    font-size: 12px;
}

.footer .bottom .sosmed {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 .5rem;
}

.footer .bottom .sosmed a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    padding: .5rem;
    background: rgb(255, 255, 255);
    box-shadow: 20px 20px 60px #d9d9d9;
    border-radius: 50%;
}

.footer .bottom .sosmed a i {
    font-size: 15px;
    /* color: var(--navhover); */
    /* color: var(--color3); */
    color: #FCD043;
}

@media (max-width: 1340px) {
    .footer .top .right ul li a {
        padding: .3rem;
        letter-spacing: 0;
        font-size: .6rem;
    }
}

@media (max-width: 925px) {
    .footer {
        padding: 3rem 5% 0;
    }

    .footer .top .left .text {
        width: 25rem;
    }
}

@media (max-width: 865px) {
    .footer .top .left .title img {
        width: 3rem;
    }

    .footer .top .left .title img:first-child {
        width: 10rem;
    }

    .footer .top .left .text {
        width: 20rem;
    }
}

@media (max-width: 790px) {
    .footer .top .left .text {
        width: 15rem;
    }

    .footer .top .left .text p {
        font-size: 11px;
    }
}

@media (max-width: 690px) {
    .footer .top .right ul li a {
        padding: .2rem;
    }

    .footer .bottom .sosmed a {
        width: 1.6rem;
        height: 1.6rem;
        padding: .5rem;
        margin-left: .3rem;
    }

    .footer .bottom .copyright {
        font-size: 9px;
    }

    .footer .bottom .sosmed a i {
        font-size: 15px;
    }
}

@media (max-width: 630px) {
    .footer {
        padding: 2rem 5% 0;
    }

    .footer .top {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .footer .top .left .title img {
        width: 2.5rem;
    }

    .footer .top .left .title img:first-child {
        width: 8rem;
    }

    .footer .top .left .text {
        width: 100%;
    }

    .footer .top .right {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 340px) {
    .footer .bottom .copyright {
        font-size: 7px;
    }
}