@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@400;700&display=swap');


:root {
    /* --primary-color : #1363DF ; */
    /* --primary-color : #D61C4E ; */
    /* --secondary-color : #FE8F8F ; */
    /* --secondary-color : #1363DF ; */
    --primary-color: #903A3D;
    --secondary-color: #B5A486;
    --body: #F2EBE9;
    /* --body : #DFF6FF ;  */

    --heading-font: 'Raleway', sans-serif;
    --main-font: 'Open Sans', sans-serif;
}

body {
    padding: 20px;
    width: 100%;
    background-color: var(--body);
    font-family: var(--main-font);
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

section {
    margin-top: 200px;
}

.container {
    max-width: 1500px;
}

/* navigasi awal*/
.navbar .nav-wrapper {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}

.nav-wrapper .menu-toggle {
    display: none;
}

.logo-navbar {
    width: 5vw;
}

.logo-navbar img {
    width: 100%;
}

.nav-wrapper .logo {
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
}

.logo:only-of-type {
    margin-right: auto;
}

.nav-wrapper .logo span {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-wrapper .menu-wrapper {
    display: flex;
    gap: 50px;
}

.nav-wrapper .menu-wrapper .menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-wrapper .menu .menu-link {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 500;
}

.menu .menu-link:hover,
.menu .menu-link.active {
    font-weight: 700;
    color: var(--secondary-color);
}

.menu-wrapper .btn-contact {
    font-family: var(--heading-font);
    color: #fff;
    font-weight: 600;
    background-color: var(--secondary-color);
    padding: 20px 30px;
    border-radius: 50px;
    transition: .5s ease-in-out;
}

.menu-wrapper .btn-contact:hover {
    background-color: var(--primary-color);
}

/* navbar akhir */

/* Beranda Section Awal */
.beranda {
    margin-top: 110px;
    width: 100%;
    text-align: center;
}

.beranda .beranda-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    /* margin: auto;
    display: flex;
    justify-content: space-between; */
}

.beranda-wrapper .heading {
    font-size: 2.8rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

.beranda-wrapper .heading span {
    font-size: 2.3rem;
    color: var(--secondary-color);
}

.beranda-wrapper .subheading {
    font-size: 1.125rem;
    max-width: 520px;
    color: black;
    margin: 20px auto;
}

.beranda-wrapper .btn-header {

    margin: 2rem auto;
}

.btn-header .btn-konsul {
    padding: 20px 60px;
    background-color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.btn-header .btn-konsul:hover {
    background-color: var(--primary-color);
}

.btn-header .btn-more {
    margin-left: 20px;
    padding: 16px 60px;
    border: 2px solid var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.btn-header .btn-more:hover {
    background-color: rgba(176, 72, 72, 0.6);
    border: 1px solid rgba(176, 72, 72, 0.6);
    color: #fff;
}

.content-left .form-panel {
    position: relative;
    width: 640px;
    height: 110px;
    background-color: #fff;
    border-radius: 70px;
    margin: 10rem auto auto auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content-left .form-panel img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.form-panel .title-form {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    width: 200px;
    text-align: center;
    border-radius: 20px;
    padding: 10px 0;
}

.form-panel .form-dokter,
.form-poli {
    position: relative;
    display: flex;
    gap: 35px;
    align-items: center;
}

.form-panel .form-dokter .dok,
.form-poli .poli {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.form-dokter select {
    margin-top: 5px;
    border: none;
    appearance: none;
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.form-poli input {
    border: none;
    padding: 5px 10px;
    text-align: center;
    width: 130px;
    border-radius: 5px;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    cursor: default;
    outline: none;
}

.form-panel .btn-cari a {
    position: relative;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.form-panel .btn-cari a:hover {
    background-color: var(--primary-color);
}

.form-panel .btn-cari i {
    font-size: 2rem;
}

.content-right .gambar-wrap {
    margin-top: 10px;
    max-width: 800px;
}

.content-right .gambar-wrap img {
    width: 100%;
}

.beranda-wrapper .content-left {
    /* flex: 0 0 40%; */
    grid-area: 1 / 1 / 2 / 2;
}

.beranda-wrapper .content-right {
    /* flex: 30% 0 40%; */
    grid-area: 1 / 2 / 2 / 3;
}

/* Beranda Section Akhir */

/* Layanan Section Awal */
.layanan .layanan-wrap {
    margin: auto;
}

.layanan-wrap .row1 {
    text-align: center;
}

.layanan-wrap .label-layanan {
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.layanan-wrap .heading-layanan {
    font-size: 40px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #4a4a4a;
    margin: 10px 0;
}

.layanan-wrap .subheading-layanan {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--main-font);
}

.layanan-wrap .row2 {
    margin: 50px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 50px 50px 0 0;
}

.row2 .box-layanan {
    position: relative;
    max-width: 300px;
    text-align: center;
    padding: 30px;
}

.box-layanan i {
    font-size: 3.5rem;
}

.box-layanan h3 {
    font-size: 20px;
    margin: 20px 0;
}

.box-layanan .btn-lengkap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: var(--secondary-color);
    justify-content: center;
    align-items: center;
    border-radius: 50px 50px 0 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: .4s ease-in-out;
}

.box-layanan:hover .btn-lengkap {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    transition: .4s ease-in-out;
}

.btn-lengkap .title-btn {
    margin: 30px 0;
}

.btn-lengkap .title-btn h3 {
    margin: 10px;
}

.btn-lengkap a {
    margin-top: 50px;
    color: var(--primary-color);
    font-family: var(--main-font);
    font-style: italic;
}

/* Layanan Section Akhir */

/* Profile Section Awal */
.profile .profile-wrap {
    margin: auto;
}

.profile-wrap .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row1 .label-profile {
    font-size: 20px;
    font-family: var(--main-font);
    font-weight: 600;
    color: var(--secondary-color);
}

.row1 .heading-profile {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--main-font);
    font-style: bold;
    color: #4a4a4a;
    margin-top: 10px;
}

.row1 .toggle-slide i {
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.profile-wrap .row2 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.profile-wrap .card-profile {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.card-profile img {
    width: 100%;

}

.row2 .detail-dokter {
    background-color: rgba(255, 255, 255, 0.637);
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #fff;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.171);
    transition: .5s ease-in-out;
}

.card-profile:hover .detail-dokter {
    bottom: 0;
    transition: .5s ease-in-out;
}

.detail-dokter .kategori {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kategori .label-kategori {
    padding: 5px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
}

.kategori .badge {
    font-size: 2.4rem;
    background-color: var(--primary-color);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-dokter .judul-card h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: #4a4a4a;
}

.detail-dokter .Spesial {
    margin-top: 10px;
}

.Spesial .spesial {
    margin: 3px;
    font-size: 18px;
    font-family: var(--main-font);
}

.Spesial .poli {
    margin: 5px;
}

.detail-dokter .body-card {
    margin: 20px 0;
}

.detail-dokter .btn-dokter {
    background-color: var(--secondary-color);
    width: 50%;
    margin: auto;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: .5s ease-in-out;
}


.detail-dokter .btn-dokter:hover {
    background-color: var(--primary-color);
}

/* Profile Section Akhir */

/* Banner 1 Awal */
.banner1 {
    margin: 200px auto;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border-radius: 10px;
}

.banner1 img {
    width: 100%;
}

/* Banner 1 Akhir */

/* about us section awal */
.about-wrap {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-wrap .content-gambar {
    width: 100%;
}

.about-wrap .content-about {
    width: 100%;
}

.content-gambar img {
    margin-top: -20px;
    margin-bottom: 20px;
    width: 100%;
}

.content-about .label-about {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--secondary-color);
}

.content-about .heading-about {
    font-size: 40px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
}

.content-about .heading-about span {
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--secondary-color);
}

.content-about .subheading-about {
    font-size: 17px;
    margin: 20px;
    margin-left: 0;
    text-align: justify;
}

.subheading-about::first-letter {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-about .angka-wrapper {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin-top: 30px;
}

.angka-wrapper .box-angka {
    text-align: center;
}

.box-angka h1 {
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--primary-color);
    font-size: 45px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.7);
}

.box-angka h1 span {
    font-size: 20px;
    color: var(--secondary-color);
}

.box-angka p {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--main-font);
    color: var(--secondary-color);
}

/* about us section akhir */

/* Fasilitas Section Awal */
.fasilitas-wrap {
    margin: auto;
    /* display: flex;
    flex-direction: row;
    justify-content: space-evenly; */
    align-items: center;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.fasilitas-wrap .kolum-heading {
    grid-area: 1 / 1 / 2 / 2;
}

.fasilitas-wrap .kolum-slider-fasilitas {
    margin-left: 100px;
    width: 35vw;
    grid-area: 1 / 2 / 2 / 3;
}

.fasilitas-wrap .kolum-heading .label-fasilitas {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--secondary-color);
}

.fasilitas-wrap .kolum-heading .heading-fasilitas {
    font-size: 35px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 0;
}

.fasilitas-wrap .kolum-heading .subheading-fasilitas {
    font-size: 17px;
    width: 100%;
    text-align: justify;
}

.kolum-heading .subheading-fasilitas::first-letter {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 600;
}

.kolum-slider-fasilitas .card-fasilitas {
    /* background-color: aqua; */
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}

.kolum-slider-fasilitas .card-fasilitas img {
    width: 100%;
}

/* Fasilitas Section Akhir */

/* Section Banner 2 Awal*/
.banner2-wrap {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 2rem 5rem;
    border-radius: 15px;
    flex-wrap: wrap;
}

.content-banner2 .head {
    font-size: 36px;
    font-family: var(--heading-font);
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
}

.content-banner2 .sub {
    font-size: 20px;
    color: #fff;
    font-family: var(--heading-font);
    margin-top: 10px;
}

.content-banner2 .btn-banner2 {
    margin-top: 50px;
}

.btn-banner2 .btn-konsultasi {
    margin-top: -200px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: default;
}

/* Section Banner 2 Akhir*/

/* Footer Awal */
.footer {
    position: absolute;
    margin-top: 150px;
    bottom: auto;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #fff9f0, #f0ebe3);
    height: auto;
    padding-top: 40px;
    width: 100vw;
    color: var(--primary-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
}

.footer-head {
    font-size: 1.9rem;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 3rem;
    font-family: var(--heading-font);
}

.footer-subhead {
    max-width: 800px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 16px;
    color: var(--primary-color);
}

.sosmed {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem, 0 3rem 0;
}

.sosmed li {
    margin: 0 6px;
}

.sosmed li a {
    transition: 0.2s linear;
    text-decoration: none;
    color: var(--primary-color);
    border: 1.1px solid var(--primary-color);
    padding: 8px;
    border-radius: 30%;
    font-size: 25px;
}

.sosmed li a:hover {
    transform: scale(1.1);
    color: #fff;
}

.sosmed .ig:hover {
    transition: 0.2s linear;
    border: none;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

.sosmed .fb:hover {
    transition: 0.2s linear;
    border: none;
    background: #4267B2;
}

.sosmed .wa:hover {
    transition: 0.2s linear;
    border: none;
    background: #25D366;
}

.sosmed .maps:hover {
    transition: 0.2s linear;
    border: none;
    background: #fff;
    color: red;
}

.footer-sponsors {
    margin: 20px 0;
}

.footer-sponsors tr td {
    max-width: 150px;
    padding: 0 10px;
}

.footer-sponsors tr td img {
    width: 100%;
}

/* Footer Akhir */

/* scroll atas otomatis awal */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    border-radius: 50px;
    background-color: rgba(176, 72, 72, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 10px 10px;
    z-index: 99;
    display: none;
    transition: .5s ease-in-out;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}

/* scroll atas otomatis akhir */

/* Halaman Staff Profile Awal */
.staff-prof .staff-wrap {
    margin: auto;
}

.staff-wrap .row1 {
    text-align: center;
}

.staff-wrap .heading-staff {
    font-size: 40px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #4a4a4a;
    margin-top: -220px;
}

.staff-wrap .subheading-staff {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--main-font);
    color: var(--secondary-color);
}

.staff-wrap .row2 {
    margin-top: 20px;
    margin-bottom: 50px;
}

.slider-staff {
    background-color: var(--body);
    height: 760px;
}

.staff {
    /* background-color: aliceblue; */
    display: flex;
}

.card-staff {
    background-image: url(/assets/img/Background-profile4.png);
    border-radius: 1rem;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
    display: flex;
    margin: 1rem;
    overflow: hidden;
    width: 50rem;
    height: 20rem;
}

.card-staff h6 {
    font-size: 15px;
    opacity: 0.6;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.left-kolom {
    background-color: var(--secondary-color);
    padding: 2rem;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.left-kolom img {
    max-width: 200px;
}

.right-kolom {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.right-kolom h4 {
    font-size: 20px;
    font-family: var(--heading-font);
}

.right-kolom p {
    font-size: .9rem;
    color: #4a4a4a;
    text-align: justify;
}

/* Halaman Staff Profile Akhir */

/* Halaman Layanan Awal */
.service-daqu .service-wrap {
    margin: auto;
}

.service-wrap .row1 {
    background-color: var(--primary-color);
    margin-top: -220px;
    max-width: 500px;
    height: 50px;
    border-radius: 0 25px 25px 0;
    padding: 10px 25px;
    text-align: right;
}

.row1 .heading-service {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
}

.service-wrap .row2 {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
}

.row2 .card-service {
    max-width: 340px;
    overflow: hidden;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.card-service .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-icon i {
    color: #fff;
    text-align: center;
    font-size: 50px;
    z-index: 1;
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    position: relative;
    margin-top: -75px;
    margin-bottom: 20px;
    margin-left: 215px;
    padding-top: 22px;
    border-radius: 100px;
    border: 2px solid #fff;
    transition-duration: 0.4s;
    transition-property: transform;
}

.profile-icon i:hover {
    transform: scale(1.1);
}

.card-content h3 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 25px;
    margin-top: -50px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.card-content h5 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 16px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.card-content p {
    color: #fff;
    font-family: var(--main-font);
    font-size: 15px;
    margin-bottom: 5px;
    padding: 10px 20px;
    text-align: justify;
}

/* Halaman Layanan Akhir */

/* Responsive */

@media (max-width: 1150px) {
    .content-right {
        display: none;
    }

    .content-left {
        grid-area: 1 / 1 / 1 / 1;
    }

    .beranda .beranda-wrapper {
        grid-template-columns: auto;
    }

    .profile-wrap .card-profile {
        width: 400px;
        height: 500px;
    }
}

@media screen and (max-width: 1010px) {
    .content-left .heading {
        font-size: 5vw;
    }

    .content-left .heading span {
        font-size: 4vw;
    }

    .nav-wrapper .logo {
        margin-left: px;
    }

    .logo-navbar {
        display: none;
    }

    .nav-wrapper .menu-wrapper {
        position: absolute;
        top: 100%;
        left: 55%;
        transform: translateX(-50%);
        width: 80%;
        display: block;
        text-align: center;
        padding-bottom: 3rem;
        border-radius: 10px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .5s ease-in-out;
        background-color: var(--primary-color);
    }

    .nav-wrapper .menu-wrapper.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transition: .5s ease-in-out;
    }

    .menu-toggle.bx-x {
        transform: rotate(360deg);
        transition: .5s;
    }

    .nav-wrapper .menu-wrapper .menu {
        display: block;
    }

    .menu-wrapper .menu .menu-item {
        margin: 30px;
    }

    .menu .menu-item .menu-link {
        color: #fff;
    }

    .nav-wrapper .menu-toggle {
        display: initial;
        font-size: 2.5rem;
        color: var(--primary-color);
        transition: .5s;
        margin-right: 10px;
    }

    .beranda-wrapper .content-left {
        margin-top: -100px;
        margin-left: 260px;
        text-align: center;
    }

    .content-right .gambar-wrap {
        margin-top: 50px;
        margin-left: 200px;
        width: 100%;
    }

    .profile {
        margin-left: 30px;
        margin-right: 30px;
    }

    .profile-wrap .row1 {
        margin-top: -100px;
    }

    .profile-wrap .row2 {
        margin-top: 30px;
    }

    .profile-wrap .card-profile {
        width: 420px;
        height: 534px;
    }

    .about-wrap {
        margin-top: -150px;
        flex-wrap: wrap;
        width: 100%;
    }

    .about-wrap .content-gambar {
        margin: auto;
        width: 70%;
    }

    .content-about .label-about {
        font-size: 25px;
        margin-left: 30px;
    }

    .content-about .heading-about {
        font-size: 30px;
        margin-left: 30px;
    }

    .content-about .heading-about span {
        font-size: 23px;
    }

    .about-wrap .content-about .subheading-about {
        margin-top: 20px;
        margin-left: 30px;
    }

    .about-wrap .content-about .angka-wrapper {
        margin-left: 50px;
    }

    .fasilitas-wrap {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        margin-top: -80px;
    }

    .fasilitas-wrap .kolum-heading {
        grid-area: 1 / 1 / 2 / 2;
        margin: auto;
        text-align: center;
    }

    .fasilitas-wrap .kolum-slider-fasilitas {
        align-items: center;
        grid-area: 2 / 1 / 3 / 2;
        margin-top: 20px;
        margin-left: 150px;
        width: 60vw;
    }

    .banner2-wrap {
        margin-top: -100px;
    }

    .banner2-wrap .content-banner2 {
        text-align: center;
    }

    .banner2-wrap .btn-banner2 {
        margin-top: 30px;
        margin-left: 28.5%;
    }

    .btn-banner2 .btn-konsultasi {
        font-size: 15px;
        font-weight: 600;
        margin-left: -205px;
    }

    .footer {
        margin-top: 100px;
        padding: 10px 20px;
    }


    .staff {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .service-wrap .row2 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        margin-top: 20px;
    }

    .row2 .card-service {
        margin-top: 20px;
    }

    .beranda-wrapper .content-left {
        padding-left: 50px;
        padding-right: 50px;
        margin-left: auto;
    }
}

@media screen and (max-width: 858px) {

    .nav-wrapper .menu-wrapper {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        display: block;
        text-align: center;
        padding-bottom: 3rem;
        border-radius: 10px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .5s ease-in-out;
        background-color: var(--primary-color);
    }

    .nav-wrapper .menu-wrapper.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transition: .5s ease-in-out;
    }

    .menu-toggle.bx-x {
        transform: rotate(360deg);
        transition: .5s;
    }

    .nav-wrapper .menu-wrapper .menu {
        display: block;
    }

    .menu-wrapper .menu .menu-item {
        margin: 30px;
    }

    .menu .menu-item .menu-link {
        color: #fff;
    }

    .nav-wrapper .menu-toggle {
        display: initial;
        font-size: 2.5rem;
        color: var(--primary-color);
        transition: .5s;
    }

    .beranda-wrapper .content-right {
        display: none;
    }

    .beranda-wrapper .content-left {
        margin-top: -100px;
    }

    .beranda-wrapper .subheading {
        font-size: 2.3vw;
    }

    /* .beranda-wrapper .btn-header{
        margin-left: -77px;
    } */
    .content-left .btn-more {
        flex-direction: column;
    }

    /* layanan */
    .layanan .layanan-wrap {
        margin-top: -100px;
    }

    /* Profile */
    .profile-wrap .row1 {
        margin-top: -00px;
        text-align: center;
        flex-direction: column;
    }

    .row1 .toggle-slide {
        margin-top: 20px;
    }

    .profile-wrap .row1 .heading-profile {
        margin-bottom: -5px;
        margin-left: 10px;
    }

    .profile-wrap .row2 {
        margin-top: 30px;
    }

    .profile-wrap .card-profile {
        width: 350px;
        height: 480px;
    }

    /* about */
    .about-wrap .content-gambar {
        margin: auto;
    }

    .content-about .label-about {
        margin-right: 100px;
    }

    .content-about .heading-about span {
        margin: auto;
    }

    .content-about .subheading-about {
        margin-top: 30px;
    }

    .content-about .angka-wrapper {
        margin-left: 45px;
    }

    .fasilitas-wrap .kolum-heading {
        text-align: center;
        margin: auto;
    }

    .fasilitas-wrap .kolum-slider-fasilitas {
        text-align: center;
        margin: 10px auto;
    }

    .banner2-wrap {
        padding: 2rem 5rem;
        text-align: center;
    }

    .btn-banner2 {
        margin-top: 100px;
        text-align: center;
    }

    .btn-banner2 .btn-konsultasi {
        background-color: var(--primary-color);
        color: #fff;
        font-family: var(--heading-font);
        font-size: 20px;
        text-align: center;
        border-radius: 50px;
    }


    .content-left .form-panel {
        display: none;
    }

    .banner1 {
        padding: 10px 10px;
    }

    .back-to-top {
        right: 27px;
        bottom: 93px;
    }
}

@media screen and (max-width: 670px) {

    .back-to-top {
        right: 27px;
        bottom: 86px;
    }

    .angka-wrapper {
        margin-left: 100px;
    }

    .content-left .btn-more {
        padding: 15px;
    }

    .content-left .btn-konsul {
        padding: 15px 25px;
    }

    .profile-wrap .card-profile {
        width: 530px;
        height: 520px;
    }
}

@media screen and (max-width: 560px) {
    .back-to-top {
        right: 15px;
        bottom: 80px;
    }

    .profile-wrap .card-profile {
        width: 403px;
        height: 520px;
    }

    .banner1 {
        padding: 5px 5px 2px 5px;
    }

    .fasilitas-wrap .kolum-slider-fasilitas {
        width: 450px;
        margin-bottom: -100px;
    }
}

@media screen and (max-width: 500px) {
    .back-to-top {
        right: 14px;
        bottom: 80px;
    }

    .content-left .btn-more {
        margin-left: 0;
        font-size: 8px;
        padding: 10px;
    }

    .content-left .btn-konsul {
        font-size: 10px;
        padding: 10px 20px;
    }

    .beranda-wrapper .content-left {
        margin-top: -50px;
        padding-left: inherit;
        padding-right: inherit;
    }

    .beranda-wrapper .subheading {
        font-size: 13px;
        max-width: 520px;
        color: black;
        margin: 20px auto;
    }

    .beranda-wrapper .heading {
        font-size: 18px;
        font-family: var(--heading-font);
        font-weight: 700;
        color: var(--primary-color);
    }

    .nav-wrapper .logo {
        font-size: 25px;
        font-family: var(--heading-font);
        font-weight: 600;
        color: var(--primary-color);
    }

    .nav-wrapper .logo span {
        font-size: 20px;
    }

    .fasilitas-wrap .kolum-slider-fasilitas {
        width: 415px;
        margin-bottom: -100px;
    }

    .navbar .nav-wrapper {
        position: relative;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .box-angka h1 {
        font-family: var(--heading-font);
        font-weight: 800;
        color: var(--primary-color);
        font-size: 30px;
        text-shadow: 1px 1px rgb(0 0 0 / 70%);
    }

    .about-wrap .content-about .angka-wrapper {
        margin-left: 10%;
    }

    .menu-toggle::before {
        font-size: 25px;
    }

    .btn-banner2 .btn-konsultasi {
        font-size: 12px;
        padding: 10px 15px;
        margin-left: -75px;
    }

    .banner1 {
        padding: 5px 5px 2px 5px;
    }

    .profile-wrap .card-profile {
        width: 380px;
        height: 480px;
    }
}

@media screen and (max-width: 450px) {
    .fasilitas-wrap .kolum-slider-fasilitas {
        width: 350px;
        margin-bottom: -100px;
    }

    .profile-wrap .card-profile {
        width: 304px;
        height: 320px;
    }

    .body-card {
        display: none;
    }

    .kategori .badge {
        width: 50px;
        height: 50px;
    }


    .banner1 {
        margin-top: 100px;
    }

    .fasilitas-wrap .kolum-heading .subheading-fasilitas {
        margin-top: 20px;
        font-size: 15px;
        letter-spacing: .5px;
        margin-bottom: -80px;
    }
}

@media screen and (max-width: 380px) {

    .fasilitas-wrap .kolum-slider-fasilitas {
        width: 300px;
        margin-bottom: -100px;
    }

    .layanan .layanan-wrap {
        margin: -20px;
    }

    .fasilitas-wrap .kolum-heading .subheading-fasilitas {
        margin-top: 20px;
        font-size: 15px;
        letter-spacing: .5px;
        margin-bottom: -120px;
    }

    .layanan {
        margin-top: 85px;
    }

    .profile-wrap .card-profile {
        width: 262px;
        height: 270px;
    }

    .layanan-wrap .heading-layanan {
        font-size: 18px;
    }

    .layanan-wrap .label-layanan {
        font-size: 15px;
    }

    .layanan-wrap .subheading-layanan {
        font-size: 12px;
    }

    .profile {
        margin-top: 80px;
    }

    .profile-wrap .heading-profile {
        font-size: 18px;
    }

    .profile-wrap .label-profile {
        font-size: 15px;
    }

    .row2 .detail-dokter {
        padding: 20px;
    }

    .kategori {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .detail-dokter .judul-card h2 {
        font-size: 15px;
    }

    .Spesial .spesial {
        font-size: 15px;
    }

    .Spesial .poli {
        font-size: 13px;
    }

    .content-about .label-about {
        font-size: 15px;
    }

    .content-about .heading-about {
        font-size: 20px;
    }

    .about-wrap .content-about .subheading-about {
        font-size: 15px;
    }

    .box-angka h1 {
        font-size: 20px;
    }

    .box-angka h1 span {
        font-size: 15px;
    }

    .box-angka p {
        font-size: 18px;
    }

    .banner1 {
        margin-top: 100px;
    }

    .kategori .badge,
    .body-card {
        display: none;
    }

    .banner2-wrap {
        padding: 5px;
        font-size: 15px;
    }

    .fasilitas-wrap .kolum-heading .label-fasilitas {
        font-size: 18px;
    }

    .fasilitas-wrap .kolum-heading .heading-fasilitas {
        margin-top: 10px;
        font-size: 20px;
    }

    .fasilitas-wrap .kolum-heading .subheading-fasilitas {
        font-size: 15px;
        margin-bottom: -80px;
    }

    .banner2-wrap {
        padding: 10px;
        font-size: 15px;
    }

    .banner2-wrap .head {
        font-size: 22px;
    }

    .banner2-wrap .sub {
        font-size: 18px;
    }

    .footer-head {
        font-size: 22px;
    }

    @media screen and (max-width: 350px) {

        .fasilitas-wrap .kolum-slider-fasilitas {
            width: 270px;
            margin-bottom: -50px;
        }


        .fasilitas-wrap .kolum-heading .subheading-fasilitas {
            margin-top: 20px;
            font-size: 15px;
            letter-spacing: .5px;
            margin-bottom: -120px;
        }

        .profile-wrap .card-profile {
            width: 227px;
            height: 270px;
        }


        .banner1 {
            margin-top: 100px;
        }

        .kategori .badge,
        .body-card {
            display: none;
        }


    }
}