:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
    background-color: #f8f9fa;
    /* Atur warna latar belakang navbar */
    transition: background-color 0.3s ease-in-out;
    /* Atur kecepatan transisi sesuai keinginan */
}

.navbar.scrolled {
    background-color: #f8f9fa;
    /* Tetap menggunakan warna latar belakang navbar saat di-scroll */
}

        /*--------------------------------------------------------------
        # About Us Section
        --------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--bs-blue);
    font-family: var(--font-secondary);
}

.about h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    color: var(--bs-blue);
}

.about .call-us {
    left: 10%;
    right: 10%;
    bottom: 0;
    background-color: var(--bs-blue);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

.about .call-us h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about .call-us p {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
}

.about p {
    color: var(--color-text);
    text-indent: 25px;
}

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

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
    color: var(--color-text);
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--color-text);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(0, 131, 116, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

.about .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.aboutUsSc {
    width: 100%;
    display: flex;
}

.aboutUsSc .img-about {
    flex-basis: 50%;
}

.aboutUsSc .text-about {
    flex-basis: 50%;
    margin-left: 50px;
}

.aboutUsSc .img-about img {
    width: 100%;
    border-radius: 10%;
}

.aboutUsSc .text-about .visi .misi {
    margin-top: 50px;
}

@media (max-width: 575px) {
    .aboutUsSc {
        width: 100%;
        display: grid;
    }

    .aboutUsSc .img-about {
        flex-basis: 50%;
    }

    .aboutUsSc .text-about {
        margin-top: 50px;
        margin-left: 0px;
        text-align: center;
    }

    .aboutUsSc .text-about .visi .misi {
        margin-top: 100px;
    }

    .kliklanjut {
        display: flex;
        justify-content: end;
        margin-top: 25px;
    }
}


/* card */
.kliklanjut {
    color: #69B99D;
    display: flex;
    justify-content: end;
}

.kliklanjut a {
    color: #69B99D;
    text-decoration: none;
}


