/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i");

:root {
  --first-hue: 250;
  --sat: 66%;
  --lig: 75%;
  --second-hue: 219;
  --first-color: #424b5a;
  --first-color-dark: #2d3646;
  --first-color-alt: #7c93a1; /* -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%);
}

body {
  font-family: Poppins;
  font-weight: 200;
  color: #444444;
  background-color: #c6c6c0;
  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: 12px;
  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;
}

/* NAVBAR */


.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: white; /* 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 {
  /* background-color: white;
  padding: 20px;
  border-radius: 20px; */
  color:whitesmoke; /* 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 */
  transform: translateY(-10px); /* Geser dropdown ke atas */
  display: none;
}
.navbar .dropdown-menu.show {
  display: block; /* Ubah tampilan menjadi block */
  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;
  }
}


@media (max-width: 767.98px) {

  .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
    width: 100%;
  }
  
  .navbar .navbar-nav .dropdown-item {
    padding: 8px 10px;
    font-size: 12px;
    color: #333;
    transition: background-color 0.3s;
    margin: 0;
  }
  
  .navbar .navbar-nav .dropdown-item img {
    width: 30px;
    height: auto;
    margin-right: 2px;
  }
  
  .navbar .navbar-collapse {
    color: #000;
    background-color: var(--first-color);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    padding-top: 15px;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.3s ease; /* Smooth transition for sliding */
    visibility: hidden; /* Initially hidden */
  }
  
  .navbar .navbar-toggler {
    display: block;
    padding: 4px 8px;
    border: none;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
    font-size: 30px;
  }
  
  .navbar .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
  }
  
  .navbar .navbar-nav .nav-link {
    padding: 8px 15px;
  }
  
  .navbar .navbar-collapse.show {
    transform: translateX(0); /* Slide in to view */
    visibility: visible; /* Ensure it's visible when shown */
  }
  
  .navbar .dropdown-menu {
    margin-top: 0;
    border: none;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, transform 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 */
  }
}

/* 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
--------------------------------------------------------------*/

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

#hero .container{
  background-size: cover;
}

.about-text{
  width: 90%;
  font-family: Poppins, sans-serif;
  color: rgb(255, 255, 255);
  font-size: 14px;
  text-align: justify;
  max-height: 300px;
}
.main-banner{
  width: 100%;
  height: 100vh;
}

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20% 320px 20%;
  margin-top: 0px;
  height: 100vh;

}

.main-banner .item-1 {
  background-image: url(../img/banner-01.jpg);
  
}

.main-banner .item-2 {
  background-image: url(../img/banner-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../img/banner-03.jpg);
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 20px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: var(--first-color);
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #fff;
  line-height: 72px;
  width: 50%;
  margin-bottom: 40px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
  /* margin-bottom: 320px; */
}

.main-banner .owl-dots .active {
  background-color: var(--first-color);
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
  
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {

  .main-banner .owl-nav .owl-prev i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    left: 20px;
  }
  .main-banner .owl-nav .owl-next i {
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;

  }
  .main-banner .item h2 {
    font-size: 40px;
    line-height: 36px;
    width: 100%;
  }

  .about-text{
    width: 100%;
  }
  

  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 38px;
    line-height: 36px;
  }

  /* #hero h2 {
    font-size: 20px;
    line-height: 24px;
  } */

  h2.title-about {
    font-size: 30px;
    margin-bottom: 35px;

  }

  p.fw-light{
    margin-bottom: 30px;
  }

  .main-banner .item h2{
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# 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;
}

.title-about {
  font-size: 60px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-bottom: 50px;
  
  text-transform: uppercase;
  color: white;
  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: 60px;
  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;
}

.container {
  padding: 30px;
}

.info-panel {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px; /* Mengatur lebar maksimum panel */
  margin: 0 auto; /* Mengatur panel berada di tengah */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.section-title-project {
  margin-bottom: 0px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 200px; /* Sesuaikan ukuran logo sesuai kebutuhan */
  height: auto; /* Lebar akan disesuaikan dengan aspek rasio gambar */
  margin: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
  filter: grayscale();
}

.logo-head{
  font-size: 30px;
}

.logo img:hover {
  transform: scale(1.1);
  filter: none;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
/* .clients {
  padding-top: 20px;
}

.clients img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients img {
  width: 40%;
  row-gap: 1px;
  
}

.clients img:hover {
  filter: none;
  width: 40%;
  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);
}

.row{
 
  padding: 0;
} */

/*--------------------------------------------------------------
# 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: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-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;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.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: 14px;
  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 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-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: "";
  background: rgba(44, 44, 44, 0.75);
  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;
}


@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: 30px;
    margin-bottom: 5px;
  }


  .whatsapp-icon{
    right: 24px;
  }

  h1.buying{
    font-size: 100px;
  }
  

  .info-panel{
    margin-bottom: -40px;
    width: 350px;
    /* max-width: 700px; */
  }
  .section-title-project p {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .clients img {
    margin: auto;
    width: 150px;
    margin-top: 20px;
    display: grid;
  }

  .btn {
    left: 14px;
  }
  .btn.click {
    left: 14px;
  }

  .services .icon-box {
    padding: 30px 20px;

  }
  
  .services .icon-box .icon {
    width: 64px;
    height: 64px;
  }
  
  .services .icon-box .icon i {
    color: #fff;
    font-size: 26px;
    transition: ease-in-out 0.3s;
  }
  
  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  

  .services .icon-box p {
    line-height: 24px;
    font-size: 12px;
    margin-bottom: 0;
  }
  

}

@media (min-width: 576px) {
  .section-title {
    font-size: 6px;
  }

  
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.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);
  border: 0;
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form .btn-send:hover {
  background: var(--first-color-dark);
  color: white;
}

@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;
  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: white;
  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;
}



.icon {
  font-size: 36px; /* Customize the icon size here */
  margin-bottom: 10px; /* Add spacing between icon and title */
  background-color: var(--first-color-alt); /* Add background color for the circular icon */
  color: white;
  border-radius: 50%; /* Add border-radius to make the icon circular */
  width: 60px; /* Set the same width and height to make it a circle */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
}

.lead{
  color:#aaa;
}

.wrapper{margin:10vh}


.card{
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
 overflow:hidden;
 border-radius:20px;
 min-height:450px;
   box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);

 @media (max-width: 768px) {
  min-height:350px;
}

@media (max-width: 420px) {
  min-height:300px;
}

 &.card-has-bg{
 transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  background-size:120%;
  background-repeat:no-repeat;
  background-position: center center;
  &:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);}

  &:hover {
    transform: scale(0.98);
     box-shadow: 0 0 5px -2px rgba(0,0,0,0.3);
    background-size:130%;
     transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);

    .card-img-overlay {
      transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
      background: rgb(189, 195, 199);
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.306) 0%, rgba(189, 195, 199, 1) 100%);
     }
  }
}
 .card-footer{
  background: none;
   border-top: none;
    .media{
     img{
       border:solid 3px rgba(255,255,255,0.3);
     }
   }
 }
  .card-title{font-weight:800; color: var(--first-color);}
 .card-meta{color:rgba(0, 0, 0, 0.763);
  text-transform:uppercase;
   font-weight:500;
   letter-spacing:2px;}
 .card-body{ 
   transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
 

  }
 &:hover {
   .card-body{
     margin-top:30px;
     transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
   }
 cursor: pointer;
 transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
 .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
 background: rgb(189, 195, 199);
 background: linear-gradient(90deg, rgba(255, 255, 255, 0.306) 0%, rgba(189, 195, 199, 1) 100%);
}

  .card-img{
    width: auto;
  }
}

@media (max-width: 767px) {
  .card {
    
  }
}


.custom-card {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1); /* Add box shadow to the card */
  border-radius: 10px; /* Add border-radius for rounded corners */
  padding: 20px; /* Add padding for content inside the card */
  margin-bottom: 20px; /* Add spacing between cards */
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.tbenefit{
  font-size: 24px;
  margin-bottom: 10px;
}

.pbenefit{
  font-size: 14px;
}





.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);
}


/* VIDEO YT */
.video-container {
  padding-top: -120px;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio, adjust as needed */
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.video-container .ytp-watermark {
  display: none !important; /* Menyembunyikan logo YouTube */
}

.video-container .ytp-title {
  display: none !important; /* Menyembunyikan judul video */
}

.card-visi, .card-misi {
  border-radius: 10px; /* Atur sudut lengkung elemen */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.377); /* Atur bayangan dengan ukuran dan warna yang diinginkan */
  background-color: #77817a;

}

.vision-list,
.mission-list {
  color: white;
text-align: left;
    list-style: none;
    margin-top: 20px;
}

.vision-list li,
.mission-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.vision-list li:before,
.mission-list li:before {
    content: "";
    position: absolute;
    left: 0;
    font-size: 14px;
}



.visi .icon-box {
  text-align: center;
  /* border: 1px solid #ebebeb; */
  padding: 50px 0px;
  transition: all ease-in-out 0.3s;
  background: #77817a;
}

.visi .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #77817a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  transition: 0.3s;
}

.visi .icon-box .icon i {
  color: white;
  font-size: 30px;
  transition: ease-in-out 0.3s;
}

.visi .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 40px;
}

.visi .icon-box h4 a {
  color: white;
  transition: ease-in-out 0.3s;
}



.visi .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: white;
}






.custom-container {
  padding: 50px;
  
}

.custom-card {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.custom-img-container {
  flex: 1;
  padding: 20px;
}

.custom-text-container {
  flex: 1;
  padding: 20px;
}

.custom-img-fluid {
  max-width: 100%;
  height: auto;
}

.opacity-reduced {
  opacity: 0.1; /* Atur opasitas sesuai keinginan, misalnya 0.5 untuk 50% opasitas */
  /* font-weight: 600;
  font-size: 50px; */
}


h2.title-product {
  /* text-transform: uppercase; */
  font-size: 44px;
  line-height: 40px;
  font-weight: 500;
  margin: 0;
}

.number-overlay {
  position: absolute;
  /* font-size: 3rem; */
  font-weight: 600;
  font-size: 50px;
  color: #424b5a;
  top: 12px;
  left: 590px;
  margin: 10px;
  z-index: 1; /* Memastikan nomor berada di atas teks */
}

.number-overlay2 {
  position: absolute;
  /* font-size: 3rem; */
  font-weight: 600;
  font-size: 50px;
  color: #424b5a;
  top: 36px;
  left: 18px;
  margin: 10px;
  z-index: 1; /* Memastikan nomor berada di atas teks */
}

.btn-selengkapnya {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #424b5a;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none; /* Menghapus garis bawah pada link */
  display: inline-block; /* Agar tombol berada dalam satu baris dengan teks */
}

@media screen and (max-width: 768px) {
  .custom-card {
      flex-direction: column; /* Mengatur tata letak vertikal */
  }
  .opacity-reduced {
    opacity: 0.3; /* Atur opasitas sesuai keinginan, misalnya 0.5 untuk 50% opasitas */
    /* font-weight: 600;
    font-size: 50px; */
  }

  h2.title-product {
    text-transform: uppercase;
    font-size: 38px;
    line-height: 36px;
    font-weight: 500;
    margin: 0;
  }
  

  .number-overlay {
    font-size: 50px;
    top: 250px;
    left: 280px;
    margin-top:20px;
  }

  .number-overlay2 {
    font-size: 50px;
    top: 0px;
    left: 280px;
    margin-top:20px;
  }
  
  
  .btn-selengkapnya {
    margin-top: 5px;
    margin-bottom: 10px;
    
  }
  
  .custom-img-container,
  .custom-text-container {
      padding: 10px;
  }
}


.testimonial-container {
  max-width: 92%;
  margin: 0 auto;

  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  /* background-color: white; */
}

.testimonial-text {
  flex: 1;
  padding: 30px;
  background-color: #77817a;
  border-radius: 14px;

}

.testimonial-text h3 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 10px;
}

.testimonial-text p {
  font-size: 14px;
  color: white;
  line-height: 1.6;
  width: 50%;
  font-weight: 400;
}

.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;
    }
  }

  .testimonials-clean {
    color:#313437;
    background-color:#c6c6c0;
  }
  
  .testimonials-clean p {
    color:var(--first-color);
  }
  
  .testimonials-clean h2 {
    font-weight:bold;
    margin-bottom:40px;
    padding-top:40px;
    color:inherit;
  }
  
  @media (max-width:767px) {
    .testimonials-clean h2 {
      margin-bottom:25px;
      padding-top:25px;
      font-size:24px;
    }
  }
  
  .testimonials-clean .intro {
    font-size:16px;
    max-width:500px;
    margin:0 auto;
  }
  
  .testimonials-clean .intro p {
    margin-bottom:0;
  }
  
  .testimonials-clean .people {
    padding:50px 0 20px;
  }
  
  .testimonials-clean .item {
    margin-bottom:32px;
  }
  
  @media (min-width:768px) {
    .testimonials-clean .item {
      height:220px;
    }
  }
  
  .testimonials-clean .item .box {
    padding:30px;
    background-color:#77817a;
    position:relative;
  }
  
  .testimonials-clean .item .box:after {
    content:'';
    position:absolute;
    left:30px;
    bottom:-24px;
    width:0;
    height:0;
    border:15px solid transparent;
    border-width:12px 15px;
    border-top-color: #77817a;
  }
  
  .testimonials-clean .item .author {
    margin-top:28px;
    padding-left:25px;
  }
  
  .testimonials-clean .item .name {
    font-weight:bold;
    margin-bottom:2px;
    color:inherit;
  }
  
  .testimonials-clean .item .title {
    font-size:13px;
    color:#9da9ae;
  }
  
  .testimonials-clean .item .description {
    font-size:15px;
    margin-bottom:0;
  }
  
  .testimonials-clean .item img {
    max-width:40px;
    float:left;
    margin-right:12px;
    margin-top:-5px;
  }
  
  


  .button-project {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--first-color-alt);
    border-radius: 6px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    cursor: pointer;
    color: white;
    z-index: 1;
    background-color: var(--first-color);
  }
  
  .button-project:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button-project:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--first-color);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button-project:hover {
    color: var(--first-color);
    border: 1px solid white;
  }
  
  .button-project:hover:before {
    top: -35%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button-project:hover:after {
    top: -45%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  