@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: 30px;
    width: 100%;
    background-color: var(--body);
    font-family: var(--main-font);
}

* {
    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;
}

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

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

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

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

.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);
    margin-bottom: 50px;
}

.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 screen and (max-width: 1010px) {
    .content-left .heading {
        font-size: 5vw;
    }

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

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

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

}

@media screen and (max-width: 670px) {
    .row2 {
        justify-content: center;
    }

    .profile-icon i {
        width: 100px;
        height: 100px;
    }

    .row1 .heading-service {

        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    .profile-icon i {
        font-size: 30px;
        width: 80px;
        height: 80px;
    }
}

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

    .profile-icon i {
        font-size: 30px;
        width: 70px;
        height: 70px;
    }

    .row1 .heading-service {

        font-size: 15px;
    }
}