/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --first-hue: 250;
  --sat: 66%;
  --lig: 75%;
  --second-hue: 219;
  --first-color: #017287;
  --first-color-dark: #2d3646;
  --first-color-alt: #20c4e2; /* -4% */
  --title-color: hsl(var(--second-hue), 15%, 95%);
  --text-color: hsl(var(--second-hue), 8%, 75%);
  --text-color-light: hsl(var(--second-hue), 4%, 55%);
  --body-color: hsl(var(--second-hue), 48%, 8%);
  --container-color: hsl(var(--second-hue), 32%, 12%);

  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * transition
   */

  --transition: 0.25s ease;

  /**
    * spacing
    */

  --section-padding: 100px;

  /**
    * shadow
    */

  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
}

body {
  font-family: Poppins;
  font-weight: 200;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: var(--first-color);
  text-decoration: none;
}

a:hover {
  color: var(--first-color-alt);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--first-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--first-color-dark);
  color: #fff;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/* Gaya ikon WhatsApp */
/* Gaya ikon WhatsApp */
.whatsapp-icon {
  position: absolute;
  top: 50%; /* Menyelaraskan ikon di tengah vertikal */
  right: 60px; /* Jarak dari tepi kanan */
  transform: translateY(-50%); /* Pusatkan ikon secara vertikal */
  z-index: 1; /* Naikkan ikon di atas konten lain */
  text-align: center;
  color: #25D366; /* Warna hijau WhatsApp */
  font-size: 42px;
  text-decoration: none;
  z-index: -1;

  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.whatsapp-icon:hover {
  /* Efek ketika kursor diarahkan ke ikon */
  color: var(--first-color);
  
}


.content .header {
  font-size: 45px;
  font-weight: 600;
}
.content p {
  font-size: 30px;
  font-weight: 500;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


/* #header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
} */

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: var(--first-color-alt);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--first-color-alt);
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {

  overflow: hidden;
  padding: 0;
  margin: 0;
}

#hero .container-fluid {
  margin: 0;
  padding: 0;
}



#hero .container {
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 500;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--first-color-alt);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--first-color-alt);
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: var(--first-color-alt);
}

#hero .icon-box:hover {
  border-color: var(--first-color-alt);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}


@media (max-width: 629px){

  #img-1{
    display: none;
  }

  
  #img-2{
    display: block;
  }
}



.dekstop-img{
  width: 100%;
  padding: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mobile-img{
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 24px 0;
  overflow: hidden;
}

section-project {
  padding: 20px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
} */


.section-title p {
  margin: 0;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Poppins", sans-serif;
  color: var(--first-color);
  text-align: center;
}

.section-title-project p {
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-weight: 500;

  font-family: "Poppins", sans-serif;
  color: #252525;
}

/* Info Panel */

.info-panel {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  background-color: white;
}

.info-panel img {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 300;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 12px;
  left: 0;
  top: -3px;
  color: var(--first-color-alt);
}

.about .content p {
  margin-bottom: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients img {
  width: 70%;
  row-gap: 1px;
}

.clients img:hover {
  filter: none;
  width: 70%;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--first-color-alt);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features p {
  font-weight: 500;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--first-color-alt);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  /* border: 1px solid #ebebeb; */
  padding: 5px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-left: 0;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: var(--first-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 14px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: var(--first-color);
}

.services .icon-box p {
  line-height: 24px;
  font-size: 13px;
  margin-bottom: 0;
}

/* .services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
} */

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  height: 250px;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--first-color-alt);
  border-color: var(--first-color-alt);
  color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;

  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid var(--first-color);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.active {
  color: white;
  background-color: var(--first-color);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";

  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #09513b;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #09513b;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #09513b;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: var(--first-color-alt);
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
  .section-title p {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .section-title-project p {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .whatsapp-icon{
    right: 24px;
  }
  .clients img {
    width: 40%;
    margin: 10px;
    display: grid;
  }

  .clients img:hover {
    width: 40%;
  }

  .btn {
    left: 14px;
  }
  .btn.click {
    left: 14px;
  }

  .img-akad {
    width: 300px;
    height: 200px;
  }
}

@media (min-width: 576px) {
  .section-title {
    font-size: 6px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  height: 500px;
  background: url("../img/cassara-gate.webp") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--first-color-alt);
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: var(--first-color-alt);
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: var(--first-color-alt);
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--first-color-alt);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form .btn-send {
  background: var(--first-color-alt);
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form .btn-send:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--first-color);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: var(--first-color);
  border-bottom: 1px solid #fff;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--first-color-alt);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--first-color-dark);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--first-color-alt);
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--first-color-alt);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--first-color-alt);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--first-color-alt);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.img-footer {
  margin: auto;
  margin-bottom: 40px;
}

.footer-img {
  display: grid;

  color: #fff;
  line-height: 1;
  margin-right: 4px;
  border-radius: 4px;

  transition: 0.3s;
}

.crs-img {
  width: 100% !important;
}

/* .img-akad {
  width: 100%;
  height: 500px;
  background: url("../img/akad.jpg") center;
  background-repeat: no-repeat;
  position: relative;
} */




/*-----------------------------------*\
  #PROPERTY
\*-----------------------------------*/


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  margin-top: 10px;
  margin-bottom: 10px;
  /* padding: 30px 40px; */
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: white;
  background-color: #25D366;
  transition: none;
  font-size: 14px;
  font-weight: 300;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  /* border: 1px solid #09513b; */
}

.pricing .btn-buy:hover {
  background: white;
  color: #25D366;
  border: 1px solid #25D366;


}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #09513b;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing h3 {
    font-weight: 500;
    font-size: 24px;
    /* margin-bottom: 15px; */
  }

}





.testimonial-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}

.testimonial-text {
  flex: 1;
  padding: 10px;
}

.testimonial-text h3 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 10px;
}

.testimonial-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.testimonial-video {
  flex: 1;
  padding: 10px;
}

/* .testimonial-video iframe {
  width: 100%;
  height: 200px;
  border: none;
} */

.testimonial-video iframe {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial-avatar {
  max-width: 50px;
  border-radius: 50%;
  margin-right: 10px;
}


   /* Responsiveness for smaller screens */
   @media (max-width: 768px) {
    .testimonial-container {
      flex-direction: column;
    }

    .testimonial-avatar {
      max-width: 60px;
      margin: 0 auto 10px;
    }

    .testimonial-text,
    .testimonial-video {
      flex: none;
      max-width: 100%;
    }

    .testimonial-video iframe {
      height: 180px;
    }
  }



  .benefit .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
  }
  
  .benefit .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
  }
  
  .benefit .icon-box .icon i {
    color: var(--first-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }
  
  .benefit .icon-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .benefit .icon-box h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
  }
  
  .benefit .icon-box h4 a:hover {
    color: var(--first-color);
  }
  
  .benefit .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .benefit .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
  }


  
.navbar {
  padding: 15px;
  transition: background-color 0.3s;
}
.navbar.transparent.navbar-inverse {
  background-color: transparent;
}
.navbar.white-bg.navbar-light {
  background-color: var(--first-color);
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}
.navbar .nav-link {
  padding: 5px 0;
  color: var(--first-color); /* Ubah warna teks menjadi putih */
}

.navbar .nav-item {
  padding: 0 10px; /* Atur padding kiri dan kanan menu */
  margin-right: 10px; /* Atur margin kanan menu */
  margin-left: 10px; /* Atur margin kanan menu */
  font-weight: 400; 
  transition: color 0.3s; /* Tambahkan efek transisi saat hover */
}
.navbar .nav-link:hover {
  color: var(--first-color-alt); /* Ubah warna teks saat hover */
  
}

.dropdown-menu .dropdown-item img {
  width: 20px; /* Sesuaikan ukuran gambar sesuai kebutuhan */
  height: auto;
  margin-right: 5px; /* Atur jarak antara gambar dan teks */
  vertical-align: middle; /* Agar gambar tetap berada di tengah secara vertikal */
}

.navbar-brand {
  margin-top: 0;
  bottom: 200px;
}

.navbar .dropdown-menu {
  margin-right: 15px;
  margin-top: 0; /* Atur margin atas dropdown menu */
  border: none; /* Hapus border pada dropdown menu */
  background-color: #f9f9f9; /* Ganti warna background dropdown menu */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan shadow pada dropdown menu */
  transition: opacity 0.3s, transform 0.3s; /* Tambahkan efek transisi saat dropdown muncul */
  opacity: 0; /* Sembunyikan dropdown secara default */
  transform: translateY(-10px); /* Geser dropdown ke atas */
  display: block !important; /* Ubah tampilan menjadi block */
}
.navbar .dropdown-menu.show {
  opacity: 1; /* Tampilkan dropdown saat ditampilkan */
  transform: translateY(0); /* Kembalikan posisi dropdown ke posisi semula */
}
.navbar .dropdown-item {
  height: auto;
  padding: 10px 20px;
  color: #333; /* Ubah warna teks pada item dropdown */
  transition: background-color 0.3s; /* Tambahkan efek transisi saat hover item dropdown */
}
.navbar .dropdown-item:hover {
  background-color: #f1f1f1; /* Ubah warna background item dropdown saat hover */
}



/* CSS untuk tampilan navbar desktop */
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    display: flex !important;
  }
  .navbar .navbar-nav {
    flex-direction: row;
  }
  .navbar .nav-item {
    padding: 0 15px;
  }
  .navbar .nav-link {
    padding: 10px 0;
  }
}

/* CSS untuk tampilan hamburger navbar di perangkat seluler */
 /* CSS untuk tampilan sidebar di perangkat seluler */
 @media (max-width: 767.98px) {


  .navbar .navbar-nav .nav-item {
    margin-bottom: 5px; /* Atur jarak antara menu pada perangkat seluler */
  }
  .navbar .navbar-nav .dropdown-item {
    padding: 8px 10px; /* Atur padding pada item dropdown untuk perangkat seluler */
  }
  .navbar .navbar-nav .dropdown-item img {
    width: 30px; /* Ubah ukuran gambar pada perangkat seluler */
    height: auto;
    margin-right: 2px; /* Ubah jarak antara gambar dan teks pada perangkat seluler */
  }
  .navbar .navbar-collapse {
    color: #000;
    background-color: var(--first-color); /* Ganti warna background daftar dropdown pada perangkat seluler */
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 150px;
    right: 0;
    bottom: 0;
    padding-top: 15px;
    /* transition: left 0.3s ease; */
  }

  .navbar .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
  }
  .navbar .navbar-nav .nav-item {
    width: 100%;
  }

  

  .navbar .dropdown-menu {

    margin-top: 0;
    border: none;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 1; /* Tampilkan dropdown secara default di perangkat seluler */
    transform: translateY(0); /* Kembalikan posisi dropdown ke posisi semula di perangkat seluler */
  
  }
  .navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar .dropdown-item {
    margin: 0;
    font-size: 12px;
    color: #333;
    transition: background-color 0.3s;
  }
  .navbar .dropdown-item:hover {
    background-color: #f1f1f1;
  }

  
}

/* CSS untuk tampilan desktop pada perangkat tablet dan di atasnya */
@media (min-width: 768px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 10px; /* Atur jarak antara menu pada perangkat tablet dan di atasnya */
  }

  .navbar .navbar-nav .nav-link {
    padding: 8px 15px;
  }

  .navbar .navbar-nav .dropdown-item {
    padding: 8px 20px; /* Atur padding pada item dropdown untuk perangkat tablet dan di atasnya */
  }
  .navbar .navbar-nav .dropdown-item img {
    width: 30px; /* Ubah ukuran gambar pada perangkat tablet dan di atasnya */
    height: 30px;
    margin-right: 8px; /* Ubah jarak antara gambar dan teks pada perangkat tablet dan di atasnya */
  }
}

.custom-box {
  display: flex;
  flex-direction: row;
}

.custom-box img {
  flex: 0 0 50%;
  max-width: 50%;
  margin-right: 20px;
}

.custom-box .custom-content {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Tambahkan CSS tambahan sesuai kebutuhan tampilan Anda */






.photo-box {
  margin-top: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 25px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.photo-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--first-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.photo-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.photo-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 24px;
}

.photo-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.photo-box h4 a:hover {
  color: var(--first-color);
}

.photo-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.photo-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.photo-box img {
    width: 100%; /* Gambar akan mengisi seluruh lebar kotak */
    height: auto; /* Tinggi gambar akan menyesuaikan proporsional lebar */

 

}

.modal-dialog.modal-dialog-centered.modal-lg {
  max-width: 50%;
  margin: auto;
}

.modal-body {
  text-align: center;
}


.carousel-inner img {
  max-height: 500px; /* Atur tinggi maksimum gambar */
  object-fit: cover; /* Untuk memastikan gambar mengisi ruang yang tersedia */
}

.carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 1.5rem;
    line-height: 40px;
    background-color: transparent;
    color: #fff;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .caption {
   text-align: left;
    padding: 10px;
    color: #151515;
  }
  .caption h3{
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
  }
  .caption p{
    margin-top: -8px;
     font-size: 14px;
  }
  
  .button-wrapper {
    padding: 10px;
;
    
  }

  .button-wrapper span{
    font-size: 24px;
    font-weight: 500;
  }



  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Untuk menyesuaikan rasio aspek video 16:9 */
    height: 0;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


  /* Mengatur ukuran dan posisi gambar potret */
  .custom-portrait {
    width: 100%;
    height: auto;
  }

  /* Mengatur tampilan kolom teks di sisi kanan */
  .custom-text-column {
    background-color: #fff;
    padding: 20px;

  }

  /* Mengatur ukuran teks judul */
  .custom-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
  }

  /* Mengatur ukuran teks lead */
  .custom-lead {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .custom-centered-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-landscape {
    width: 100%;
    height: auto;
    max-height: 500px; /* Atur tinggi maksimum sesuai keinginan Anda */
    object-fit: cover; /* Agar gambar lanskap mengisi sepenuhnya area img tanpa distorsi */
  }

  a.float {
    position: fixed;
    bottom: 20px; /* Sesuaikan dengan jarak vertikal dari bawah */
    right: 20px; /* Sesuaikan dengan jarak horizontal dari kanan */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Sesuaikan dengan ukuran tombol awal */
    height: 60px; /* Sesuaikan dengan ukuran tombol */
    background-color: var(--first-color); /* Ganti warna latar belakang menjadi #09513b */
    color: #fff; /* Warna teks sesuaikan dengan preferensi Anda */
    text-decoration: none;
    font-size: 20px; /* Sesuaikan dengan ukuran ikon WhatsApp */
    border-radius: 30px; /* Membuat tombol menjadi rectangle rounded (setengah dari ukuran lebar) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Efek bayangan pada tombol */
    overflow: hidden; /* Menghindari teks memanjang keluar tombol saat dihover */
    transition: width 0.3s; /* Efek transisi saat hover */
    z-index: 999;
  
  }
  
  
  a.float:hover {
    background-color: #09513b;
  }
  

  