
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

:root {
    --body-font: "Manrope", sans-serif;
    --heading-font: Georgia, "Times New Roman", serif;
    --primary-color: #0c4e97;
    --secondry-color: #073c77;
    --third-color: #2a7fd8;
    --four-color: #6db7f2;
    --white-color: #ffffff;
    --black-color: #111827;
    --black-color2: #1f2937;
    --black-color3: #4b5563;
    --background-color: #f8fbff;
    --gray-color: #e4edf7;
    --gray-color2: #f3f8fd;
    --gray-color3: #fafcff;
    --green-color: #25D366;
    --border-color: #d7e6f5;
    --shadow-color: rgba(12, 78, 151, 0.1);
    --primary-gradient: linear-gradient(
        135deg,
        #073c77 0%,
        #0c4e97 50%,
        #2a7fd8 100%
    );
    --hero-gradient: linear-gradient(
        90deg,
        #073c77 0%,
        rgba(12, 78, 151, 0.95) 45%,
        rgba(42, 127, 216, 0.85) 100%
    );
    --success: #14b86a;
    --warning: #f68d60;
    --warning2: #ffb400;
    --danger: #e53935;
    
}

img {
    max-width: 100% !important;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden !important;
}

body,
html {
    scroll-behavior: smooth;
    font-family: var(--body-font);
}

a {
    text-decoration: none !important;
}

a:focus {
    outline: none;
    text-decoration: none;
}

textarea {
    resize: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}
/* =========================================================
   TOPBAR
========================================================= */

.topbar_section {
    background: var(--secondry-color);
    padding: 7px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar_main_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* Contact Area */

.topbar_contact_div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar_contact_item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.3s ease;
}

.topbar_contact_item i {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--four-color);
    font-size: 11px;
    transition: 0.3s ease;
}

.topbar_contact_item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.topbar_contact_item small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.topbar_contact_item:hover {
    color: var(--white-color);
}

.topbar_contact_item:hover i {
    background: var(--third-color);
    border-color: var(--third-color);
    color: var(--white-color);
}

/* Divider */

.topbar_divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.12);
}

/* Right Area */



/* Brochure */







/* Social */









/* =========================================================
   MAIN NAVBAR
========================================================= */

.navbar_main_div {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white-color);
}

.navbar {
    padding: 0 !important;
    margin: 0;
    background: var(--white-color) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 25px rgba(12, 78, 151, 0.07);
}

/* Container */

.navbar > .container {
    min-height: 82px;
}

/* =========================================================
   LOGO
========================================================= */

.navbar-brand {
    padding: 0;
    margin: 0 35px 0 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.navbar-brand img {
    width: auto;
    height: 65px;
    object-fit: contain;
    transition: 0.3s ease;
}

.navbar-brand > span {
    margin-left: 20px;
    display: inline-block;
    line-height: 23px;
}

.navbar-brand > span > strong {
    font-size: 19px;
    color: var(--primary-color);
    display: block;
}

.navbar-brand > span > small {
    font-size: 15px;
    letter-spacing: 3.8px;
    color: var(--black-color);
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

/* =========================================================
   NAV MENU
========================================================= */

.navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar .navbar-nav > li > .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 31px 18px !important;

    color: var(--black-color2);
    background: transparent;

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;

    text-transform: capitalize;
    text-decoration: none;

    transition: 0.3s ease;
}

/* Bottom Active Line */

.navbar .navbar-nav > li > .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;

    height: 3px;

    background: var(--primary-color);

    transform: scaleX(0);
    transform-origin: center;

    transition: 0.3s ease;
}

/* Hover */

.navbar .navbar-nav > li > .nav-link:hover,
.navbar .navbar-nav > li > .nav-link.active {
    color: var(--primary-color);
}

.navbar .navbar-nav > li > .nav-link:hover::after,
.navbar .navbar-nav > li > .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Arrow */

.navbar .nav-link > i {
    font-size: 8px;
    transition: 0.3s ease;
}

.navbar .dropdown:hover > .nav-link > i {
    transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN
========================================================= */

.navbar .navbar-nav > .dropdown {
    position: relative;
}

.navbar .navbar-nav > .dropdown > .dropdown-menu {
    position: absolute;

    top: calc(100% + 1px);
    left: 0;

    width: 285px;

    padding: 0px 0 !important;
    margin: 0;

    background: var(--white-color);

    border: 1px solid var(--border-color) !important;
    border-top: 3px solid var(--primary-color) !important;

    border-radius: 0 !important;

    box-shadow: 0 18px 45px rgba(7, 60, 119, 0.13);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    display: block;
}
/* Equipment Dropdown Scroll */
.nav-item.dropdown .dropdown-menu {
    max-height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar */
.nav-item.dropdown .dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.nav-item.dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: var(--gray-color2);
}

.nav-item.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.nav-item.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondry-color);
}

/* Desktop Hover */

@media (min-width: 992px) {
    .navbar .navbar-nav > .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown Item */

.navbar .navbar-nav > .dropdown > .dropdown-menu > li {
    border-bottom: 1px solid #edf3f9;
}

.navbar .navbar-nav > .dropdown > .dropdown-menu > li:last-child {
    border-bottom: none;
}

.navbar .navbar-nav > .dropdown > .dropdown-menu > li > .dropdown-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 42px;

    padding: 10px 18px !important;

    background: var(--white-color);

    color: var(--black-color2);

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 650;

    text-transform: capitalize;

    transition: 0.25s ease;

    overflow: hidden;
}

/* Number */

.navbar .dropdown-item span {
    min-width: 28px;

    color: var(--primary-color);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;

    transition: 0.25s ease;
}

/* Left Hover Line */

.navbar .dropdown-item::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--third-color);

    transform: scaleY(0);
    transform-origin: bottom;

    transition: 0.25s ease;
}

/* Hover */

.navbar .dropdown-item:hover {
    background: var(--gray-color2) !important;
    color: var(--primary-color) !important;
    padding-left: 22px !important;
}

.navbar .dropdown-item:hover::before {
    transform: scaleY(1);
}

.navbar .dropdown-item:hover span {
    color: var(--third-color);
}

/* =========================================================
   GET QUOTE
========================================================= */

.get_quote_btn {
    margin-left: 22px;
}

.get_quote_btn a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-width: 142px;

    padding: 13px 18px;

    background: var(--primary-gradient);

    color: var(--white-color);

    border-radius: 3px;

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    overflow: hidden;

    transition: 0.3s ease;

    box-shadow: 0 8px 22px rgba(12, 78, 151, 0.18);
}

.get_quote_btn a::before {
    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    top: 0;
    left: 0;

    background: rgba(255, 255, 255, 0.12);

    transition: 0.35s ease;
}

.get_quote_btn a span,
.get_quote_btn a i {
    position: relative;
    z-index: 1;
}

.get_quote_btn a i {
    font-size: 12px;
    transition: 0.3s ease;
}

.get_quote_btn a:hover {
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(12, 78, 151, 0.25);
}

.get_quote_btn a:hover::before {
    width: 100%;
}

.get_quote_btn a:hover i {
    transform: translateX(4px);
}

/* =========================================================
   MOBILE NAVBAR
========================================================= */

.navbar-toggler {
    width: 44px;
    height: 42px;

    padding: 0;

    border: 1px solid var(--border-color) !important;
    border-radius: 3px;

    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(42, 127, 216, 0.12) !important;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}

/* haeder navbar css end */

/* mobile menu css start */
.mobile_view_header_div_main {
    padding: 4px 0px;
    display: none;
}

/* mobile header fixed */
.mobile_view_header_div_main {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white-color);
}

.mobile_view_flex_main_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navbar-brand {
    display: flex;
    align-items: center;
}

.mobile-navbar-brand > img {
    height: 61px;
    object-fit: contain;
}

.mobile-navbar-brand > span {
    margin-left: 17px;
    display: inline-block;
    line-height: 23px;
}

.mobile-navbar-brand > span > strong {
    font-size: 17px;
    color: var(--primary-color);
    display: block;
}

.mobile-navbar-brand > span > small {
    font-size: 13px;
    letter-spacing: 3.8px;
    color: var(--black-color);
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.phone_view_icons_div > a {
    text-align: center;
    color: var(--black-color);
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    font-size: 20px;
    border-radius: 100px;
}
/* =========================================================
   MOBILE OFFCANVAS NAVIGATION
========================================================= */

.mobilenav_sidebar_section {
    position: relative;
    z-index: 99999;
}

/* =========================================================
   OFFCANVAS
========================================================= */

.mobilenav_sidebar_section > .offcanvas {
    width: 390px;
    max-width: 92%;
    z-index: 99999;

    padding: 0 !important;

    background: var(--secondry-color);

    border: none !important;
    outline: none !important;

    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.18);

    color: var(--white-color);
}

/* =========================================================
   HEADER
========================================================= */

.mobilenav_sidebar_section > .offcanvas > .offcanvas-header {
    position: relative;

    min-height: 78px;

    padding: 8px 18px !important;

    background-color: var(--gray-color);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Small top accent */

.mobilenav_sidebar_section > .offcanvas > .offcanvas-header::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 55px;
    height: 3px;

    background: var(--four-color);
}

/* Logo */

.mobilenav_sidebar_section > .offcanvas > .offcanvas-header > h5 {
    margin: 0 !important;
}

.mobilenav_sidebar_section > .offcanvas > .offcanvas-header > h5 > a {
    display: inline-flex;
    align-items: center;
}

.mobilenav_sidebar_section > .offcanvas > .offcanvas-header > h5 > a > img {
    height: 55px;
    width: auto;

    object-fit: contain;

    transition: 0.3s ease;
}

.mobilenav_sidebar_section
    > .offcanvas
    > .offcanvas-header
    > h5
    > a:hover
    > img {
    transform: scale(1.02);
}

.mobilenav_sidebar_section > .offcanvas .accordion-body{
    padding: 0px !important;
}

/* =========================================================
   CLOSE BUTTON
========================================================= */



.mobile_sidebar_close {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;

    background:var(--primary-color) !important;

    color: var(--white-color) !important;

    font-size: 14px;

    padding: 0 !important;

    box-shadow: none !important;
    outline: none !important;

    transition: 0.35s ease;
}

.mobile_sidebar_close:hover {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;

    border-color: var(--white-color) !important;

    transform: rotate(90deg);
}

/* =========================================================
   OFFCANVAS BODY
========================================================= */

.mobilenav_sidebar_section > .offcanvas > .offcanvas-body {
    padding: 0 !important;

    background: var(--background-color);

    overflow-y: auto;
}

/* Scrollbar */

.mobilenav_sidebar_section > .offcanvas > .offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

.mobilenav_sidebar_section
    > .offcanvas
    > .offcanvas-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

.mobilenav_sidebar_section
    > .offcanvas
    > .offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--third-color);
}

/* =========================================================
   MAIN MENU
========================================================= */

.mobilenav_sidebar_main_div {
    margin: 0;
    padding: 12px 16px 5px;
    
}

.mobilenav_sidebar_main_div > ul {
    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
}

/* Normal menu item */

.mobilenav_sidebar_main_div > ul > li {
    position: relative;

    list-style: none;

    padding: 0 !important;
    margin: 0;

}

/* Normal links */

.mobilenav_sidebar_main_div > ul > li > a {
    position: relative;

    min-height: 52px;

    padding: 0 7px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--black-color);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;

    text-transform: capitalize;
    text-decoration: none;

    transition: 0.3s ease;
}

/* Menu icon */

.mobilenav_sidebar_main_div > ul > li > a > i {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    color: var(--black-color);

    font-size: 11px;

    transition: 0.3s ease;
}

/* Hover */

.mobilenav_sidebar_main_div > ul > li > a:hover {
    color: var(--primary-color);

    padding-left: 12px;
}

.mobilenav_sidebar_main_div > ul > li > a:hover > i{
    background: var(--third-color);
    color: var(--white-color);

    transform: translateX(2px);
}

/* =========================================================
   ACCORDION WRAPPER
========================================================= */

.mobilenav_sidebar_main_div > ul > .accordion {
    margin: 0 !important;
    padding: 0 !important;

    border: none !important;

    background: transparent !important;

    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

/* Accordion item */

.mobilenav_sidebar_main_div > ul > .accordion > .accordion-item {
    margin: 0 !important;

    border: none !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;

    background: transparent !important;

    border-radius: 0 !important;
}

/* =========================================================
   ACCORDION HEADER
========================================================= */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent !important;

    border: none !important;

    padding: 0 7px;

    position: relative;
}

/* Category link */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header
    > a {
    width: calc(100% - 45px);

    min-height: 52px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--black-color);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;

    text-transform: capitalize;
    text-decoration: none;

    transition: 0.3s ease;
}

/* Category icon */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header
    > a
    > i {
     width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    color: var(--black-color);

    font-size: 11px;

    transition: 0.3s ease;
}

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header
    > a:hover{
        color: var(--primary-color);

    padding-left: 12px;
    }

    .mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header
    > a:hover > i{
 background: var(--third-color);
    color: var(--white-color);

    transform: translateX(2px);
        
    }
/* =========================================================
   ACCORDION TOGGLE
========================================================= */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-header
    > .toggle-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: var(--black-color);

    font-size: 10px;

    transition: 0.35s ease;
}

/* Remove duplicate FA generated content */

.toggle-icon::before {
    font-weight: 900;

    content: "" !important;

    transition: 0.35s ease;
}

/* Open state */

.toggle-icon[aria-expanded="true"]::before {
    content: "" !important;
}

.toggle-icon[aria-expanded="true"] {
    background: var(--third-color);

    border-color: var(--third-color);

    transform: rotate(0deg);
}

/* =========================================================
   ACCORDION BODY
========================================================= */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-collapse {
    background: rgba(0, 0, 0, 0.1);
}

/* Body */

.mobilenav_sidebar_main_div
    > ul
    > .accordion
    > .accordion-item
    > .accordion-body {
    padding: 4px 0 8px !important;

    background: rgba(0, 0, 0, 0.13) !important;
}

/* =========================================================
   SUB MENU
========================================================= */

.accrodion_dropdown_mobile_menu_div {
    padding: 0 8px 0 8px;
}

.accrodion_dropdown_mobile_menu_div > ul {
    list-style: none !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* Sub item */

.accrodion_dropdown_mobile_menu_div > ul > li {
    list-style: none;

    padding: 0 !important;
    margin: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.accrodion_dropdown_mobile_menu_div > ul > li:last-child {
    border-bottom: none;
}

/* Sub link */

.accrodion_dropdown_mobile_menu_div > ul > li > a {
    min-height: 42px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 7px 5px !important;

    color: var(--black-color);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;

    text-transform: capitalize;
    text-decoration: none;

    transition: 0.3s ease;
}

/* Sub icon */

.accrodion_dropdown_mobile_menu_div > ul > li > a > i {
    color: var(--black-color);

    font-size: 8px;

    transition: 0.3s ease;
}

/* Sub hover */

.accrodion_dropdown_mobile_menu_div > ul > li > a:hover {
    color: var(--primary-color);

    padding-left: 10px !important;
}

.accrodion_dropdown_mobile_menu_div > ul > li > a:hover > i {
    color: var(--primary-color);

    transform: translateX(3px);
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */



/* Contact card */

.sidebar_media_object_main_div {
    position: relative;

    margin-bottom: 10px;

    padding: 13px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 5px;

    transition: 0.3s ease;
}

/* If existing HTML doesn't have wrapper */

.mobilenav_sidebar_section .sidebar_media_object_main_div {
    margin-left: 16px;
    margin-right: 16px;
     background: rgba(255, 255, 255, 0.07);

    border-color: rgba(109, 183, 242, 0.25);
}

.sidebar_media_object_main_div:hover {
    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(109, 183, 242, 0.25);

    transform: translateY(-1px);
}

/* Contact icon */

.sidebar_media_object_main_div > .d-flex > .flex-shrink-0 > span {
    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--third-color)
    );

    color: var(--white-color);

    font-size: 14px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

/* Content */

.sidebar_media_content_div > h5 {
    margin: 0 0 4px !important;

    color: var(--black-color);

    font-family: var(--body-font);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.sidebar_media_content_div > a {
    display: block;

    color: var(--black-color);

    font-family: var(--body-font);

    font-size: 13px;
    line-height: 18px;

    font-weight: 600;

    text-decoration: none;

    word-break: break-word;

    transition: 0.3s ease;
}

.sidebar_media_content_div > a:hover {
    color: var(--four-color);
}

.sidebar_media_content_div > p {
    margin: 0 !important;

    color: var(--black-color);

    font-family: var(--body-font);

    font-size: 13px;
    line-height: 18px;

    font-weight: 500;
}

/* =========================================================
   OFFCANVAS BACKDROP
========================================================= */





/* =========================================================
   MOBILE WIDTH
========================================================= */

@media (max-width: 575px) {
    .mobilenav_sidebar_section > .offcanvas {
        width: 88%;
        max-width: 350px;
    }

    .mobilenav_sidebar_section > .offcanvas > .offcanvas-header {
        min-height: 70px;
        padding: 7px 14px !important;
    }

    .mobilenav_sidebar_section > .offcanvas > .offcanvas-header > h5 > a > img {
        height: 51px;
    }

    .mobile_sidebar_close {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .mobilenav_sidebar_main_div {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mobilenav_sidebar_section .sidebar_media_object_main_div {
        margin-left: 12px;
        margin-right: 12px;
    }
}