:root {
    --pr-color : #048353;
}

/* Navbar Style */

.navbar {
    z-index: 3;

}

/* Navbar */

.nav-color {
    background-color: #007245;
    transition: all ease-in-out 0.3s;
}

.bg-transparent {
    transition: all ease-in-out 0.3s;
}

* {
    z-index: 2;
}

.accsent-img {
    z-index: 1;
}

.img-hero {
    z-index: 1;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color:#f3fff4;
}

.navbar-brand {
    font-weight: 600;
    font-size: 20px;
}

.nav-link {
    font-size: 16px;
}

.nav-link.active {
    font-weight: 500;
}

.button-primary {
    width: 133px;
    height: 40px;
    background-color: white;
    color: var(--pr-color);
    border: none;
    font-size: 16px;
    font-weight: 600;
}

/* Hero Section */
#hero {
    background: linear-gradient(160deg, var(--pr-color), #000
    );
    height: 100vh;
    weidth: 100%;
}

.img-hero {
    height: 100%;
}

.hero-tagline h1 {
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    line-height: 72px;
    
}

.hero-tagline p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 60px;
    margin-top: 20px;
    line-height: 30px;
    width: 85%;
}

.button-lg-primary {
    width : 237px;
    height: 70px;
    background-color: #fff;
    color: var(--pr-color);
    border: none;
    font-size: 20px;
    font-weight: 700;
}

/* Layanan Section */

#layanan {
    padding: 100px 0;
}

h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--pr-color);
}

.sub-title {
    font-size: 18px;
    color: #000;
}

.card-layanan {
    width: 100%;
    height: 450px;
    border-radius: 5px;
    background-color:#fff ; 
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.005);

    transition: all .2s ease-in;
}

.circle-icon {
    width: 70px;
    height: 70px;
    background-color: var(--pr-color);
    border-radius: 20%;

    transition: all .1s ease-in;
}

.card-layanan h3 {
    color: var(--pr-color);
    font-size: 24px;

    transition: all .2s ease-in;
}

.card-layanan p {
    color: #000;
    font-size: 12px;

    transition: all .3s ease-in;
}

/* Hover */

.card-layanan:hover {
    width: 100%;
    height: 450px;
    border-radius: 5px;
    background: linear-gradient(160deg, var(--pr-color), #000
    );
    padding: 40px;
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.005);

    transition: all .2s ease-in;
}

.card-layanan:hover .circle-icon {
    background-color:#fff ; 

    transition: all .2s ease-in;
}


.card-layanan:hover h3 {
    color: #fff;
    font-size: 24px;

    transition: all .2s ease-in;
}

.card-layanan:hover p {
    color: #fff;
    font-size: 14px;

    transition: all .2s ease-in;
}

/* Section Profil  */

/* Section Portofolio */
#porto h2 {
    font-size: 48px;
    font-weight: 500;
}
.button-porto {

    width: 238px;
    height: 63px;
    background-color: var(--pr-color);
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #fff;

}
.card {
    height: 350px;
    width: 95%;
    border: none;
}

.card-body {
    color: #000;
    font-weight: 500;
    font-size: 24px;
}

.card:hover {
    background: linear-gradient(160deg, var(--pr-color), #007245, #000 );
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

/* Why */
#plombi h2 {
    font-size: 30px;
    font-weight: 500;
}

/* Footer */

footer {
    position: absolute;
    width: 100%;
    height: 270px;

    background: #000;
}

.copyright {
    bottom: 10%;
    color: #fff;
}

footer a {
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
}