
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;
}
html, body {
  height: 100%;
  margin: 0;
}

.body-inner{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.font_2{
font-family: 'Merienda';
}


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

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

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: #124d3a;
          --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: 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(--themebgcolor) !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(--themebgcolor);
    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(--themecolor);
  /* 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:rgba(0, 0, 0, 0.493);
  /* 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;
} */

/* Bootstrap */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:hover,
.nav-tabs > li > a {
  border: 0;
}

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

.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;
}

/* Bootstrap */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:hover,
.nav-tabs > li > a {
  border: 0;
}

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

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

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

/* Top Bar
================================================== */
.top-bar {
  /* display: none; */
  padding: 8px 0;
  background: var(--themebgcolor);
  /* background: var(--backgroundlg); */
  /* background: #ebebeb; */
  position: relative;
}

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

ul.top-info li {
  position: relative;
  line-height: 10px;
  display: inline-block;
  margin-left: 0;
  padding-right: 15px;
}

ul.top-info li i {
  font-size: 18px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

ul.top-info li p.info-text {
  margin: 0;
  line-height: normal;
  display: inline-block;
  flex-direction: column;
}

/* Top social */
.top-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: -12px;
}

@media (max-width: 767px) {
  .top-social ul {
    margin-right: 0;
  }
}

.top-social ul li {
  display: inline-block;
  padding: 0;
}

.top-social ul li a {
  color: #2c2c2c;
  font-size: 14px;
  transition: 400ms;
  padding: 9px 12px;
}

.top-social ul li a:hover {
  color: #333;
}

/* Top bar border */
.top-bar-border {
  padding: 8px 20px 8px;
  border-bottom: 1px solid #ddd;
}

.top-bar-border ul.top-info {
  color: #707070;
  font-weight: 400;
}

.top-bar-border .top-social li a {
  color: #7c7c7c;
}

.top-bar-border ul.top-info li i {
  color: #ffb600;
}

/* 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/gplaypattern.png') ;
 /* background-image: url(../images/bg_images/hero-bg-768w.png); */
background-size: contain;
/* background-position: center; */
/* background-repeat: no-repeat; */
box-shadow: 0 4px 20px 5px rgba(58, 59, 69, 0.1);
}

.header-one .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 img {
  /* width: 70px; */
  height: 80px;
}
.logo2 .logo_one img {
  width: 65px;
  /* height: 60px; */
}

.titles h6{
  font-size: 14px;
}
.titles p{
  color: #000;
  font-size: 11px;
  margin-bottom: 0px;
}


/* 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;
  padding-left: 3px;
}

@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: none;
  border: 2px solid var(--themecolor) !important;
}

.slider.border:hover {
  background: var(--themecolor);
  border: 2px solid transparent;
}

/* 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;
}


/* DO NOT CHANGE – REQUIRED NEGATIVE MARGIN */
.call-to-action-box {
  margin-top: -30px;
  z-index: 999;
}

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



/* =====================================
   FOOTER – GREEN & ORANGE (FINAL)
===================================== */

.footer {
  background: #0b3d2e;
  color: #e9f7f1;
  position: relative;
}
/* Push footer to bottom */
.footer {
  margin-top: auto;
}

/* subtle background pattern */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  ); */
  background-image: url('../images/bg_images/bg_dots.png');
  background-size: contain;
  /* background-size: 100% 40px; */
  pointer-events: none;
}

/* Footer Main */
.footer-main {
  /* padding: 15px 0 15px; */
  /* padding: 15px 0 15px; */
  position: relative;
  z-index: 1;
}

/* Footer Widget Card */
.footer-widget {
  /* background: #124d3a; */
  border-radius: 14px;
  padding: 25px 22px;
  height: 100%;
  /* border-left: 4px solid #ff9800; */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); */
  transition: all 0.35s ease;
  min-height: 328px;
}

/* .footer-widget:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
} */

/* ===============================
   WIDGET TITLE (VISIBLE & BOLD)
=============================== */
.footer .widget-title {
  /* display: inline-block; */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--themebgcolor) !important;
  background: #ffffff !important;
  /* background: linear-gradient(135deg, #ff9800, #ffb703); */
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  /* box-shadow: 0 6px 18px rgba(255, 152, 0, 0.45); */
  position: relative;
  margin-bottom: 24px !important;
  font-family: 'Merienda';
}

/* underline accent */
.footer .widget-title::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 85%;
  height: 1px;
  background: var(--textwhite);
  border-radius: 10px;
}

/* Footer Logo */
.footer-logo {
  /* height: 75px;
  margin-bottom: 15px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50%; */

}

/* About Text */
.footer-about p,
.footer-about h6 {
  font-size: 14px;
  line-height: 1.7;
  color: var(--textwhite);
}

/* ===============================
   FOOTER LINKS WITH ARROWS
=============================== */
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget .list-arrow li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--themebgcolor);
  /* border-bottom: 1px dashed #fff; */
}



/* arrow style */
.footer-widget .list-arrow li a {
  color: var(--themebgcolor);
  font-size: 14px;
  text-decoration: none;
  padding-left: 18px;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-widget .list-arrow li a::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--themebgcolor);
  font-size: 13px;
}


/* REMOVE ARROW ONLY FROM FIRST ITEM */
/* .footer-widget ul li:first-child a::before {
  content: none !important;
} */

/* .footer-widget ul li:first-child a {
  padding-left: 0;
} */

/* hover effect */
.footer-widget .list-arrow li a:hover {
  color: var(--textwhite);
  padding-left: 22px;
}

/* ===============================
   VISITOR COUNTER
=============================== */
.website-counter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.website-counter .digit {
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* background: #ff9800; */
  color: #0b3d2e;
  font-weight: 800;
  border-radius: 10px;
  text-align: center;
  box-shadow: inset 0 0 0 2px #ffffff;
  font-family: 'Merienda';
}

/* ===============================
   SOCIAL ICONS
=============================== */
.footer-social ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-social ul li a i {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 12px;
  background: var(--themebgcolor);
  color: var(--textwhite);
  font-size: 16px;
  transition: all 0.35s ease;
}

.footer-social ul li a i:hover {
  background: #ffffff;
  color: var(--themecolor);
  transform: translateY(-6px);
}

/* Designed By */
.designed {
  text-align: center;
  /* display: flex; */
  /* gap: 2; */
  /* align-items: center; */
}
.designed small {
  color: #cfeee3;
  font-size: 12px;
}

.designed img {
  margin-top: 10px;
  max-width: 120px;
  /* filter: brightness(0) invert(1); */
}

/* ===============================
   COPYRIGHT
=============================== */
.copyright {
  position: relative;
  z-index: 9999;
  background: var(--themebgcolor);
  padding: 5px 0;
  text-align: center;

}

.copyright p {
  color: #cfeee3;
  font-size: 14px;
  margin: 0;
}

/* ===============================
   BACK TO TOP – SMALL VERSION
=============================== */
#back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--textwhite);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.3s ease;
}

#back-to-top button:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ICON CENTER */
#back-to-top i {
  position: relative;
  z-index: 2;
  color: #ffb703;
  font-size: 16px;
  transition: color 0.3s ease;
}

#back-to-top button:hover i {
  color: #ffffff;
}

/* PROGRESS RING */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  fill: var(--text-color);
  /* fill: transparent; */
  stroke: #ffb703;
  stroke-width: 3;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.15s linear;
}

/* INNER GLOW */
#back-to-top button::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: radial-gradient(circle, #ffb703 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 767px) {
  .footer-widget {
    margin-bottom: 20px;
  }

  .footer-main {
    padding: 50px 0 25px;
  }
}


/* 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;
}


.unique_bg{
background-color: #e5e5f7;
opacity: 0.8;
background-image:  linear-gradient(135deg, var(--themecolor) 25%, transparent 25%), linear-gradient(225deg, var(--themecolor) 25%, transparent 25%), linear-gradient(45deg, var(--themecolor) 25%, transparent 25%), linear-gradient(315deg, var(--themecolor) 25%, #e5e5f7 25%);
background-position:  4px 0, 4px 0, 0 0, 0 0;
background-size: 4px 4px;
background-repeat: repeat;
}
.breadcrumb {
  padding: 0;
  background: none;
  font-weight: 700;
  /* text-transform: uppercase; */
  font-size: 12px;
}

.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;
}


 
/* 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);
}


/* breadcrumb_css */

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

.title_heading h1{
 font-size: 20px;
 margin-top: 5px !important;
 margin-bottom: 5px !important;
 color: var(--themecolor);
 font-family: 'Merienda';
}
.breadcrumbs-section {
  background-image:url('../images/goat_bg_two.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: 10px;
}
.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;
}


.cheader_bg{
  background: var(--secbgcolor) !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);
    margin: 5px;
    border-radius: 16px
     
}
.cc_card .cc_header h6{
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.cc_card  p{
  font-size: 15px;
}

.s_title h6{
  color: var(--themecolor);
  font-size: 15px;
  /* margin-bottom: 15px !important; */
}

.img_icon{
  width: 30px !important;
  height: 30px !important;
}
.img_icon img{
  width: 100%;
  border-radius: 50px;
}





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

}

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

}
.table tr td {
  font-size: 13px !important;
  text-align: left ;

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

}
.table thead tr:nth-child(1) {
  background: #ffa501 !important;

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

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

.table tr:nth-child(even) {
  background: #fff7dc !important;
}
.table>:not(caption)>*>* {
  background-color: inherit !important;
}
/* table_css_end */


      




#main-banner-slide .single-slider img {
  height: 405px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .main-slider  #main-banner-slide .single-slider img {
      height: auto;
  }
}

.main-slider .slider-area .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  z-index: 1;
  width: 100%;
  margin-top: -20px;
}

.main-slider .slider-area .owl-nav .owl-prev {
  position: absolute;
  left: 40px;
  width: 50px;
  height: 50px;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
  font-size: 21px;
  border-radius: 50%;
  /* display: inline-block; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-slider .slider-area .owl-nav .owl-next {
  position: absolute;
  right: 40px;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 21px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  /* display: inline-block; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-slider .slider-area .owl-dots {
  bottom: 80px;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}

.main-slider .slider-area .owl-dots .owl-dot {
  background: #9f9ba0;
  display: inline-block;
  height: 8px;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 15px;
  border-radius: 5px;
}

.main-slider .slider-area .owl-dots .owl-dot.active {
  width: 30px;
  background: #294350;
  
}


/* login_form_styles */

    .custom-card {
  width: 24rem;
  border-radius: 1rem;
  border: none;
}

.custom-card  span i{
  color: var(--themebgcolor) !important; 
}
.custom-header {
  margin: -1.5rem 1rem 0rem;
  border-radius: 30px !important;
  padding: 10px;
  background: var(--themebgcolor);
  /* box-shadow: 0 10px 20px rgba(178, 138, 8, 0.4); */
  border: 0px;
  color: #fff;

}
.custom-header h4{
  color: #fff;
}

.custom-btn {
  background: var(--backgroundlg) !important;
  border: none;
  /* padding: 0.75rem; */
  font-weight: 700;
  /* letter-spacing: 0.05em; */
  box-shadow: 0 6px 15px rgba(178, 138, 8, 0.35);
  border-radius: 30px;
  color: var(--textwhite);
  width: 200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.custom-btn:hover {
  box-shadow: 0 10px 25px rgba(178, 138, 8, 0.5);
}

.custom-link {
  color: var(--themecolor);
}

.custom-link:hover {
  color: var(--themecolor);
}



/*------------------------------------------
 News Scrolling
------------------------------------------ */

.scrolling-news {
  /* background: var(--themecolor); */
  padding: 4px 14px;
  /* border-radius: 2px; */
  /* border-bottom: 1px dashed var(--themebgcolor); */
  position: relative;
}

.scrolling-news  .round_style{
  background-color: var(--textwhite);
  border-radius: 16px;
  /* padding-bottom: 5px; */
}

.scrolling-news .title {
  color: var(--text-color);
  font-weight: 700;
  position: absolute;
  top: 2px;
  /* top: -2px; */
  /* background: var(--secbgcolor); */
  padding: 9px 10px;
  font-size: 14px !important;
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset; */
}

.scrolling-news .news {
  margin-left: 176px;
  margin-top: 0px;
  margin-left: 176px;
  position: relative;
  margin-top: 0px;
  top: 3px;
}

.scrolling-news .news a {
  font-weight: 400;
    /* color: #fff !important; */
    color: red !important;
    font-size: 12px;
    /* display: none; */
}
.scrolling-news .news a img {

    display: none;
}



/* 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
}
