@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.bg-transparent {
    /* padding: 2px; */
    z-index: 999;
    transition: all ease-in 0.3s;
}

.nav-color {
    background: #020024;
    background: linear-gradient(
        40deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(9, 9, 121, 1) 35%,
        rgba(0, 212, 255, 1) 100%
    );
    transition: all ease-in-out 0.3s;
}

/* crousel */
.carousel {
    width: 100vw;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n + 7) {
    left: calc(67% + 800px);
    opacity: 0;
}

.list .item .content {
    position: absolute;
    top: 55%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 60px;
    text-transform: uppercase;
    color: #00137c;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    color: #020952;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1) {
    margin-right: 15px;
}

.content .btn button:nth-child(2) {
    background: transparent;
    color: #ff1414;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover {
    background-color: #ff1414;
    color: #fff;
    border-color: #ff1414;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */

/* next prev arrows */

/* .arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff1414;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: 0.5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #fff;
    color: #000;
} */

/* time running */
.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #ff1414;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */

@media screen and (max-width: 999px) {
    header {
        padding-left: 50px;
    }

    .list .item .content {
        padding-top: 20px;
        left: 50px;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }
}

@media screen and (max-width: 690px) {
    header nav a {
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content {
        top: 40%;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
    transition: all ease-in-out 0.3s;
}

header .brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .brand:hover {
    color: #09a6d4;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
    background: #09a6d4;
}

section {
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #4e81c2;
}

.home:before {
    z-index: 777;
    content: "";
    position: absolute;
    background: rgba(251, 3, 3, 0.034);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active {
    display: block;
}

.home .content h1 {
    color: #b99581;
    font-size: 4em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 50px;
}

.home .content h1 span {
    font-size: 1.2em;
    font-weight: 600;
}

.home .content p {
    margin-bottom: 65px;
}

.home .content a {
    background: #fff;
    padding: 15px 35px;
    color: #09a6d4;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}

.home .content a:hover {
    background: #09a6d4;
    color: #fff;
}

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
    color: #09a6d4;
}

.home img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: #09a6d4;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.img-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media (max-width: 1040px) {
    header {
        width: 100%;
        padding: 12px 20px;
    }
    section {
        padding: 100px 20px;
    }
    .home .media-icons {
        right: 15px;
    }
    header .navigation {
        display: none;
    }
    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }

    header .navigation .navigation-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }
    header .navigation .navigation-items a:before {
        background: #222;
        height: 5px;
    }
    header .navigation .navigation-items {
        background: #fff;
        width: 50%;
        max-width: 50%;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }
    .menu-btn {
        background: url(../asset/menu.png) no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active {
        z-index: 999;
        background: url(../asset/close.png) no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }
}

@media (max-width: 560px) {
    .home .content h1 {
        font-size: 3em;
        line-height: 60px;
    }
}

.button-9 {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
        rgba(50, 50, 93, 0.1) 0 2px 5px 0, rgba(0, 0, 0, 0.07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
        Ubuntu, sans-serif;
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all 0.2s, box-shadow 0.08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

.button-9:disabled {
    cursor: default;
}

.button-9:focus {
    box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset,
        rgba(50, 50, 93, 0.2) 0 6px 15px 0, rgba(0, 0, 0, 0.1) 0 2px 2px 0,
        rgba(50, 151, 211, 0.3) 0 0 0 4px;
}
/* logo */
header .brand img {
    height: 4rem;
}
/* about */
.about-home {
    background-color: #000;
}

.about-home .text {
    padding-top: 3rem;
}

.about-home h5 {
    font-weight: bold;
    color: white;
    padding: 15% 0% 0% 10%;
}

.about-home h6 {
    padding: 2% 2% 0% 10%;
    color: white;
}

.about-home img {
    padding: 2rem 0% 1rem 0%;
}
/* akhir about */

/* bg home */

.bg-home {
    background: url(../img/overlay/factory-6.png);
    background-size: cover;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
/* akhir bg home */

/* awal komite */

.komitmen {
    padding: 5rem 0rem 0rem 0rem;
    background-color: rgba(229, 231, 235);
}

.komitmen h1 {
    font-weight: 800;
    color: #021058;
}

.komitmen .card-gambar {
    padding: 1rem;
}

.komitmen .card-gambar a {
    text-decoration: none;
}
.komitmen .card-gambar .more {
    color: #021058;
}

.komitmen .card-gambar .text {
    font-weight: 700;
    color: #021058;
}

.komitmen .icon {
    color: #ff0000;
}

/* awal contact */
#kontak {
    background-image: url(../asset/virtual-office.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#kontak .overlay {
    padding: 20% 0px;
    background: rgba(0, 0, 0, 0.5);
}

#kontak .overlay h1,
p {
    color: #fff;
}

#kontak .overlay span {
    padding: 5px;
}

/* akhir contact */

/* awal footer */
.logo {
    width: 150px;
    cursor: pointer;
}
.footer {
    background: #020024;
    background: linear-gradient(
        40deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(9, 9, 121, 1) 35%,
        rgba(0, 212, 255, 1) 100%
    );
    color: white;
}

.links ul {
    list-style-type: none;
}
.links li a {
    text-decoration: none;
    color: white;
    transition: color 0.2s;
}

.links li a:hover {
    text-decoration: none;
    color: #4180cb;
}

.about-company a {
    color: white;
    transition: color 0.2s;
}

.about-company a :hover {
    color: #4180cb;
}

.about-company i {
    font-size: 25px;
}

.location i {
    font-size: 18px;
}
.copyright p {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* akhir footer */

/* awal loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    z-index: 999;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 100px;
    height: 100px;
    border: 15px solid #dddddd;
    border-top-color: #004595;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* akhir loader */

.logo {
    width: 150px;
    cursor: pointer;
}
.footer {
    /* background: linear-gradient(to bottom, #abcc69, #ddbf15); */
    color: white;
}

.links ul {
    list-style-type: none;
}
.links li a {
    text-decoration: none;
    color: white;
    transition: color 0.2s;
}

.links li a:hover {
    text-decoration: none;
    color: #4180cb;
}

.about-company a {
    color: white;
    transition: color 0.2s;
}

.about-company a :hover {
    color: #4180cb;
}

.about-company i {
    font-size: 25px;
}

.location i {
    font-size: 18px;
}
.copyright p {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* akhir footer */

/* about-home */
.about-home {
    padding-bottom: 40px;
}

.about-home h5 {
    font-weight: bold;
    color: white;
    padding: 15% 0% 0% 0%;
}

.about-home h6 {
    padding: 2% 2% 0% 10%;
    color: white;
}

.about-home iframe {
    width: 100%;
    height: 500px;
    padding: 3rem 0% 2rem 0%;
}

.komitmen {
    padding: 5rem 0rem 0rem 0rem;
    background-color: rgba(229, 231, 235);
}

.crs {
    padding: 5rem 0rem;
}

.crs h1 {
    padding: 1rem;
    font-weight: 800;
    color: #021058;
}

.crs h5 {
    padding: 1rem;
    font-weight: 700;
    color: #021058;
}

.komitmen h1 {
    font-weight: 800;
    color: #021058;
}

.komitmen .card-gambar {
    padding: 1rem;
}

.komitmen .card-gambar a {
    text-decoration: none;
}
.komitmen .card-gambar .more {
    color: #021058;
}

.komitmen .card-gambar .text {
    font-weight: 700;
    color: #021058;
}

.komitmen .icon {
    color: #ff0000;
}

/* ahir product */
/* awal contact */
#contact {
    background-image: url(../asset/virtual-office.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#contact .overlay {
    padding: 10% 0px;
    background: rgba(0, 0, 0, 0.5);
}

#contact .overlay h1,
p {
    color: #fff;
}

#contact .overlay span {
    padding: 5px;
}
/* akhir contact */
/* contact dasboard */

/* akhir contact dasboard */

#contact-dasboard .container-fluid {
    padding-top: 100px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contact-dasboard .container-fluid h1 {
    color: #333;
}

#contact-dasboard .container-fluid iframe {
    width: 100%;
    height: 65vh;
}

.contact-from {
    padding: 2rem 0rem 2rem 0rem;
}
.contact-from .form-label {
    font-weight: 700;
}
.contact-from h5 {
    font-weight: 700;
    color: #021058;
}
.contact-from p {
    color: #000;
    font-weight: normal;
}
.contact-from button {
    padding: 8px 40px 8px 40px;
}

.contact-from .form-control {
    background-color: rgb(176, 176, 176);
}

/* contact from */

/* product  */

#product {
    height: 70vh;
    background-image: url(asset/factory.png);
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
}

#product .overlay {
    background: rgba(0, 0, 0, 0.5);
}

#product .overlay h1 {
    position: relative;
    top: 30vh;
}
/* product akhir */

/* overview */

#overview {
    background: url(../asset/city.png);
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    background-size: cover;
}

#overview .coba {
    justify-content: center;
    position: relative;
    color: white;
    top: 40%;
}
#overview .coba h1,
h5 {
    text-align: center;
    justify-content: center;
}
#overview .overlay {
    position: absolute;
    padding: 10px 0px 6px 10%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#overview .overlay a {
    color: #fff;
    text-decoration: none;
}

#overview .overlay h6 {
    color: #fff;
}

.overview-desripsi {
    padding: 5rem 0px 5rem 0px;
}
.overview-desripsi h6 {
    padding: 3rem 0px 0rem 0px;
}

.overview-desripsi h3 {
    font-weight: 800;
    color: #09203f;
}

.bg-overview {
    background: url(../img/overlay/factory-2.png);
    background-size: cover;
    margin: 50px 0;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.table-overview {
    padding: 10px;
}

.table-overview .table th {
    padding: 20px 0px;
}
.table-overview .table td {
    padding: 20px;
}

hr.new4 {
    border: 2px solid black;
    border-radius: 5px;
}

.performance {
    padding: 30px 0px;
}

.performance h1 {
    color: #09203f;
    font-weight: 800;
}

.performance span {
    font-weight: 100;
}

/* histpry */
#history {
    background: url(../asset/cultur.jpeg);
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    background-color: white;
    background-size: cover;
}

#history .coba {
    justify-content: center;
    position: relative;
    color: white;
    top: 40%;
}
#history .coba h1,
h5 {
    text-align: center;
    justify-content: center;
}
#history .overlay {
    position: absolute;
    padding: 10px 0px 6px 10%;
    left: 0;
    top: 90%;
    background: rgba(0, 0, 0, 0.5);
}

#history .overlay a {
    color: #fff;
    text-decoration: none;
}

#history .overlay h6 {
    color: #fff;
}

.history-desripsi {
    padding: 5rem 0px 5rem 0px;
}

/* purpose & value */
#purpose {
    background: url(../asset/work.jpeg);
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    background-color: white;
    background-size: cover;
}

#purpose .coba {
    justify-content: center;
    position: relative;
    color: white;
    top: 40%;
}
#purpose .coba h1,
h5 {
    text-align: center;
    justify-content: center;
}
#purpose .overlay {
    position: absolute;
    padding: 10px 0px 6px 10%;
    left: 0;
    top: 94%;
    background: rgba(0, 0, 0, 0.5);
}

#purpose .overlay a,
h6 {
    color: #fff;
    text-decoration: none;
}

#purpose .overlay h6 {
    color: #fff;
}

.purpose-desripsi {
    padding: 5rem 0px 5rem 0px;
}

/* card */

/* loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    z-index: 999;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 100px;
    height: 100px;
    border: 15px solid #dddddd;
    border-top-color: #004595;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.bn14 {
    font-family: lato, sans-serif;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    padding: 10px 40px 10px 40px;
    position: relative;
    border: 3px solid #ffffff;
    border-radius: 25px;
}
.header-area .gnb-area {
    position: absolute;
    left: 0px;
    right: 0;
    padding: 0 140px 0 149px;
    box-sizing: border-box;
    width: 100%;
}
.about-text {
    font-weight: 500;
    font-size: 20px;
    padding: 1rem;
    background-color: #000;
}

.about-text a {
    padding: 1rem;
    border-radius: 3%;
    background-color: #004595;
    color: white;
    text-decoration: none;
}

#visiandmision {
    padding: 6rem 0rem;
    color: #6a564b;
    background: #fff;
}

.Mission .card {
    background-color: #fff;
    margin: 1rem;
}

.Mission {
    color: #6a564b;
    padding: 1rem 0rem;
    background: #fff;
}
.Mission h1 {
    padding: 3rem 0rem 0rem 0rem;
}

.Mission h6 {
    padding: 5px 0rem 0rem 0rem;
}

.Mission img {
    padding: 12rem 0rem 0rem 0rem;
}

.export img {
    padding: 10rem 0rem 10rem 0rem;
}

.export .text {
    padding: 14rem 0rem 0rem 0rem;
}
.export h6 {
    padding: 0rem 0rem 1rem 0rem;
}

.button-89 {
    --b: 3px; /* border thickness */
    --s: 0.45em; /* size of the corner */
    --color: #373b44;

    padding: calc(0.5em + var(--s)) calc(0.9em + var(--s));
    color: var(--color);
    --_p: var(--s);
    background: conic-gradient(
            from 90deg at var(--b) var(--b),
            #0000 90deg,
            var(--color) 0
        )
        var(--_p) var(--_p) / calc(100% - var(--b) - 2 * var(--_p))
        calc(100% - var(--b) - 2 * var(--_p));
    transition: 0.3s linear, color 0s, background-color 0s;
    outline: var(--b) solid #0000;
    outline-offset: 0.6em;
    font-size: 16px;

    border: 0;

    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-89:hover,
.button-89:focus-visible {
    --_p: 0px;
    outline-color: var(--color);
    outline-offset: 0.05em;
}

.button-89:active {
    background: var(--color);
    color: #fff;
}

.sustainability .text {
    padding: 5rem 0rem;
}

.sustainability h6 {
    padding: 1rem 0rem;
}

.sustainability img {
    padding: 2rem 0rem;
}

svg {
    position: absolute;
}
.home-about {
    padding: 2rem 0rem;
}
.home-about img {
    border-radius: 2%;
}

.home-about h3 {
    padding: 1rem 0rem;
}

.pp-pe {
    padding: 2rem 0rem;
}
.pp-pe h1 {
    padding: 1rem 0rem;
}
.pp-pe a {
    text-decoration: none;
}

.button-68 {
    appearance: none;
    backface-visibility: hidden;
    background-color: #27ae60;
    border-radius: 8px;
    border-style: none;
    box-shadow: rgba(39, 174, 96, 0.15) 0 4px 9px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
        sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 13px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-68:hover {
    background-color: #1e8449;
    opacity: 1;
    transform: translateY(0);
    transition-duration: 0.35s;
}

.button-68:active {
    transform: translateY(2px);
    transition-duration: 0.35s;
}

.button-68:hover {
    box-shadow: rgba(39, 174, 96, 0.2) 0 6px 12px;
}

/* coba card */

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    /* 
      For more colors visit: https://htmlcolorcodes.com/
      -> Choose any color 
      -> Copy the color mode (HSL)
  */
    --yellow-color: 52;
    --green-color: 116;
    --pink-color: 300;
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat Alternates", serif;
    --biggest-font-size: 2rem;
    --big-font-size: 1.5rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold: 700;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 3rem;
        --big-font-size: 2.5rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
    }
}

/*=============== BASE ===============*/

.info a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.card-green {
    --hue: var(--green-color);
}

/*=============== CARD ===============*/
.card {
    position: relative;
    padding-block: 5rem;
}

.card__bg,
.card__blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card__bg {
    object-fit: cover;
    object-position: center;
}

.card__blur {
    backdrop-filter: blur(24px);
}

.card__container {
    position: relative;
    display: grid;
    grid-template-columns: 260px;
    justify-content: center;
    gap: 2rem;
}

.card__article {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.card__img {
    border-radius: 2rem;
    transition: transform 0.4s;
}

.card__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        hsla(0, 0%, 0%, 0) 70%,
        hsl(0, 0%, 0%) 100%
    );
}

.card__data {
    color: var(--white-color);
    position: absolute;
    left: 1.5rem;
    bottom: 2rem;
}

.card__name {
    font-size: var(--big-font-size);
    margin-bottom: 0.25rem;
}

.card__profession {
    display: block;
    font-size: var(--small-font-size);
}

.card__clip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: hsl(var(--hue), 90%, 50%);
    box-shadow: 0 0 16px 4px hsl(var(--hue), 90%, 50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--black-color);
    z-index: 5;
    cursor: pointer;
    transition: transform 0.4s;
}

.card__article:hover .card__img {
    transform: scale(1.1);
}

/*=============== CARD INFO ===============*/
.info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.1);
    backdrop-filter: blur(12px);
    padding: 3rem 1.5rem 1.5rem;
    color: var(--white-color);
    clip-path: circle(8px at 88% 9%);
    transition: clip-path 0.5s ease-in-out;
}

.info__name {
    font-size: var(--biggest-font-size);
    margin-bottom: 0.5rem;
}

.info__description {
    font-size: var(--small-font-size);
    margin-bottom: 1rem;
}

.info__button {
    display: inline-flex;
    background-color: hsl(var(--hue), 90%, 50%);
    box-shadow: 0 0 12px hsl(var(--hue), 90%, 50%);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--black-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    transition: box-shadow 0.4s;
}

.info__button:hover {
    box-shadow: 0 0 20px hsl(var(--hue), 90%, 50%);
}

.info__social {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    column-gap: 0.5rem;
}

.info__link {
    background-color: hsl(var(--hue), 90%, 50%);
    box-shadow: 0 0 12px hsl(var(--hue), 90%, 50%);
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--black-color);
    transition: transform 0.4s;
}

.info__link:hover {
    transform: translateY(-0.25rem);
}

/* Rotate icon */
.card__article:hover .card__clip {
    transform: rotate(-45deg);
}

/* Clip path animation */
.info:hover,
.card__clip:hover ~ .info {
    clip-path: circle(100%);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-inline: 1rem;
    }

    .card__container {
        grid-template-columns: 1fr;
    }

    .info {
        padding: 1.5rem 1rem;
    }
}

/* For medium devices */
@media screen and (min-width: 768px) {
    .card__container {
        grid-template-columns: repeat(2, 260px);
    }
}

/* For large devices */
@media screen and (min-width: 1150px) {
    .card {
        height: 100vh;
        display: grid;
        place-content: center;
    }
    .card__container {
        grid-template-columns: repeat(3, 340px);
    }
    .card__article,
    .card__img {
        border-radius: 3rem;
    }
    .card__data {
        left: 2rem;
        bottom: 3rem;
    }
    .card__profession {
        font-size: var(--normal-font-size);
    }
    .card__clip {
        top: 1.5rem;
        right: 1.5rem;
    }

    .info {
        padding: 4rem 2rem 2.5rem;
    }
    .info__description,
    .info__button {
        font-size: var(--normal-font-size);
    }
    .info__description {
        margin-bottom: 1.5rem;
    }
    .info__social {
        left: 2rem;
        bottom: 2.5rem;
        column-gap: 0.75rem;
    }
}
