*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}
body{
    margin: 0;
    font-family: Poppins;
}

section{
    padding: 70px 10% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(../assets/img/cave.jpg);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
}

.home-text h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#f1683a;
}

.home-text p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 30px;
    color: #ffffffd3;
    margin-bottom: 35px;

}

.btn{
    display: inline-block;
    padding: 13px 30px;
    background-color: #ffffff6c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.btn:hover{
    transform: translateX(5px);
    border: 2px solid;
    background: transparent;
    color: #f1683a;
}

:root{
    --width-circle: 150vw;
    --radius: calc(100vw / 6);
}

/* POTENSI */

.potensi-judul h1{
    font-size: 22px;
    font-weight: 600;
    color: #0B2447;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-left: 18rem;
    text-align: center;

}

.potensi-judul h5{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 18rem;
    text-align: center;
    color: #f1683a;
}

.potensi-judul p{
    font-size: var(--p-font-);
    font-weight: 400;
    line-height: 30px;
    color: #0B2447;
    margin-bottom: 35px;
    margin-left: 18rem;
    text-align: center;
}
.potensi {
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
    padding-top: 2rem;
    padding-left: 5rem;
    gap: 1rem;
    width: 80rem;
    color: #0B2447;
}

.slider{
    width: 100vw;
    height: 100vh;
    overflow: hidden; 
    position: relative;
    background-color: #fff;
    background-image: radial-gradient(#f1683ae7, transparent 50%);
    margin-top: -50px;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: transform 0.8s;
    
}
.slider .list .item{
    width: calc(var(--radius) * 2);
    text-align: center;
    transform: rotate(45deg);
    transition: transform 1s;
}
.slider .list .item.active{
    transform: rotate(0deg);
}
.slider .list .item img{
    width: 90%;
    filter: drop-shadow(0 0 20px #000);
}
.slider .content{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f1683a;
    width: max-content;
    font-family: 'Courier New', Courier, monospace;
}
.slider .content div:nth-child(2){
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: bold;
    position: relative;
}
.slider .content div:nth-child(2)::before{
    position: absolute;
    left: 60%;
    bottom: 50%;
    width: 80px;
    height: 80px;
    content: '';
    background-image: url(img/leaves.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.slider .content div:nth-child(1){
    text-align: left;
    text-transform: uppercase;
    transform: translateY(20px);
}
.slider .content button{
    border: 1px solid #eee5;
    background: transparent;
    color: #eee;
    font-family: Poppins;
    letter-spacing: 5px;
    border-radius: 20px;
    padding: 10px 20px;
}
#prev,
#next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #eee9;
    background-color: #eee5;
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    cursor: pointer;
    z-index: 15;
}
#prev{
    left: 20px;
}
#next{
    right: 20px;
}

/* //circle */

.circle{
    pointer-events: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    -webkit-mask: radial-gradient(var(--radius), transparent 100%, #000);
    mask: radial-gradient(var(--radius), #0000 98%, #000);
    backdrop-filter: blur(10px);
    background: radial-gradient( 
        calc(var(--radius) + 1px), #eee5 100%, #eee2
    );
    
}
.circle span{
    display: block;
    position: absolute;
    height: calc(var(--radius) * 2 + 50px);
    top: 50%;
    left: 50%;
    --rotate: 50deg;
    transform: translate(-50%, -50%) rotate(var(--rotate));
    text-transform: uppercase;
    color: #f1683a;
    font-size: small;
    animation: circleRotate 20s linear infinite;
}
@keyframes circleRotate{
    to{
        transform: translate(-50%, -50%) rotate(calc(var(--rotate) + 360deg));
    }
}