#container{
    padding: 10px;
}
.maxContainer-k{
    max-width: 1200px;
    display: block;
    background-color: var(--max-Con-w-Bg);
    border-radius: 0px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    
}
.gambar-utama{
    position: relative;
    width: 100%;
    height: 450px;
    background-color: red;
}
.gambar-utama img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gambar-utama .logo{
    position: absolute;
    top: 2%;
    left: 2%;
    width: 15%;
}
.text-utama{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 10% 5% 10%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0)
    );
}
.logodesc{
    display: none;
    width: 20%;
    position: absolute;
    top: 0;
    left: 0;
}
.logodesc img{
    width: 100%;
    height: 100%;
}
.text-utama h2,
.text-utama p{
    color: #FFFFFF;
    text-align: center;
}
.text-utama h2{
    color: yellow;
}
.text-utama p{
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* jumlah baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.form-cari{
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}
.form-cari input{
    width: 89%;
    margin-right: 1%;
    padding: 10px;
    float: left;
    height: 35px;
    border-radius: 5px;
}
.form-cari button{
    width: 10%;
    height: 35px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(90deg, #ffee00, #fdcf00);
    color: black;
    font-weight: bolder;
}
.form-cari button:hover{
    transition: 0.3s ease;
    background: linear-gradient(90deg, #ffd900, #fdba00);
}
.containerlist{
    position: relative;
    width: 100%;
    min-height: 350px;
}
.container30{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.tb30{
    border-radius: 10px;
    width: calc(33.333% - 14px);
    background-color: #dfdfdf;
    width: 100%;
    height: auto;
    padding: 9px;
    position: relative;
}
.tb30 p{
    text-align: left;
    margin: 7px;
    font-size: normal;
}
.tb30 p b {
    white-space: nowrap;
}

.tb30 img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
    z-index: 4;
}
.tb30 button{
    width: 100%;
    height: 40px;
}
#kunjungi button{
    background: linear-gradient(90deg, #ffee00, #fdcf00);
    border: none;
    margin-top: 5px;
    border-radius: 10px;
    font-weight: bolder;
}
#kunjungi button:hover{
    transition: all 0.3s ease-in;
    background: #ffc423;
}
#textkecil{
    font-size:small;
    line-height: 11px;
}
#iconwa{
    width: 14px;
    height: auto;
}
/*icon website*/
@media screen and (max-width:790px) {
    .gambar-utama{
        height: 350px;
    }
    .container30{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .tb30{
        border-radius: 10px;
        width: calc(50% - 14px);
        background-color: #dfdfdf;
        width: 100%;
        height: 100%;
        padding: 9px;
    }
    .tb30 p{
    text-align: left;
    margin: 5px;
    font-size: small;
    }
    .logodesc{
    width: 10%;
    }   
}