/* ARTIKEL */

.container-artikel {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 100px;
}

.artikel-header {
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.artikel-header span:nth-child(1) {
    font-size: 1.5em;
    font-weight: 600;
    color: #8193F2;
}

.row-card-artikel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.row-card-artikel .card-custom-artikel {
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: .3s;
    border: 1px solid transparent;
    max-width: 400px;
    max-height: 400px;
}

.row-card-artikel .card-custom-artikel a {
    text-decoration: none;
    color: #333;
}

.row-card-artikel .card-custom-artikel a img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    /* opacity: 0; */
}

.row-card-artikel a {
    text-decoration: none;
    color: #333;
}

.row-card-artikel .card-custom-artikel:hover {
    transform: translateY(-10px);
    border: 1px solid #8193F2;
}

.artikel-card #readmore {
    opacity: 0;
    transition: .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    top: -10px;
    position: relative;
}

.artikel-card:hover #readmore {
    top: 0px;
    color: #8193F2;
    opacity: 1;
    animation: readmore .8s linear infinite;
}

.artikel-card img {
    height: 200px;
    object-fit: cover;
}

.body-button-artikel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-button-artikel a {
    text-decoration: none;
    background: #8193F2;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    color: #fff;
    transition: .3s;
}

.body-button-artikel a:hover {
    opacity: 80%;
}

/* Klien */
.container-klien {
    background: #fff;
}

.klien-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.klien-header span:nth-child(1) {
    font-size: 1.5em;
    font-weight: 600;
    color: #8193F2;
}

.body-button-klien {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-button-klien a {
    text-decoration: none;
    background: #8193F2;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    color: #fff;
    transition: .3s;
}

.body-button-klien a:hover {
    opacity: 80%;
}

/* Details */
.body-row-details {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-row-details a {
    margin: 20px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: .3s;
}

.body-row-details a:nth-child(1) {
    cursor: crosshair;

}

.body-row-details a:nth-child(1):hover {
    transform: translateY(-10px);
    color: #8193F2;
}

.body-row-details a:hover {
    transform: translateY(-10px);
    color: #8193F2;
}

.body-row-details a div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.body-row-details a div img {
    width: 100px;
}

.left-container-details i,
.right-container-details i,
.middle-container-details i
{
    font-size: 2.5em;
    color: #5b5b5b;
    transition: .3s;
}

.left-container-details:hover i,
.right-container-details:hover i,
.middle-container-details:hover i
{
    color: #8193F2;

}
