html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Navbar start */
.nav-sec {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0; 
    right: 0;
    z-index: 1000; 
}

.navbar .nav-link {
    font-size: 20px;
    margin-right: 10px;
    color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    padding: 10px 15px; 
}

.navbar .nav-link:hover {
    color: #31d975;
}

.navbar .nav-link.active {
    color: #31d975;
}

.navbar .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #31d975;
    transition: width 0.3s ease;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link:last-child {
    margin-right: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar .nav-link {
        font-size: 18px;
        margin-right: 5px; 
        padding: 8px 10px; 
    }
}
/* Navbar end */


#home {
  padding: 60px 0;
  margin-top: 70px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: auto;
}

#home h1 {
  font-size: 90px;
  color: #2f855a;
  position: relative;
  z-index: 3;
}

#home p {
  font-size: 24px;
  margin-top: 10px;
  color: #4a5568;
  position: relative;
  z-index: 3;
}

#home .btn {
  background-color: #2f855a;
  color: white;
  border-radius: 5px;
  margin-top: 10px;
  width: 100px;
  padding: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#home .btn:hover {
  background-color: #218838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#home .circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

#home .big {
  top: -10%;
  width: 600px;
  height: 600px;
  background-color: #bbf7d2;
}

#home .small {
  top: -10%;
  right: 1.5%;
  width: 500px;
  height: 500px;
  background-color: #9edcbd;
}

#home img {
  position: relative;
  top: 10%;
  left: 10%;
  width: 500px;
  z-index: 2;
}

/* Responsive untuk ukuran Tablet */
@media (max-width: 768px) {
  #home h1 {
    font-size: 60px;
  }

  #home p {
    font-size: 20px;
  }

  #home .big {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
  }

  #home .small {
    width: 250px;
    height: 250px;
    bottom: -15%;
    right: -5%;
  }

  #home img {
    width: 350px;
  }
}

/* Responsive untuk ukuran HP */
@media (max-width: 576px) {
  #home {
    padding: 20px 0;
    max-height: 700px;
    overflow: hidden; 
  }

  #home h1 {
    font-size: 40px;
    text-align: center; 
  }

  #home p {
    font-size: 16px;
    text-align: center;
  }

  #home .btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    z-index: 6;
    position: relative;
  }

  #home .big {
    width: 300px;
    height: 300px;
    top: -10%; 
    left: 20%;
    z-index: 1;
  }

  #home .small {
    width: 200px;
    height: 200px;
    bottom: -10%;
    right: 10%;
  }

  #home img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
}

/* Divisi start */
/* #divisi {
  height: auto;
  background-color: #f0fdf5;
  padding: 60px 0;
}

#divisi .leftbag {
  padding-top: 100px;
}

#divisi .divisi-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-color: #fff;
}

#divisi .divisi-card h3 {
  font-size: 22px;
}

#divisi .divisi-card p {
  font-size: 14px;
} */
/* Divisi end */

/* Informasi start */
/* Informasi start */
#informasi {
  height: auto;
  background-color: #f0fdf5;
  padding: 60px 0;
}

#informasi .leftbag {
  padding-top: 50px;
}

#informasi .informasi-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-color: #fff;
}

#informasi .informasi-card h3 {
  font-size: 22px;
}

#informasi .informasi-card p {
  font-size: 14px;
}
/* Informasi end */

/* Pengumuman start */
.announcements-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.announcements-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.announcements-table tbody tr:hover {
    background-color: #e2f0e2;
}

.announcements-table th,
.announcements-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.announcements-table th {
    background-color: #2f855a;
    color: #ffffff;
}

.announcements-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.btn-show-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2f855a;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-show-more:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Coming Soon Section */


/* Pengumuman end */

/* Activity start */
.activity-card {
    background-color: #ffffff; 
    transition: transform 0.3s; 
}

#activity {
  height: auto;
  background-color: #f0fdf5;
  padding: 50px 0;
}

#activity .row {
  display: flex;
  justify-content: center;
  align-items: center; 
}

#activity .activity-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 0 auto;
  max-width: 500px; 
}
/* Activity end */

/* Bantuan start */
#bantuan {
  height: auto;
  background-color: #F0FDF5;
  padding: 40px;
}

#bantuan .btn-whatsapp {
  background-color: #2f855a;
  color: white;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

#bantuan .btn-whatsapp:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

#bantuan .square {
  position: absolute;
  width: 300px;
  height: 200px;
  border-radius: 0% 0% 0% 15%;
  background-color: #166537;
  z-index: 1;
}

#bantuan .robot {
  width: 200px;
  top: 20%;
  left: 15%;
  z-index: 2;
}

#bantuan img {
  position: relative;
}

/* Responsif untuk Tablet */
@media (max-width: 768px) {
  #bantuan {
    padding: 30px;
  }

  #bantuan .btn-whatsapp {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  #bantuan .robot {
    width: 150px;
    top: 10%;
    left: 25%;
  }

  #bantuan .square {
    width: 250px;
    height: 170px;
  }
}

/* Responsif untuk HP */
@media (max-width: 576px) {
  #bantuan {
    padding: 20px;
  }

  #bantuan h1 {
    font-size: 32px;
    text-align: center;
  }

  #bantuan p {
    font-size: 16px;
    text-align: center;
  }

  #bantuan .btn-whatsapp {
    width: 50%;
    padding: 12px;
  }

  #bantuan .robot {
    width: 100px; 
    top: -80%;
    left: 70%; 
  }

  #bantuan .square {
    width: 140px;
    height: 70px;
    top: -90%;
    left: 60%;
  }
}
/* Bantuan end */

/* Registrasi start */
/* #registrasi1 {
  display: block;
  padding-top: 50px;
}

#registrasi1 .card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  padding: 40px;
  width: 100%;
  max-width: 800px;
  height: 640px;
  margin-bottom: 50px;
}

#registrasi1 .form-control {
  border-radius: 10px;
  border: solid 1px;
}

#registrasi1 label {
  margin-bottom: -10px;
}

#registrasi2,
#dataview {
  display: none;
  padding-top: 50px;
}

#registrasi2 .card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  padding: 60px;
  width: 100%;
  max-width: 800px;
  height: 640px;
  margin-bottom: 50px;
}

#registrasi2 .form-control {
  border-radius: 10px;
  background-color: #7fd2a0;
}

#registrasi2 .form-control-file {
  border-radius: 10px;
  background-color: #7fd2a0;
}

#registrasi2 label {
  margin-bottom: -10px;
}

#registrasi2 small {
  font-size: 12px;
}

#dataview .view {
  min-height: 38px;
  height: auto;
}

#dataview .card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  padding: 40px;
  width: 100%;
  max-width: 800px;
  height: 950px;
  margin-bottom: 50px;
}

#dataview .form-control {
  border-radius: 10px;
  border: solid 1px;
} */
/* Registrasi end */

/* Registrasi New start */
.regist {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #F0FDF5 0%, #dcf5e7 100%);
  padding: 20px;
  background-image: 
    radial-gradient(circle at 100% 100%, rgba(40, 167, 69, 0.1) 0, transparent 200px),
    radial-gradient(circle at 0% 0%, rgba(32, 201, 151, 0.1) 0, transparent 200px);
}

.form-box {
  width: 100%;
  max-width: 850px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.form-box:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(31, 38, 135, 0.15),
    0 2px 5px rgba(0, 0, 0, 0.05);
}

.header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e8f5e9;
  position: relative;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #28a745, #20c997);
}

.header img {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.header img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Step Indicator Enhancement */
#stepIndicator {
  font-size: 1.1rem;
  font-weight: 700;
  color: #28a745;
  margin: 25px 0 15px;
  padding: 12px 20px;
  background: linear-gradient(to right, #f8f9fa, #e8f5e9);
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

#stepIndicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
  animation: progressBar 0.5s ease;
}

/* Form Controls Enhancement */
.form-control, .form-select {
  border: 2px solid #e8f5e9;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  background: #ffffff;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
  border-color: #28a745;
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: #adb5bd;
  font-size: 0.9rem;
}

.form-label {
  font-weight: 600;
  color: #2f3e46;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* File Input Enhancement */
input[type="file"] {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="file"]:hover {
  border-color: #28a745;
  background: #e8f5e9;
}

.form-text {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 5px;
}

/* Button Enhancement */
.btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-custom {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.btn-secondary {
  background: #6c757d;
  color: white;
  margin-right: 12px;
  border: none;
}

.btn-success {
  background: linear-gradient(135deg, #198754 0%, #157347 100%);
  color: white;
  border: none;
  padding: 14px 32px;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

/* Radio Button Enhancement */
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.25em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-check-input:checked {
  background-color: #28a745;
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.form-check-label {
  cursor: pointer;
  padding-left: 6px;
  font-size: 0.95rem;
}

/* Step Animation Enhancement */
.step {
  display: none;
  opacity: 0;
  transition: all 0.4s ease;
}

.step.active {
  display: block;
  opacity: 1;
  animation: fadeInStep 0.6s ease forwards;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressBar {
  from { width: 0; }
  to { width: 25%; }
}

/* Responsive Enhancement */
@media (max-width: 768px) {
  .form-box {
    padding: 25px;
    margin: 15px;
  }
  
  .header {
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  #stepIndicator {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .row {
    margin-bottom: 15px;
  }
}

/* Confirmation Step Enhancement */
input[readonly], textarea[readonly] {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  cursor: not-allowed;
  opacity: 0.9;
}

/* Row Spacing Enhancement */
.row {
  margin-bottom: 20px;
}
/* Registrasi New end */

/* Footer */
#kontak {
  background-color: #166537;
  padding: 80px 60px;
}

#kontak .promote {
  color: #ffffff;
}

#kontak ul li {
  margin-bottom: 10px;
  text-align: start;
}

#kontak ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

#kontak ul li a:hover {
  color: #ffffff75;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-top: 50px;
}

.footer-logo img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#social_komit {
  background-color: #145330;
  color: #ffffff;
  padding: 10px 0;
}

#social_komit .media {
  display: flex;
  gap: 20px;
}

#social_komit .sosmed {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  width: 30px;
  height: 30px;
  background-color: rgba(75, 110, 75, 0.4);
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}

#social_komit .sosmed:hover {
  transform: scale(1.1);
  background-color: #ffffff75;
}

.copyright {
    text-align: left;
}

/* Responsif untuk tablet */
@media (max-width: 768px) {
    #kontak {
        padding: 10px 30px;
        max-height: 700px;
        overflow: hidden;
    }

    .footer-logo {
        flex-direction: column; 
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 80%; 
        margin-bottom: 20px; 
    }

    #social_komit .media {
        flex-direction: row;
        justify-content: center; 
        text-align: center;
    }
}

/* Responsive mode hp */
@media (max-width: 576px) {
    #kontak {
        padding: 40px 20px;
    }

    #kontak h5 {
        text-align: center; 
        margin-bottom: 15px; 
    }

    #kontak ul li {
        text-align: center;
        margin-bottom: 10px;
    }

    #social_komit .sosmed {
        width: 25px;
        height: 25px;
    }

    .copyright {
        text-align: center; 
        margin-top: 20px;
    }
}
/* Footer end */

/* Pengumuman Page Start */
.full-announcements-section {
    padding: 50px 0;
}

.container-announcements {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s;
}

.table-responsive {
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: #2f855a;
    color: #fff;
}

.table thead th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.table tbody tr {
    background-color: #f9f9f9;
    transition: background-color 0.2s ease-in-out;
}

.table tbody tr:nth-child(even) {
    background-color: #f1f1f1;
}

.table tbody tr:hover {
    background-color: #e2f0e2;
}

.table tbody td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.table tbody td:first-child {
    font-weight: bold;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.dataTables_wrapper {
    margin: 20px 0;
    overflow: hidden;
}

.dataTables_wrapper .dataTables_filter {
    float: right;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    margin-top: 10px;
    margin-bottom: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 8px 12px;
    margin-left: 4px;
    background-color: #166537;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #145330;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #0e3b28;
    font-weight: bold;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    background-color: #ccc;
    color: #fff;
}


/* Hide scrollbars */
.table-responsive {
    overflow-x: hidden; 
    overflow-y: hidden;
}

/* Responsive untuk tabelt */
@media (max-width: 768px) {
    .container-announcements {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    .table {
        font-size: 14px;
    }

    .table tbody td {
        padding: 8px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 4px 8px;
    }

    .dataTables_wrapper .dataTables_paginate {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .table-responsive {
        overflow-x: auto; 
    }
}

/* Responsive untuk hp */
@media (max-width: 576px) {
    h1 {
        font-size: 24px;
    }

    .table {
        font-size: 12px;
    }

    .table tbody td {
        padding: 6px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 4px 6px;
    }
}
/* Pengumuman Page End */

/* Responsive Design */
/* @media (max-width: 1200px) {
  #home h1 {
    font-size: 70px;
  }

  #home p {
    font-size: 20px;
  }

  #home img {
    width: 400px;
  }

  #home .big,
  #home .small {
    width: 500px;
    height: 500px;
  }

  #home .small {
    right: 2%;
  }

  #divisi .divisi-card h3 {
    font-size: 20px;
  }

  #divisi .divisi-card p {
    font-size: 12px;
  }

  #comingsoon p {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  #home h1 {
    font-size: 60px;
  }

  #home p {
    font-size: 18px;
  }

  #home img {
    width: 300px;
  }

  #home .big,
  #home .small {
    width: 400px;
    height: 400px;
  }

  #home .small {
    right: 5%;
  }

  #divisi {
    height: 90vh;
  }

  #divisi .divisi-card h3 {
    font-size: 18px;
  }

  #divisi .divisi-card p {
    font-size: 12px;
  }

  #comingsoon p {
    font-size: 24px;
  }

  #bantuan .square {
    width: 250px;
    height: 150px;
  }

  #bantuan .robot {
    width: 150px;
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 50px;
  }

  #home p {
    font-size: 16px;
  }

  #home img {
    width: 100%;
    left: 0;
  }

  #home .big,
  #home .small {
    width: 300px;
    height: 300px;
  }

  #home .small {
    right: 0;
  }

  #divisi {
    height: auto;
  }

  #comingsoon p {
    font-size: 20px;
    padding: 50px;
  }

  #bantuan .square {
    width: 200px;
    height: 100px;
  }

  #bantuan .robot {
    width: 100px;
  }

  #kontak {
    padding: 60px 30px 30px 30px;
  }
} */

/* @media (max-width: 576px) {
  #home {
    height: 145vh;
  }
  #home h1 {
    font-size: 40px;
  }

  #home p {
    font-size: 14px;
  }

  #home img {
    width: 100%;
  }

  #home .big {
    top: 2%;
    right: 0%;
    left: 0%;
    width: 500px;
    height: 500px;
  }
  #home .small {
    top: 2%;
    right: 7%;
    width: 400px;
    height: 400px;
  }

  #divisi {
    padding: 10px;
  }

  #divisi .leftbag {
    padding-top: 50px;
  }

  #divisi .divisi-card h3 {
    font-size: 16px;
  }

  #divisi .divisi-card p {
    font-size: 10px;
  }

  #comingsoon {
    height: 20vh;
  }
  #comingsoon p {
    font-size: 18px;
    padding: 40px;
  }

  #activity {
    height: auto;
  }

  #bantuan {
    height: auto;
  }

  #bantuan .square {
    width: 150px;
    height: 75px;
  }

  #bantuan .robot {
    width: 80px;
  }

  #kontak {
    height: 150vh;
    padding: 40px 15px;
  }

  footer .sosmed {
    width: 25px;
    height: 25px;
  }
} */
