*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    color: white;
    /* overflow: hidden; */
}

body{
    background-color: #181C25;
}
/* .navbar{
    position: fixed;
    width: 100%;
    z-index: 1;
} */

.nav_border{
    background-color:#0F0E0E;
}

.nav_content a{
    color: #FFFFFF;
}


/* .home{
    height:989px;
    background: #181C25;
    box-shadow: 0px 4px 19.6px 0px rgba(0, 0, 0, 0.25);
} */

.myPict img{
    width: 450px;
    height: 500px;
    border-radius: 33px;
    background: #e0e0e0;
    box-shadow:  5px 5px 20px #222831,
                -5px -5px 20px #222831;
}

.introduction{
    height: 889px;
}


.myskill{
    height: 60px;
    width: 60px;
    border-radius: 31px;
    background: #e0e0e0;
    /* box-shadow:  5px 5px 10px #c1c1c1,
                -5px -5px 10px #ffffff; */
}

/* Styles for small screens (max width 767px) */
@media (max-width: 767px) {
    .col-sm-12 {
        width: 100%;
    }
}

/* Styles for medium screens (min width 768px) */
@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}


/* INI Project */
.card {
    position: relative;
    width: 300px;
    height: 200px;
    background: #222831;
    /* background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% ); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}


.card:hover {
transform: rotate(-5deg) scale(1.1);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
width: 100%;
height: 100%;
padding: 20px;
box-sizing: border-box;
background-color: #fff;
opacity: 0;
transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .card__content {
transform: translate(-50%, -50%) rotate(0deg);
opacity: 1;
}

.card__title {
margin: 0;
font-size: 24px;
color: #333;
font-weight: 700;
}

.card__description {
margin: 10px 0 0;
font-size: 14px;
color: #777;
line-height: 1.4;
}

.card:hover svg {
scale: 0;
transform: rotate(-45deg);
}


/* Timeline */
@keyframes baselineAnimation {
    0% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}


.baseline {
    width: 100%;
    animation: baselineAnimation 1s infinite;
    /* Ubah durasi animasi sesuai keinginan Anda */
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    color: #FFFFFF;
}


.cont_x {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.cont_x:nth-child(1) {
    animation-delay: 0s;
}

.cont_x:nth-child(2) {
    animation-delay: 1s;
}

.cont_x:nth-child(3) {
    animation-delay: 2s;
}

.cont_x:nth-child(4) {
    animation-delay: 3s;
}

.cont_x:nth-child(5) {
    animation-delay: 4s;
}

.text-box {
    text-align: end;
    padding: 20px 30px;
    background: #1C1A26;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 0 2px 2px #CDC2DC;
    height: 120px;
}

.text-box-kanan {
    padding: 20px 30px;
    background: #1C1A26;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 0 2px 2px #CDC2DC;
    height: 120px;
}

.cont_left {
    left: 0;
}

.cont_right {
    left: 50%;
}

.cont_x img {
    position: absolute;
    right: -20px;
    top: 32px;
    z-index: 10;
}

.cont_right img {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    /* background: #EFB8C9; */
    background: white;
    border-radius: 20px;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 5s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }
    
    100% {
        height: 100%;
    }
}

.text-box h2, .text-box-kanan h2 {
    font-size: 20px;
    font-weight: 600;
}

.text-box small {
    display: inline-block;
    margin-bottom: 15px;
}


.hide {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-10%);
    transition: all 1s;
}

.hide-2 {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(10%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

