
body {
  /* background: var(--secbgcolor); */
  background: #fff;
  color: #555;
}

body {
  /* font-family: "Open Sans", sans-serif; */
  font-family: 'Poppins' !important;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased !important;
  font-size: 16px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  color: #212121;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased !important;
  margin-bottom: 0px !important;
}

h1 {
  font-size: 36px;
  line-height: 48px;
}

h2 {
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

h4 {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: -.2px;
}



.alert .icon {
  margin-right: 15px;
}





 /* animation_styles */

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}
.active.fade-up {
  animation: fade-up 1s ease-in;
}

@keyframes fade-up {
  0% {
      transform: translateY(-50px);
      opacity: 0;
  }

  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
@keyframes fade-bottom {
  0% {
      transform: translateY(50px);
      opacity: 0;
  }

  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fade-left {
  0% {
      transform: translateX(-30px);
      opacity: 0;
  }

  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
@keyframes fade-right {
  0% {
      transform: translateX(30px);
      opacity: 0;
  }

  100% {
      transform: translateX(0);
      opacity: 1;
  }
}






 /* Theme Switcher styles Start */
        /* Default Variables for Light Theme */
        /* * {
          transition: all 0.2s linear;
        } */
             
             
        :root {
          /* cus styles start */
          --textwhite: #ffffff;
          --textblack: #000;
          --themecolor: rgb(255 177 0);
          --themebgcolor: #0a1860;
          --linkcolor: #ffffff;
          --dropbg: rgba(255, 204, 0, 1);
          --dropcolor: #ffffff;
          --linkhover: #ff0000;
         --text-color: #000000;
         /* --backgroundlg: linear-gradient(90deg, rgb(3 30 105) 6%, rgb(237 127 33) 64%); */
         --backgroundlg: linear-gradient(90deg, rgba(255, 204, 0, 1) 0%, rgb(255 147 54) 43%);
         --backgroundlg_light: radial-gradient(178.94% 106.41% at 26.42% 106.41%, #FFF7B1 0%, rgba(255, 255, 255, 0) 71.88%), #FFFFFF;
         --beforebgcolor: rgba(255, 204, 0, 1);
         --secbgcolor: radial-gradient(circle, rgba(0,123,255,0.15), transparent 200%);
         /* --secbgcolor: rgb(255 246 230); */
         /* --secbgcolor: #fff7dc; */
         --sectitleborder: rgba(255, 204, 0, 1);
         --text_active: #967a09;
         --lite_bg: #ffe176;
      
         /* --backgroundlg: linear-gradient(270deg, rgba(255,90,0,1) 0%, rgba(255,54,0,1) 100%); */
         /* --backgroundlg: linear-gradient(135deg, #F97F37, #FFCA70); */
        
       

     }
     

     /* Global Styles */

     /* cus styles start */
     #light {
         background-color: #f1f1f1;
     }

     #dark {
         background-color: #000000;
     }

     #modern {
         background-color: #b41515;
     }

     #retro {
         background-color: #ffcc00;
     }

     #high-contrast {
         background-color: #ff1802;
     }
     #green{
       background-color: rgb(0 96 66);
     }
     #brown{
       background-color: rgb(84 43 0);
     }
     #blue{
       background-color:#00308F;
     }

     .header-top {
         background: var(--backgroundlg) !important;
     }

     .header-top .nav-item {
         color: var(--text-color) !important;
     }

     .header-top .nav-item a {
         color: var(--text-color) !important;
     }

     .menuheader {
         background-color: var(--themebgcolor) !important;
         /* color:var(--text-color) !important; */
     }

/* Base nav item styling */
.navbar .navbar-nav .nav-item {
    position: relative;
    color: var(--themecolor) !important;
}

/* Default link style */
.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 8px 8px !important;
    font-size: 14px;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: color .3s ease-in-out;
    color: var(--textwhite) !important;
}

/* Animated background */
.navbar .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--linkhover);
    transition: width .3s ease-in-out;
    z-index: -1;
    /* border-radius: 16px; */
}

/* On hover & active - fill background */
.navbar .navbar-nav .nav-item:hover .nav-link::before,
.navbar .navbar-nav .nav-item.active .nav-link::before {
    width: 100%;
}

/* Text color change when active or hover */
.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--textwhite) !important;
}

/* Dropdown hover style */
.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--dropbg) !important;
    color: var(--dropcolor) !important;
}

/* Optional: Adjust palette button */
.plaette-colors {
    top: 20px !important;
}


     .colors {
         margin: 5px !important;
     }

   

     .welcome h3:before {
         background-color: var(--beforebgcolor);
     }

     .section-title h3 {
         color: var(--themecolor);
         background-color: var(--secbgcolor);
         border: 1px solid var(--sectitleborder) !important
     }
     .helpdesk{
         margin-top: 215px !important;
     }
     .helpdesk,
     .helpinnerdiv,
     .helpdesktext,
     .helpdesktext2 {
         background-color: var(--themebgcolor);
     }

     .helpdesktext,
     .helpdesktext2 {
         color: var(--textwhite);
     }

     .helpdetails h1 {
         color: var(--themecolor);
     }


     .bg_carousel_u {
         background: var(--backgroundlg) !important;
     }

     .bg_carousel_u .border.border-2 {
         border: 2px solid var(--sectitleborder) !important;
     }

     .svg-inline--fa.fa-chevron-left,
     .svg-inline--fa.fa-chevron-right {
         color: var(--themecolor) !important;
     }

     


     .color-switcher {
/* position: fixed;
top: 95px;
right: -155px;
width: 155px;
padding: 10px;
background: #fff;
z-index: 1000; */
position: fixed;
top: 160px;
/* right: -155px; */
right: 0px;
left: -155px;
width: 155px;
padding: 10px;
background: #fff;
z-index: 1000;
}
.color-switcher.active {
left: 0px;
}
.color-switcher h3 {
color: var(--textwhite);
font-size: 16px;
margin-bottom: 10px;
border-bottom: 1px solid #3333;
padding: 5px 0;
text-align: center;
background: var(--themecolor);
border-radius: 8px;
}
.color-switcher .switcher-btn {
 /* position: absolute;
 top: 65%;
 left: -48px;
 color: var(--textwhite);
 background: var(--beforebgcolor);
 padding: 0px 10px;
 cursor: pointer;
 font-size: 35px;
 border-top-left-radius: 10px;
 border-bottom-left-radius: 10px; */
 position: absolute;
 top: 70%;
 left: 155px;
 color: var(--textwhite);
 background: var(--textwhite);
 padding: 0px 10px;
 padding-bottom: 0px;
 cursor: pointer;
 font-size: 28px;
 border-top-right-radius: 10px;
 border-bottom-right-radius: 10px;
}
.color-switcher .theme-buttons-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
@keyframes rotate {
100% {
 transform: rotate(360deg);
}
}
.color-switcher .switcher-btn img{
animation: rotate 2s linear infinite;
color: #fff;
font-size: 25px;
}
/* .color-switcher .switcher-btn .svg-inline--fa.fa-palette{
animation: rotate 2s linear infinite;
color: #fff;
font-size: 25px;
} */
/* .color-switcher .switcher-btn .svg-inline--fa.fa-screwdriver-wrench {
animation: rotate 2s linear infinite;
} */
/* .color-switcher .switcher-btn .svg-inline--fa.fa-gear {
animation: rotate 2s linear infinite;
} */
.color-switcher .theme-buttons-container .theme-buttons {
display: block;
height: 30px;
width: 30px;
border-radius: 50%;
margin: 5px;
cursor: pointer;
}

/* Theme Switcher styles End */


/* Global styles
================================================== */
html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
}

.body-inner {
  position: relative;
  overflow: hidden;
}

.preload {
  position: fixed;
  background: #fff url(../images/preload.gif) center center no-repeat;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

a:link,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
  transition: .2s ease;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a.read-more {
  color: #ffb600;
  font-weight: 700;
  text-transform: uppercase;
}

a.read-more:hover {
  color: #222;
}

/* section,
.section-padding {
  padding: 30px 0;
  position: relative;
} */

.no-padding {
  padding: 0;
}

.gap-60 {
  clear: both;
  height: 60px;
}

.gap-40 {
  clear: both;
  height: 40px;
}

.gap-30 {
  clear: both;
  height: 30px;
}

.gap-20 {
  clear: both;
  height: 20px;
}

.mrb-30 {
  margin-bottom: 30px;
}

.mrb-80 {
  margin-bottom: -80px;
}

.mrt-0 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.pab {
  padding-bottom: 0;
}

a:focus {
  outline: 0;
}

.ts-padding {
  padding: 60px;
}

.solid-bg {
  background: #f9f9f9;
}

.dark-bg {
  background: #252525;
  color: #fff;
}

.dark-bg h2,
.dark-bg h3 {
  color: #fff;
}

.solid-row {
  background: #f0f0f0;
}

.bg-overlay {
  position: relative;
}

.bg-overlay .container {
  position: relative;
  z-index: 1;
}

.bg-overlay:after {
  background-color: rgba(0, 46, 91, 0.8);
  z-index: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.bg-overlay:after {
  position: relative;
}

.bg-overlay:after {
  background-color: var(--themebgcolor);
  /* background-color: var(--secbgcolor); */
  z-index: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.content-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  overflow: hidden;
}


.logo h2{
  font-size: 25px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ff0000;
}

.bg_c_gray{
  background-color:rgb(0 0 0 / 55%);
  /* background-color: rgba(0, 0, 0, .5); */
  /* padding: 10px 0px; */
  border-radius: 30px;
}
/* Dropcap */
.dropcap {
  font-size: 48px;
  line-height: 60px;
  padding: 0 7px;
  display: inline-block;
  font-weight: 700;
  margin: 5px 15px 5px 0;
  position: relative;
  text-transform: uppercase;
}

.dropcap.primary {
  background: #ffb600;
  color: #fff;
}

.dropcap.secondary {
  background: #3a5371;
  color: #fff;
}

/* Title */
.title {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
}

/* Title Border */
/* Section title */
.section-title {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
}

.section-sub-title {
  font-weight: 900;
  font-size: 36px;
  line-height: 46px;
  margin: 0 0 60px;
  color: #212121;
}

@media (max-width: 575px) {
  .section-sub-title {
    font-size: 28px;
  }
}

/* Column title */
.column-title {
  margin: 0 0 40px;
}

.column-title-small {
  font-size: 20px;
  margin: 0 0 25px;
}

/* Page content title */
.page-content-title.first {
  margin-top: 0;
}

/* Video responsive */
.embed-responsive {
  padding-bottom: 56.25%;
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Input form */
.form-label{
  color: var(--themebgcolor);
}
.form-control {
  box-shadow: none;
  border: 1px solid #dadada;
  /* padding: 5px 20px; */
  /* height: 44px; */
  background: none;
  color: #959595;
  font-size: 14px;
  /* border-radius: 0; */
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #ffb600;
}
.form-select {
  box-shadow: none;
  border: 1px solid #dadada;
  /* padding: 5px 20px; */
  /* height: 44px; */
  /* background: none; */
  color: #959595;
  font-size: 14px;
  /* border-radius: 0; */
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid #ffb600;
}

/* hr {
  background-color: #e7e7e7;
  border: 0;
  height: 1px;
  margin: 40px 0;
} */

.alert hr {
  background: initial;
  margin: initial;
  border-top: 1px solid;
  height: initial;
  margin-bottom: 1rem;
  opacity: .2;
}

blockquote {
  padding: 25px;
  margin: 20px 0;
  background: #f9f9f9;
  position: relative;
  border-left: 3px solid #ffb600;
  padding-left: 40px;
}

blockquote.text-center {
  border-top: 3px solid #ffb600;
  border-left: 0;
  padding-left: 25px;
  padding-top: 50px;
}

blockquote.text-center:before {
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

blockquote.text-right {
  border-right: 3px solid #ffb600;
  padding-right: 40px;
  border-left: 0;
  padding-left: 25px;
}

blockquote.text-right:before {
  left: auto;
  right: 5px;
}

blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-size: 28px;
  color: #E5E5E5;
  top: 5px;
  left: 5px;
  font-weight: 700;
  z-index: 0;
}

blockquote p {
  font-size: 14px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 0;
}

cite {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

/* Ul, Ol */
.list-round,
.list-arrow,
.list-check {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
}

.list-round li {
  line-height: 28px;
}

.list-round li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  margin-right: 10px;
  color: #ffb600;
  font-size: 12px;
}

.list-arrow {
  padding: 0;
}

ul.list-arrow li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  margin-right: 10px;
  color: #ffb600;
  font-size: 16px;
  font-weight: bold;
}

ul.list-check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  margin-right: 10px;
  color: #ffb600;
  font-size: 14px;
}



.pattern-bg {
  background: #f5f5f5 url(../images/crossword.png);
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

/* Button */
.btn:active, .btn:focus {
  box-shadow: none !important;
}

.btn-primary,
.btn-dark {
  border: 0;
  border-radius: 16px;
  padding: 12px 20px 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  transition: 350ms;
  font-size: 12px;
}

@media (max-width: 767px) {
  .btn-primary,
  .btn-dark {
    font-size: 12px;
  }
}

.btn-white.btn-primary {
  background: #fff;
  color: var(--themecolor);
  /* color: #ffb600; */
}

.btn-primary {
  background: var(--themecolor);
}

.btn-dark {
  background: #23282d;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
  background: #111;
  color: #fff;
}

.btn-primary:hover:active, .btn-primary:hover:focus,
.btn-dark:hover:active,
.btn-dark:hover:focus,
.btn-white.btn-primary:hover:active,
.btn-white.btn-primary:hover:focus {
  color: #fff;
  background-color: #111 !important;
}

.general-btn {
  margin-top: 50px;
}



.pattern-bg {
  background: #f5f5f5 url(../images/crossword.png);
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

/* Top Bar
================================================== */
/* social_icons */

.header-top ul{
  margin: 0px
}
.header-top ul.social-custom {
  margin-left: 20px
}

.header-top ul.social-custom li {
  padding: 0;
  margin: 0
}

.header-top ul.social-custom a {
  text-decoration: none !important;
  font-size: 0.75rem;
  /* display: inline-block; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
  background: #ffffff;
  color: #ff8c00;
  padding: 3px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 18px;
}

.header-top ul.social-custom a i {
  padding-right: 0;
  padding-top: 3;
}

.header-top ul.social-custom a:hover {
  background: #ff8c00;
  color: #fff
}

/* Header area
================================================== */
.header {
  background: var(--textwhite);
  position: relative;

  /* box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1); */
  padding: 2px;
}
.header-one .first_bg{
 background: var(--textwhite);
 /* background-image: url(../images/bg_images/hero-bg-768w.png); */
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
}

 .site-navigation {
    box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
  /* background: var(--textwhite) !important; */

  /* background: #fff; */
  /* background: var(--backgroundlg); */
  background: var(--themecolor);
  box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
}

.header-one .navbar-collapse {
  padding-left: 0;
}


@media (max-width: 991px) {
  .navbar-collapse.collapse {
    overflow-y: auto;
  }
}

.header-one ul.navbar-nav > li {
  padding-left: 0;
  /* margin-right: 5px; */
  /* padding-right: 30px; */
}

@media (max-width: 991px) {
  .header-one ul.navbar-nav > li {
    padding-right: 0;
  }
}

.header-one .logo-area {
  padding: 5px 0;
}

.navbar-fixed {
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
}

.header-two {
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 0;
}

.header-two .navbar-fixed {
  background-color: #fff;
}

ul.navbar-nav > li > a {
  /* padding: 15px 0 !important; */
  color: #fff;
}

@media (max-width: 991px) {
  ul.navbar-nav > li > a {
    padding: 12px 0 !important;
  }
  .navbar-nav {
    margin-bottom: 15px;
  }
}

ul.navbar-nav > li:hover > a,
ul.navbar-nav > li.active > a {
  color: #ffb600 !important;
}

/*-- Logo --*/
.logo .logo_one { 

   /* width: 90px;
   height: 90px; */
}
.logo .logo_one img {
  /* width: 70px; */
  height: 80px;
}
.logo2 .logo_one img {
  width: 50px;
  height: 54px;
}


/* header right */
.header-right {
  float: right;
}

ul.top-info-box {
  list-style: none;
  margin: 0;
  padding: 0;
  /* float: right; */
}

@media (max-width: 767px) {
  ul.top-info-box {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    align-items: center;
    padding: 0px 40px;
  }
}

ul.top-info-box li {
  position: relative;
  float: left;
  margin-left: 0;
  border-right: 1px solid #dedede;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 25px;
  margin-right: 25px;
}

@media (max-width: 767px) {
  ul.top-info-box li {
    border: 0;
    text-align: center;
    margin: 0;
    flex: 0 0 50%;
    padding: 0;
    margin-top: 10px;
  }
}

@media (max-width: 400px) {
  ul.top-info-box li {
    border: 0;
    text-align: center;
    margin: 0;
    flex: 0 0 100%;
    margin-top: 15px;
  }
}

ul.top-info-box li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

ul.top-info-box li.last {
  border-right: 0;
}

ul.top-info-box li .info-box span.info-icon {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  margin: 2px 5px 0 0;
  position: relative;
}

ul.top-info-box li .info-box .info-box-content {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  flex-direction: column;
}

ul.top-info-box li .info-box .info-box-title {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: normal;
}

ul.top-info-box li .info-box .info-box-subtitle {
  margin: 0;
  line-height: normal;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

/*-- Search start --*/
ul.top-info-box > li.nav-search {
  cursor: pointer;
  padding-left: 30px;
  margin-left: 30px;
}

ul.top-info-box > li.nav-search:before {
  position: absolute;
  content: '';
  background: #ddd;
  left: 0;
  width: 1px;
  height: 40px;
  top: 50%;
  margin-top: -10px;
}

ul.top-info-box > li.nav-search i {
  font-size: 20px;
  top: 10px;
  position: relative;
  cursor: pointer;
  color: var(--textwhite);
}

/* Main navigation */
.navbar-toggler {
  float: left;
  margin-top: 10px;
  padding: 12px;
}

.navbar {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
}

.navbar-toggler {
  margin: 10px 0;
  padding: 6px;
  border-radius: 0;
  font-size: 1rem;
  /* background: #ffb60047; */
  background: var(--themecolor);
  /* background: #ffb600; */
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-dark .navbar-toggler-icon,
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

ul.navbar-nav > li:hover > a,
ul.navbar-nav > li.active > a {
  color: #ffb600;
  position: relative;
}

ul.navbar-nav > li {
  /* padding: 0 13px; */
  position: relative;
}

@media (max-width: 1200px) {
  ul.navbar-nav > li {
    padding: 0 9px;
  }
  ul.navbar-nav > li .nav-link {
    font-size: 12px;
  }
}

.header-two .navbar-nav > .header-get-a-quote {
  top: -4px;
}

@media (max-width: 991px) {
  .header-two ul.navbar-nav > li {
    padding: 0;
    width: 100%;
  }
}

ul.navbar-nav > li:last-child {
  padding-right: 0;
}

ul.navbar-nav > li:last-child:after {
  background: none;
}

ul.navbar-nav > li > a:hover,
ul.navbar-nav > li > a:focus {
  background: none;
}

ul.navbar-nav > li > a i {
  font-weight: 700;
}

@media (max-width: 991px) {
  ul.navbar-nav > li > a i {
    float: right;
    background: #222;
    padding: 6px 10px;
    margin-top: 7px;
  }
  .header-two ul.navbar-nav > li > a i {
    color: #fff;
  }
  .header-two ul.navbar-nav > li.active > a i,
  .header-two ul.navbar-nav > li > a.active i {
    color: #ffb600;
  }
}

ul.navbar-nav > li > a:after,
ul.navbar-nav > li > a:after {
  display: none;
}

ul.navbar-nav > li > a {
  font-family: "Montserrat", sans-serif;
  color: #fff !important;
  text-rendering: optimizeLegibility;
  font-weight: 600 !important;
  /* text-transform: uppercase; */
  /* letter-spacing: -.2px; */
  font-size: 16px;
  margin: 0;
  /* line-height: 15px; */
  /* padding: 30px 0; */
  transition: 350ms;
}

.navbar-light ul.navbar-nav > li > a {
  color: #000 !important;
  font-size: 13px;
}

/* Dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
  border-radius: 0;
}

.dropdown-submenu > a:after {
  display: block;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  float: right;
  margin-top: 0;
  margin-right: -5px;
  border: 0;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.dropdown-menu {
  text-align: left;
  background: #fff;
  z-index: 100;
  min-width: 200px;
  border-radius: 0;
  border: 0;
  border-top: 2px solid #ffb600;
  /* padding: 0 20px; */
  margin: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

@media (max-width: 991px) {
  .dropdown-menu {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
}

.dropdown-menu-large {
  min-width: 400px;
}

.dropdown-menu-large > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-menu-large > li > ul > li > a {
  padding-left: 0;
}

.dropdown-menu-large > li > ul > li.active > a {
  color: #ffb600 !important;
}

.navbar-nav > li > .dropdown-menu a {
  background: none;
}

.dropdown-menu li a {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 13px;
  /* text-transform: uppercase; */
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding: 6px 6px;
  letter-spacing: .3px;
  border-bottom: 1px solid #e5e5e5;
  color: #333333;
}

@media (max-width: 991px) {
  .dropdown-menu li a {
    padding: 12px 0;
  }
}

.dropdown-menu li:last-child > a {
  border-bottom: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  color: #ffb600;
}

@media (min-width: 991px) {
  ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
  }
}

@media (min-width: 991px) {
  ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
    display: none;
  }
  ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > .dropdown-menu > .active > a {
  background: none;
  color: #ffb600;
}

/*-- Nav Search start --*/
.site-navigation .container,
.search-area {
  position: relative;
}

.search-area {
  min-height: 70px;
  padding-right: 0;
}

.nav-search {
  position: absolute;
  cursor: pointer;
  top: 13px;
  right: 18px;
  color: var(--textwhite);
}

@media (max-width: 991px) {
  .nav-search {
    top: 17px;
  }
}

.search-block {
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 300px;
  z-index: 10;
  margin-top: 0;
}

@media (max-width: 991px) {
  .search-block {
    top: 58px;
  }
}

.search-block .form-control {
  background-color: var(--secbgcolor);
  border: none;
  color: #000;
  width: 100%;
  height: 40px;
  padding: 0 12px;
}

.search-block .search-close {
color: #999;
    position: absolute;
    top: -46px;
    right: 0px;
    font-size: 32px;
    cursor: pointer;
    background: #ffffff;
    padding: 4px
}

@media (max-width: 991px) {
  .search-block .search-close {
    top: -46px;
  }
}

.search-area .nav-search {
  top: 23px;
}

.search-area .search-block .search-close {
  top: -50px;
}

.search-area .search-block {
  right: 0;
}

/* Get a quote */
.header-get-a-quote .btn-primary {
  padding: 12px 25px !important;
  font-size: 13px;
  border-radius: 3px;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 1200px) {
  .header-get-a-quote .btn-primary {
    padding: 12px !important;
  }
}

@media (max-width: 991px) {
  .header-get-a-quote .btn-primary {
    padding: 12px 30px !important;
  }
}

.header-get-a-quote .btn-primary:hover {
  background: #272d33;
  color: #ffb600 !important;
}

ul.navbar-nav > li.header-get-a-quote:hover > a:after {
  position: relative;
  content: no-close-quote;
}

/* Table of Content
==================================================
1.    Slider


/* Slider
================================================== */
/*-- Main slide --*/
.banner-carousel .banner-carousel-item {
  height: 379px;
  /* height: 670px; */
  /* height: 700px; */
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .banner-carousel .banner-carousel-item {
    height: 350px;

    /* height: 550px; */
  }
}

@media (max-width: 575px) {
  .banner-carousel .banner-carousel-item {
    height: 350px;

    /* height: 450px; */
  }
}

.slider-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide-title-box {
  font-size: 16px;
  line-height: 39px;
  background: #ffb600;
  color: #fff;
  display: inline-block;
  padding: 0 15px;
  margin: 0 0 10px;
}

.slide-title {
  font-size: 21px;
  line-height: 36px;
  font-weight: 300;
  color: #fff;
  margin: 20px 0 10px;
}

@media (max-width: 991px) {
  .slide-title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .slide-title {
    font-size: 16px;
  }
}

.slide-sub-title {
  font-style: normal;
  font-size: 35px;
  /* font-size: 60px; */
  line-height: 58px;
  margin: 20px 0;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

@media (max-width: 991px) {
  .slide-sub-title {
    font-size: 30px;
    /* font-size: 46px; */
  }
}

@media (max-width: 575px) {
  .slide-sub-title {
    font-size: 25px;
    /* font-size: 30px; */
    line-height: 30px;
  }
}

.slider-text {
  display: table;
  vertical-align: bottom;
  color: #fff;
  padding-left: 40%;
  width: 100%;
  padding-bottom: 0;
  padding-top: 20px;
}

.slider-text .slide-head {
  font-size: 36px;
  color: #0052a5;
  position: relative;
}

.slider-img {
  display: block;
  position: absolute;
  top: -80px;
  left: 20%;
  width: 314px;
  max-height: 100%;
}

.slider-img img {
  display: block;
  position: relative;
  max-height: 100%;
  width: auto;
}

.slider.btn {
  margin: 15px 5px 0;
  border: 2px solid transparent;
}

@media (max-width: 575px) {
  .slider.btn {
    font-size: 12px;
  }
}

.slider.border {
  background: var(--themebgcolor);
  border: 1px solid var(--themebgcolor) !important;
  /* border: 2px solid var(--themecolor) !important; */
}

.slider.border:hover {
  background: var(--themecolor);
  border: 1px solid var(--themecolor) !important;
}

/* Carousel control */
.banner-carousel .carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  text-shadow: none;
  transition: all .25s ease;
  padding: 0;
  outline: 0;
  border: 0;
}

@media (max-width: 575px) {
  .banner-carousel .carousel-control {
    display: none !important;
  }
}

.banner-carousel .slick-dots {
  opacity: 0;
  filter: alpha(opacity=0);
  bottom: 25px;
  /* bottom: 60px; */
}

.slick-dots li button::before {
  font-size: 12px;
}

.slick-dots li button:hover:before, .slick-dots .slick-dots li button:focus:before,
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffb600;
}

.slick-slide {
  outline: 0;
}

.banner-carousel:hover .carousel-control,
.banner-carousel:hover .carousel-control,
.banner-carousel:hover .slick-dots {
  opacity: 1;
  filter: alpha(opacity=100);
}

.banner-carousel .carousel-control.left {
  left: 20px;
}

.banner-carousel .carousel-control.right {
  right: 20px;
}

.banner-carousel .carousel-control i {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 45px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 30px;
    transition: all 500ms ease;
}

.banner-carousel .carousel-control i:hover {
  background: #ffb600;
  color: #fff;
}

/*-- Animation */
.banner-carousel [data-animation-in] {
  opacity: 0;
}

/* slick Box slider */
.box-slider-content {
  top: 50%;
  padding: 0;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .box-slider-content {
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}

.box-slider-text {
  background: #111;
  background: rgba(0, 0, 0, 0.65);
  display: inline-block;
  padding: 20px 30px;
  max-width: 650px;
}

.box-slide-title {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .box-slide-title {
    font-size: 16px;
  }
}

.box-slide-sub-title {
  font-size: 36px;
  margin: 8px 0 10px;
  color: #fff;
}

@media (max-width: 767px) {
  .box-slide-sub-title {
    font-size: 26px;
  }
}

.box-slide-description {
  color: #fff;
}

@media (max-width: 767px) {
  .box-slide-description {
    font-size: 15px;
  }
}

.box-slider-text .btn {
  padding: 10px 20px;
}

.box-slide.owl-theme .owl-controls {
  margin: -20px;
}

/* Call to action
================================================== */
.call-to-action {
  background-color: #272d33;
  padding: 30px;
}

.call-to-action-title {
  color: #fff;
  margin: 0;
  padding: 25px 0;
  line-height: normal;
  font-size: 22px;
  text-transform: capitalize;
}

/* Action style box */
.call-to-action-box {
  margin-top: -30px;
  /* margin-top: -50px; */
}

.call-to-action-box .action-style-box {
  background: var(--themecolor);
  padding: 15px;
  border-radius: 16px;
}

.action-title {
  color: #fff;
  margin: 0;
  line-height: 20px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.action-title2 {
  color: var(--themecolor);
  margin: 0;
  line-height: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

/* Intro
================================================== */
/* Intro */
.ts-intro {
  padding-right: 20px;
}

.into-title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 18px;
  line-height: normal;
  margin: 0;
}

.into-sub-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  line-height: normal;
  margin: 10px 0;
}

/*-- Featured Tab --*/
.featured-tab {
  padding-left: 15px;
}

.featured-tab .nav-tabs {
  border: 0;
}

.featured-tab .nav-tabs > li > a {
  font-family: 'Roboto Slab', serif;
  background: #272d33;
  color: #fff;
  text-shadow: none;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  line-height: 50px;
  margin: 0 1px 20px;
  padding: 0 20px;
  border: 0 !important;
  transition: all 300ms ease;
}

.featured-tab .tab-content {
  border-top: 0;
  padding: 0;
  overflow: hidden;
}

.featured-tab .nav.nav-tabs {
  margin-bottom: 10px;
}

.featured-tab .nav-tabs > li.active > a {
  color: #fff;
  background: #ffb600;
  position: relative;
}

.featured-tab .nav-tabs > li.active > a:after {
  position: absolute;
  content: " ";
  width: auto;
  height: auto;
  bottom: -20px;
  left: 50%;
  border-width: 10px;
  border-style: solid;
  border-color: #ffb600 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.featured-tab .lead {
  font-size: 18px;
  line-height: 28px;
  color: #303030;
  font-weight: 400;
}

.featured-tab .tab-pane img.pull-left {
  margin: 0 30px 10px 0;
}

.featured-tab .tab-pane img.pull-right {
  margin: 0 0 0 30px;
}

.featured-tab .tab-icon i {
  font-size: 230px;
}

.tab-image-content {
  padding-left: 0;
}

.featured-tab .border-title.border-left {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 20px;
}

/* Tab services */
.featured-tab.tab-services .nav-tabs > li > a {
  font-size: 14px;
  padding: 0 21px;
  text-transform: capitalize;
}

.featured-tab.tab-services .nav.nav-tabs {
  margin-bottom: 20px;
}





/* Content area
================================================== */



/* Footer
================================================== */
/*- Footer common */
.footer {
  /* background-color: #0d0d0d;
  color: #999; */
  /* border-top: 1px dashed var(--themecolor); */
}

.footer-main {
    padding: 35px 0 15px;
  /* padding: 80px 0 60px; */
}

.footer .widget-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  margin: 0 0 15px;
  padding-left: 15px;
  text-transform: uppercase;
  /* background-color: #fff; */
  padding: 8px;
  color: var(--themecolor);
  border-bottom: 1px solid var(--themecolor);
  box-shadow: 0 4px 20px 0 rgba(58, 59, 69, 0.1);
  margin-bottom: 21px !important;
}

/* Footer about us */
.footer-logo {
  margin-bottom: 10px;
  /* width: 80px; */
  height: 80px;
  /* border-radius: 50px; */
  /* max-height: 70px; */
}

/* Footer social */
.footer-social {
  margin-top: 15px;
}

.footer-social .widget-title {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* margin-left: -13px; */
}

.footer-social ul li {
  display: inline-block;
}

.footer-social ul li a i {
  display: block;
  font-size: 16px;
  color: #000;
  transition: 400ms;
  padding: 10px 13px;
  background-color: #fff;
  box-shadow: 0 4px 20px 0 rgba(58, 59, 69, 0.1);
}
.footer-social ul li a i:hover {

  color: var(--themecolor);
  background-color: #fff;
}

.footer-social ul li:hover {
  color: #fff;
}

/* Links */
.footer-widget ul.list-arrow li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5px 0;
}

.footer-widget ul.list-arrow li:last-child {
  border-bottom: 0;
}

.footer-widget ul.list-arrow li a,
.footer-widget ul.list-arrow li:before {
  color: #fff;
  /* color: #000; */
  font-size: 14px;
}

.footer-widget ul.list-arrow li:hover a,
.footer-widget ul.list-arrow li:hover {
  color: var(--themecolor);
}


.footer-about p, .footer-about h6{
  color: #fff;
  /* color: #000; */
}
.footer-about p{
  font-size: 13px;
}
.working-hours {
  padding-right: 10px;
}

.working-hours .text-right {
  float: right;
}

/*-- Copyright --*/
.copyright {
  background: var(--themecolor);
  color: #111;
  padding: 8px 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 15px;
}

.copyright p{
  color: var(--textwhite);
}

.footer-menu ul li {
  display: inline-block;
  line-height: 12px;
  padding-left: 15px;
}

.footer-menu ul.nav li a {
  background: none;
  color: #111;
  padding: 0;
}

.footer-menu ul li a:hover {
  color: #fff;
}
.website-counter {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: row;
  gap: 10px;
  color: #000;
  margin: 0px 10px;
}
.website-counter .digit {
  color: #fff;
  background: var(--themecolor);
  width: 30px;
  height: 30px;
  line-height: 31px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(58, 59, 69, 0.1);
}

#back-to-top {
  right: 40px;
  top: auto;
  z-index: 10;
  display: none;
}

#back-to-top .btn:focus {
  outline: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  #back-to-top {
    right: 15px;
  }
}

#back-to-top.position-fixed {
  bottom: 20px;
}

#back-to-top .btn.btn-primary {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 3px;
  color: #ffb600;
  font-weight: 700;
  font-size: 16px;
  padding: 0;
}

@media (max-width: 767px) {
  #back-to-top .btn.btn-primary {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
}

#back-to-top .btn.btn-primary:hover {
  color: #fff;
}

/* Sub Pages
================================================== */
/*-- Title border --*/
.main-container .border-left {
  margin-bottom: 30px;
}

/*-- Banner --*/
.banner-area {
  position: relative;
  min-height: 300px;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
}

.banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 58px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .banner-title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .banner-title {
    font-size: 32px;
  }
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
  padding: 0;
  background: none;
  font-weight: 700;
  /* text-transform: uppercase; */
  font-size: 14px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus,
.breadcrumb li a:hover {
  color: #fff !important;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}








/* Sidebar
================================================== */
.sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  margin: 0 0 30px;
  padding-left: 15px;
  text-transform: uppercase;
  border-left: 3px solid #ffb600;
}

/* Widget common */
.sidebar .widget {
  margin-bottom: 40px;
}

.sidebar-left .widget {
  margin-right: 20px;
}

.sidebar-right .widget {
  margin-left: 20px;
}

.sidebar .widget.box {
  padding: 25px;
}

.widget.box.solid {
  background: #f2f2f2;
}

.widget.box.red {
  background: #ec483b;
  color: #fff;
}

.widget.box.red .widget-title {
  color: #fff;
}

.widget ul li {
  line-height: 30px;
}

.sidebar .widget ul li a {
  color: #303030;
}

.sidebar .widget ul li a:hover {
  color: #ffb600;
}

.sidebar .widget ul li i {
  margin-right: 5px;
}

.sidebar .btn {
  font-weight: 700;
  font-size: 12px;
  margin-top: 15px;
  padding: 10px 25px;
}

/* Sidebar nav */
.sidebar ul.nav-tabs {
  border: 0;
}

.sidebar ul.nav-tabs li {
  width: 100%;
}

.sidebar ul.nav-tabs li a {
  color: #303030;
  border-radius: 0;
  padding: 15px 0;
  padding-left: 0;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  display: block;
  transition: 400ms;
}

.sidebar ul.nav-tabs li.active a,
.sidebar ul.nav-tabs li:hover a {
  color: #ffb600;
}

.sidebar ul.nav-tabs li {
  color: #303030;
  line-height: normal;
}

.sidebar ul.nav-tabs li:last-child a {
  border-bottom: 0;
}

/* Service menu */
.sidebar ul.service-menu li {
  width: 100%;
}

.sidebar ul.service-menu li a {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border: 0;
  margin-bottom: 8px;
  position: relative;
  transition: 400ms;
  display: block;
}

.sidebar ul.service-menu li.active a,
.sidebar ul.service-menu li:hover a {
  background: #ffb600;
  color: #fff;
  cursor: pointer;
}

/* Recent News */
.widget.recent-posts .widget-title {
  margin-bottom: 35px;
}

.widget.recent-posts ul li {
  border-bottom: 1px solid #dadada;
  padding-bottom: 15px;
  margin-bottom: 17px;
}

.widget.recent-posts ul li:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget.recent-posts .posts-thumb img {
  margin-right: 15px;
  width: 90px;
  height: 70px;
}

.widget.recent-posts .post-info .entry-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}

.widget.recent-posts .post-info .entry-title a {
  color: #303030;
  display: inline-block;
}

.widget.recent-posts .post-info .entry-title a:hover {
  color: #ffb600;
}

.widget.recent-posts .post-date {
  font-weight: 400;
  color: #999;
  text-transform: capitalize;
}

/* Widget tags */
.widget-tags ul > li {
  float: left;
  margin: 3px;
}

.sidebar .widget-tags ul > li a {
  border: 1px solid #dadada;
  color: #303030;
  display: block;
  font-size: 14px;
  padding: 3px 15px;
  transition: all 0.3s ease 0s;
}

.sidebar .widget-tags ul > li a:hover {
  background: #ffb600;
  color: #fff;
  border: 1px solid transparent;
}

/* Error page
================================================== */
.error-page .error-code h2 {
  display: block;
  font-size: 200px;
  line-height: 200px;
  color: #303030;
  margin-bottom: 20px;
}

.error-page .error-body .btn {
  margin-top: 30px;
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */




/* aboust_us_and_circulars_Start */

.news_bg {
  /* width: 150px; */
  position: relative;
  font-size: 12px;
  /* background-color: var(--beforebgcolor);
  padding: 2px; */
  color: var(--textblack);
  /* border-top-left-radius: 16px;
  border-bottom-right-radius: 16px; */
  background: var(--secbgcolor);
  border-left: 4px solid var(--themecolor);
  padding: 10px;
  /* border-top-left-radius: 16px; */
  border-bottom-left-radius: 16px;

}

.news_bg .item{
  width: 90px;

}

.news_bg img{
  width: 100%;
  border-radius: 8px;
  padding: 2px;
  border: 1px solid var(--themecolor);
  height: 50px !important;
}

.event-single-style-01 {
  /* border: 1px dashed var(--themecolor); */
  /* padding: 10px; */
  margin-bottom: 10px !important;

  /* margin-bottom: 30px; */
  /* border-top-left-radius: 19px;
  border-bottom-left-radius: 19px; */
}
.event-single-style-01 .time {
  color: #fff;
  background: #f9900e;
  /* background: #006bb7; */
  padding: 17px 15px;
  border-radius: 20px 5px 5px 20px;
  margin-right: 8px;
  font-size: 13.5px;
}

.event-single-style-01 .content a {
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #000 !important;
  /* padding: 5px; */
}

.event-single-style-01 .content  .sm-text {
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 500;
  font-size: 12px;
  padding-left: 15px;
  border-bottom: 1px dashed var(--themecolor);
}
.event-single-style-01 .content p{
  font-size: 13px;
  /* margin-bottom: 0px; */
}

.btn-conteiner{
  text-align: end;
}
.btn-content{
font-size: 13px;
}

.btn-content button {
 padding: 15px 25px;
 border: unset;
 border-radius: 15px;
 color: #212121;
 z-index: 1;
 background: var(--secbgcolor);
 position: relative;
 font-weight: 600;
 font-size: 12px;
 /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 /* box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 transition: all 250ms;
 overflow: hidden;
}

.btn-content button::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 15px;
 background-color: var(--themecolor);
 z-index: -1;
 /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 /* box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27); */
 transition: all 250ms
}

.btn-content button:hover {
 color: var(--textwhite);
}

.btn-content button:hover::before {
 width: 100%;
}


.about_section p{
  font-size: 15px;
  color: #000;
}
.about_section ol li{
  font-size: 15px;
  color: #000;
}

.about_section .card{
  border-radius: 16px;
  box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
}
.about_section .card img{
  border-radius: 16px;
}
.read_m_btn{
  text-align: right;
}
.read_m_btn h6{
 font-size: 13px;
 color: var(--themebgcolor);
 padding-left: 2px;
 transition: transform 0.3s ease;
}


.font_sizes .nav-item .btn1 {
    color: var(--text-color) !important;
}
/* .about_section:hover .read_m_btn h6{
  transform: translateX(10px);
 } */
.read_m_btn h6:hover{
  transform: translateX(10px);
 }


/* common_card_start */
.common_card .bg_one {
  background-repeat: no-repeat;
  background-image: url('../images/bg_images/breadcrumb_bg.jpg');
  background-position: center;
  width: 100%;
  /* height: 100%; */
  position: relative;
  background-size: contain;
  /* left: 12px; */
  /* border: 1px solid #f9900ebf; */
  border-radius: 0px !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.common_card .bg_one::before {
  content: '';
  position: absolute;
  background-color: var(--secbgcolor);
  /* background-color: #c5c5c52e; */
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0px !important;
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
}
.common_card .bg_two {
  background-repeat: no-repeat;
  background-image: url('../images/bg_images/pricing-pattern.jpg');
  background-position: center;
  width: 100%;
  /* height: 100%; */
  position: relative;
  background-size: cover;
  /* left: 12px; */
  /* border: 1px solid #f9900ebf; */
  border-radius: 0px !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

}

.common_card .bg_two::before {
  content: '';
  position: absolute;
  background-color: var(--secbgcolor);
  /* background-color: #c5c5c52e; */
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0px !important;
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
}

.common_card  .bg_one{
  z-index: 999;
}
/* common_card_end */

/* aboust_us_and_circulars_end */
/* data_bg */
.data_bg {
  background-image: url(../images/bg_images/bg-pattern-1.png);
  /* background-image: url(../images/bg_images/medical_back.jpg); */
  position: relative;
}
.data_bg::before {
  content: '';
  position: absolute;
  background: var(--light_bg2) !important;
  /* background: #ffb1001a !important; */
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
}

/* data_bg */


/* data_bg_two_start */
.data_bg_two{
  background-color: #f8f9fa;
}
/* data_bg_two_end */


.f_section_cards  .card {
  /* width: 350px; */
  /* height: 135px; */
  border: 0px;
  position: relative;
  padding: 12px;
  background: var(--backgroundlg_light);
  border-radius: 8px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  transition: all 0.8s cubic-bezier(0.15, 0.83, 0.66, 1);
  cursor: pointer;
}


.f_section_cards  .card img{
  width: 30px;
  /* margin-bottom: 10px; */
}

 .general_head h5{
  margin: 0 auto;
  background-color: var(--secbgcolor);
  width: fit-content;
  padding: 5px 40px;
  font-size: 19px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.f_section_cards  .card .icon {
    margin: 0 auto;
    width: fit-content;
    padding: 6px;
    background-color: var(--themecolor) !important;
    color: #fff;
    border-radius: 8px;

    
}
.f_section_cards  .card:hover .icon {
    background-color: var(--textwhite) !important;
    /* color: #fff; */
    border-radius: 8px;
}
.f_section_cards  .card .icon img {

    filter: invert(1);
}
.f_section_cards  .card:hover .icon img {

    filter: inherit;
}
.f_section_cards  .card h5{
  font-size: 14px;
  line-height: 16px;
  margin-top: 10px;
}
.f_section_cards  .card h4{
  font-size: 18px;
}

.f_section_cards  .card:hover {
  transform: scale(1.05);
}


.f_section_cards .card .sun {
  width: 50px;
  height: 50px;
  background: -webkit-linear-gradient(to right, #fcbb04, #fffc00);
  background: linear-gradient(to right, #fcbb04, #fffc00);
  border-radius: 60px;
  display: inline;
  position: absolute;
}

.f_section_cards .card  .sunshine {
  animation: sunshines 2s infinite;
}

@keyframes sunshines {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* first_section_cards_end */

/* normal_section_Start */
.normal_section .card{
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
   border: 0px;
}



.normal_section .first_card,
.normal_section .second_card,
.normal_section .third_card,
.normal_section .fourth_card{
  min-height: 355px;

}

.normal_section .first_card{
  
}
.normal_section .second_card{

}
.normal_section .third_card{

}
.normal_section .fourth_card{

}

.normal_section .card .card-header{
 background-color: var(--themebgcolor);
 color: var(--textwhite);
 border-bottom: 0px;
 font-weight: 500;
 height: 50px;
}
.normal_section .card h5{
  font-size: 12px;
  margin: 0px;
}
.normal_section .card h4{
    font-size: 16px;
    margin: 0px;
}

.normal_section .small_cards {
  background: var(--secbgcolor);
  margin-bottom: 10px;
  padding: 3px;
  border: 1px solid var(--themecolor);

}
.normal_section .heading-decoration{
  margin-top: 0px !important;
}

/* normal_section_end */







/*** Services cards ***/


.service-item .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
}

.service-item .service-text {
  /* background: var(--secbgcolor); */
  background: #F8F8F8;
  transition: .5s;
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);


}

.service-item .service-text .name i{
   font-size: 30px;
   color: var(--themecolor);
   padding: 10px;
   border-radius: 10px;
}
.service-item .service-text h3{
   font-size: 14px;
}
.service-item:hover .service-text {
  background:rgba(0, 0, 0, 0.4);
  /* background: rgba(0, 0, 0, .7); */
}
.service-item:hover .service-text .name i{
  background:var(--textwhite);
  padding: 10px;
  border-radius: 10px;
}

.service-item * {
  transition: .5;
}

.service-item:hover * {
  color: #FFFFFF;
}

.service-item .btn {
  width: 40px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  color: #252525;
  background: #FFFFFF;
  color: var(--themecolor);
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
  font-size: 13px;
}

.service-item:hover .btn i{
  color: var(--themecolor);
}

.service-item:hover .btn {
  width: 120px;
}

/* service_cars_Section_end */


/* notification_location_start */

.media-updates-block {
  box-shadow: 0 4px 20px 0 rgba(58, 59, 69, 0.1)
}

/* notification_location_end */



.first_word{
  color: var(--linkhover);
}
.second_word{
  color: var(--themecolor);
}




/* section_title_start */
.section-title-wrap {
  position: relative;
}

/* .section-title-wrap::after {
  content: "";
  background: var(--secbgcolor);
  width: 93%;
  height: 2px;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
} */

.section-title2 {
  background: var(--themecolor);
  /* border-radius: 100px; */
  /* border-top-right-radius: 0px !important; */
  /* border-bottom-left-radius: 0px !important; */
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  padding: 4px 18px;
  font-size: 16px;
  color: #fff;
}
/* section_title_end*/







#donar  .carousel-inner{
  position: relative;
}
#donar .carousel_controls{
    position: absolute;
    right: 0;
    /* left: 100px; */
    top: 90%;
    /* top: 0%; */
    z-index: 7;
    width: 100%;
    /* margin-top: -20px; */
    width: 165px;
    margin: 0 auto;
}


#donar .carousel_controls .carousel-control-prev {
  position: absolute;
  left: 40px;
  width: 35px;
  height: 30px;
  color: #ff8c00;
  line-height: 10px;
  text-align: center;
  font-size: 18px;
  border-radius: 13% !important;
  display: inline-block;
  /* background-color: rgba(0, 0, 0, 0.6); */
  background-color: var(--themecolor);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

#donar  .carousel_controls .carousel-control-next, .carousel_controls .carousel-control-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#donar  .carousel_controls .carousel-control-next {
  position: absolute;
  right: 40px;
  width: 35px;
  height: 30px;
  color: #ff8c00;
  line-height: 10px;
  text-align: center;
  font-size: 18px;
  border-radius: 13% !important;
  display: inline-block;
  background-color: var(--themecolor);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

#donar  .carousel-control-prev:hover,  #donar .carousel_controls .carousel-control-next:hover {
  color: #000;
  background: var(--backgroundlg);
}
#donar .carousel_controls .carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}


.doner_content{
  background-color: var(--secbgcolor);
  border-radius: 8px;
}


.doner_content .doner_right{
  height: 15vh;
  border-left: 2px solid var(--themecolor);
}
.doner_information{
  height: 115px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.doner_information h6{
  margin-top: 5px;
  color: var(--themecolor);
}

 
/* form styling start */


 .login-screen {
  background-color:   #fff1d3;
  min-height: 100vh;  /* Make sure the container takes up the full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-screen .card {
  width: 100%;  /* Make the card take full width of its container */
  max-width:900px;  /* Set a max-width for the card to avoid it becoming too wide */
}

/* Optional: Adjust card padding on smaller screens */
@media (max-width: 576px) {
  .login-screen .card {
      padding: 20px;
  }
}





 .log_img_one{
   /* height: 470px !important; */
 }
 @media(max-width:768px){
  .login-screen{
    background-color:   #fff1d3;
    /* background-color:   #F9F9F9; */
   padding: 10px;
   }

   .log_img_one{
    height: auto !important;
  }
 }
 
 .c_border{
  border: 2px solid #fff;
  /* padding: 20px; */
  border-radius: 16px;
 }




.c_shadow{
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  overflow: hidden;
}


/* breadcrumb_css */

.page-title {
  padding: 0;
  max-height: 600px;
  position: relative;
  z-index: 1;
}

.title_heading h1{
 font-size: 26px;
 margin-bottom: 0px !important;
 color: var(--themecolor);
}
.breadcrumbs-section {
  background-image:url('../images/banners/c_image1.png');
  /* background-image:url('../images/c_photos/c_image1.png'); */
  background-position: center; 
  position: relative;
  /* overflow: hidden; */
  z-index: 1;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding: 35px;
}
.breadcrumb-item+.breadcrumb-item::before {
 color: #fff !important;
}

/* * {
  outline: 0 !important;
} */

.breadcrumbs-section::before {
  background: rgb(28 27 25);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.header-top {
  /* background-color: #005e7e; */
  background: linear-gradient(90deg, rgb(255 3 3) 0%, rgba(255, 179,0,1)43%);
  display: none;
  /* padding: 2px; */
  /*  height: 45px;*/
}
.header-top a {
  font-size: 14px;
  /*  height: 45px;*/
}

.header-middle {
  padding: 5px 0;
}
/* header-top_Css_END */

/* onyl_header_css_start */
.heading {
  font-size: 23px !important;
  font-weight: 800;
  line-height: 30px;
  /* font-family: 'ui-monospace !important'; */
  /* font-family: 'Lato' !important; */
  color: rgb(255 0 0);
  /* color: var(--themecolor); */
  /* color: rgba(255, 179, 0, 1); */
  /* color: #c12637; */
}

.heading1 {
  font-size: 20px !important;
  /* font-family: 'NotoSansTelugu'; */
  /* font-family: 'Sujatha !important'; */
  font-family: 'Ramaraja' !important;
  line-height: 20px;
  /* color: #03155b; */
  /*  margin-top: 10px;*/
  font-weight: 600;
}

.t_content{
  font-family: 'Ramaraja' !important;
  font-size: 17px !important;
}
.t_para .fa-kaaba{
  color: var(--themecolor);
}
.t_para span:nth-child(2){
  color: #5e1616;
}
.t_para ol li a{
  color: var(--themecolor) !important;
}

.t_sub_head{
  background-color: var(--secbgcolor);
  padding: 5px 10px;  
  margin-bottom: 10px;
}
.t_sub_head h6{
  margin: 0px;
  font-weight: 600;
  font-size: 19px;

}
/* onyl_header_css_end */
.header_bg {
  background-color: #fff5ec;
  border-radius: 0px;
  /* background-color: #fff; */
}
.header_bg small{
  font-size: 12px;
}

.header_bg .row img{
  border-radius: 10px;
}



/* Stats Counter with Modern Design */
        /* .stats-showcase {
            background: var(--white);
            padding: 50px 0;
            position: relative;
            margin-top: -50px;
            z-index: 10;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        } */
        
        /* .stats-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-orange-red);
            border-radius: 20px 20px 0 0;
        } */
        
        .stats-showcase {
          background: var(--secbgcolor);
        }
        .counter-item {
          background: var(--textwhite);
          text-align: center;
          padding: 20px;
          position: relative;
          border-radius: 30px;
          min-height: 264px;
          box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
        }
     
        
        .counter-item::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 0;
            width: 1px;
            height: calc(100% - 40px);
            background: #f0f0f0;
        }
        
        .counter-item:last-child::after {
            display: none;
        }
        
        .counter-icon {
            width: 50px;
            height: 50px;
            background: var(--themecolor);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
            /* box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3); */
        }
        
        
        
        .counter-icon img {
            /* filter: brightness(0) invert(1); */
            width: 42px;
            /* padding: 0px; */
            border-radius: 8px;
             box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
       
        
        .counter-number {
            font-size: 18;
            font-weight: 700;
            background: var(--gradient-orange-red);
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            margin-bottom: 10px;
            color: var(--themecolor);
            min-height: 50px;
        }
         .counter-text {
            font-size: 13px;
            color: #666;
            font-weight: 500;
            text-align: justify;
        }
        
         .counter-item:hover {
          background: var(--themecolor);
          }
          .counter-item:hover .counter-icon {
              transform: translateY(-5px);
              box-shadow: 0 10px 25px rgba(66, 66, 66, 0.3);
          }
          .counter-item:hover .counter-number {
             color: var(--textwhite);
          }
          .counter-item:hover  .counter-text {
             color: var(--textwhite);
          }
          .counter-item:hover  .counter-icon {
             background: var(--secbgcolor);
          }
       
          .stats-showcase p{
            color: #000;
            font-size: 14px;
          }
        




/* Title block */
.title_block{
  margin-bottom: 25px;
  position: relative;
}







/* Soft Blue Background Shape */
.cheader_bg.common_section {
  background: var(--secbgcolor);
}

/* Title Block */
.cheader_bg .title_block2 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* Main Title */
.cheader_bg .title_block2 .title {
  position: relative;
  font-size: 24px;
  /* font-size: 38px; */
  font-weight: 800;
  letter-spacing: 1px;
  color: #1e2a5a;
  display: inline-block;
  padding-left: 25px;
  margin: 0;
}

/* Orange Vertical Accent */
.cheader_bg .title_block2 .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 80%;
  width: 8px;
  background: linear-gradient(to bottom, #ff7a00, #ffb347);
  border-radius: 10px;
}



/* First Word Highlight */
.cheader_bg .title_block2 .first {
  color: #ff7a00;
}




/* banks_section_end */

.cust_btn{
  float: right;
  width: fit-content;
  padding: 8px 40px;
  background: var(--themebgcolor) !important;
  color: #fff;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
}
.cust_btn:hover{
  color: #fff;
}
.cust_btn_small{
    float: right;
    width: fit-content;
    padding: 4px 10px;
    background: var(--themebgcolor) !important;
    color: #fff;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
}
.cust_btn_small:hover{
  color: #fff;
}
.main_title{
  font-family: monospace;
}
.main_title .one{
color: var(--themebgcolor);
}
.main_title .two{
color: var(--themecolor);
}
.main_title .last span{
  font-family:cursive !important;
}

.cc_card{
  background: #fff;
  border: 0px;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  /* box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1); */
  
}
.cc_card .cc_header{
 background: var(--themebgcolor);
}
.cc_card .cc_header h6{
  color: #fff;
}
.s_title{
  margin-bottom: 15px;
}
.s_title h6{
  color: var(--themecolor);
}

.img_icon{
  width: 30px !important;
  height: 30px !important;
}
.img_icon img{
  width: 100%;
}
.required::after {
    content: " *";
    color: #dc3545;
}

.latest_notfications .card{
 border: 0px;
 border-radius: 16px;
 box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
 min-height: 370px !important;

}
.notification_s {
    background: var(--themebgcolor);
    color: var(--textwhite);
    width: 35px;
    height: 35px;
    border-radius: 50px;
    text-align: center;
    line-height: 36px;
    font-size: 15px;
}
.latest_notfications p{
  font-size: 13px;
  margin-bottom: 0px;
  color: var(--themebgcolor);

}

.last_Date{
  background: var(--themecolor);
  color: var(--textwhite);
  text-align: center;
  padding: 0 10px;
  border-radius: 50px;
}

 /* Notification Bar with Modern Design */
        .notification-wave {
            position: relative;
            padding: 30px 0 60px;
            background: var(--light);
        }
        
        /* .notification-wave::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--white);
            clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
            z-index: 1;
        } */
        
        .notification-content {
            background: var(--textwhite);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .notification-title {
            background: var(--themecolor);
            color: var(--textwhite);
            padding: 5px 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
        }
        
        .notification-title img {
            margin-right: 15px;
        }
        
        .notification-scroll {
            padding: 15px 25px;
        }
        
        .notification-scroll a {
            color: var(--themebgcolor);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .notification-scroll a:hover {
            color: var(--primary-red);
        }
        



        /* button_styles */

        .btn-conteiner {
  display: flex;
  justify-content: end;
  
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--textwhite);
  background: var(--themebgcolor);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--secbgcolor);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--secbgcolor);
  color: #fff;
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 0%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--themebgcolor);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--themebgcolor);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--themebgcolor);
    outline-offset: 0;
  }
}


/* cards_section_Start */
.banks_section{
   /* background: var(--themecolor); */
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* cards_section_Start */
.banks_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 270px;
  background-image: url('../images/bg_images/bg_about_2.png');
  background-size: contain;
  background-repeat: no-repeat;
  animation: bgMoveLR 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes bgMoveLR {
  0% {
    background-position: left top;
  }
  50% {
    background-position: 5px top;
  }
  100% {
    background-position: left top;
  }
}
.banks_section .card{
  position: relative;
  border: 0px;
  box-shadow: 0 4px 20px 0px rgba(58, 59, 69, 0.1);
  /* box-shadow: 0 4px 20px 0 rgba(58, 59, 69, 0.1); */
  border-radius: 16px;
  background: #fff;
  overflow: visible;
  min-height: 85px;
  margin-bottom: 20px;
}

.banks_section .card .card-body{
   padding: 0px;

}

/* More spacing on mobile */
@media (max-width: 768px) {
  .banks_section .card {
    margin-bottom: 30px;
  }
}

/* Corner border line (unchanged) */
.banks_section .card:before {
  content: "";
  position: absolute;
  left: -12px;
  width: 95px;
  height: 95px;
  top: -12px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}


/* Moving dot starting at top-left border */
.banks_section .card:after{
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  width: 8px;
  height: 8px;
  background: var(--themebgcolor);
  /* background: #000; */
  z-index: 9;
  transition: all .4s ease-in-out;
  border-radius: 50%;
}


/* On hover → dot travels down the left border only */
.banks_section .card:hover:after {
  top: 80px; /* exact end of the border line */
}


/* Image styling */
.banks_section .card .img_block{
  display: flex;
  justify-content: center;
  height: 80px;
  align-items: center;
}

.banks_section .card .img_block img{
  max-height: 100%;
  width: auto;
}

/* cards_section_end */

.stats-showcase {
    background: var(--themecolor);
}



.banks_section .item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--secbgcolor);
  /* background-image: linear-gradient(131.83deg, #FFFAFA 0%, var(--secbgcolor) 99.21%); */
  /* background-image: linear-gradient(131.83deg, #FFFAFA 0%, #FFF7F7 99.21%); */
  /* width: 300px; */
  text-align: center;
  /* height: 150px; */
  border-radius: 16px;
  position: relative;
  padding: 10px;
}

.banks_section .item:not(:last-child) {
  margin-right: 100px;
}
.banks_section  .item::before {
  position: absolute;
  content: "";
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background-image: linear-gradient(312.25deg, var(--themecolor) 0%,     var(--secbgcolor) 66.19%);
  /* background-image: linear-gradient(312.25deg, #FFC4BC 0%,     rgba(255, 255, 255, 0) 66.19%); */
  z-index: -1;
  border-radius: 18px;
}

.banks_section .inner {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
  border-radius: 14px;
  background-image: url(../images/bg_images/medical_back.jpg);
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: 1px dashed var(--themebgcolor);
}

.banks_section  .inner:hover{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background: var(--themecolor);
}

.banks_section  .inner:hover h6{
  color: var(--textwhite) !important;
}



/* table_css */
.cus-table.table {
  background-color: #fff !important;
  border-radius: 16px;
  overflow: hidden;

}

.cus-table {
  border-collapse: collapse;
  /* border-radius: 1em;
  overflow: hidden; */
}
.cus-table tr th {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 6px !important;
  color: #fff;
}
.cus-table tr th:nth-child(1) {
  text-align: center !important;
}
.cus-table tr td {
  font-size: 13px;
  text-align: left ;

}
.cus-table tr td:nth-child(1) {
  text-align: center !important;

}
.cus-table thead tr:nth-child(1) {
  background: var(--themecolor) !important;

  /* background: #eaebff !important; */
}
.cus-table thead tr:nth-child(2) {
  background: var(--themecolor) !important;

  /* background: #eaebff !important; */
}

.cus-table tr:nth-child(even) {
  background: var(--secbgcolor) !important;
}
.cus-table.table>:not(caption)>*>* {
  background-color: inherit !important;
}



.downloads_section .card {
  position: relative;
  border: none;
  border-radius: 20px;
  padding: 2px; /* for gradient border */
  background: linear-gradient(135deg, #ff7a00, #007bff);
  transition: all 0.4s ease;
}

.downloads_section .card::before {
  content: "";
  position: absolute;
  inset: 1px;
  /* inset: 2px; */
  background: #ffffff;
  border-radius: 18px;
  z-index: 0;
}

.downloads_section .card-body {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  padding: 10px;
}

.downloads_section .card h6 {
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7a00, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.downloads_section .img_block {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ff7a00, #007bff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
  transition: 0.4s ease;
}

.downloads_section .img_block img {
  width: 28px;
  filter: brightness(0) invert(1);
}

/* Hover Effect */
.downloads_section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.downloads_section .card:hover .img_block {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
}


.img_block{
  width: 30px;
  height: 30px;
  background: var(--themebgcolor);
  padding: 3px;
  border-radius: 10px;
}

.img_block img{
  width: 100%;
}


/* common_tabs_start */

.common_tabs .nav.nav-pills{
  border-color:  var(--themecolor);
}
.common_tabs .nav .nav-link{
  color: var(--themecolor);
  border-color:  var(--themecolor);
  box-shadow: inset 2px 2px 5px rgb(105 141 173 / 40%), inset -2px -2px 2px var(--themecolor);
}
/* .common_tabs .nav .nav-link{
  color: var(--themecolor);
} */

.common_tabs .nav .nav-link.active{
  color: var(--textwhite);
  background: var(--backgroundlg);
  border-color:  var(--themecolor);
}
/* common_tabs_end */

.d_card{
  background: var(--secbgcolor);
}


/* Moving_image_animtion_start */

.shape-mockup {
  position: absolute;
  z-index: -1
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite
}

@-webkit-keyframes movingX {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }

  50% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px)
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }
}

@keyframes movingX {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }

  50% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px)
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }
}

.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}
/* Moving_image_animtion_end */