/* From Uiverse.io by cssbuttons-io */


.text-multiline {
    overflow: hidden;
    white-space: normal;

    /* Exactly 2 lines are displayed. 
                Height of 1 line is 1.2em*/
    height: 2.4em;
    text-overflow: ellipsis;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #54CC58;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #54CC58;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

.bg-tabersa {
    background-color: #54CC58;
    color: white;
}

.text-green {
    color: #54CC58;
}

.text-tabersa-hoverable {
    color: #54CC58;
}

.text-tabersa-hoverable:hover {
    color: #3DAA3D;
}

.text-tabersa-green {
    color: #54CC58;
}

.text-tabersa-green:hover {
    color: #54CC58;
}

.text-tabersa {
    color: #54CC58;
}

.text-tabersa:hover {
    color: white;
}

.text-tabersa-reverse {
    color: white;
}

.text-tabersa-reverse:hover {
    color: #54CC58;
}

/* From Uiverse.io by ernestnash */
.btn-custom {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border: 3px solid white;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.btn-custom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.btn-custom:hover::before {
    transform: translateX(0);
}

/* From Uiverse.io by BHARGAVPATEL1244 */
.button-banner {
    outline: none;
    cursor: pointer;
    border: #54CC58 1px solid;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 500;
    font-size: 12px;
    border-radius: 500px;
    overflow: hidden;
    background: #54CC58;
    color: #54CC58;
    /* color: ghostwhite; */
}

.button-banner span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.button-banner:hover span {
    color: white;
}

.button-banner::before,
.button-banner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.button-banner::before {
    content: "";
    background: white;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button-banner:hover::before {
    transform: translate3d(100%, 0, 0);
}

.button-navbar {
    color: white;
    text-decoration: none;
    /* font-size: 25px; */
    border: none;
    background: none;
    /* font-weight: 600; */
    /* font-family: 'Poppins', sans-serif; */
}

.button-navbar::before {
    margin-left: auto;
}

.button-navbar::after,
.button-navbar::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #54CC58;
    display: block;
    transition: 0.5s;
}

.button-navbar:hover::after,
.button-navbar:hover::before {
    width: 100%;
}

/* From Uiverse.io by fanishah */
.center {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
    width: 6px;
    height: 50px;
    background: linear-gradient(45deg, #54CC58, #fff);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}

.wave:nth-child(2) {
    animation-delay: 0.1s;
}

.wave:nth-child(3) {
    animation-delay: 0.2s;
}

.wave:nth-child(4) {
    animation-delay: 0.3s;
}

.wave:nth-child(5) {
    animation-delay: 0.4s;
}

.wave:nth-child(6) {
    animation-delay: 0.5s;
}

.wave:nth-child(7) {
    animation-delay: 0.6s;
}

.wave:nth-child(8) {
    animation-delay: 0.7s;
}

.wave:nth-child(9) {
    animation-delay: 0.8s;
}

.wave:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

.author-section {
    background-image: url('../images/bg-side.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.titleprod {
    font-size: 2rem; /* Ukuran font untuk desktop */
}

.deskprod {
    font-size: 1.5rem; /* Ukuran font untuk desktop */
}

/* Media query untuk perangkat mobile */
@media (max-width: 768px) {
    .titleprod {
        font-size: 1rem; /* Ukuran font lebih kecil untuk mobile */
    }

    .deskprod {
        font-size: 0.7rem; /* Ukuran font lebih kecil untuk mobile */
    }
}