* {

margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;

}

body {

background-color: #000000;
color: #010101;

}

header {

position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 30px 100px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 10000;


}

header .logo {

font-size: 2em;
color: #fff;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;


}

header .toggle {

position: relative;
width: 30px;
height: 30px;
background: url(jentak.png);
background-position: center;
background-repeat: no-repeat;
background-size: 30px;
cursor: pointer;

}

.slider {

position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-end;
background: #000000;

}

.slider .imgBx {

position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 100px;
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s;
transition-delay: 0s;
z-index: 1;
clip-path: circle(0px at center);



}


.slider input[type="radio"]:checked + .imgBx {

z-index: 10;
clip-path: circle(1000px at center);
transition-delay: 0.75s;


}


.slider .imgBx img {

position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;



}

.slider .imgBx .content {

position: relative;
text-align: center;
max-width: 800px;



}

.slider .imgBx .content h2 {

font-size: 6em;
line-height: 1em;
color: #000000;


}

.slider .imgBx .content p {

font-size: 1.1em;
color: #000000;


}

.slider .imgBx .content a {

position: relative;
display: inline-block;
background: #fff;
padding: 10px 30px;
color: #111;
font-weight: 500;
margin-top: 20px;
text-decoration: none;



}

.slider input[type="radio"] {

position: relative;
z-index: 1000;
margin: 5px;
margin-bottom: 40px;
outline: none;
cursor: pointer;



}

@media (max-widht: 768px) {

header {

padding: 20px 40px;

}

.slider .imgBx {

padding: 40px;

}

.slider .imgBx .content h2 {

font-size: 3em;


}

.slider .imgBx .content p {

font-size: 1em;
margin-top: 10px;

}


}

.snd-header {

height: 100vh;
display: flex;
justify-content: center;
align-items: center;




}

.section {


height: 100vh;
padding: 1rem;


}

.section__paragraph {

margin: 1rem 0;
transform: translateY(20px);


}

.section__paragraph--visible {

transform: translateY(0);
opacity: 1;



}

