@import url('https://fonts.googleapis.com/css2?family=Corben:wght@400;700&family=Spicy+Rice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corben:wght@400;700&family=Spicy+Rice&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/*------------ font ---------------*/
.logo-font{
    font-family: "Spicy Rice", serif !important;
}
.txt-font{
    font-family: "Ubuntu", sans-serif !important;
}
/*---------------------------------*/


/*------------ color --------------*/
.bg-dark-blue{
    background-color: #001861 !important;
}
.border-darkblue{
    border: 4px solid #001861 !important;
}
/*---------------------------------*/

ul li:hover{
    cursor: pointer;
}

.text-limit{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
            line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 576px) {
    .offcanvas{
        width: 85% !important;
    }
}

/* ---------------- Hero style --------------------- */
.hero{
    height: 100vh;
}
@media (max-width: 576px) {
    .hero{
        height: 60vh;
    }
}
@media (max-width: 992px) {
    .hero{
        height: 70vh;
    }
}

/* ---------------- image ----------------- */
.image{
    height: 250px;
}
@media (max-width: 576px) {
    .image{
        height: 150px;
    }
}
@media (max-width: 992px) {
    .image{
        height: 180px;
    }
}

.foot{
    background-image: url(https://i.pinimg.com/originals/6a/e0/9d/6ae09d56f3894692b0c0c735a9882916.gif) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}