body{
    font-family: "Baloo 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
a{
    text-decoration: none;
}
p, h1{
    margin: 0;
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blob {
    display: inline-block;
    margin: 0 2px;
    position: relative;
}

.blob a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.pagination-ellipsis {
    font-size: 35px;
    color: #FAD6A5;
}
.loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 5px solid #ddd;
    border-top-color: orange;
    animation: loading 1s linear infinite;
    position: absolute;
    top: 61%;
    right: 32%;
    display: none;
}
@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}
.content-describes{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.box-map{
    width: 100%;
    border-radius: 60px;
    border: 1px solid #FF6663;
    padding: 25px;
    padding-bottom: 20px;
}
.box-map iframe{
    width: 100%;
    border-radius: 30px;
}
.product-image img,.video-image img{
    transition: transform 0.3s ease;
}
.product-image img:hover,.video-image img:hover{
    transform: scale(1.05);
}
.product-describe a:hover,.product-describe h5:hover{
    color: #F9D5A4!important;
}
@media (max-width: 768px) {
    .box-map{
        width: 100%;
        border-radius: 50px;
        border: 1px solid #FF6663;
        padding: 10px;
    }
    .box-map iframe{
        width: 100%;
        border-radius: 50px;
        height: 320px;
    }
    #contact-form button[type="submit"] {
        font-size: 18px;
    }
}
.link-hover:hover,.product-title:hover,.video-btn:hover,.title-channel_name:hover{
    color: #F9D5A4!important;
}
