/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: #333;
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo img {
  width: 100px;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.nav__logo:hover {
  color: #017143;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: #333;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }

  .nav__logo img {
    width: 65px;
  }
}

@media (max-width: 768px) {
  .container {
    margin-inline: 1rem;
  }
}

.nav__link {
  color: #333;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Active state untuk link navigasi utama */
.nav__link.active {
    color: #017143 !important;
    font-weight: var(--font-semi-bold);
}

.nav__link.active::after {
    background-color: #017143;
}

/* Active state untuk link dropdown */
.dropdown__link.active {
    color: #017143 !important;
    font-weight: var(--font-semi-bold);
}

/* Active state untuk tombol dropdown */
.dropdown__button.active {
    color: #017143 !important;
    font-weight: var(--font-semi-bold);
}

/* Tambahan hover effect yang konsisten */
.nav__link:hover,
.dropdown__link:hover,
.dropdown__button:hover {
    color: #017143 !important;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: #017143;
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: #333;
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: #017143 !important;
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== HOME ===============*/
.home {
  background: url(../img/homejalansukses2.png) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding-top: 20px;
  position: relative;
}

.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) , rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.95) 90%);
  z-index: 1;
}

.home .home-text {
  z-index: 2;
}

.home .home-btn {
  z-index: 2;
}

.home-text h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.home-text p {
  width: 60%;
  margin: 0 auto;
  color: #fff;
  font-size: 1.2rem;
  line-height: 25px;
  display: block;
  font-style: italic;
}

.home-btn {
  margin-top: 30px;
}

.home-btn .about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017143;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.home-btn .about-btn:hover {
  background-color: #015f2a;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-text p {
    width: 70%;
    font-size: 1rem;
  }

  .home-text h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .home-text p {
    width: 90%;
    font-size: 0.938rem;
  }

  .home-text h2 {
    font-size: 1.5rem;
  }
}

/*=============== ABOUT ===============*/
.about-title {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 40px;
}

.about-title h1 {
  font-size: 36px;
  font-weight: 600;
  color: #017143;
  margin-bottom: 10px;
}

.about-title p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding-top: 5px;
  color: #28a667;
}

.wave-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg {
  width: 100%;
  height: 100px;
}

.about-container {
  background-color: #008751;
  padding: 40px 45px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-img {
  flex: 1;
  max-width: 500px;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: white;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: white;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: #017143;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.about-text .btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .about-img,
  .about-text {
    max-width: 100%;
  }

  .about-title h1 {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
    text-align: justify;
  }

  .wave-top svg {
    height: 60px;
  }
}

/*=============== LAYANAN ===============*/
.layanan {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}

.layanan h1 {
  font-size: 36px;
  font-weight: 600;
  color: #017143;
  margin-bottom: 10px;
}

.layanan p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #28a667;
  font-style: italic;
}

/* Kontainer Grid */
.row {
  display: flex;
  justify-content: center; 
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Card Styling */
.layanan-col {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  height: 270px; /* Ukuran card */
  background: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

.layanan-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Hover pada Card */
.layanan-col:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Layer Transparan */
.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: background 0.5s;
}

.layer:hover {
  background: rgba(0, 0, 0, 0.7);
}

.layer h3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 500;
  font-size: 25px;
  margin: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

.layer:hover h3 {
  bottom: 40%;
  opacity: 1;
}

.layer h3 a {
  color: inherit;
  text-decoration: none;
}

/* Responsif untuk Layar Kecil */
@media (max-width: 1024px) {
  .row {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    display: grid;
  }
}

@media (max-width: 700px) {
  .row {
    grid-template-columns: 1fr; /* 1 kolom */
  }

  .layanan h1 {
    font-size: 28px;
  }

  .layanan-col {
    height: 200px; /* Ukuran card lebih kecil */
    width: 100%;

  }

  .layer {
    background: rgba(0, 0, 0, 0.7); /* Selalu terlihat */
  }

  .layer h3 {
    bottom: 35%;
    opacity: 1;
  }

  .layanan-col:hover {
    transform: none;
    box-shadow: none;
  }
}

/*=============== BERITA ===============*/
.banner-berita {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannerberita.png);   
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 20px;
  width: 100%;
  min-height: 50vh;
  display: flex;
  padding-top: 20px;
}

.berita {
  width: 80%;
  margin: auto;
  text-align: center;
}

.berita h1 {
  font-size: 36px;
  font-weight: 600;
  color: #017143;
}

.berita p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  color: #28a667;
  font-style: italic;
}

.berita-row {
  display: flex;
  justify-content: center; 
  gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 20px;
}

.berita-col {
  flex-basis: 31%;
  border-radius: 7px;
  overflow: hidden;
  text-align: left;
  padding: 15px;
  box-sizing: border-box; 
  /* height: 100%; */
}

.berita-col img {
  width: 100%;
  height: 250px;
  max-height: 200px;
  border-radius: 5px;
  object-fit: cover;
}

.berita-col .tanggal {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.berita-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.berita-col .baca-selengkapnya {
  font-size: 14px;
  font-weight: 600;
  color: #007BFF;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.berita-col .baca-selengkapnya:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .berita-col {
    flex-basis: 48%;
  }

  .berita-col img {
    width: 100%;
    max-height: 200px;
    border-radius: 5px;
    object-fit: cover;
  }
}

@media (max-width: 700px) {

.berita-row {
    flex-direction: column;
}

.berita-col img {
  width: 100%;
  max-height: 150px;
  border-radius: 5px;
  object-fit: cover;
}

.berita h1 {
  font-size: 28px;
}

}
/*=============== KLIEN ===============*/
.client {
    width: 80%;
    margin: auto;
    text-align: center;
}

.client h1 {
    font-size: 36px;
    font-weight: 600;
    color: #017143;
}

.client-container {
    margin-top: 1%;
    margin-bottom: 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.img-client {
    flex: 1 1 18%;
    max-width: 18%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s;
    object-fit: cover;
}

.img-client:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
  .img-client {
    flex: 1 1 calc(30% - 10px); 
    max-width: calc(30% - 10px); 
}

    .client h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
  .img-client {
      flex: 1 1 calc(30% - 10px); 
      max-width: calc(30% - 0px); 
  }
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #ffffff;
  padding: 40px 10%;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.logo-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: -15px;
}

.footer-company {
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 7px;
  color: #333;
  line-height: 1;
}

.footer-slogan {
  color: #555;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
  margin-top: 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.footer-map {
  flex: 1.5;
  min-width: 300px;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-heading {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #0056b3;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #555;
  font-size: 32px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #0056b3;
  transform: scale(1.1);
}

.footer-bottom {
  background-color: #f8f9fa;
  padding: 15px 10%;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-map {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    margin-bottom: 0;
    align-items: center;
    min-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .map-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-company {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .footer-company {
    font-size: 24px;
  }

  .footer-slogan {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 12px;
  }
}
/*=============== whatsapp ===============*/
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }

  .nav li {
    display: flex;
  }

  .nav__link {
    padding: 0;
  }

  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
  }

  .dropdown__container {
    position: absolute;
    left: 0;
    right: 0;
    top: 5.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    transition: top 0.4s opacity 0.3s;
  }

  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
}

/*=============== TENTANGKAMI CSS ===============*/

/*=============== BANNER ===============*/
.banner-tentangkami {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannertentangkami.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 20px;
  width: 100%;
  min-height: 50vh;
  display: flex;
  padding-top: 20px;
}

.banner-text h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.banner-btn a {
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner-text h2 {
    font-size: 1.9rem;
  }
  .banner-tentangkami {
    min-height: 30vh;
  }
  .banner-layanan {
    min-height: 30vh;
  }
  .banner-artikel {
    min-height: 30vh;
  }
  .banner-hubungi {
    min-height: 30vh;
  }
}

@media (max-width: 768px) {
  .banner-text h2 {
    font-size: 1.5rem;
  }
}

/*=============== ABOUT US ===============*/
.about-us-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
 
}

.about-us {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 35px;
}

.about-us-col {
  flex-basis: auto;
  padding: 30px 2px;
}

.about-us-col img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-us-col h1 {
  padding-top: 0;
  color: #017143;
}

.about-us-col p {
  font-size: 1rem;
  line-height: 1.9;
  padding: 15px 0 15px;
  color: #017143;
}

.about-us-col ul {
margin-left: 20px;
margin-bottom: 20px;
padding-left: 20px;
list-style-type: disc;
color: #017143;
font-size: 1rem;
line-height: 1.5;
}

.about-us-col li {
margin-bottom: 10px;
}

.about-us-col .about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017143; 
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.about-us-col .about-btn:hover {
  background-color: #015f2a; 
}

@media (max-width: 700px) {
  .about-us-row {
    flex-direction: column;
  }

  .visi-misi-row {
    flex-direction: column;
  }
}

/*=============== VISI MISI ===============*/
.visi-misi {
  width: 80%;
  margin: auto;
  text-align: center;
}

.visi-misi-row {
  display: flex;
  justify-content: space-between;
}

.visi-misi-col {
  flex-basis: 49%;
  background: #017143;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 4%;
  text-align: left; 
  padding: 25px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  position: relative; 
}

.visi-misi-col h3 {
  text-align: center; 
  margin-bottom: 15px; 
}

.visi-misi-col p {
  text-align: left;
}

.visi-misi-col ul {
margin-left: 20px;
margin-bottom: 20px;
padding-left: 20px;
list-style-type: disc;
font-size: 1rem;
line-height: 1.5;
}

.visi-misi-col li {
margin-bottom: 10px;
}

/*=============== MANAJEMEN ===============*/
.manajemen {
  padding: 0 1rem;
  width: 100%;
}

.manajemen h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #017143;
}

.manajemen-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.manajemen-card {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.manajemen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.manajemen-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.manajemen-card:hover img {
  transform: scale(1.05);
}

.manajemen-info {
  padding: 1rem;
  text-align: center;
  background: #fff;
  transition: background-color 0.3s ease;
  flex-grow: 1;
  min-height: 125px;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}

.manajemen-card:hover .manajemen-info {
  background-color: #f8f8f8;
}

.manajemen-info h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.manajemen-card:hover .manajemen-info h3 {
  color: #017143;
}

.manajemen-info p {
  font-size: 1rem;
  color: #666;
  transition: color 0.3s ease;
}

.manajemen-card:hover .manajemen-info p {
  color: #444;
}

.manajemen-card a {
  text-decoration: none;
}

@media (max-width: 700px) {
  .manajemen-container {
    flex-direction: column;
    align-items: center;
  }

  .manajemen-card {
    width: 100%;
    margin-bottom: 1rem;
  }

  .manajemen-info {
    padding: 1rem 0.5rem;
  }
}

/*=============== CONTACT ===============*/
.contact {
  margin: 50px auto;
  width: 90%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannertentangkami.png);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 50px 0;
}

.contact h1 {
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}

.contact .contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017143;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact .contact-btn:hover {
  background-color: #015f2a;
}

/*=============== LAYANAN MARKETING CSS ===============*/

/*=============== PENGERTIAN ===============*/
.bg-pengertian-marketing {
  height: 27rem;
}

.bg-color-pengertian-marketing {
  background: #017143;
  height: 22rem;
}

.pengertian-row-marketing {
  margin-top: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pengertian-marketing {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.pengertian-col-marketing {
  flex-basis: 50%;
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pengertian-col-marketing h1,
.pengertian-col-marketing p {
  text-align: left;
}

.pengertian-col-marketing img {
  height: 350px;
  width: 350px;
  border-radius: 10px;
  align-self: center;
  object-fit: cover;
}

.pengertian-col-marketing h1 {
  padding-top: 0;
}

.pengertian-col-marketing p {
  padding: 15px 0 25px;
}

/* Media Query untuk layar kecil (max-width: 767px) */
@media (max-width: 767px) {
  .pengertian-row-marketing {
    flex-direction: column;
  }

  .elemen-row-marketing {
    flex-direction: column;
  }

  .pengertian-col-marketing {
    flex-basis: 100%;
  }

  .pengertian-col-marketing img {
    height: 296px;
    width: 296px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-marketing {
    height: 51rem;
  }

  .bg-color-pengertian-marketing {
    background: #017143;
    height: 27rem;
  }
}

/* Media Query untuk layar sedang (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pengertian-col-marketing img {
    height: 300px;
    width: 300px; 
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-marketing {
    height: 26rem;
  }

  .bg-color-pengertian-marketing {
    background: #017143;
    height: 24rem;
  }
}

/*=============== ELEMEN ===============*/
.elemen-marketing {
  width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.elemen-marketing h1 {
  padding-bottom: 15px;
  color: #017143;
}

.elemen-row-marketing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.elemen-col-marketing {
  flex-basis: calc(50% - 10px);
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.elemen-col-marketing h3 {
  text-align: center;
  margin-bottom: 15px;
}

.elemen-col-marketing p {
  text-align: left;
}

/*=============== PENJELASAN ===============*/
.penjelasan-marketing {
  width: 80%;
  margin: auto;
  padding-bottom: 10px;
}

.penjelasan-marketing h1 {
  padding-bottom: 15px;
  color: #017143;
}

.penjelasan-col-marketing {
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.penjelasan-col-marketing p {
  text-align: left;
}

@media (max-width: 767px) {
  .penjelasan-col-marketing {
    margin-bottom: 4%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .penjelasan-col-marketing {
    margin-bottom: 2%;
  }
}

.bg-akhiran-marketing {
  background: #017143;
}

.akhiran-marketing {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.akhiran-col-marketing {
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/*=============== LAYANAN MANAJEMEN CSS ===============*/

/*=============== PENGERTIAN ===============*/
.bg-pengertian-manajemen {
  height: 27rem;
}

.bg-color-pengertian-manajemen {
  background: #017143;
  height: 20rem;
}

.pengertian-row-manajemen {
  margin-top: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pengertian-manajemen {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.pengertian-col-manajemen {
  flex-basis: 50%;
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pengertian-col-manajemen h1,
.pengertian-col-manajemen p {
  text-align: left;
}

.pengertian-col-manajemen img {
  height: 350px;
  width: 350px;
  border-radius: 10px;
  align-self: center;  
  object-fit: cover;
}

.pengertian-col-manajemen h1 {
  padding-top: 0;
}

.pengertian-col-manajemen p {
  padding: 15px 0 25px;
}

/* Media Query untuk layar kecil (max-width: 767px) */
@media (max-width: 767px) {
  .pengertian-row-manajemen {
    flex-direction: column;
  }

  .elemen-row-manajemen {
    flex-direction: column;
  }

  .pengertian-col-manajemen {
    flex-basis: 100%;
  }

  .pengertian-col-manajemen img {
    height: 296px;
     width: 296px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-manajemen {
    height: 43rem;
  }

  .bg-color-pengertian-manajemen {
    height: 16rem;
  }
}

/* Media Query untuk layar sedang (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pengertian-col-manajemen img {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-manajemen {
    height: 24rem;
  }
}

/*=============== ELEMEN ===============*/
.elemen-manajemen {
  width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.elemen-manajemen h1 {
  padding-bottom: 15px;
  color: #017143;
}

.elemen-row-manajemen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.elemen-col-manajemen {
  flex-basis: calc(50% - 10px);
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.elemen-col-manajemen h3 {
  text-align: center;
  margin-bottom: 15px;
}

.elemen-col-manajemen p {
  text-align: left;
}

/*=============== PENJELASAN ===============*/
.penjelasan-manajemen {
  width: 80%;
  margin: auto;
  padding-bottom: 10px;
}

.penjelasan-manajemen h1 {
  padding-bottom: 15px;
  color: #017143;
}

.penjelasan-col-manajemen {
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.penjelasan-col-manajemen p {
  text-align: left;
}

@media (max-width: 767px) {
  .penjelasan-col-manajemen {
    margin-bottom: 4%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .penjelasan-col-manajemen {
    margin-bottom: 2%;
  }
}

/*=============== PENJELASAN ===============*/

.bg-akhiran-manajemen {
  background: #017143;
}

.akhiran-manajemen {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.akhiran-col-manajemen {
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/*=============== LAYANAN WEB CSS ===============*/
.banner-layanan {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannerlayanan.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 20px;
  width: 100%;
  min-height: 50vh;
  display: flex;
  padding-top: 20px;
}

/*=============== PENGERTIAN ===============*/
.bg-pengertian-web {
  height: 27rem;
}

.bg-color-pengertian-web {
  background: #017143;
  height: 22rem;
}

.pengertian-row-web {
  margin-top: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pengertian-web {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.pengertian-col-web {
  flex-basis: 50%;
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pengertian-col-web h1,
.pengertian-col-web p {
  text-align: left;
}

.pengertian-col-web img {
  height: 350px;
  width: 350px;
  border-radius: 10px;
  align-self: center;  
  object-fit: cover;
}

.pengertian-col-web h1 {
  padding-top: 0;
}

.pengertian-col-web p {
  padding: 15px 0 25px;
}

/* Media Query untuk layar kecil (max-width: 767px) */
@media (max-width: 767px) {
  .pengertian-row-web {
    flex-direction: column;
  }

  .elemen-row-web {
    flex-direction: column;
  }

  .pengertian-col-web {
    flex-basis: 100%;
  }

  .pengertian-col-web img {
    height: 296px;
    width: 296px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-web {
    height: 50rem;
  }

  .bg-color-pengertian-web {
    background: #017143;
    height: 24rem;
  }
}

/* Media Query untuk layar sedang (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pengertian-col-web img {
    height: 300px;
      width: 300px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-web {
    height: 26rem;
  }

  .bg-color-pengertian-web {
    background: #017143;
    height: 24rem;
  }
}

/*=============== ELEMEN ===============*/
.elemen-web {
  width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.elemen-web h1 {
  padding-bottom: 15px;
  color: #017143;
}

.elemen-row-web {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.elemen-col-web {
  flex-basis: calc(50% - 10px);
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.elemen-col-web h3 {
  text-align: center;
  margin-bottom: 15px;
}

.elemen-col-web p {
  text-align: left;
}

/*=============== PENJELASAN ===============*/
.penjelasan-web {
  width: 80%;
  margin: auto;
  padding-bottom: 10px;
}

.penjelasan-web h1 {
  padding-bottom: 15px;
  color: #017143;
}

.penjelasan-col-web {
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.penjelasan-col-web p {
  text-align: left;
}

@media (max-width: 767px) {
  .penjelasan-col-web {
    margin-bottom: 4%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .penjelasan-col-web {
    margin-bottom: 2%;
  }
}

.bg-akhiran-web {
  background: #017143;
}

.akhiran-web {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.akhiran-col-web {
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/*=============== LAYANAN APP CSS ===============*/

/*=============== PENGERTIAN ===============*/
.bg-pengertian-app {
  height: 27rem;
}

.bg-color-pengertian-app {
  background: #017143;
  height: 22rem;
}

.pengertian-row-app {
  margin-top: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pengertian-app {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.pengertian-col-app {
  flex-basis: 50%;
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pengertian-col-app h1,
.pengertian-col-app p {
  text-align: left;
}

.pengertian-col-app img {
  height: 350px;
  width: 350px;
  border-radius: 10px;
  align-self: center;  
  object-fit: cover;
}

.pengertian-col-app h1 {
  padding-top: 0;
}

.pengertian-col-app p {
  padding: 15px 0 25px;
}

/* Media Query untuk layar kecil (max-width: 767px) */
@media (max-width: 767px) {
  .pengertian-row-app {
    flex-direction: column;
  }

  .elemen-row-app {
    flex-direction: column;
  }

  .pengertian-col-app {
    flex-basis: 100%;
  }

  .pengertian-col-app img {
    height: 296px;
    width: 296px;
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-app {
    height: 49rem;
  }

  .bg-color-pengertian-app {
    background: #017143;
    height: 25rem;
  }
}

/* Media Query untuk layar sedang (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pengertian-col-app img {
    height: 300px;
    width: 300px; 
    border-radius: 10px;
    align-self: center;
  }

  .bg-pengertian-app {
    height: 26rem;
  }

  .bg-color-pengertian-app {
    background: #017143;
    height: 24rem;
  }
}

/*=============== ELEMEN ===============*/
.elemen-app {
  width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.elemen-app h1 {
  padding-bottom: 15px;
  color: #017143;
}

.elemen-row-app {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.elemen-col-app {
  flex-basis: calc(50% - 10px);
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.elemen-col-app h3 {
  text-align: center;
  margin-bottom: 15px;
}

.elemen-col-app p {
  text-align: left;
}

/*=============== PENJELASAN ===============*/
.penjelasan-app {
  width: 80%;
  margin: auto;
  padding-bottom: 10px;
}

.penjelasan-app h1 {
  padding-bottom: 15px;
  color: #017143;
}

.penjelasan-col-app {
  background: #fff;
  color: #017143;
  border-radius: 5px;
  margin-bottom: 1%;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.penjelasan-col-app p {
  text-align: left;
}

@media (max-width: 767px) {
  .penjelasan-col-app {
    margin-bottom: 4%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .penjelasan-col-app {
    margin-bottom: 2%;
  }
}

.bg-akhiran-app {
  background: #017143;
}

.akhiran-app {
  width: 80%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
}

.akhiran-col-app {
  padding: 30px 2px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/*=============== ISI ARTIKEL CSS ===============*/
/*=============== ARTIKEL ===============*/

.banner-artikel {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannerberita.png);   
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 20px;
  width: 100%;
  min-height: 50vh;
  display: flex;
  padding-top: 20px;
}
/* /=============== ARTIKEL ===============/ */
.article {
  background-color: #fff;
  padding: 2rem 0;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-header {
  margin-bottom: 2rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.article-meta {
  color: #666;
  font-size: 0.9rem;
}

.article-meta>* {
  margin: 0 0.5rem;
}

.article-featured-image {
  margin: 2rem -1.5rem;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}



.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
   line-height: 1.8;
  color: #444;
}



.article-content ul {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: disc;
  font-size: 1rem;
  line-height: 1.5;
}

.article-content ol {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: decimal;
  font-size: 1rem;
  line-height: 1.5;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content p {
  margin-top: 10px;
}

.article-lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.article-content h1 {
  font-size: 2.25rem; 
  color: #333;
  margin: 2.5rem 0 1.5rem;
}

.article-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 2rem 0 1rem;
}

.article-content h3 {
  font-size: 1.6rem; 
  color: #333;
  margin: 1.8rem 0 0.9rem;
}

.article-content h4 {
  font-size: 1.4rem;
  color: #333;
  margin: 1.6rem 0 0.8rem;
}

.article-content h5 {
  font-size: 1.2rem;
  color: #333;
  margin: 1.4rem 0 0.7rem;
}

.article-content h6 {
  font-size: 1rem;
  color: #333;
  margin: 1.2rem 0 0.6rem;
}

/*.article-content img {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*  gap: 1.5rem;*/
/*  margin: 2rem 0;*/
/*  width: 100%;*/
/*  height: 200px;*/
/*  object-fit: cover;*/
/*  border-radius: 8px;*/
/*}*/

.article-content img {
  display: block;
  max-width: 100%; /* Pastikan gambar tidak melebihi lebar kontainer */
  height: auto; /* Jaga rasio aspek gambar */
  object-fit: cover; /* Sesuaikan dengan kebutuhan */
  border-radius: 8px;
  margin: 1.5rem 0;
}



.image-gallery figcaption {
  margin-top: 0.5rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

blockquote {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-left: 4px solid #007bff;
  background: #f8f9fa;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .article-header h1 {
      font-size: 2rem;
  }

  /*.article-content img {*/
  /*    grid-template-columns: 1fr;*/
  /*}*/
  
  .article-content img {
      object-fit: contain; /* Alternatif untuk menyesuaikan gambar di layar kecil */
  }
}

/*=============== HUBUNGIKAMI CSS ===============*/
/*=============== HUBUNGI ===============*/
.banner-hubungi {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bannerhubungikami.png);   
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 20px;
  width: 100%;
  min-height: 50vh;
  display: flex;
  padding-top: 20px;
}

.hubungi {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.hubungi-container {
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.hubungi-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hubungi-container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.hubungi-container .content .left-side::before {
  content: "";
  position: absolute;
  height: 120%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.hubungi-container .content .left-side .details {
  margin: 14px;
  text-align: center;
}

.hubungi-container .content .left-side .details i {
  font-size: 30px;
  color: #017143;
  margin-bottom: 10px;
}

.hubungi-container .content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.hubungi-container .content .left-side .details .text-one,
.hubungi-container .content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.hubungi-container .content .right-side {
  width: 75%;
  margin-left: 75px;
}

.hubungi-container .content .right-side p {
  margin-bottom: 10px;
}

.hubungi-container .content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.hubungi-container .right-side .input-box {
  margin-bottom: 10px;
}

.hubungi-container .right-side .input-box label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.hubungi-container .right-side .input-box input,
.hubungi-container .right-side .input-box textarea {
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.hubungi-container .right-side .message-box textarea {
  height: 120px;
  padding-top: 10px;
}

.hubungi-container .right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.hubungi-container .right-side .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #017143;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hubungi-container .right-side .button input[type="submit"]:hover {
  background: #015f2a;
}

@media (max-width: 950px) {
  .hubungi-container {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }
  .hubungi-container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 820px) {
  .hubungi-container {
    margin: 40px 0;
    height: 100%;
  }
  .hubungi-container .content {
    flex-direction: column-reverse;
  }
  .hubungi-container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hubungi-container .content .left-side::before {
    display: none;
  }
  .hubungi-container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}
