/**
* Template Name: Resi
* Template URL: https://bootstrapmade.com/resi-free-bootstrap-html-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #5a5af3;
}

a:hover {
    color: #2a2af0;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#navbar .btn-login-navbar {
    display: inline-block;
    background-color: #17c1c4; /* Warna hijau tosca */
    color: #fff; /* Warna teks putih */
    font-size: 14px; /* Ukuran font */
    font-weight: 400; /* Teks tebal */
    /* text-align: center; Teks rata tengah */
    text-decoration: none; /* Hilangkan garis bawah */
    padding: 8px 16px; /* Ruang dalam tombol */
    border-radius: 20px; /* Membuat sudut bulat */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Efek bayangan */
    transition: all 0.3s ease; /* Efek animasi */
    margin-left: 10px; /* Jarak antara tombol */
    padding-left: 18px;
    padding-right: 18px;
    /* font-size: 14px; */
}

#navbar .btn-login-navbar:hover {
    background: #ff6300;
    border-color: #ff6300;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 17px;
    bottom: 90px;
    z-index: 1000; /* Increased z-index to ensure it is on top */
    background: #00ada7;
    width: 57px; /* Sesuaikan ukuran */
    height: 57px; /* Sesuaikan ukuran */
    border-radius: 50%; /* Agar tetap berbentuk lingkaran */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 30px; /* Sesuaikan ukuran ikon */
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff6300;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-button {
    position: fixed;
    right: 15px;
    bottom: 70px; /* Beri jarak dari tombol "Back to Top" */
    z-index: 996;
    background: #25d366;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.whatsapp-button i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.whatsapp-button:hover {
    background: #128c7e;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #5a5af3;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #434175;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #00ada7;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 6px 25px;
    margin-left: 30px;
    border-radius: 50px;
    color: #ff6300;
    border: 2px solid #ff6300;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #00ada7;
    border-color: #00ada7;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #5a5af3;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #434175;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(48, 47, 84, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #434175;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #5a5af3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #5a5af3;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: white;
    border-bottom: 2px solid white;
}

#hero .container {
    padding-top: 80px;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #434175;
    font-family: "Poppins", sans-serif;
}

#hero h2 {
    margin: 10px 0 0 0;
    font-size: 20px;
}

#hero ul {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

#hero ul li {
    padding: 10px 0 0 28px;
    position: relative;
}

#hero ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #5a5af3;
}

#hero .btn-get-started,
#hero .btn-get-quote {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 30px 9px 30px;
    margin-bottom: 15px;
    border-radius: 3px;
    transition: 0.5s;
    border-radius: 50px;
}

#hero .btn-get-started {
    background: #00ada7;
    color: #fff;
    border: 2px solid #00ada7;
    margin-right: 10px;
}

#hero .btn-get-started:hover {
    background: #ff6300;
    border-color: #ff6300;
}

#hero .btn-get-quote {
    color: #00ada7;
    border: 2px solid #00ada7;
}

#hero .btn-get-quote:hover {
    background: #ff6300;
    color: #fff;
    border-color: #ff6300;
}

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

@media (max-width: 991px) {
    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero {
        text-align: center;
    }

    #hero ul {
        text-align: left;
        font-size: 14px;
    }

    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started,
    #hero .btn-get-quote {
        padding-left: 18px;
        padding-right: 18px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #eeeef5;
}

.section-bg-hijau {
    background-color: #00ada7;
    color: white;
}

.section-bg-356FB4 {
    background-color: #356fb4;
    color: white;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #434175;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #5a5af3;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    margin-bottom: 20px;
    color: #434175;
}

.about .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
}

.about .content ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #5a5af3;
}

.about .content p:last-child {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding-top: 0;
}

.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ff6300;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #434175;
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    background: #00ada7;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 70px 15px;
    overflow-x: auto; /* Tambahkan untuk memastikan elemen tetap berada dalam satu baris */
    white-space: nowrap;
}

.counts .count-box {
    padding: 40px 30px; /* Lebih luas padding untuk elemen */
    height: 135px;
    width: 200px; /* Atur lebar tetap untuk card */
    display: inline-block; /* Membuat elemen horizontal */
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    transition: transform 0.3s ease-in-out;
}

.counts .count-box:hover {
    transform: translateY(-10px);
}

.counts .count-box i {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    background: #00ada7;
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box span {
    font-size: 40px;
    display: block;
    font-weight: 700;
    color: #356fb4;
}

.counts .count-box p {
    margin: -10px 0 100px 0;
    font-size: 20px;
    color: #6c757d;
}

/* Responsivitas */
@media (max-width: 992px) {
    .counts .count-box {
        height: 140px;
        width: 150px; /* Sesuaikan ukuran untuk layar kecil */
    }
}

@media (max-width: 768px) {
    .counts .count-box {
        width: 160px;
    }
}
/* 767 - 577 */
@media (min-width: 577px) and (max-width: 767px) {
    .counts .count-box {
        height: 140px;
        width: 510px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 576px) {
    .counts .count-box {
        height: 150px;
        width: 500px; /* Adjust size for very small screens */
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .counts .count-box {
        height: 120px;
        width: 430px;
        padding: 20px;
        margin-bottom: 30px;
    }
}
@media (min-width: 401px) and (max-width: 479px) {
    .counts .count-box {
        height: 130px;
        width: 370px;
        padding: 25px;
    }
}

@media (max-width: 400px) {
    .counts .count-box {
        height: 150px;
        width: 320px;
        padding: 23px;
    }
}

@media (max-width: 360px) {
    .counts .count-box {
        height: 140px;
        width: 300px;
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #434175;
    transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 0;
}

.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .icon-box h3 a {
    color: #434175;
    transition: ease-in-out 0.3s;
}

.features .icon-box:hover h3 a {
    color: #5a5af3;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 25px; /* Sesuaikan padding */
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff; /* Teks putih */
    background-color: #20c7c9; /* Warna biru sesuai gambar */
    border-radius: 25px; /* Membuat bentuk oval */
    margin: 5px; /* Spasi antar tombol */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bayangan tombol */
    border: none; /* Menghapus border */
}

.portfolio #portfolio-flters li:hover {
    background-color: #1aa1a2; /* Warna hover lebih gelap */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Menambah efek hover */
    color: #ffffff;
}

.portfolio #portfolio-flters li.filter-active {
    background-color: #ff6300; /* Warna tombol aktif */
    color: #ffffff;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    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 .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;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    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;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #434175;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #434175;
    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: #5a5af3;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #1313ee;
}

.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 #5a5af3;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: #5a5af3;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(67, 65, 117, 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;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    width: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .team .member {
        width: 300px;
        margin-bottom: 20px;
        overflow: hidden;
        text-align: center;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
}
@media (max-width: 767px) {
    .team .member {
        width: 100%;
    }
}

.team .member .member-img {
    position: relative;
    /* overflow: hidden; */
}

.team .member .member-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    /* border-radius: 5px; */
    margin: 10px;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
    transition: color 0.3s;
    color: #434175;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
}

.team .member .social a:hover {
    color: #5a5af3;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}
/* <h4>{{ $faskes['name'] }}</h4>
<span>{{ ucwords(strtolower($faskes['type'])) }}</span>
<p><i class="bi bi-geo-alt-fill"></i> {{ $faskes['address'] }}</p> */
.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #434175;
}

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

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #5a5af3;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding-bottom: 12px;
}

.pricing ul i {
    color: #5a5af3;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .btn-buy {
    background: #434175;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
    border: none;
}

.pricing .btn-buy:hover {
    background: #00ada7;
}

.pricing .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
}

.pricing .featured .btn-buy {
    background: #00ada7;
}

.pricing .featured .btn-buy:hover {
    background: #ff6300;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

.pricing .row {
    padding-top: 40px;
}

.pricing .card {
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

.pricing .card:hover {
    transform: translateY(-10px); /* Hover effect */
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #5a5af3;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding-bottom: 12px;
}

.pricing ul i {
    color: #5a5af3;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing .btn-buy {
    background: #434175;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    border: none;
}

.pricing .btn-buy:hover {
    background: #00ada7;
}

@media (max-width: 992px) {
    .pricing .card {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .card {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .card {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

.pricing #carouselAll,
#carouselDoctor,
#carouselNurse,
#carouselMidwife {
    padding-top: 0px;
}

/* Styling untuk Filter */
.pricing #pricing-flters {
    display: flex; /* Tata letak horizontal menggunakan Flexbox */
    justify-content: center; /* Pusatkan elemen secara horizontal */
    list-style: none; /* Hilangkan bullet points */
    padding: 0; /* Hilangkan padding */
    margin: 20px 0; /* Tambahkan margin atas dan bawah */
}

.pricing #pricing-flters li {
    margin: 0 10px; /* Tambahkan jarak antar elemen */
    cursor: pointer; /* Ganti kursor menjadi pointer saat dihover */
    padding: 8px 15px; /* Tambahkan padding untuk elemen */
    font-size: 16px; /* Atur ukuran font */
    background-color: #17c1c4; /* Warna hijau tosca */
    color: #fff; /* Warna teks putih */
    /* color: #434175; Warna teks default */
    transition: color 0.3s, background-color 0.3s; /* Tambahkan efek transisi */
    border-radius: 5px; /* Sudut membulat */
    border: 1px solid transparent; /* Tambahkan batas untuk hover */
}

.pricing #pricing-flters li:hover {
    color: #fff; /* Ubah warna teks saat dihover */
    background-color: #ff6300; /* Ubah latar belakang saat dihover */
    /* border-color: #ff6300; Tambahkan batas warna saat dihover */
}

.pricing #pricing-flters .filter-active {
    color: #fff; /* Warna teks untuk elemen aktif */
    background-color: #434175; /* Latar belakang untuk elemen aktif */
    border-color: #434175; /* Tambahkan batas warna untuk elemen aktif */
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid #f2f2fe;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-family: #5a5af3;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #2a2af0;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: #5a5af3;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #5a5af3;
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    background: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.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: 5px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #5a5af3;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #00ada7;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff6300;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f1f1f7;
    min-height: 40px;
    margin-top: 68px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    color: #434175;
}

.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: #565396;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 60px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #444444;
    font-size: 14px;
    background: #eeeef5;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #5a5af3;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #434175;
    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: #5a5af3;
    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: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #00ada7;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #ff6300;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #ff6300;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #00ada7;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
}

#footer .credits a {
    transition: 0.3s;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #deddec;
    color: #434175;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #ff6300;
    color: #fff;
    text-decoration: none;
}

.swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.swiper-slide {
    background: #fff;
    padding: 40px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
}

.btn-primary {
    background-color: #434175;
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #00ada7;
}

.pupup-cs-container {
    position: fixed;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: end;
    bottom: 0px;
    right: 0px;
    z-index: 999; /* Lower z-index to be under the back-to-top button */
    /* color: #00ada7; */
}

.pupup-cs-container .popup-card {
    background-color: #fff;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 400px;
    box-shadow: 0px 0px 0px 3px #000000;
    -webkit-box-shadow: 2px 2px 12px 0px rgba(46, 46, 46, 0.63);
    -moz-box-shadow: 2px 2px 12px 0px rgba(46, 46, 46, 0.63);
    box-shadow: 2px 2px 12px 0px rgba(46, 46, 46, 0.63);

    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    100% {
        opacity: 1;
    }
}

.pupup-cs-container .popup-card .button-close-popup {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 12px;
    cursor: pointer;
    color: #00ada7;
}

.pupup-cs-container .popup-card .popup-card-body {
    padding: 24px;
    display: flex;
    font-weight: bold;
    align-items: center;
    gap: 12px;
    color: #00ada7;
}

.pupup-cs-container .popup-card .popup-card-footer {
    padding: 12px 24px 4px 24px;
    text-align: center;
    border-top: 1px solid rgba(46, 46, 46, 0.2);
    color: #00ada7;
}

.pupup-cs-container .popup-card .popup-card-footer p {
    color: #606060;
    font-size: 12px;
}

.pupup-cs-container .popup-card .popup-card-body p {
    margin-bottom: 0px;
    color: #606060;
}

.pupup-cs-container .popup-card .popup-card-body h5 {
    line-height: normal;
    margin-top: 0px;
    font-weight: extrabold;
    font-family: "Work Sans", sans-serif;
    color: rgba(0, 0, 0, 0.9);
    /* color: #00ada7; */
}

.pupup-cs-container .popup-card .popup-card-body img {
    border-radius: 50%;
    width: 72px;
    aspect-ratio: 1/1;
    color: #00ada7;
}

.pupup-cs-container .popup-card .popup-card-header {
    /* background: linear-gradient(90deg, #2025ad 1.95%, #9b0ccd 119.9%); */
    background: linear-gradient(90deg, #0dcaf0 1.95%, #20c997 119.9%);
    padding: 24px;
    /* color: #00ada7; */
}

.pupup-cs-container .popup-card .popup-card-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    /* color: #00ada7; */
}

.pupup-cs-container .popup-card .popup-card-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-center-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 40px;
    cursor: pointer;
    width: auto;
    transition: 4s;
    color: #fff;
}

.bg-primary-popup {
    /* background: linear-gradient(90deg, #2025ad 1.95%, #9b0ccd 119.9%); */
    /* background: linear-gradient(90deg, #0dcaf0 1.95%, #20c997 119.9%); */
    background: #00ada7;
    -webkit-box-shadow: 1px 1px 12px 0px #2025ad93;
    -moz-box-shadow: 1px 1px 12px 0px #2025ad93;
    box-shadow: 1px 1px 12px 0px #2025ad93;
}

.bg-secondary-popup {
    /* background: linear-gradient(90deg, #0dcaf0 1.95%, #20c997 119.9%); */
    background: #00ada7;
    -webkit-box-shadow: 1px 1px 12px 0px #0dcaf093;
    -moz-box-shadow: 1px 1px 12px 0px #0dcaf093;
    box-shadow: 1px 1px 12px 0px #0dcaf093;
}

@media (min-width: 375) and (max-width: 550px) {
    .contact-center-popup {
        padding: 8px !important;
        border-radius: 100%;
        width: max-content !important;
        color: #00ada7;
    }

    .contact-center-popup svg {
        width: 20px !important;
        height: 20px !important;
        color: #00ada7;
    }
}
.contact-center-popup svg {
    width: 30px;
    height: 30px;
    /* color: #00ada7; */
}

.custom-modal-size .modal-dialog {
    max-width: 100%; /* Adjust as needed */
    width: auto;
}

.custom-modal-size .modal-content {
    height: 100vh; /* Adjust as needed */
}

.carousel-inner {
    display: flex;
}

.carousel-item {
    transition: transform 0.5s ease;
}

.featured {
    transform: scale(1.05); /* Membesarkan ukuran card tengah */
    z-index: 10; /* Membawa card ke depan */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Menambahkan bayangan */
    border: 2px solid #00b894; /* Menambahkan border */
    background-color: #f8f9fa; /* Warna background yang berbeda */
}

.featured .card-title {
    font-weight: bold; /* Mempertebal judul card */
    color: #00b894; /* Warna teks yang berbeda */
}

/* Swiper class */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
}

/* Swiper class */
.swiper-button-next,
.swiper-button-prev {
    width: initial;
    height: initial;
    font-size: 3rem;
    color: var(--second-color);
    /* display: none */
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-pagination-bullet {
    background-color: hsl(212, 32%, 40%);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--second-color);
}
