*{
    padding:0;
    margin:0;
    font-family:sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}

.medsos {
padding: 5px 0;
background-color: dodgerblue;
}

.medsos ul li {
    display: inline-block;
    color: #fff;
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    text-decoration: none; /* Tambahkan ini agar tidak ada underline pada link */
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

.btn-floating i {
    margin-bottom: -3px;
}

.btn-floating.wa {
    bottom: 25px;
    background-color: #34af23;
    border: 2px solid #fff;
}

.btn-floating.wa:hover {
    background-color: #1f7a12;
}

.btn-floating.fb {
    bottom: 85px;
    background-color: #1876f3;
    border: 2px solid #fff;
}

.btn-floating.fb:hover {
    background-color: #1876f3;
}

.container {
    width: 80%;
    margin: 0 auto;
}
.container:after {
    content: '';
    display: block;
    clear: both;
}

header h1 {
    float: left;
    padding: 15px 0px;
    color:  dodgerblue;
}

header ul {
    float: right;
}

header ul li {
    display: inline-block;

}

header ul li a {
    padding: 25px 20px;
    display: inline-block;
}

header ul li a:hover {
    background-color:  dodgerblue;
    color: #fff;
}

.active {
    background-color:  dodgerblue;
    color: #fff;
}

.banner {
    height: 50vh;
    width: 100%;
    background-image: url('../img/Picture1.jpg');
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(29, 144, 255, .6);
}

.banner h2 {
    color: #fff;
    z-index: 1;
    padding: 20px 25px;
    border: 3px solid #fff;
}

section {
    padding: 50px 0;
}

section h3 {
    text-align: center;
    padding: 20px 0;
    color: dodgerblue;
    margin-bottom: 25px;
}

.about, .service, .produk-container {
    padding-bottom: 100px;
}

.aki {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 10px;
}

.about p {
    color: #666;
    word-spacing: 2px;
    line-height: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.service {
    background-color: #f9f9f9;
}

.box {
    color: dodgerblue;
}

.box:after {
    content: '';
    display: block;
    clear: both;
}

.box .col-4 {
    width: 25%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    float: left;
}

.col-sm {
    width: 33.33%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    float:left;
}

.icon {
    width: 70px;
    height: 70px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 20px;
    margin: 0 auto;
}

.icon-3 {
    width: 70px;
    height: 70px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font: 20px;
    margin: 0 auto;
}

.col-sm h4 {
    padding-top: 5%;
}

.box .col-4 h4 , p {
    margin: 20px 0;
} 

.produk-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.item:nth-child(even) {
    flex-direction: row-reverse; /* Menukar posisi gambar untuk item genap */
}

.image {
    width: 100%;
    max-width: 35%; /* Membatasi lebar maksimum gambar */
    flex-shrink: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.title {
    font-weight: bold;
}

.description {
    color: #555;
}


.text-box p {
    font-size: 16px;
}

footer {
    padding: 30px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.bg-loader {
    background-color: #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-loader .loader {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
    border-top-color: dodgerblue;
    border-right-color: dodgerblue;
    border-bottom-color: dodgerblue;
    animation: puterin .8s linear infinite;
}

.label {
    background-color: dodgerblue;
    color: #fff;
}

@keyframes puterin {
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    .container {
        width: 90%;
    }
    header h1 {
        text-align: center;
        float: none;
    }
    header ul {
        text-align: center;
        float: none;
    }
    .box .col-4 {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
}