@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.footer {
    background: #020517;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20%;
}
.footer-col h2,
.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #000;
}

.social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.2);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding: 0px 3%;
    background: #020517;
    font-size: 13px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cntc{
	display: flex;
    align-items: left;
}

.text{
	padding: 0px 20px;
}

.contact-item{
	padding: 10px 0px;
}

@media (max-width: 1000px) {
.footer-bottom {
	 font-size: 9px;
}

.skl{
	display: none;
}
    .footer-container {
        flex-direction: column;
        align-items: flex-start; /* biar rata kiri */
        padding: 150px 20px;
        gap: 30px; /* jarak antar kolom */
    }

    .footer-col {
        width: 100%;
    }

    .footer {
        min-height: 100vh; /* biar nggak kepanjangan di HP */
    }
	.footer-col h1,
    .footer-col h3 {
        font-size: 18px;
    }

    .footer-col p {
        font-size: 13px;
    }
}