/*-------------------------------
Bootstrap Custom CSS : ZUKI
Author : @garrycoy
-------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');


body    {
    font-family: 'Barlow', sans-serif;
}

h1    {
    font-size: 48px !important;
    font-weight: 300 !important;
}
p   {
    font-size: 18px;
}
.rounded-25 {
    border-radius: 25px !important;
}

input, textarea {
    background-color: #eee !important;
}

input:focus, textarea:focus {
    background-color: #fff !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 5rem !important;
    height: 5rem !important;
}
.carousel-control-prev  {
    left: -150px !important;
}
.carousel-control-next  {
    right: -150px !important;
}
.carousel-indicators    {
    bottom: -50px !important;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #666;
    background-color: #fff;
    border: 0;
}

.page-item.disabled .page-link {
    color: #868e96;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    font-weight: 600;
    background-color: #1c8cb0;
    border: 0;
}

.page-link:focus, .page-link:hover {
    color: #666;
    text-decoration: none;
    background-color: #eee;
}

/*-------------------------------
Additional Color
-------------------------------*/
.bg-navy    {
    background-color: #00546f !important;
    color: #fff !important;
}
a.bg-navy:hover,
a.bg-navy:focus,
button.bg-navy:hover,
button.bg-navy:focus    {
    background-color: #00769c !important;
    color: #fff !important;
}

.bg-aqua    {
    background-color: #35b4dc !important;
    color: #fff !important;
}
a.bg-aqua:hover,
a.bg-aqua:focus,
button.bg-aqua:hover,
button.bg-aqua:focus    {
    background-color: #1c8cb0 !important;
    color: #fff !important;
}

/*-------------------------------
General Style
-------------------------------*/
a   {
    transition: 0.3s;
}
.floating{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    z-index:1080;
}

.category   {}
.category p {
    font-size: 14px;
    font-weight: 700;
}
.category a {
    opacity: .75;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    text-decoration: none;
    color: #1c8cb0;
}
.category a.active,
.category a:hover {
    opacity: 1;
    -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
}

.product    {}
.product p  {
    font-size: 14px;
}
.product .card:hover  {
    transition: 0.3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.product > .col {
    width: 20%;
    min-width: 20%;
    max-width: 20%;
}

.crop-text-2 {
    -webkit-line-clamp: 2;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-3 {
    -webkit-line-clamp: 3;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.brief  {
    height: 160px;
}

/*-------------------------------
Section
-------------------------------*/
.hero    {
    background: url(../img/bg-carousel.png) top center no-repeat;
    height: 850px;
}

.bg-nav-bottom  {
    background: url(../img/bg-nav-bottom.png) top center no-repeat;
    height: 199px;
}

.bg-nav-bottom a  {
    color: #1c8cb0;
}

.about  {
    background: url(../img/bg-about.png) top center no-repeat;
}

.footer {
    background: url(../img/bg-footer.png) bottom center no-repeat;
}



@media (max-width: 575.98px) {
    .product > .col {
        width: 50%;
        min-width: 50%;
        max-width: 50%;
    }
    h1    {
        font-size: 32px !important;
    }
    .floating{
        bottom:10px;
        right:10px;
    }
    .bg-nav-bottom  {
        background: url(../img/bg-nav-bottom.png) bottom center no-repeat;
        height: 150px;
    }
    .crop-text-3 {
        -webkit-line-clamp: 2;
    }
    .brief  {
        height: 130px;
    }
}

