/* design your code  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300&display=swap");
/* Universal  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-family: "Roboto Condensed", sans-serif;
}

a {
    text-decoration: none;
}

/* Content  */

.content-container {
    margin: 50px 0px 100px 0px;
}

/* Helper icon  */

.helper-icon i {
    font-size: 35px;
}

.helper-icon {
    padding: 20px;
    background-color: #ffffff;
    margin: 20px 0px;
}

@media only screen and (max-width: 600px) {
    #mobile_navbar {
        display: block;
    }

    .footer {
        display: none;
    }

    .banner-img img{
        height: 100px !important;
    }

    .carousel-item img {
        height: 300px !important;
    }

    /* .helper-icon {
        width: 100% !important;
    } */

    .carousel-caption {
        top: 8rem !important;
    }
}

/* Navbar starts  */

#mobile_navbar {
    display: none;
}

.nav-item {
    list-style: none;
    display: inline-block;
    margin-right: 2em;
}

.desktop-icon small {
    font-size: 14px;
}

.nav-icon {
    margin-right: 0.5em !important;
}

.nav-item ul li:last-child {
    margin-right: 0 !important;
}

.nav-items ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.nav-items ul {
    margin-bottom: 0 !important;
}

.dropdown-toggle {
    border: none;
    background-color: transparent;
}

.lang-flag {
    width: 20px;
    height: 20px;
}

.active-nav {
    color: #2196f3;
}

#content {
    display: none;
    width: 300px;
    height: auto;
    background-color: #ffffff;
    left: -9em;
    top: 3em;
    border-radius: 10px;
    padding: 10px;
}

#content::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    right: 50%;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

#content.active-noti {
    display: block;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .desktop-icon {
        display: none;
    }

    .nav-item {
        margin-right: 0.5em;
    }

    #content::before {
        right: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #content {
        /* opacity: 0; */
        width: 180px;
        height: auto;
        left: -5em;
    }

    .notify-container {
        position: none;
    }

    .nav-logo img {
        width: 100% !important;
    }

    #mobile_navbar {
        display: block;
    }
}
/* Navbar ends  */

#desktop_navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
}

/* banner img  */

.general-banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Custom  */

.text-custom {
    color: #2196f3 !important;
}

.bg-custom {
    background-color: #2196f3 !important;
}

.btn-custom {
    padding: 5px 10px;
    color: white;
    border: none;
}

/* custom pagination  */

.pagination {
    --bs-pagination-padding-x: 13px !important;
    --bs-pagination-padding-y: 7px !important;
    --bs-pagination-font-size: 12px !important;
    --bs-pagination-active-color: #fff !important;
    --bs-pagination-active-bg: #2196f3 !important;
    --bs-pagination-active-border-color: #2196f3 !important;
}

/* custom accordion  */

.accordion {
    --bs-accordion-border-radius: 0 !important;
    --bs-accordion-active-color: #fff !important;
    --bs-accordion-active-bg: #2196f3 !important;
    --bs-accordion-btn-padding-y: 10px !important;
}

.accordion-item {
    margin: 1em 0 !important;
}

.accordion-button {
    font-size: 0.8em !important;
    font-weight: 600;
}

/* custom curosel */

.carousel-caption {
    bottom: 20rem !important;
}

/* footer  */

.footer {
    background-color: #f3f3f4;
}
