
.header {
    transition: top 0.3s; 
    /* font-family: "Open Sans", sans-serif; */
    font-weight: 600;
  }
  
  
  .portfolio-agent-info {
  background: linear-gradient(360deg, #000 , transparent);
  }
  
  .custom-title {
  font-size: 64px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  }
  
  .custom-title span {
    font-size: 20px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
  }
  
  .header.hidden {
    top: -150px;
  }
  
  .right-service {
    margin-top: 10px;
  }
  
  
  
  .right-service .right-service-item {
    position: relative;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out; /* Transisi halus untuk semua perubahan */
    cursor: pointer;
  }
  
  .right-service .right-service-item h2 {
    line-height: 40px;
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .count-service {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    top: -20px;
    color: #ffb63c;
  }
  
  .left-service-container h3{
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffb63c;
  }
  
  .left-service-container p{
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 45px;
  line-height: 60px;
  }
  
  .right-service .right-service-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
  }
  
  .right-service .right-service-item h3:hover {
    color: var(--accent-color);
  }
  
  .right-service .right-service-content {
    display: none; /* Sembunyikan konten secara default */
    transition: 0.3s ease-in-out;
    opacity: 0;
    height: 0; /* Awalnya dalam keadaan collapse */
  }
  
  .right-service .right-service-item .right-service-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .right-service .right-service-active .right-service-content {
    display: block; /* Tampilkan konten ketika aktif */
    opacity: 1;
    height: auto; /* Tinggi otomatis ketika aktif */
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
  }
  
  .right-service .right-service-active .right-service-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }
  
  
  
  .singlepost-service .singlepost-right-service {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  }
  
  .singlepost-service .singlepost-left-service {
  font-size: 27px;
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
  line-height: 50px;
  }
  
  
  .singlepost-tag {
  padding: 2px 20px 5px 20px;
  border-radius: 15px;
  font-family: 'Open Sans';
  font-style: italic;
  outline: 2px solid #ffb63d;
  color: #000;
  font-weight: 500;
  margin-left: 10px;
  }
  
  blockquote {
  background-color: #aeaeaedd !important; /* Light gray background */
  border-left: 5px solid #ccc; /* Gray left border */
  padding: 15px;
  margin: 20px 0;
  font-style: italic;
  color: #000;
  font-weight: 700;
  text-align: start;
  }
  
  
  .project-about-left h3 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  }
  
  .project-about-left p {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  width: 90%;
  line-height: 30px;
  }
  
  .project-about-right ul {
  text-align: start;
  list-style: none;
  }
  .project-about-right h3 {
  font-size: 14px;
  font-weight: 100;
  line-height: 30px;
  }
  
  .project-about-right ul li {
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  text-decoration: none;
  }
  
  .post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .content img {
  width: 100% !important;
  height: auto !important; /* Atur tinggi gambar sesuai keinginan */
  object-fit: cover; /* Mengatur gambar agar sesuai dengan elemen tanpa merusak aspek rasio */
  }
  
  .contact-left-footer p {
    font-size: 50px;
    line-height: 30px;
    /* padding: 0px 50px; */
    font-weight: 600;
    /* width: max-content; */
    line-height: 70px;
} 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* css customizations */
  
  .light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
  }
  
  .dark-background {
  --background-color: #242424;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
  scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Open Sans', sans-serif !important;
  }
  
  a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  }
  
  a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
  }
  
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 50px 30px;
  transition: all 0.5s;
  z-index: 997;
  }
  
  .header .logo {
  line-height: 1;
  }
  
  .header .logo img {
  height: auto;
  width: auto !important;
  margin-left: 10px;
  z-index: 10000;
  }
  
  .header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  }

  
  
  .scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
  background-color: #fff;
  }
  
  /* Desktop version */
  @media (min-width: 1200px) {
  
  .right-service .right-service-container  {
    display: grid;
    justify-content: flex-end;
  }
  
    .featured {
        width: 100%;
        min-height: 100vh;
        height: 90vh;
        position: relative;
        /* padding: 0 46px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
  
    .input-wrapper {
      margin-bottom: 88px;
      padding: 0px 100px;
    }
    
    .input-custom {
      font-size: 45px;
      border: none;
      line-height: 50px;
      display: block;
      width: 100%;
      outline: none;
      border-bottom: solid 1px #999999;
      font-weight: 100;
      margin-bottom: 1px;
    }
  
    .footer-desktop .arrow-up i {
        font-size: 20px;
    }

    .service-mobile {
      display: none;
    }
  
    .footer-mobile {
        display: none;
    }
    .call-to-action .cta-btn {
  
      font-weight: 600;
      font-size: 25px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 20px 77px 20px 50px;
      background-color: #efefef;
      border-radius: 50px;
      transition: 0.3s;
      margin: 10px;
      border: 2px solid var(--contrast-color);
      font-family: 'Open Sans', sans-serif;
    }
    
    .call-to-action .cta-btn:hover {
      background: #d7d5d5;
      border: 2px solid var(--accent-color);
    }
  
    .featured-project {
      width: 100%;
      /* min-height: 100vh; */
      height: 70vh;
      position: relative;
      padding: 0 46px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .featured-blog {
    width: 100%;
    height: 70vh;
    position: relative;
    padding: 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .featured-project-right {
    font-size:17px !important;
    line-height: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    list-style-type: none;
    text-align: start;
    left: 0;
  }

  .featured-blog-right {
    font-size: 20px !important;
    line-height: 50px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    list-style-type: none;
    text-align: start;
    left: 0;
  }
  
  .singlepost-service {
    padding: 30px 50px;
  }
  
  .quote-title h1 {
    font-size: 40px;
    font-weight: 200;
    line-height: 60px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    padding: 65px 50px 10px 50px;
  
  }
  
  .featured-project h1 {
    font-size: 20px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
  }
  
  .featured-project p {
    font-size: 48px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
  }

  .featured-blog h1 {
    font-size: 60px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
  }
  
  .featured-blog p {
    font-size: 25px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
  }
  
  .header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 50px 20px;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .about {
    padding: 30px;
  }
    .about h1 {
        font-size: 60px;
        font-weight: 600; /* Menggunakan bobot font yang sesuai */
        font-family: "Open Sans", sans-serif; /* Pastikan font Montserrat diimpor dengan benar */
        margin: 0; /* Menghilangkan margin default */
        padding: 0; /* Menghilangkan padding default */
        position: relative; /* Menetapkan posisi relatif jika ingin menggunakan top */
        top: 0; /* Mengatur posisi elemen jika menggunakan position relative */
    }
    
  
  .about p {
    font-size: 35px;
    line-height: 50px;
    letter-spacing: 0;
    font-weight: 100;
    font-family: "Open Sans", sans-serif;
  }
  
  .about a {
    font-size: 18px !important;
    padding: 20px 50px;
    background-color: #efefef;
    border-radius: 50px;
  }
  
  .about .span-about {
    background-color: #000;
    height: 100%;
    color: #fff;
    padding: 10px;
  }
    /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  
  .why-mb {
  margin-bottom: 5rem;
  }
  
  
  
  .faq .faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates two columns of equal width */
  }
  
  .faq .faq-container .faq-item {
  background-color: #;
  position: relative;
  padding: 30px;
  /* border: solid 1px #7C7C7C;   */
  overflow: hidden;
  transition: all 0.3s ease-in-out; /* Smooth transition for all changes */
  }
  
  .faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h2 {
  line-height: 1.3em;
  font-size: 25px;
  }
  
  .faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0; /* Initially collapsed */
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    color: #fff;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  font-size: 30px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active {
  border-color: #fff;
  padding: 30px; /* Increase padding when active to make it larger */
  height: auto; /* Automatically adjust height when active */
  color: #fff;
  }
  
  .faq .faq-container .faq-active h2 {
  color: #ffb63c;
  font-size: 25px !important  ;
  }
  
  .faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  height: auto; /* Automatically adjust height when active */
  padding: 20px ;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #ffb63c;
  }
  
  .service-wrapper {
  background-color: darkcyan; padding: 80px 60px; border-radius: 10px;
  }
  
  .navmenu {
    padding: 0;
  }
  
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navmenu li {
    position: relative;
  }
  
  .navmenu>ul>li {
    white-space: nowrap;
    margin: 15px 14px;
  }
  
  .navmenu>ul>li:last-child {
    padding-right: 0;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 14px;
    padding: 0 15px 2px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    position: relative;
  }
  
  .nav-bold {
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }
  
  .arrow {
    margin-left: 5px;
  }
  
  .arrow:before {
    color: #fff;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  
  .navmenu>ul>li>a:before {
    color: #fff !important;
    content: "";
    position: absolute;
    height: 100%;
    border-radius: 30px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    width: 0px;
    padding: 18px 0;
    z-index: -1; 
  }
  
  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }
  
  .navmenu .dropdown ul {
    margin: 10px 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 35px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navmenu .dropdown ul li {
    min-width: 200px;
    padding: 5px 20px;
  }
  
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    text-transform: uppercase;
    color: #000;
  }
  
  
  
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  
  .navmenu .dropdown ul li a {
    position: relative;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    overflow: hidden; /* Hide the overflowing part of the effect */
  }
  
  .navmenu .dropdown ul li a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0; /* Start with zero width */
    left: 0; /* Start from the left */
    top: 0;
    background-color: #000;
    border-radius: 20px;
    transition: width 0.3s ease-in-out; /* Animate the width */
    z-index: -1;
  }
  
  .navmenu .dropdown ul li a:hover::before {
    width: 100%; /* Expand the width to full on hover */
  }
  
  .navmenu .dropdown ul li a:hover {
    color: #fff; /* Change text color when hovered */
  }
  
  
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  
  .description-wrapper {
    padding-top: 64px;
    padding-bottom: 20px;
  }
  
  .description-title {
    display: block;
      font-size: 50px;
      line-height: 30px;
      margin-top: 0px;
      margin-bottom: 30px;
      font-weight: 200;
      letter-spacing: 0px;
      max-width: 1440px;
      color: #ffb63c;
  
  }
  .description-second-title {
    display: block;
    font-size: 45px;
    line-height: 70px;
    margin-top: 0px;
    /* margin-bottom: 50px; */
    font-weight: 200;
    letter-spacing: 0px;
    max-width: 1440px;
  
  }
  
  .description-last-title {
    display: block;
    font-size: 40px;
    line-height: 70px;
    /* margin-top: 30px; */
    margin-bottom: 50px;
    font-weight: 200;
    letter-spacing: 0px;
    max-width: 1440px;
    / */
  
  }
  
  .description-bold {
    color: #ffb63c;
  }
  
  
  }
  
  /* Mobile Version */
  @media (max-width: 1199px) {
    .project-about-left h3 {
      margin-top: 40px;
      font-size: 30px !important;
      font-weight: 700 !important;
      width: 90%;
      line-height: 50px !important;
      text-transform: capitalize;
  }
    .quote-title p {
      font-size: 21px !important;
      font-weight: 200 !important;
      line-height: 40px !important;
      font-family: "Open Sans", sans-serif;
      color: #000;
      padding: 65px 0px 0px 0px !important;
    
    }

    .list-number-service {
      font-size: 20px !important;
      font-weight: 300;
      line-height: 40px;
  }

    .content img {
      width: 100% !important;
      height: 500px !important;
      object-fit: cover;
  }

  .content img .singpost-portfolio {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}
    .title-footer {
      text-align: center !important;
    }
    .featured-home {
      padding-left: 40px !important;
      padding-right: 40px !important;
  }
    .featured {
        width: 100%;
        /* min-height: 100vh; */
        height: 90vh;
        position: relative;
        padding: 0 46px;
        display: flex;
        align-items: center;
        justify-content: center; 
    }

    .featured p {
        font-size: 23px;
        font-weight: 200;
        padding-top: 15px !important;
    }
  
    .right-service .right-service-container  {
      display: grid;
      justify-content: flex-start;
      margin-top: 50px;
  }
    
  .img-fluid-singlepost-portfolio {
    height: 450px !important;
    width: 100%;
  }
  
  .img-fluid {
    /* height: 450px !important; */
    height: 100% !important;
    width: 100%;
  }
  
  .input-wrapper {
    margin-bottom: 88px;
    /* padding: 0px 100px; */
  }
  
  .input-custom {
    font-size: 25px;
    border: none;
    line-height: 50px;
    display: block;
    width: 100%;
    outline: none;
    border-bottom: solid 1px #999999;
    font-weight: 100;
    margin-bottom: 1px;
  }
  
  .nav-bold {
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  
  .left-service-container h3{
    font-family: "Open Sans", sans-serif;
    font-weight: 200;
    font-size: 16px !important;
    text-transform: uppercase;
  }
  
  .left-service-container p{
    font-family: "Open Sans", sans-serif !important;
        font-size: 30px;
        line-height: 45px !important;
  }
  
  
  .featured img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
  }
  
  .footer-desktop {
    display: none;
  }

  .service  -desktop {
    display: none;
  }
  
  .contact-right {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .call-to-action .cta-btn {
    position: relative;
    text-align: center !important;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    padding: 15px 62px 15px 42px;
    background-color: #efefef;
    border-radius: 50px;
    transition: 0.3s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #f5f5f5; /* Ubah sesuai kebutuhan */
    color: #000; /* Warna teks */
    position: relative;
}

  
  .call-to-action .cta-btn:hover {
    background: #d7d5d5;
    border: 2px solid var(--accent-color);
  }
  
  .featured {
    width: 100%; 
    /* min-height: 100vh; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-title {
    font-size: 26px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
  }
  
  .custom-title span {
    font-size: 12px;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
  }
  
  .contact-left-footer p {
      font-size: 25px;
      line-height: 40px;
      font-weight: 400;
  }
  .contact-left-footer span {
    font-size: 25px !important;
    font-weight: 100 !important;
    line-height: 40px !important;
  }
  .contact-left p {
    font-size: 16px;
    line-height: 30px;
    padding: 0px 50px;
    width: max-content;
  }
  
  .contact-left span {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
  }
  
  .right-service .right-service-item {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out; /* Transisi halus untuk semua perubahan */
    cursor: pointer;
  }
  
  .right-service .right-service-item h2 {
    line-height: 30px;
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
  }
  .gradient-title {
    line-height: 30px;
  }
  
  .portfolio-agent-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 5px 15px;
    font-family: "Open Sans", sans-serif;
  }
  
  .singlepost-service .singlepost-left-service {
  font-size: 20px;
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
  line-height: 40px;
  }
  
  .portfolio-agent-info .tag span{
    outline: 1px solid #fff;
    /* padding: 5px 10px; */
    border-radius: 20px;
    font-size: 12px;
  }
  
  
  .quote-title h1 {
  font-size: 30px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  margin-bottom: 50px;
  
  }
  
  .header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 17px 5px 18px;
    transition: all 0.5s;
    z-index: 997;
    font-family: "Open Sans", sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  
  .faq .faq-container .faq-item {
    background-color: #ffb632;
    position: relative;
    padding: 25px 20px 0 20px;
    margin-bottom: 15px;
    /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
    border-radius: 5px;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h2 {
    font-size: 21px !important;
  max-width: 245px;
  line-height: 1.3em;
  }
  
  .faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
  color: #000;
  }
  
  .faq .faq-container .faq-active {
  border-color: #fff;
  padding-bottom: 30px;

  }
  
  .faq .faq-container .faq-active h3 {
  color: #fff;
  font-size: 18px;
  }

  .faq-item {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-header {
    display: flex;
    align-items: center;
}

.faq-header h2 {
    margin-left: 10px;
}

.faq-toggle {
    float: right;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}


  
  .faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 0px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #000;
  }
  
  .section-about {
  color: #000;
  background-color: var(--background-color);
  padding: 7rem 20px !important;
  
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  .about {
  padding: 0px 60px;
  }
  
  .service-wrapper {
  background-color: darkcyan; padding: 60px 10px; border-radius: 10px;
  }
  .about h1 {
  font-size: 25px;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  /* border-bottom: 2px solid #000; */
  margin-bottom: -20px;
  }
  
  .about p {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0;
  font-weight: 400;
  /* border-bottom: 1px solid #000; */
  font-family: "Open Sans", sans-serif;
  }
  
  .about a {
  font-size: 15px !important;
  padding: 15px 30px;
  background-color: #efefef;
  font-family: "Open Sans", sans-serif;
  border-radius: 30px;
  }
  
  .about .span-about {
  background-color: #000;
  height: 100%;
  color: #fff;
  padding: 10px;
  }
  
  
  .mobile-nav-toggle {
    color: #fff ;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    margin-top: 70px;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  
  .navmenu .dropdown ul ul {
    /* background-color: rgba(33, 37, 41, 0.1); */
  }
  
  .navmenu .dropdown>.dropdown-active {
    display: block;
    /* background-color: rgba(33, 37, 41, 0.03); */
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: -15px !important;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background-color: #fff;
    color: #000;
    transform: translateY(100%); /* Menu awalnya berada di bawah */
    transition: transform 0.3s ease-out;
    z-index: 9998;
  }
  
  .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  
  .mobile-nav-active .navmenu.open {
    transform: translateY(0); /* Menu naik ke posisi semula */
  }
  
  .mobile-nav-active .navmenu > ul {
  display: block;
  color: #000 !important;
  position: absolute;
  inset: 0;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  border: 1px solid 
  color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9999;
  margin-top: 70px;
  }
  
  /* Menambahkan kelas JavaScript untuk mengatur animasi */
  .navmenu {
    transform: translateY(100%);
  }
  
  .service {
  padding: 30px 20px;
  }
  
  .service h3 {
  font-size: 26px;
  line-height: 38px;
  padding: 0;
  }
  
  .service p {
  font-size: 25px;
  line-height: 45px;
  padding: 0;
  }
  
  .member {
  width: 100%;
  height: 100%;
  }
  
  
  .description-wrapper {
  padding-top: 64px;
  padding-bottom: 20px;
  }
  
  .description-title {
  display: block;
    font-size: 28px;
    line-height: 43px;
    margin-top: 0px;
    margin-bottom: 30px;
    letter-spacing: 0px;
    max-width: auto;
    color: #ffb63c;
    text-align: start;
    font-weight: 500;
  
  }
  .description-second-title {
    display: block;
    font-size: 22px;
    line-height: 43px;
    margin-top: 0px;
    margin-bottom: 50px;
    letter-spacing: 0px;
    /* max-width: 340px; */
    text-align: start;
  }
  
  .description-last-title {
  display: block;
    font-size: 28px;
    line-height: 43px;
    margin-top: 0px;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0px;
    max-width: 320px;
  
  
  }
  
  .description-bold {
  color: #ffb63c;
  }
  
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer-desktop {
  color: var(--default-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 100;
  }
  
  .footer-desktop .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  }
  
  .footer-desktop .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
  }
  
  .footer-desktop .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  
  }
  
  .footer-desktop .footer-about p {
  font-size: 40px;
  
  }
  
  .footer-desktop .social-links a {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
  }
  
  .footer-desktop .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  }
  
  .footer-desktop h4 {
  font-size: 14px;
  font-weight: 100;
  color: #8d8d8d;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
  }
  
  .footer-desktop .footer-links {
  margin-bottom: 30px;
  }
  
  .footer-desktop .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  
  .footer-desktop .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
  }
  
  .footer-desktop .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 19px;
  }
  
  .footer-desktop .footer-links ul li:first-child {
  padding-top: 0;
  }
  
  .footer-desktop .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 30px;
  }
  
  .footer-desktop .footer-links ul a:hover {
  color: #ffb63c;
  }
  
  .footer-desktop .footer-contact p {
  margin-bottom: 5px;
  }
  
  .footer-desktop .copyright {
  font-size: 14px;
  padding-top: 25px;
  padding-bottom: 25px;
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  border-top: 2px solid #3f3f3f;
  }
  
  .footer-desktop .copyright p {
  margin-bottom: 0;
  }
  
  .footer-desktop .credits {
  margin-top: 6px;
  font-size: 13px;
  }
  
  
  /* footer mobile */
  
  
  .footer-mobile {
  color: var(--default-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  font-family: "Open Sans", sans-serif;
  }
  
  .footer-mobile .footer-top {
  padding-top: 10px;
  }
  
  .footer-mobile .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  }
  
  .footer-mobile .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
  }
  
  .footer-mobile .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  
  }
  
  .footer-mobile .footer-about p {
  font-size: 14px;
  
  }
  
  .footer-mobile .social-links a {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
  }
  
  .footer-mobile .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  }
  
  .footer-mobile h4 {
  font-size: 12px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
  margin-top: 40px;
  color: #8d8d8d;
  }
  
  
  .footer-mobile .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 100;
  line-height: 23px;
  }
  
  
  
  .footer-mobile .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  }
  
  .footer-mobile .footer-links ul li:first-child {
  padding-top: 0;
  }
  
  .footer-mobile .footer-links ul a {
  
  display: inline-block;
  line-height: 1;
  font-size: 22px;
  color: #fff;
  font-weight: 100;
  }
  
  .footer-mobile .footer-links ul a:hover {
  color: var(--accent-color);
  }
  
  .footer-mobile .footer-contact p {
  margin-bottom: 5px;
  }
  
  .footer-mobile .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  border-top: 1px solid #d7d5d5;
  }
  
  .footer-mobile .copyright p {
  margin-bottom: 0;
  }
  
  .footer-mobile .credits {
  margin-top: 6px;
  font-size: 13px;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  }
  
  #preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
  }
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  }
  
  .scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  }
  
  .scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  }
  
  .scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  }
  
  .page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  }
  
  .page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  }
  
  .page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
  color: var(--default-color);
  background-color: var(--background-color);
  
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  section,
  .section-about {
    color: #000;
    background-color: var(--background-color);
    padding: 4rem 20px;
    scroll-margin-top: 92px;
    overflow: clip;
  }
  
  section,
  .section-service {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 8rem 20px;
    scroll-margin-top: 92px;
    overflow: clip;
  }
  
  section,
  .section-contact {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15rem 20px;
  
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  
  section,
  .section-portfolio-about {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 55px 0px 90px 0px;
  
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  section,
  .section-why {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5rem 20px 7rem;
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  section,
  .section-footer {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 3rem 20px 0px 20px;
    scroll-margin-top: 92px;
    overflow: clip;
  }
  
  
  .section-project {
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  .banner-project {
  position: absolute;
  top: 0;
  height: 400px;
  width: 100%;
  }
  
  section,
  .section-image {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 55px 0px 90px 0px;
    scroll-margin-top: 92px;
    overflow: clip;
  }
  

  section,
  .section-project-portfolio {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0;
    scroll-margin-top: 92px;
    overflow: clip;
  }
  
  .section-portfolio {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0px 0px 0px; 
  scroll-margin-top: 92px;
  overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
  section,
  .section {
    scroll-margin-top: 76px;
  }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  }
  
  .section-title h1 {
  font-size: 46px;
  /* border-bottom: #ffb63c 3px solid; */
  /* margin-left: 28px; */
  margin-top: 20px;
  text-align: center !important;
  font-weight: 800;
  margin-bottom: -35px;
  }
  
  .section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  
  }
  
  .section-title p .description-title {
  color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # featured Section
  --------------------------------------------------------------*/
  .featured {
  width: 100%;
  min-height: 100vh;
  /* height: auto; */
  position: relative;
  /* padding: 0 46px; */
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .featured:before {
  content: "";
  position: absolute;
  inset: 0;
  /* z-index: 2; */
  }
  
  .featured .container {
  position: relative;
  z-index: 3;
  }
  
  .featured h1 {
  font-size: 70px;
  font-weight: 600;
  margin: 24px 0 18px -0.07em;
  font-family: "Open Sans", sans-serif;
  }
  
  .featured p {
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 300;
  }
  
  .featured .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .featured .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  }
  
  @media (max-width: 768px) {
    
  
    .featured h1 {
        font-family: "Open Sans", sans-serif;
        font-weight: 500;
        font-size: 46px;
        line-height: 60px;
        margin: 17px 0 6px -.07em;
    }
    
  
    .featured p {
        font-size: 23px;
        font-weight: 200;
        line-height: 40px !important;
        padding-top: 15px !important;
    }
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about-page .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
  }
  
  .about-page .content p {
  margin-bottom: 30px;
  }
  
  .about-page .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
  }
  
  .about-page .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
  }
  
  .about-page .content .about-btn:hover {
  background: #000;
  color: #fff;
  }
  
  .about-page .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
  }
  
  .about-page .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  }
  
  .about-page .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
  }
  
  .about-page .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  }
  
  .about-page .icon-box:hover h4 a {
  color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  }
  
  .services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
  }
  
  .services .service-item .icon {
  margin-bottom: 10px;
  }
  
  .services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
  }
  
  .services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  }
  
  .services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
  }
  
  .services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
  }
  
  .services .service-item:hover h4 a,
  .services .service-item:hover .icon i,
  .services .service-item:hover p {
  color: var(--contrast-color);
  }
  
  .services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
  }
  
  /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
  .features {
  padding-top: 0;
  }
  
  .features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  }
  
  .features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
  }
  
  .features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  }
  
  .features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
  }
  
  .features .features-item:hover {
  border-color: var(--accent-color);
  }
  
  .features .features-item:hover h3 a {
  color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
  background-color: #ffb63c;
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  }
  
  .call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  }
  
  .call-to-action:before {
  content: "";
  background-color: #ffb63c;
  position: absolute;
  inset: 0;
  z-index: 2;
  }
  
  .call-to-action .container {
  position: relative;
  z-index: 3;
  }
  
  .call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
  }
  
  .call-to-action p {
  color: #000;
  }
  
  .contact h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  }
  
  .contact-page h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 70px;
  }
  
  .contact-page h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 60px;
  }
  
  .contact h2 {
  font-size: 72px;
  font-weight: 400;
  line-height: 30px;
  }
  
  .contact-left-footer {
  font-size: 42px;
  font-weight: 600;
  line-height: 60px;
  }
  
  .contact-left-footer span {
  font-size: 30px ;
  font-weight: 100 !important;
  line-height: 40px !important;
  }
  
  .contact-left {
  font-size: 50px;
  font-weight: 600;
  line-height: 70px;
  font-family: 'Open Sans', sans-serif;
  }
  
  .contact-left span {
  font-size: 35px;
  font-weight: 100;
  line-height: 40px;
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
  }
  
  .portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  
  }
  
  .portfolio .portfolio-filters li:hover,
  .portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  }
  
  .portfolio .portfolio-filters li:first-child {
  margin-left: 0;
  }
  
  .portfolio .portfolio-filters li:last-child {
  margin-right: 0;
  }
  
  @media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  }
  
  .portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  }
  
  .portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  padding: 15px;
  background-color: #ffb63c;
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
  }
  
  .portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
  }
  
  .portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
  .team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
  }
  
  .team .team-member .member-img {
  position: relative;
  overflow: hidden;
  }
  
  .team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  }
  
  .team .team-member .social a i {
  line-height: 0;
  }
  
  .team .team-member .social a:hover {
  color: var(--accent-color);
  }
  
  .team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
  }
  
  .team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
  }
  
  .team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .team .team-member:hover .social {
  opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Team 2 Section
  --------------------------------------------------------------*/
  .team-2 {
  --default-color: #ffffff;
  }
  
  .team-2 .member {
  text-align: center;
  position: relative;
  height: 100%;
  }
  
  .team-2 .member .member-info {
  display: flex;
  align-items: end;
  position: absolute;
  inset: 0;
  padding: 0 30px 30px;
  }
  
  .team-2 .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
  }
  
  /* .team-2 .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
  } */
  
  .team-2 .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
  }
  
  .team-2 .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 26px;
  }
  
  .team-2 .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  }
  
  .team-2 .member .social {
  margin-top: 15px;
  }
  
  .team-2 .member .social a {
  transition: 0.3s;
  color: var(--default-color);
  }
  
  .team-2 .member .social a:hover {
  color: var(--accent-color);
  }
  
  .team-2 .member .social i {
  font-size: 18px;
  margin: 0 2px;
  }
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .form-check-button {
  display: inline-block;
  }
  
  .form-check-input {
  display: none;
  }
  
  .form-check-label {
    font-size: 20px;
    font-weight: 400;
    width: 310px;
    /* height: 84px; */
    display: inline-block;
    padding: 20px 20px;
    background-color: #fff;
    color: #212529;
    outline: 1px solid #999999;
    border: 2px solid transparent;
    font-family: 'Open Sans', sans-serif;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 20px;
  }
  
  .form-check-input:checked + .form-check-label {
  background-color: #000;
  color: #fff;
  border-color: #000;
  }
  
  .form-check-label:hover {
  background-color: #efefef;
  }
  
  .btn-send {
  margin: auto;
    display: block;
    font-weight: 300;
    width: 280px;
    height: 66px;
    padding-top: 4px;
    background-color: #efefef;
    border-radius: 100px;
    border: none;
    cursor: pointer;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
  width: 100%;
  }
  
  .portfolio-details .swiper-wrapper {
  height: auto;
  }
  
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
  }
  
  .portfolio-details .swiper-button-prev:after,
  .portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  }
  
  .portfolio-details .swiper-button-prev:hover:after,
  .portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 575px) {
  
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
  }
  
  .portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
  }
  
  .portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  }
  
  .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  }
  
  .portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  }
  
  .portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  }
  
  .portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  }
  
  .portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  }
  
  .portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
  }
  
  .portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
  padding: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
  }
  
  .portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-details .service-box+.service-box {
  margin-top: 30px;
  }
  
  .service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
  }
  
  .service-details .services-list {
  background-color: var(--surface-color);
  }
  
  .service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
  }
  
  .service-details .services-list a:first-child {
  margin-top: 0;
  }
  
  .service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
  }
  
  .service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  }
  
  .service-details .services-list a.active i {
  color: var(--contrast-color);
  }
  
  .service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  }
  
  .service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
  }
  
  .service-details .download-catalog a:last-child {
  padding-bottom: 0;
  }
  
  .service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
  }
  
  .service-details .download-catalog a:hover {
  color: var(--accent-color);
  }
  
  .service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
  }
  
  .service-details .help-box .help-icon {
  font-size: 48px;
  }
  
  .service-details .help-box h4,
  .service-details .help-box a {
  color: var(--contrast-color);
  }
  
  .service-details .services-img {
  margin-bottom: 20px;
  }
  
  .service-details h3 {
  font-size: 26px;
  font-weight: 700;
  }
  
  .service-details p {
  font-size: 15px;
  }
  
  .service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  }
  
  .service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  }
  
  .service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Blog Posts Section
  --------------------------------------------------------------*/
  .blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 100%;
  border-radius: 0 !important;
  overflow: hidden;
  }
  
  .blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  }
  
  .blog-posts .post-category {
  font-size: 12px !important;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 3px;
  }
  
  .blog-posts .title {
  font-size: 16px !important;
  font-weight: 700;
  padding: 0;
  margin: 0 0 10px 0;
  }
  
  .blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
  }
  
  .blog-posts .title a:hover {
  color: var(--accent-color);
  }
  
  .blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
  }
  
  .blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
  }
  
  .blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Blog Pagination Section
  --------------------------------------------------------------*/
  .blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  }
  
  .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  }
  
  .blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  }
  
  .blog-pagination li a.active,
  .blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  }
  
  .blog-pagination li a.active a,
  .blog-pagination li a:hover a {
  color: var(--contrast-color);
  }
  
  /*--------------------------------------------------------------
  # Blog Details Section
  --------------------------------------------------------------*/
  .blog-details {
  padding-bottom: 0;
  }
  
  .blog-details .article {
  background-color: var(--surface-color);
  padding: 50px 15px 0;
  box-shadow: none;
  }
  
  .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  }
  
  .blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
  }
  
  .blog-details .content {
  margin-top: 20px;
  }

  .blog-details .content p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif !important;
  } 
  
  .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif !important;
  }
  
  .blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
  }
  
  .blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  }
  
  .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
  }
  
  .blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  }
  
  .blog-details .meta-top ul li+li {
  padding-left: 20px;
  }
  
  .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  }
  
  .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
  }
  
  .blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
  }
  
  .blog-details .meta-bottom a:hover {
  color: var(--accent-color);
  }
  
  .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
  }
  
  .blog-details .meta-bottom .cats li {
  display: inline-block;
  }
  
  .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
  }
  
  .blog-details .meta-bottom .tags li {
  display: inline-block;
  }
  
  .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
  }
  
  .blog-details .meta-bottom .share {
  font-size: 16px;
  }
  
  .blog-details .meta-bottom .share i {
  padding-left: 5px;
  }
  
  .blog-details p {
  line-height: 2rem;
    font-size: 20px;
    /* font-family: auto; */
    /* text-align: justify; */
  }
  /*--------------------------------------------------------------
  # Blog Comments Section
  --------------------------------------------------------------*/
  .blog-comments {
  padding: 10px 0;
  }
  
  .blog-comments .comments-count {
  font-weight: bold;
  }
  
  .blog-comments .comment {
  margin-top: 30px;
  position: relative;
  }
  
  .blog-comments .comment .comment-img {
  margin-right: 14px;
  }
  
  .blog-comments .comment .comment-img img {
  width: 60px;
  }
  
  .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
  }
  
  .blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
  }
  
  .blog-comments .comment h5 a:hover {
  color: var(--accent-color);
  }
  
  .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .blog-comments .comment h5 .reply i {
  font-size: 20px;
  }
  
  .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
  }
  
  .blog-comments .comment.comment-reply {
  padding-left: 40px;
  }
  
  /*--------------------------------------------------------------
  # Comment Form Section
  --------------------------------------------------------------*/
  .comment-form {
  padding-top: 10px;
  }
  
  .comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
  }
  
  .comment-form form p {
  font-size: 14px;
  }
  
  .comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
  }
  
  .comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
  }
  
  .comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
  }
  
  .comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
  }
  
  .comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .comment-form form .form-group {
  margin-bottom: 25px;
  }
  
  .comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  }
  
  .comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  /*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/
  .starter-section {
  /* Add your styles here */
  }
  
  /*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/
  .widgets-container {
  margin: 60px 0 30px 0;
  }
  
  .widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
  }
  
  .widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
  }
  
  .widget-item:last-child {
  margin-bottom: 0;
  }
  
  .blog-author-widget img {
  max-width: 160px;
  }
  
  .blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .blog-author-widget .social-links {
  margin: 5px 0;
  }
  
  .blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
  }
  
  .blog-author-widget .social-links a:hover {
  color: var(--accent-color);
  }
  
  .blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
  }
  
  .search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
  }
  
  .search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
  }
  
  .search-widget form input[type=text]:focus {
  outline: none;
  }
  
  .search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
  }
  
  .search-widget form button i {
  line-height: 0;
  }
  
  .search-widget form button:hover {
  color: var(--accent-color);
  }
  
  .search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
  }
  
  .recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
  }
  
  .recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
  }
  
  .recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
  }
  
  .recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  }
  
  .recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
  }
  
  .recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
  }
  
  .recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  
  .tags-widget ul li {
  display: inline-block;
  }
  
  .tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
  }
  
  .tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  }
  
  .tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
  }
  
  
  
  .animation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
  overflow: hidden;
  }
  /* linear-gradient(45deg, cornsilk 50%, lightblue 50 */
  
  .cube {
  width: 200px;
  height: 200px;
  /* border-radius: 50px; */
  background-color: #ffb632;
  position: absolute;
  animation: moveCube 0.6s forwards; /* Run once and keep the final state */
  }
  
  .cube:nth-child(1) {
  top: calc(50% - 200px);  /* Position at the top */
  left: calc(60% - 35px);  /* Shift right */
  }
  
  .cube:nth-child(2) {
  top: calc(50% - 100px);  /* Center vertically */
  left: calc(20% - 35px);  /* Shift right */
  }
  
  .cube:nth-child(3) {
  top: calc(50%);  /* Position at the bottom */
  left: calc(60% - 35px);  /* Shift right */
  }
  
  .cube:nth-child(4) {
  top: calc(0% - 100px);  /* Center vertically */
  left: calc(60% + 75px);  /* Shift right */
  }
  
  .cube:nth-child(5) {
  top: calc(0% - 100px);  /* Center vertically */
  left: calc(40% + 75px);  /* Shift right */
  }
  
  @keyframes moveCube {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  
  100% {
    transform: translate(-300px, 100px) rotate(180deg);
  }
  }
  
  .cube-project {
  width: 150px;
  height: 200px;
  /* border-radius: 50px; */
  background-color: #ffb632;
  position: absolute;
  animation: moveCubeProject 0.6s forwards; /* Run once and keep the final state */
  }
  
  .cube-project:nth-child(1) {
  top: calc(80% - 200px);  /* Same starting position as cube */
  }
  
  .cube-project:nth-child(2) {
  top: calc(60% - 100px);  /* Same starting position as cube */
  left: calc(10% - 35px);  /* Same starting position as cube */
  }
  
  .cube-project:nth-child(3) {
  top: calc(50%);  /* Same starting position as cube */
  left: calc(60% - 55px);  /* Same starting position as cube */
  }
  
  .cube-project:nth-child(4) {
  top: calc(140% - 100px);  /* Same starting position as cube */
  left: calc(10% - 105px);  /* Same starting position as cube 0);  /* Same starting position as cube */
  }
  
  .cube-project:nth-child(5) {
  top: calc(100% - 100px);  /* Same starting position as cube */
  left: calc(40% + 75px);  /* Same starting position as cube */
  }
  
  @keyframes moveCubeProject {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  
  
  100% {
    transform: translate(300px, -300px) rotate(180deg);
  }
  }
  
  
  
  
  
  /* section about us */
  
  
  
  /* section recent project */
  
  .team-2 .container {
  overflow-x: auto; /* Allow horizontal scrolling */
  /* background-color:#444444; */
  /* padding: 15px; */
  }
  
  .flex-scroll {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  }
  
  .team-2 .member {
  flex: 0 0 auto; /* Prevent shrinking and allow item to take its natural width */
  margin-right: 10px;
  }
  
  .team-2 .member img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  }
  
  .team-2 .member-info {
  text-align: center;
  padding: 10px 0;
  }
  
  .team-2 .member-info-content h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
  }
  
  .team-2 .member-info-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  }
  
  .team-2 .member img:hover {
  transform: scale(1.05);
  }
  
  /* Add this CSS to your stylesheet */
  .marquee {
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
  position: relative;
  }
  
  .marquee-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 90s linear infinite;
  }
  
  .member {
  flex: 0 0 auto;
  width: 400px;
  }
  
  
  .container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  }
  
  .container-nav {
  width: 100%;
  margin: 0 auto;
  }
  
  .portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  }
  
  .portfolio-agent {
  position: relative;
  overflow: hidden;
  }
  
  .portfolio-agent img {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
  transition: transform 0.3s;
  }
  
  .portfolio-agent-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 45px;
  font-family: "Open Sans", sans-serif;
  }
  
  .portfolio-agent-info .tag span{
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
  }
  
  .footer-copyright p {
    font-size: 15px !important;
    align-items: center;
    color: #8d8d8d !important;
  }
  
  .portfolio-agent-info-content {
  margin: 0;
  }
  
  .member img {
  width: 100%;
  border-radius: 10px;
  }
  
  .member-info {
  text-align: center;
  padding: 10px 0;
  }
  
  .marquee::-webkit-scrollbar {
  display: none;
  }
  
  .marquee {
  -ms-overflow-style: none;
  scrollbar-width: none;
  }
  
  @keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
  }
  
  
  
  
  /* running text */
  
  /* Container untuk running text */
  #faq .running-text {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
  }
  
  /* Wrapper untuk elemen gambar */
  #faq .running-text .marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
  }
  
  /* Gambar-gambar di dalam running text */
  #faq .running-text img {
    margin-right: 25px;
    margin-left: 25px;
    height: 40px; /* Sesuaikan dengan tinggi yang diinginkan */
  }
  
  /* Animasi marquee */
  @keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
  }
  
  
  
  .zoom-hover {
  transition: transform 0.3s ease; /* Smooth transition */
  width: 100%;
  height: auto;
  display: block;
  }
  
  .zoom-hover:hover {
  transform: scale(1.1); /* Zoom the image to 110% */
  }
  
  .featured-about h1 {
  font-size: 20px;
  }
  
  .featured-about p {
  font-size: 52px;
  line-height: 60px;
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
  }
  .featured-about span {
  font-size: 52px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  }
  
  .mobile-content {
    display: none;
}

.faq-item {
  position: relative;
}

.faq-header {
  display: flex;
  align-items: center; /* Aligns the items vertically */
}

.faq-header i {
  margin-right: 10px; 
}

.faq-header h2 {
  margin: 0; /* Removes default margin */
  
}

.faq-content {
  display: none; /* Hidden by default */
  margin-top: 10px;
}

.faq-toggle {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
}


@media (max-width: 768px) {
    .mobile-content {
        display: block;
    }
    .desktop-content {
        display: none;
    }
}

.block-text {
  font-weight: 600;
  }


  @keyframes arrow-animation {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px); /* Move right */
    }
    100% {
        transform: translateX(0);
    }
}

/* Optional: Change background color on hover */
.cta-btn:hover {
    background-color: #0056b3; /* Darker background color on hover */
}


.featured .sumber {
    font-weight:600;
    position: absolute;
    bottom: 155px;
    right: 15px;
    font-size: 9px !important;
    color: #999999;
    text-align: right;
    transform: rotate(270deg);
    transform-origin: bottom right;
    white-space: nowrap;

}

    .featured img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        top: 0 !important;
        position: absolute !important
        ;
    }
    
    .featured h1 {
        font-size: 58px !important;
        text-transform: none !important;
        color: #ffb63c;
    }

    .featured p {
        font-size: 23px;
    }
    #featured {
        position: relative;
        overflow: hidden;
    }

    #featured video {
        width: 100%;
        height: 100vh;
        object-fit: cover; /* Ensures the video covers the section */
        z-index: 0;
        opacity: 0.5;

    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(106deg, #000000c9 20%, transparent);
        display: flex;
        justify-content: center;
        align-items: center; 
        text-align: center;
    }

    .arrow-down {
    
        position: absolute; 
        top: 350px;
        left: 20px;
        text-align: left;
        animation: moveUpDown 2s ease-in-out infinite; 
        z-index: 10;
    }

    .arrow-down i {
        font-size: 30px;
        color: #ffb63c;
        z-index: 10;

    }

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0); /* Initial position */
    }
    50% {
        transform: translateY(-10px); /* Move up by 10px */
    }
}

    .social-links-banner {
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 35px;
        z-index: 10;
}

.social-item {
    display: flex;
    align-items: center; /* Center the icon and text vertically */
    gap: 10px; /* Space between icon and text */
}

.social-item-instagram a, .social-item-tiktok a, .social-item-linkin a, .social-item-x a, .social-item-yt a {
    color: #000; /* Set icon color */
    text-decoration: none; /* Remove underline */
    display: flex; /* Flex container for the icon */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    width: 40px; /* Fixed width for the circle */
    height: 40px; /* Fixed height for the circle */
    background-color:#fff; /* Circle background color */
    border-radius: 50%; /* Circle shape */
    /* border: 2px solid #fff;  */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: shadow for depth */
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.social-item-instagram a:hover {
    transform: scale(1.1); /* Enlarge the icon on hover */
    background: linear-gradient(200deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80); /* Gradient background on hover */ 
    color: #fff; /* Darken color on hover */
}

.social-item-tiktok a:hover {
    transform: scale(1.1); /* Enlarge the icon on hover */
    background-color: #212529; /* Change background on hover */
    color: #fff; /* Darken color on hover */
}

.social-item-linkin a:hover {
    transform: scale(1.1); /* Enlarge the icon on hover */
    background-color: #0077B5; /* Change background on hover */
    color: #fff; /* Darken color on hover */
}

.social-item-x a:hover {
    transform: scale(1.1); /* Enlarge the icon on hover */
    background-color: #000; /* Change background on hover */
    color: #fff; /* Darken color on hover */
}

.social-item-yt a:hover {
    transform: scale(1.1); /* Enlarge the icon on hover */
    background-color: #FF0000; /* Change background on hover */
    color: #fff; /* Darken color on hover */
}

.social-item span {
    color: #fff; /* Text color */
    font-size: 14px; /* Font size for labels */
    white-space: nowrap; /* Prevent text from wrapping */
}


    @media (max-width: 1199px) {
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(359deg, #000000c9 30%, transparent);
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .social-links-banner {
            display: none !important;
        }
        .featuredwrapper {
            padding: 10px 50px;
        }

        .arrow-down {
            position: absolute;
            top: 400px;
            left: 42px;
            text-align: left;
            animation: moveUpDown 3s ease-in-out infinite;
            z-index: 10;
        }

        .arrow-down i {
            font-size: 40px; /* Size of the arrow icon */
            color: #ffb63c; /* Color of the arrow */
            z-index: 10;
        }

        .social-links-banner {
            position: absolute;
            top: 80%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 35px;
            z-index: 10;
            padding-left: 20px;
            border-left: 2px solid #fff;
        }

        .featured .sumber {
    position: absolute; /* Allows positioning within the parent container */
    bottom: 200px; /* Adjusts vertical position */
    right: 5px; /* Adjusts horizontal position */
    font-size: 12px !important; /* Smaller font size for a subtle look */
    color: #495057 !important; /* White color for text */
    text-align: right; /* Right align text if it spans multiple lines */
    transform: rotate(270deg);
    transform-origin: bottom right; /* Ensures the rotation occurs around the bottom right corner */
    white-space: nowrap; /* Prevents text from breaking to a new line */
    z-index: 1;
}

        
    }

    /* .custom-cursor {
      cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJjdXJyZW50Q29sb3IiIGNsYXNzPSJiaSBiaS1hcnJvd3MtYW5nbGUtZXhwYW5kIj4KICA8IS0tIExpbmdrYXJhbiAtLT4KICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgLz4KICAKICA8IS0tIEljb24gQXJyb3dzIC0tPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTkuODI4IDE0LjE3MmEuNS41IDAgMCAwLS43MDcgMGwtNC4wOTYgNC4wOTZWMTUuNWEuNS41IDAgMCAwLTEgMHYzLjk3NWEuNS41IDAgMCAwIC41LjVIOC41YS41LjUgMCAwIDAgMC0xSDUuNzMybDQuMDk2LTQuMDk2YS41LjUgMCAwIDAgMC0uNzA3bTQuMzQ0LTQuMzQ0YS41LjUgMCAwIDAgLjcwNyAwbDQuMDk2LTQuMDk2VjguNWEuNS41IDAgMSAwIDEgMFY0LjUyNWEuNS41IDAgMCAwLS41LS41SDE1LjVhLjUuNSAwIDAgMCAwIDFoMi43NjhsLTQuMDk2IDQuMDk2YS41LjUgMCAwIDAgMCAuNzA3Ii8+Cjwvc3ZnPg=='), auto; 
      color: #fff;
    } */

    .tag {
      display: flex;
      flex-wrap: wrap; /* Allows wrapping to the next line if there are too many tags */
      gap: 10px; /* Adds spacing between the tags */
    }
    
    .tag span {
      padding: 5px 10px;
      border-radius: 5px; /* Optional: round corners */
    }
    .portfolio-agent-info-content {
      line-height: 1rem;
    }
    p {
      margin: 0;
      font-weight: 100;
      /* line-height: 25px; */
    }
    h1 {
      font-size: 18px;
      /* text-transform: uppercase; */
      margin: 0 0 6px;
      font-weight: 700;
    }

    .right-service-content p {
      line-height: 40px;
      color: #fff;
      margin-left: 10px;
      font-size: 20px;
      font-weight: 200;
    }




      .custom-service h2 a {
        line-height: 40px;
        font-size: 35px;
        font-family: "Open Sans", sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        color:#fff;
        position: relative;
        padding: 20px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
      }

      @media ((max-width: 1199px)) {
        .custom-service h2 a {
          padding: 20px 0;
        }   
    }

    .section-tagline-and-running-text {
      padding: 40px 0px;
  }

  
  .featured-about {
    margin: 120px 0 !important;
  }
  .custom-about-text {
    font-size: 45px;
    font-weight: 100;
    line-height: 85px;
  }

  .custom-about-title {
    line-height: 72px;
  }

  @media screen and (max-width: 768px) {
    .section-about-page {
      padding:0 20px !important
    }
    .custom-about-text {
      font-size: 30px !important;
      /* line-height: 10px; */
    }
    
  }

  .featured-about {
    padding: 4rem 0; /* Add padding for spacing */
}

.portfolio-brand {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Increase space between images */
    justify-content: center; /* Center images horizontally */
}

.portfolio-brand img {
    width: auto; /* Larger fixed width */
    height: 50px; /* Larger fixed height */
    object-fit: cover; /* Ensures image fits well within the circle */
    padding: 4px; /* Increased space between the image and the border */
}

.wrapper-brand-title h1{
    width: 68%;
    font-size: 50px;
    line-height: 65px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.wrapper-brand-title p{
    width: 70%;
    font-size: 32px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-brand img {
        width: 80px; /* Adjust size for tablets */
        height: 80px;
    }
}

@media (max-width: 576px) {
    .portfolio-brand img {
        width: auto; /* Adjust size for mobile screens */
        height: 40px;
    }

    .wrapper-brand-title h1{
        width: 100% !important;
        font-size: 23px;
        line-height: 35px;
        font-weight: 600;
        margin-bottom: 1rem;
}

.wrapper-brand-title p{
    width: 100% !important;
    font-size: 18px;
    line-height: 33px;
    font-weight: 300;
    margin-bottom: 2rem;
}
}
    
.call-me {
  margin: 5rem 0 8rem ;
}
.contact-title-main {
font-size: clamp(1.5rem, 5vw, 3rem);
}

.contact-title-sub {
font-size: clamp(1.25rem, 3.5vw, 2rem);
}

.btn-send {
font-weight: 500;
}

.btn-send:hover {
background-color: #000;
color: #fff;
}

.form-contact {
margin-bottom: 4.5rem;
}

.project-about-left p {
  margin-top: 40px;
  font-size: 20px !important;
  font-weight: 100 !important;
  width: 90%;
  line-height: 40px;
  text-transform: capitalize;
}

.project-about-right h3 {
  margin-top: 40px;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.project-about-right ul li {
font-size: 20px;
line-height: 50px;
font-weight: 300;
text-decoration: none;
list-style-type: none !important;
}

.custom-cursor {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMjUwIDI1MCIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNTAgMjUwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05Ni41LDE1My41YzIsMiw1LjIsMiw3LjEsMGw0MS4zLTQxLjN2MjcuOWMwLDIuOCwyLjMsNSw1LDVzNS0yLjMsNS01VjEwMGMwLTIuOC0yLjMtNS01LTVoLTQwLjEKCWMtMi44LDAtNSwyLjMtNSw1czIuMyw1LDUsNWgyNy45bC00MS4zLDQxLjNDOTQuNSwxNDguNCw5NC41LDE1MS42LDk2LjUsMTUzLjUiLz4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEyNSwyQzU3LjEsMiwyLDU3LjEsMiwxMjVzNTUuMSwxMjMsMTIzLDEyM3MxMjMtNTUuMSwxMjMtMTIzUzE5Mi45LDIsMTI1LDJ6IE0xMjUsMjM3LjYKCWMtNjIuMiwwLTExMi42LTUwLjQtMTEyLjYtMTEyLjZTNjIuOCwxMi40LDEyNSwxMi40UzIzNy42LDYyLjgsMjM3LjYsMTI1UzE4Ny4yLDIzNy42LDEyNSwyMzcuNnoiLz4KPC9zdmc+'), auto; 
  color: #fff;
}


.tag {
  margin-top: 24px;
}

.tag span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid #fff;
}
.portfolio-agent-info-content {
  line-height: 1rem;
}
p {
  margin: 0;
  font-weight: 100;
}


.project-about-left h3 {
  margin-top: 40px;
  font-size: 50px;
  font-weight: 700 !important;
  width: 90%;
  line-height: 65px;
  text-transform: capitalize;
}

.project-about-left h2 {
  margin-top: 40px;
  font-size: 25px !important;
  font-weight: 700 !important;
  width: 90%;
  line-height: 30px;
  text-transform: capitalize;
}

.project-about-left p {
  margin-top: 40px;
  font-size: 20px !important;
  font-weight: 100 !important;
  width: 90%;
  line-height: 40px;
  text-transform: capitalize;
}

.project-about-right h3 {
  margin-top: 40px;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.project-about-right ul li {
font-size: 20px;
line-height: 50px;
font-weight: 300;
text-decoration: none;
}

.service-custom {
  margin-bottom: 100px;
}
.item {
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* Replaced the border with shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff; /* Ensures background consistency */
}

.item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deepened shadow on hover */
}

.text-uppercase {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.details-list {
  margin-top: 25px;
  margin-left: -15px;
  list-style-type: square;
}

.details-list li {
  text-align: left;
  
}

.details-list p {
  text-align: left;
  
}
.badge {
  font-size: 12px;
  border-radius: 14px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  /* color:#ffb63c */
}

.text-description {
  font-style: italic; /* Makes the text italic */
  color: #4b4b4b; /* Dark gray color */
}

.show-more {
color: #ffb63c;
font-size: 14px;
position: relative; /* Diperlukan jika Anda ingin mengatur posisi relatif elemen setelahnya */
margin-top: 15px;
}

.show-more::after {
margin-left: 5px; /* Memberi jarak antara teks dan panah */
font-size: 12px;  /* Atur ukuran panah */
}

.tags-widget li {
        background: none !important;
        margin:0;
        padding: 0 !important;
        border-radius: 20px;
    }
    .featured-project {
    padding-top: 50px !important;
    padding-bottom: 0 !important;
}

.article {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.widget-item {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-widget li {
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 20px;
}

.tags-widget a {
    color: #333;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .featured {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .featured-project {
        padding-top: 0 !important;
        padding-bottom: 30px !important;
    }

    .featured-blog {
      padding-top: 130px !important;
      padding-bottom: 30px !important;
  }

    .featured-image {
        padding-top: 5px !important;
    }
}

.title-brand {
  font-weight: 300; 
  font-size: 20px;
}
@media (max-width: 768px) {
  .featured-project-right {
      font-size: 14px; /* Ukuran font lebih kecil */
      padding: 10px;   /* Tambahkan padding untuk spasi yang lebih baik */
  }

  .featured-project-right p {
      font-size: 40px; /* UKuran font lebih kecil */
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 1rem; /* Margin bawah untuk pemisahan yang lebih baik */
  }

  .title-brand {
      text-transform: uppercase;
  font-weight: 300; 
  font-size: 20px !important;
}
  /* Mengatur jarak pada elemen lain */
  .featured-project-left {
      padding: 15px; /* Tambahkan padding untuk keseluruhan bagian */
  }

  .featured-project-left h1 {
      font-size: 16px; /* Ukuran font judul lebih kecil */
  }

  ul li {
      font-size: 18px; /* Ukuran font list lebih kecil */
      margin-bottom: 0.5rem; /* Margin bawah untuk pemisahan */
      list-style-type: none; /* Menghapus tanda list */
      font-weight: 600;
  } 

  .featured-project-left .badge {
      font-size: 12px; /* Ukuran font badge lebih kecil */
      padding: 3px 8px; /* Ukuran padding badge lebih kecil */
  }
}

.title-brand {
  font-weight: 300; 
  font-size: 20px;
}
@media (max-width: 768px) {
  .featured-project-right {
      font-size: 14px; /* Ukuran font lebih kecil */
      padding: 10px;   /* Tambahkan padding untuk spasi yang lebih baik */
  }

  .featured-project-right p {
      font-size: 40px; /* UKuran font lebih kecil */
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 1rem; /* Margin bawah untuk pemisahan yang lebih baik */
  }

  .title-brand {
      text-transform: uppercase;
  font-weight: 300; 
  font-size: 20px !important;
}
  /* Mengatur jarak pada elemen lain */
  .featured-project-left {
      padding: 15px; /* Tambahkan padding untuk keseluruhan bagian */
      margin-top: 100px !important;
  }

  .featured-project-left h1 {
      font-size: 16px; /* Ukuran font judul lebih kecil */
  }

  ul li  {
      font-size: 18px; /* Ukuran font list lebih kecil */
      margin-bottom: 0.5rem; /* Margin bawah untuk pemisahan */
      /* list-style-type: square;  */
      font-weight: 600;
  } 

  .featured-project-left .badge {
      font-size: 12px; /* Ukuran font badge lebih kecil */
      padding: 3px 8px; /* Ukuran padding badge lebih kecil */
  }
}
