@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  /* Fonts */
  --body-font: "Inter Tight", sans-serif;
  --heading-font: "Poppins", sans-serif;
  /* Theme Colors */
  --primary-color: #012195;
  --secondary-color: #011e40;
  --secondary-color: #fd793d;
  /* Base Colors */
  --color-white: #ffffff;
  --color-dark: #1E232A;
  --color-text: #484c54;
  --light-bg: #F6F6F6;
  /* Accent */
  --color-yellow: #FBA707;
  --color-red: #F05454;
  /* UI */
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --transition: all .3s ease-in-out;
  --border-radius:10px;
}


*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  #e98720;
  margin: 0px;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 1.2;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/*  */

.split-heading,
.split-heading *,
.split-heading .char {
    text-transform: none !important;
    display: inline-block !important;

}
.header{
  position: relative;
  z-index: 4;
  background-color: #e98720;
}

.header-top{
    padding: 5px 0px;
}


.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.header-top-list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.header-top-list a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .3px;
}

.header-top-list a:hover{
  color: var(--color-white)
}

.header-top-list a i{
  color: var(--color-gray);
  margin-right: 5px;
}

.header-top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.header-top-right .header-top-list i{
  color: var(--color-white);
}

.header-top-social span{
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.header-top-social a {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-white);
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: var(--border-radius);
  margin: 0px 7px 0px 0px;
}

.header-top-social a:hover {
  color: var(--color-white);
}

.header-top-lang a{
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-top-lang img{
  width: 18px;
}

.header-top-lang .top-lang{
  color: var(--color-white);
}

.header-top-lang .dropdown-menu{
  min-width: 115px;
  border-radius: 15px;
  padding: 10px;
  border: none;
  box-shadow: var(--box-shadow);
}

.header-top-lang .dropdown-item{
  padding: 2px 5px 2px 5px ;
  color: var(--color-dark);
  border-radius: 50px;
}

.header-top-lang .dropdown-item:hover{
  background: var(--primary-color);
  color: var(--color-white);
}

@media all and (max-width: 1199px) {
  .header-top-list ul {
    gap: 10px;
  }

  .header-top-left .header-top-list li:last-child{
    display: none;
  }

  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }

  .header-top-left {
    margin-right: 5px;
  }
}

@media all and (max-width: 991px) {
  .header-top-list ul {
    gap: 0px;
  }

  .header-top-list ul li{
    margin-right: 10px;
  }

  .header-top-list ul li:last-child{
    display: none;
  }

  .header-top-social span{
    display: none;
  }
}


/* header navbar css start */

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

.navbar {
    position: relative;
    background: #fff !important;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 999;
}

.navbar.fixed{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    animation: fadeSlideDown .4s ease;
}

@keyframes fadeSlideDown{
    from{
        opacity:0;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.navbar-brand img{
    height:78px;
    object-fit:contain;
}

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

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

.navbar-nav>.nav-item>.nav-link{
    font-size:15px;
    font-weight:600;
    color:#222;
    padding:38px 22px !important;
    transition:.3s;
    position:relative;
}

.navbar-nav>.nav-item>.nav-link:hover{
    color:var(--secondary-color);
}

.navbar.fixed .nav-link{
    color:#222;
}

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

.main-layer{
    position:absolute;
    top:100%;
    left:0;

    min-width:290px;

    background:#fff;
    border:none;
    /* border-radius:12px; */
    /* padding:10px 0; */

    display:block;
    border-radius: 0 !important;
    visibility:hidden;
    opacity:0;

    transform:translateY(15px);

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    z-index:999;
}

.custom-nested-dropdown:hover>.main-layer{
     padding: 0;
    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

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

.main-layer li{
    position:relative;
    list-style:none;
}

.main-layer .dropdown-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* space-between hatao */
    gap: 12px;
    padding: 13px 22px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    background: transparent;
    white-space: nowrap;
}

.main-layer .dropdown-item i:first-child{
    color:var(--secondary-color);
    font-size:15px;
    width:20px;
}

.main-layer .dropdown-item .fa-chevron-right{
    font-size:12px;
    transition:.3s;
}

.main-layer .dropdown-item:hover{

    background:var(--secondary-color);
    color:#fff;

}

.main-layer .dropdown-item:hover i{
    color:#fff;
}

.main-layer .dropdown-item:hover .fa-chevron-right{
    transform:translateX(4px);
}

/* ===========================
   SECOND LEVEL
=========================== */

.nested-layer{
    position:absolute;
    left:100%;
    top:0;
    min-width:270px;
    background:#fff;
    border:none;
    padding:0;
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateX(15px);
    transition:.35s;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border-radius: 0 !important;
}

.dropend-custom:hover>.nested-layer{
    padding: 0;
    opacity:1;
    visibility:visible;
    transform:translateX(0);

}

/* ===========================
   THIRD LEVEL
=========================== */

.nested-layer .nested-layer{

    left:100%;
    top:0;

}

/* ===========================
   HOVER BG
=========================== */

.dropend-custom:hover>.dropdown-item{

    background:var(--secondary-color);
    color:#fff;

}

.dropend-custom:hover>.dropdown-item i{
    color:#fff;
}

/* ===========================
   ICONS
=========================== */

.dropdown-item .fa-servicestack{
    color:var(--secondary-color);
    margin-right:10px;
}

.dropdown-item:hover .fa-servicestack{
    color:#fff;
}

.dropdown-item .fa-chevron-right{
    margin-left:auto;
}

/* ===========================
   DOWNLOAD BUTTON
=========================== */

.navbar_btn_div{

    background:#e98720;
    padding:10px 22px;
    border-radius:8px;
    transition:.3s;

}

.navbar_btn_div a{

    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;

}

.navbar_btn_div:hover{

    background:var(--secondary-color);

}

.dropdown-toggle::after{
    display: none;
}



/* mobile navigation css start */

.mobile-sidebar{
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: .35s ease;
}

.mobile-sidebar.active{
    visibility: visible;
    opacity: 1;
}

.mobile-sidebar-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: .35s;
}

.mobile-sidebar.active .mobile-sidebar-overlay{
    opacity: 1;
}


.mobile-navbar-brand img{
    height: 44px;
    width: 100%;
}

.mobile_view_flex_main_div {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.mobile_view_flex_main_div .menu-toggle{
    border: none;
    font-size: 25px;
    background-color: var(--color-white);
}

/*sidebar box=*/
.mobile-sidebar-content{
    position: absolute;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: var(--color-white);
    overflow-y: auto;
    transition: .4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);

    /* Hide scrollbar */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE & Edge */
}

.mobile-sidebar-content::-webkit-scrollbar{
    display: none;              /* Chrome, Safari */
}

.mobile-sidebar.active .mobile-sidebar-content{
    left: 0;
}

/*===============================
 Header
================================*/

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid #eee;
}

.sidebar-header img{
   height: 44px;
    width: 100%;
}

.sidebar-close{
    width:40px;
    height:40px;
    border:none;
    background:#f4f4f4;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.sidebar-close:hover{
    background:var(--color-yellow);
    color:#fff;
}

.sidebar-close i{
    font-size:20px;
}

/*===============================
 Menu
================================*/

.sidebar-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-menu li{
    position:relative;
    border-bottom:1px solid #f1f1f1;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 22px;
    color:#222;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.sidebar-menu a:hover{
    background:var(--color-yellow);
    color:#fff;
}

.sidebar-menu a i{
    width:18px;
    text-align:center;
    font-size:15px;
}

/*===============================
 Dropdown Button
================================*/

.submenu-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:none;
    background:none;
    padding:16px 22px;
    cursor:pointer;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.submenu-btn span{
    display:flex;
    align-items:center;
    gap:12px;
}

.submenu-btn:hover{
    color:var(--color-yellow);
    /* color:var(--color-white); */
    /* background-color: #d6b161; */
}

.arrow{
    transition:.35s;
}

.has-submenu.open>.submenu-btn .arrow{
    transform:rotate(180deg);
}
.menu-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

.menu-link{
    flex:1;
    display:flex;
    align-items:center;
    padding:14px 20px;
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
}

.menu-link span{
    display:flex;
    align-items:center;
    gap:10px;
}

.submenu-btn{
    width:45px;
    height:45px;
    border:none;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
}

.submenu-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 45px;
    text-decoration:none;
    color:#444;
    font-size:14px;
}

.submenu .submenu .submenu-link{
    padding-left:70px;
}

.has-submenu.open > .menu-item .arrow{
    transform:rotate(180deg);
}

.arrow{
    transition:.3s ease;
}

/*===============================
 Button Area
================================*/

.sidebar-btn{
    padding:25px 20px;
}

.sidebar-btn a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    background:var(--color-yellow);
    color:#fff;
    text-decoration:none;
    padding:15px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.sidebar-btn a:hover{
    background:#111;
}


/*==========================
 Sidebar Contact
===========================*/

.sidebar-contact{
    padding:25px 0px;
    border-top:1px solid #ececec;
}

.sidebar_media_object_main_div{
    padding:15px;
    margin-bottom:15px;
}

.sidebar_media_object_main_div:hover{
    border-color:var(--color-yellow);
}

.sidebar_media_object_main_div:last-child{
    margin-bottom:0;
}

/* Icon */

.sidebar_media_object_main_div .flex-shrink-0{
    width:48px;
    height:48px;
    border-radius:15%;
    background:var(--color-yellow);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.sidebar_media_object_main_div .flex-shrink-0 span{
    color:#fff;
    font-size:18px;
}

/* Content */

.sidebar_media_content_div h6{
    margin:0 0 6px;
    font-size:15px;
    font-weight:600;
    color:var(--color-dark);
    line-height:1.4;
}

.sidebar_media_content_div a{
    display:block;
    text-decoration:none;
    color:var(--color-text);
    font-size:15px;
    line-height:1.8;
    transition:.3s;
    word-break:break-word;
    font-weight: 500;
}

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

.sidebar_media_content_div p{
    margin:0;
    color:var(--color-text);
    font-size:15px;
    line-height:1.7;
    font-weight: 500;
}

/*==========================
 Responsive
===========================*/

@media(max-width:576px){

    .sidebar-contact{
        padding:20px 15px;
    }

    .sidebar_media_object_main_div{
        padding:12px;
    }

    .sidebar_media_object_main_div .flex-shrink-0{
        width:42px;
        height:42px;
    }

    .sidebar_media_object_main_div .flex-shrink-0 span{
        font-size:16px;
    }

    .sidebar_media_content_div h6{
        font-size:14px;
    }

    .sidebar_media_content_div a,
    .sidebar_media_content_div p{
        font-size:13px;
    }

}
/*active state*/

.sidebar-menu li.active > a{
    background:var(--color-yellow);
    color:#fff;
}

.sidebar-menu li.active > a i{
    color:#fff;
}

/*smooth animation layer*/

.sidebar-menu a,
.submenu-btn{
    position:relative;
    overflow:hidden;
}

.sidebar-menu a::after,
.submenu-btn::after{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:rgba(247, 246, 207, 0.08);
    transition:.4s;
}

.sidebar-menu a:hover::after,
.submenu-btn:hover::after{
    left:0;
}

/*soft shadow layer*/

.mobile-sidebar-content{
    border-right:1px solid #eee;
}




/*submenu slide effect*/

.submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    display:block;
}

.has-submenu.open > .submenu{
    max-height:700px;
}

/*===============================
 Top Branding Strip (Optional Look)
================================*/

.sidebar-header{
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
}

/*===============================
 Glow Button Effect
================================*/

.sidebar-btn a{
    box-shadow:0 6px 20px rgba(0,166,81,.25);
}

.sidebar-btn a:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/*===============================
 Contact Hover Card Feel
================================*/

/* .sidebar-contact a{
    padding:10px 12px;
    border-radius:8px;
} */

.sidebar-contact a:hover{
    color:var(--secondary-color);
}

/*icon*/

.sidebar-contact i{
    background:#eafff2;
    padding:8px;
    border-radius:50%;
}

/*responsive*/

@media (max-width:480px){

    .mobile-sidebar-content{
        width:280px;
    }

    /* .sidebar-header img{
        width:130px;
    } */

    .sidebar-menu a,
    .submenu-btn{
        padding:14px 18px;
        font-size:14px;
    }

}

/*dark mode*/
/*
.dark .mobile-sidebar-content{
    background:#121212;
    color:#fff;
}

.dark .sidebar-menu a{
    color:#ddd;
}

.dark .sidebar-menu a:hover{
    background:#00a651;
    color:#fff;
} */

/*end css*/
