*, body{
    margin: 0;
    padding: 0;
}
html {
    overflow-x: hidden;
}


:root {
    --primary: #004a80;
    --lightPrimary: #3a66a30c;
    --secondary: #00baf2;
    --darkSecondary: #04afe4;
    --light: #ffffff;
    --dark: #000000;
    --gray: #7a7a7a;
    --lightGray: #7a7a7a52;
}

.btn_secondary {
    text-decoration: none;
    border: 1px solid var(--secondary);
    border-radius: 5px;
    background: var(--secondary);
    color: var(--light);
}
.btn_secondary:hover {
    background: var(--darkSecondary);
    transition: 0.5s;
}

.bg_primary {
    background: var(--primary);
}

.bg_primary_light {
    background: var(--lightPrimary);
}

.text_primary {
    color: var(--primary);
}

.bg_secondary {
    background: var(--secondary);
}

.text_secondary {
    color: var(--secondary);
}

.bg_dark {
    background: var(--dark);
}

.text_dark {
    color: var(--dark);
}

.bg_light {
    background: var(--light);
}

.text_light {
    color: var(--light);
}

.bg_gray {
    background: var(--gray);
}

.text_gray {
    color: var(--gray);
}


/* @font-face {
    font-family: SolaimanLipi;
    src: url('fonts/SolaimanLipi.woff2');
} */


p,span {
    font-size: 17px !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
p.sm {
    font-size: 14px !important;
    line-height: 17px !important;
}
p.justify {
    text-align: justify;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.5s;
}
a:hover {
    opacity: 70%;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li svg {
    font-size: 14px;
}

@media (max-width:991.98px) {
    p,span {
        font-size: 16px !important;
    }
    h2 {
        font-size: 25px;
    }
}

/* Header */
.social_media {
    display: flex;
    justify-content: end;
    align-items: center;
}
.social_header {
    height: 100%;
}
.social_contact {
    align-items: start;
}
@media (max-width: 767.98px) {
    .social_media {
        margin-top: 5px;
        margin-bottom: 15px;
        justify-content: center;
    }
    .header_left {
        text-align: center;
    }
}
.social_media a {
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: var(--light);
}
/* .social_media a svg {
    color: ;
} */



/* Navbar */
nav a {
    font-size: 18px !important;
}
.dropdown-menu {
    border-radius: 0;
}
.navbar ul li.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--lightGray);
}

.navbar .navbar-nav .nav-link{
    border-bottom: 1px solid transparent;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    border-bottom: 1px solid var(--primary) !important;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--primary) !important;
}

/* Slider */
.carousel-item::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.151);
}

/* .product .card .card-header img {
    trans
} */

.card,
.card .card-header {
    overflow: hidden;
}
.product .card .card-header img {
    transition: 0.5s;
}
.product .card:hover {
    cursor: pointer;
}
.product .card:hover .card-header img {
    scale: 110%;
    transition: 0.5s;
}


