:root {
--color-primary: #BE2326;
--color-secondary: #FDCF0A;
--color-accent: #BE2326;
--color-text: #000;
--color-background: #ffffff;
--color-muted: #888888;
--color-black: #000;
--color-white: #fff;
--color-grey-1: #eee;
--color-grey-2: #ddd;
--color-grey-3: #ccc;
--color-grey-light: #999;
--color-light-1: #F7F7F7;
--color-light-2: #F0FAFF;
--color-light-3: #EDF0F5;

--site-font-family: "Poppins", sans-serif, Arial, Tahoma ;

--font-weight-thin: 100;
--font-weight-extra-light: 200;
--font-weight-light: 300;
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-weight-extra-bold: 800;
--font-weight-black: 900;

--line-height-tight: 1.2;
--line-height-normal: 1.5;
--line-height-relaxed: 1.75;
--line-height-loose: 2;

--link-color: var(--color-primary);
--link-hover-color: var(--color-secondary);  
--link-visited-color: var(--color-primary);
--link-active-color: var(--color-primary);

--link-one-color: var(--color-secondary); 
--link-one-hover-color: var(--color-primary);
--link-two-color: var(--color-accent); 
--link-two-hover-color: var(--color-secondary);
--link-white-color: var(--color-white); 
--link-white-hover-color: var(--color-white);
--link-black-color: var(--color-black); 
--link-black-hover-color: var(--color-accent);
--link-grey-color: var(--color-muted); 
--link-grey-hover-color: var(--color-black);

--link-powered-color: var(--color-white); 
--link-powered-hover-color: var(--color-accent);

--link-btn1-text-color: var(--color-black);
--link-btn1-bg-color: var(--color-secondary) ;
--link-btn1-padding: 12px 30px ;
--link-btn1-border-width: 0px ;
--link-btn1-border-style: solid ;
--link-btn1-border-color: var(--color-black) ;
--link-btn1-border-radius: 4px ;
--link-btn1-hover-color: var(--color-white) ;
--link-btn1-bg-hover-color: var(--color-primary) ;
--link-btn1-border-hover-color: var(--color-primary) ;

--link-btn2-text-color: var(--color-white);
--link-btn2-bg-color: var(--color-black) ;
--link-btn2-padding: 10px 30px ;
--link-btn2-border-width: 1px ;
--link-btn2-border-style: solid ;
--link-btn2-border-color: var(--color-black) ;
--link-btn2-border-radius: 4px ;
--link-btn2-hover-color: var(--color-white) ;
--link-btn2-bg-hover-color: var(--color-primary) ;
--link-btn2-border-hover-color: var(--color-primary) ;

--font-xs: 0.75rem;   /* 12px */
--font-sm: 0.875rem;  /* 14px */
--font-base: 1rem;    /* 16px */
--font-md: 16px;  /* 18px */
--font-lg: 1.25rem;   /* 20px */
--font-xl: 1.5rem;    /* 24px */
--font-xxl: 2rem;     /* 32px */
--font-xxxl: 2.25rem; /* 36px */

--max-width: 1200px;
--padding: 1rem;

--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--radius-12: 12px;
--radius-20: 20px;

--transition-fast: 0.2s ease-in-out;
--button-padding:12px 32px;

--breadcrumb-text-color: var(--color-black);
--breadcrumb-hover-color: var(--color-black);

--pagination-text-color: var(--color-black);
--pagination-bg-color: var(--color-white) ;
--pagination-padding: 10px 20px ;
--pagination-margin: 0px 2px ;
--pagination-border-width: 1px ;
--pagination-border-style: solid ;
--pagination-border-color: var(--color-black) ;
--pagination-border-radius: 4px ;
--pagination-hover-color: var(--color-white) ;
--pagination-bg-hover-color: var(--color-primary) ;
--pagination-border-hover-color: var(--color-primary);
--pagination-current-color: var(--color-white) ;
--pagination-bg-current-color: var(--color-primary) ;
--pagination-border-current-color: var(--color-primary);

--catposts-padding: 30px 30px;
--catposts-margin: 40px;
--catposts-radius:var(--radius-20);
--catposts-text-color:var(--color-black);

--primary-menu-text-color: var(--color-black);
--primary-menu-bg-color: var(--color-white);
--primary-menu-hover-text-color: var(--color-white);
--primary-menu-hover-bg-color: var(--color-primary);
--primary-menu-active-text-color: var(--color-primary);
--primary-menu-active-bg-color: var(--color-white);
--primary-menu-submenu-bg-color: var(--color-primary);
--primary-menu-submenu-text-color: var(--color-white);
--primary-menu-submenu-hover-bg-color: var(--color-secondary);
--primary-menu-submenu-link-color: var(--color-white);
--primary-mobile-icon-color:var(--color-black);
--primary-megmenu-bg-color: var(--color-white);
}

body {
  font-family: var(--site-font-family);
  line-height: var(--line-height-normal);
  font-size: var(--font-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  position: relative;
}

/*Link*/
a:link,
a:visited,
a:active {
  color: var(--link-color);
  text-decoration: none;
  border: none;
  transition: var(--transition-fast);
  font-size: 16px;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
  border: none;
}

a.one:link,
a.one:active,
a.one:visited {
  color: var(--link-one-color);
  text-decoration: none;
  border: none;
}
a.one:hover {
  color: var(--link-one-hover-color);
  text-decoration: none;
  border: none;
}

a.two:link,
a.two:active,
a.two:visited {
  color: var(--link-two-color);
  text-decoration: none;
  border: none;
}
a.two:hover {
  color: var(--link-two-hover-color);
  text-decoration: none;
  border: none;
}

a.white:link,
a.white:active,
a.white:visited {
  color: var(--link-white-color);
  text-decoration: none;
  border: none;
}
a.white:hover {
  color: var(--link-white-hover-color);
  text-decoration: none;
  border: none;
}

a.black:link,
a.black:active,
a.black:visited {
  color: var(--link-black-color);
  text-decoration: none;
  border: none;
}
a.black:hover {
  color: var(--link-black-hover-color);
  text-decoration: none;
  border: none;
}

a.grey:link,
a.grey:active,
a.grey:visited {
  color: var(--link-grey-color);
  text-decoration: none;
  border: none;
}
a.grey:hover {
  color: var(--link-grey-hover-color);
  text-decoration: none;
  border: none;
}

a.powered:link,
a.powered:active,
a.powered:visited {
  color: var(--link-one-color);
  text-decoration: none;
  border: none;
}
a.powered:hover {
  color: var(--link-one-hover-color);
  text-decoration: none;
  border: none;
}

/*Button*/
a.btn1:link,
a.btn1:active,
a.btn1:visited {
  color: var(--link-btn1-text-color);
  background-color: var(--link-btn1-bg-color);
  padding: var(--link-btn1-padding);
  border-width: var(--link-btn1-border-width);
  border-style: var(--link-btn1-border-style);
  border-color: var(--link-btn1-border-color);
  border-radius: var(--link-btn1-border-radius);
  text-decoration: none; font-weight: 500;
  display: inline-block; -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); 
box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); font-weight: 500;
}
a.btn1:hover {
  color: var(--link-btn1-hover-color);
  background-color: var(--link-btn1-bg-hover-color);
  border-color: var(--link-btn1-border-hover-color);
  text-decoration: none;
}

a.btn2:link,
a.btn2:active,
a.btn2:visited {
  color: var(--link-btn2-text-color);
  background-color: var(--link-btn2-bg-color);
  padding: var(--link-btn2-padding);
  border-width: var(--link-btn2-border-width);
  border-style: var(--link-btn2-border-style);
  border-color: var(--link-btn2-border-color);
  border-radius: var(--link-btn2-border-radius);
  text-decoration: none;
  display: inline-block;
}
a.btn2:hover {
  color: var(--link-btn2-hover-color);
  background-color: var(--link-btn2-bg-hover-color);
  border-color: var(--link-btn2-border-hover-color);
  text-decoration: none;
}

a.btn3:link,
a.btn3:active,
a.btn3:visited {
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: var(--link-btn1-padding);
  border-width: var(--link-btn1-border-width);
  border-style: var(--link-btn1-border-style);
  border-color: var(--link-btn1-border-color);
  border-radius: var(--link-btn1-border-radius);
  text-decoration: none;
  display: inline-block;
}
a.btn3:hover {
  color: var(--color-black);
  background-color: var(--color-secondary);
  border-color: var(--link-btn1-border-hover-color);
  text-decoration: none;
}


/*General*/
p{
  font-size: 16px;
  /* font-size: var(--font-base); */
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-normal);
}
h1, h2, h3, h4, h5, h6
{ 
  font-weight: var(--font-weight-bold);
}

.full{width:100%; float:left;}
.alpha{padding-left: 0; padding-right: 0;}
.beta{padding-left: 0; }
.gama{padding-right: 0;}

.shine-effect, .img-effect img { display: block; transition: mask-position 2s ease, -webkit-mask-position 2s ease; -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0,0,0,0.2) 50%, #000 75%);
      mask-image: linear-gradient(45deg, #000 25%, rgba(0,0,0,0.2) 50%, #000 75%); -webkit-mask-size: 800%; mask-size: 800%; -webkit-mask-position: 0; mask-position: 0;}
.shine-effect:hover, .img-effect:hover img {-webkit-mask-position: 120%;mask-position: 120%;}

button, input[type="button"], input[type="reset"], input[type="submit"]{ 
  background:  var(--color-primary); 
  color: var(--color-white); 
  font-size: var(--font-base); 
  line-height: var(--line-height-normal); 
  padding: var(--button-padding); 
  border: 0px solid; 
  border-radius: var(--radius-sm); 
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}
input[type="submit"]:hover{
  background:  var(--color-accent); 
  color:  var(--color-white); 
}

/*Breadcrumbs*/
.breadcrumbs{
  padding:0;
  margin: 0;
}
.breadcrumbs a{
  color: var(--breadcrumb-text-color);
  font-size: var(--font-sm);
}
.breadcrumbs a{
  color: var(--breadcrumb-hover-color);
  text-decoration: underline;
}

/*Pagination*/
.nav-links{
  float:right; 
  margin-top:20px;
}
.pagination .screen-reader-text{
  display:none;
}
.pagination{
  margin: 0px;
  padding: 0;
  float: right;
}
.pagination a, .pagination button, .pagination .dots{
  color: var(--pagination-text-color);
  background-color: var(--pagination-bg-color);
  padding: var(--pagination-padding);
  margin: var(--pagination-margin);
  border-width: var(--pagination-border-width);
  border-style: var(--pagination-border-style);
  border-color: var(--pagination-border-color);
  border-radius: var(--pagination-border-radius);
  text-decoration: none;
  display: inline-block;
}
.pagination a:hover, .pagination button:hover{
  color: var(--pagination-hover-color);
  background-color: var(--pagination-bg-hover-color);
  border-color: var(--pagination-border-hover-color);
}
.pagination .current{
  color: var(--pagination-current-color);
  background-color: var(--pagination-bg-current-color);
  border-color: var(--pagination-border-current-color);
  padding: 12px 20px;
  border-radius: var(--pagination-border-radius);
}

/*Comments*/
.comments-title{
  font-size: var(--font-lg); 
  line-height: var(--line-height-relaxed); 
  margin: 0 0 10px 0;
  padding: 25px 25px 0px 25px; 
}
.comment-navigation{
  width: 100%;
  float: left; 
  margin: 10px 0; 
  padding: 0 25px;
}
.comment-navigation .nav-links{
  margin: 10px 0; 
  width: 100%;
}
ol.comment-list{
  margin: 0 0 10px 0;
  width: 100%;
  float: left; 
  padding: 0 25px;
}
ol.comment-list li{
  padding: 15px; 
  background: var(--color-white); 
  border: 1px solid var(--color-grey-1); 
  margin-bottom: 5px;
}
.comment-metadata{
  float: right;
  margin-top: -25px;
}
.comment-metadata a{
  color: var(--color-grey-light); 
  font-size: var(--font-xs);
}
.comment-content{
  padding-top: 15px;
}
.nav-previous a, .nav-next a{
  font-size: var(--font-xs);
  padding: 6px 15px 3px 15px; 
  border: 2px solid var(--color-grey-light); 
  color: var(--color-grey-light); 
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.nav-previous a:hover, .nav-next a:hover{
  color: var(--color-muted); 
  border-color: var(--color-muted);
}
#reply-title{
  font-size: var(--font-xl);
  line-height: var(--line-height-normal); 
  margin-top: 5px;
}
#respond{
  padding: 15px 25px;  
  margin-top: 0px 0 20px 0; 
}
.comments-area{
  padding: 0px;   
  border: 1px solid var(--color-grey-2); ; 
  margin-top: 0px; 
  width: 100%;
  float: left; 
  background: var(--color-bg-light);
}
.comment-notes{
  font-size: var(--font-xs);
}
#comment-nav-below{
  margin-bottom: 30px;
}

/*Single Page*/
.post-content iframe, .post-content object, .post-content embed{
  width: 100%;
  height: 500px;
}
.post-content p:first-child{
  margin-top: 0;
}
.post-content p{
  margin: 20px 0; 
  font-weight: 400;
}
.post-content ul li, .post-content ol li{
  font-size: var(--font-base);
  line-height: var(--line-height-normal);
  margin: 4px 0;
  font-weight: var(--font-weight-normal);
}
.post-content ul, .post-content ol{
  margin: 20px 0;
  padding: 0;
}
.page-title{
  font-size: var(--font-xxl); 
  line-height: var(--line-height-normal); 
  margin:0 0 0 0;
  padding: 0px 0px;
  color: var(--color-primary); 
  font-weight: var(--font-weight-bold); 
}

/*footer Menu*/
ul#menu-footer-menu{
  margin: 0px auto;
  padding:0px 0px;
  text-align: center;
}
#menu-footer-menu li{
  display:inline-block;
  margin:0;
  padding:0;
  text-align: center;
}
#menu-footer-menu li a {
  padding:0px 10px 0px 16px;
  text-decoration:none;
  font-size: var(--font-base);
  margin:0 0 4px 0;
  line-height: var(--line-height-tight);
  display: inline-block;
  font-weight: var(font-weight-normal);
  color: var(--color-white);
  float: left;
  border-left:1px solid var(--color-white);
  height: 20px;
}
ul#menu-footer-menu li:hover a {
  color: var(--color-secondary);
  text-decoration: underline;
}
#menu-footer-menu li:first-child a{
  border:0;
  padding-left: 0;
}

/*Archive Posts*/
.category_posts{
  padding: var(--catposts-padding);
  box-sizing:border-box;
  margin-bottom: var(--catposts-margin);
  border-radius: var(--catposts-radius);
  background: var(--color-white);
  -webkit-box-shadow: 0px 6px 6px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:0px 6px 6px 0px rgba(50, 50, 50, 0.05);
  box-shadow:  0px 6px 6px 0px rgba(50, 50, 50, 0.05);
}
.category_description{
  margin-bottom: 30px;
}
.category_post_title{
  font-size: var(--font-xl);
  line-height: var(--line-height-normal);
  margin:0px 0 20px 0;
  padding:0;
  font-weight:var(--font-weight-bold);
  color:var(--catposts-text-color);
}
.category_posts img{
  border-radius: var(--radius-12);
}

/*matrix cards*/
.site_card{
  position: relative;
  height: 100%;
  margin: 0 0 30px 0;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-text);
}
.site_card_img{
  height: 240px;
}
.site_card img{
  width: 100%; 
  display: block; 
  margin: 0;
  padding: 0;
}
.site_card_info{
  padding: 20px;
  box-sizing: border-box;
}
.site_card_info h5{
  font-size: var(--font-md);
  line-height: var(--line-height-normal);
  margin: 0 0 12px 0;
  padding: 0;
}
.site_card_info p{
  margin: 0;
  padding: 0;
  color: var(--color-text);
}
.site_card_info span{
  font-size: var(--font-sm);
  color: var(--color-grey-light);
}
.site_card_info span i{
  color: var(--color-muted);
  margin: 0 6px 0 0;
}

.site_card_2{
  height: 260px;
  margin: 0 0 30px 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.site_card_2_info{
  padding: 20px;
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  background: rgba(0,0,0,0.7);
  color: var(--color-white);
}
.site_card_2_info h6{
  font-size: var(--font-md);
  line-height: var(--line-height-normal);
  margin: 0 0 12px 0;
  padding: 0;
  color: var(--color-white);
}
.site_card_info p{
  margin: 0;
  padding: 0;
  color: var(--color-white);
}

/*Custom*/
.container{max-width: 1280px}
.ml-auto{margin-left: auto !important;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.fgr0{margin: 0; padding: 0;}

/*Banner and Navs*/
.site_banner{
  position: relative;
  z-index: 0;
}
.site_banner .swiper-slide img{
  width: 100%;
}
.timeline_item  img{
  width: 100%;
}
.slider_center_nav a {
  position:absolute;
  width:44px;
  height:44px;
  top:47%;
  z-index: 2;
  color: var(--color-secondary);
  text-align: center;
  background:var(--color-primary);
  line-height:44px;
  font-size:var(--font-md);
  border-radius: 100%; border: 0px solid #fff;
}
.slider_center_nav a.swiper1-prev, a.swiper1-prev{
  left:60px;
}
.slider_center_nav a.swiper1-next, a.swiper1-next{
  right:60px;
}
.slider_center_nav a:hover, a.swiper1-prev:hover, a.swiper1-next:hover{
  background:var(--color-secondary); 
  color: var(--color-primary);
}
.slider_center_nav .swiper-pagination1{
  text-align: center;
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: 30px;
}
.swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border:2px solid var(--color-primary);
  background: var(--color-primary);
  opacity:0.9
}
.swiper-pagination-bullet-active{
  opacity:1;
  background: var(--color-secondary); 
}

.slider_nav{
  position: relative;
}
.slider_nav a{
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: block;
  float: left;
  border-radius: 0px;
  text-align: center;
  margin-right: 8px;
  font-size: var(--font-md);
  color: #6F7775;
  background: var(--color-white);
  border: 1px solid #DDDDDD; border-radius: 100%;
  
}
.slider_nav a:hover{
  color: #fff;
  background: #757575;
  border-color: #757575;
  text-decoration: none;
}

/*Topbar*/
.site_topbar{
  background: var(--color-primary);
  color: var(--color-white);
  padding-top: 8px;
  padding-bottom: 8px; 
  font-size: 1.49rem;
}

ul.site_topbar_contact{
  margin:0;
  padding:0;
}
ul.site_topbar_contact li{
  list-style-type: none;
  display: inline-block;
  padding: 0 12px;
  color: var(--color-white);
  float: left;
}
ul.site_topbar_contact li i{
  padding-right: 8px;
  color: var(--color-primary);
  font-size: var(--font-lg);
}

/*Social*/
ul.site_social{
  margin:12px 0 0  0;
  padding: 0;
}
ul.site_social li{
  list-style-type: none;
  display: inline-block;
  float: left;
}
ul.site_social li a{
  color: var(--color-white);
  font-size: 1.4rem;
  display: block;
  float: left;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius:0px;
  margin-right: 8px;
  text-align: center;
  background: none; border-radius: 8px; border:1px solid #fff;
}
ul.site_social li a:hover{
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/*Header*/
.site_header{
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: -2px 3px 5px 0px rgba(0,0,0,0.04);
-webkit-box-shadow: -2px 3px 5px 0px rgba(0,0,0,0.04);
-moz-box-shadow: -2px 3px 5px 0px rgba(0,0,0,0.04);  position: relative; z-index: 2;
}
.site_logo{
  display: flex;
  gap:20px
}
.site_logo_name{
  font-size: var(--font-xl);
  height: var(--line-height-normal) ;
  text-transform: uppercase;
  font-weight: 700;
}

/*Nav*/
.site_nav{
  background-color: rgba(234, 234, 234, 0.5);
  color: var(--color-black);
}

/*Footer*/
.site_footer{
  padding:0;
  background: #292D32 url('../img/footer-bg.jpg') no-repeat center; background-size: cover;
  color: var(--color-white);
}
.footer_title{
  color: var(--color-white);
  font-size: var(--font-md);
  line-height: var(--line-height-normal);
  margin: 0 0 16px 0;
  padding: 0;
  font-weight: 700;
}
.copyright{
  margin-top: 48px;
}
.footer_address p:last-child{
  margin-bottom: 0;
}
/*quicklinks*/
ul.quicklinks{
  margin:0px 0 0  0;
  padding: 0; display: flex; gap: 0 20px; flex-wrap: wrap;
}
ul.quicklinks li{
  list-style-type: none; 
  display:  block; 
  min-width: calc(50% - 10px); max-width: calc(50% - 10px); display:flex
}
ul.quicklinks li a{
  color: var(--color-white);
  opacity: 1; border-bottom: 2px dashed #fff; display: block; width: 100%; text-decoration: none; padding-top: 12px; padding-bottom: 12px;
}
/*ul.quicklinks li:before {font-family: 'FontAwesome';content: '\f105';margin:0px 0 0 0px;color: #fff; position: absolute;}*/
ul.quicklinks li a:hover{
  color: var(--color-secondary); 
  text-decoration: none; 
  opacity: 1; border-color: var(--color-secondary);
}
.zindex2{position: relative; z-index: 2;}

/*custom*/
#menu-item-3130{display: none;}
.header_logo_spc{padding-left: 180px;}
ul.topbar{margin: 0;padding: 0;}
ul.topbar li{list-style-type: none; display: inline-block;}
ul.topbar li a{color: #000; display: block; padding: 8px 12px; background-color: var(--color-secondary); font-size: 1.5rem; border-radius: 4px;} 
ul.topbar li a:hover{background-color: var(--color-black); color: #fff}
.logo{position: absolute; left: 0; top: -10px; width: 190px; z-index: 3;}

.menuzord-menu ul.dropdown{-webkit-border-radius: 8px;-webkit-border-top-left-radius: 0;-moz-border-radius: 8px;-moz-border-radius-topleft: 0;
border-radius: 8px;border-top-left-radius: 0;}
.menuzord-menu ul.dropdown li:first-child a{-webkit-border-top-right-radius: 8px;
-moz-border-radius-topright: 8px; border-top-right-radius: 8px;}
.menuzord-menu ul.dropdown li:last-child a{-webkit-border-bottom-right-radius: 8px; -webkit-border-bottom-left-radius: 8px; -moz-border-radius-bottomright: 8px;
-moz-border-radius-bottomleft: 8px; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px;}
.site_footer_2{padding-top: 24px; padding-bottom: 20px; background: var(--color-primary);}
.site_footer_1{padding-top: 48px; padding-bottom: 48px;}

.foot_contact{
  font-size: 16px;
}
.foot_contact b{font-weight: 600; display: block; margin-bottom: 4px;font-size: 16px;}

.header_spc{padding-left:60px; padding-right:60px}

.subscribe_form_item{display: flex;}
.subscribe_form_item p{margin: 0;}
.subscribe_form_item input[type=email]{width: 100%; padding: 10px 20px; border:1px solid #5EB9E3; border-radius: 0; height: 50px; background:#fff; color: #000; border-right: 0}
.subscribe_form_item button{border-radius: 0; height: 50px; background: var(--color-primary); color:#fff; width:100%; border-radius:8px; font-weight:600}
.subscribe_form_item button:hover{background: var(--color-secondary); color: #000 ;}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus, .form-control:focus, .form-select:focus {
  border:1px solid var(--color-primary)  !important;
  box-shadow: none;
  outline: 0 none;
}

.sidebar_social{width: 40px; position: fixed; right: 0; top: 40%; background: rgba(255, 255, 255, 0.5); z-index: 6;}
.sidebar_social ul{margin: 0;padding: 0;}
.sidebar_social ul li{list-style-type: none; display: inline-block; float: left;}
.sidebar_social ul li a{width: 40px; height: 40px; color: #000; margin-bottom: 4px; float: left; text-align: center; line-height: 40px;}
.sidebar_social ul li a:last-child{margin-bottom: 0;}
.sidebar_social ul li a:hover{background-color: var(--color-primary); color: #fff}

.site_join_bnp{background: url('../img/join-bnp.jpg') no-repeat top center; background-size: cover; position: relative; color: #fff}
.site_join_bnp:before{position: absolute; content: ''; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0,0,0,0.8); z-index: 1;}
.home_spc{padding-top: 60px; padding-bottom: 60px;}
.site_title{color: #000; font-size: 2.4rem; line-height: 130%; margin-bottom: 30px; padding-left: 24px; border-left: 8px solid var(--color-primary);}
.site_join_txt p{font-size: 1.8rem; line-height: 140%; font-weight: 600; padding-top: 40px; padding-bottom: 20px;}
.site_join_txt{padding-left: 100px; padding-right: 100px; padding-bottom: 60px;}

.site_banner{position: relative; z-index: 1;}
.home_banner_entry{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 1280px; width: 100%;}
.home_banner_content{max-width: 820px}
.home_banner_content h2{font-size: 3.0rem; line-height: 130%; color: var(--color-primary); font-weight: 700; margin-bottom: 30px;}
.home_banner_content p{font-size: 1.5rem; color: #000; font-weight: 700;}

.home_banner_pagination{position: absolute; bottom: 30px; text-align: center; z-index: 2; width: 100%;}
.timeline_nav{position: absolute; bottom: 60px; max-width: 1280px; margin:0 auto; z-index: 2; width: 100%; color: #fff; left: 50%; transform: translateX(-50%); margin-left: 40px;}
.timeline_dot_item{position: relative;   display: flex; flex-direction: column; padding-bottom: 20px; padding-left: 4px; padding-top: 40px;}
.timeline_dot_item span{margin-bottom: 10px;}
.site_timeline{background: #000}
.timeline_dot_item:before{position: absolute; border-bottom: 2px solid #FDCF0A; width: 100%; left:0; bottom: 25px; content: ''; }
.timeline_dot{width: 12px; height: 12px; border-radius: 100%; background: #FDCF0A; position: relative; z-index: 2px;    }
.swiper-slide-thumb-active .timeline_dot:before{content: ''; width: 20px; height: 20px;  position: absolute; left: -5px; top: -5px; border-radius: 20px; z-index: -1; border:2px solid #FDCF0A  }
.timeline_nav .swiper-slide:last-child .timeline_dot_item:before{display: none;}
.timeline_title{display: none;}
.swiper-slide-thumb-active .timeline_title{display: block; position: absolute; top: 0px; left: 0; background-color: #FDCF0A; color: #000; font-size: 0.8rem; padding: 4px 8px; width:100%}
.down_arrow {position: absolute;bottom: -16px; left: 12px; border-width: 8px; border-style: solid; border-color: #FDCF0A transparent transparent transparent; }
.timeline_item{position: relative;}
.timeline_item:before{position: absolute; content: ''; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0,0,0,0.5); z-index: 1;}
.timeline_item_entry{position: absolute; top: 100px; max-width: 1280px; left: 50%; transform: translateX(-50%); width: 100%; z-index: 2; color: #fff}
.timeline_item_content{max-width: 700px; padding-left: 40px; position: relative;}
.timeline_item_content:before{position: absolute; content: ''; width: 8px; height: 50px; background: #FDCF0A; left: 0; top: 12px}
.timeline_item_content h2{font-size: 4rem; line-height: 100%; font-weight: 800; letter-spacing: -2px}
.timeline_item_content h3{font-size: 2.8rem; line-height: 120%; font-weight: 500; color: var(--color-secondary); margin: 20px 0;}
.timeline_item_content p{font-size: 1.25rem;}

.home_founder{background: url('../img/join-bnp.jpg') no-repeat top center; background-size: cover; position: relative; color: #fff}
.home_founder:before{position: absolute; content: ''; width: 100%; height: 100%; top: 0; left: 0; background: rgba(62,11,10,0.9); z-index: 1;}
.founder_designation{font-size: 1rem !important; color: #fff}
.home_founder_entry a{color: #fff; text-decoration: underline;}
.home_founder_entry p{font-size: 1.25rem;}
.site_btn a{padding: 10px 32px; font-weight: 500; text-decoration: none;}
.site_btn a:hover{background-color: var(--color-primary) !important; color: #fff !important}
.ki_item{padding: 24px 32px 40px 32px; background-color: #FFF7F7; border-radius: 8px; text-align: center; height: 100%; transition: background-color 0.5s ease;}
.ki_item h4{color: var(--color-primary); font-size: 1.8rem; line-height: 130%; margin-bottom: 20px;}
.ki_item p{margin:  0; padding:0; font-weight: 600; font-size: 1.25rem;}
.ki_item_alt{background-color: #FBFBFB}
.ki_item:hover{background-color: var(--color-primary); color: #fff}
.ki_item:hover *{color: #fff}

.home_news_header{margin-bottom: 20px;}
.home_title_1{position: relative;}
.home_title_1 span{display: inline-block; min-width: 240px; background: var(--color-primary); color: #fff; font-size: 1.25rem; padding: 8px 40px; position: relative; z-index: 1;}
.home_title_1:before{position: absolute; content: ''; width: 100%; height: 6px; border:1px solid #DFDFDF; left: 0; top: 18px; z-index: 0;}
.home_news_more{display: flex; justify-content: space-between; align-items: center;}
.home_news_item_img{height: 350px; transition: transform 0.6s ease; overflow: hidden; border-radius: 8px }
.home_news_item_entry{padding-top: 20px; padding-bottom: 32px; max-width: 80%}
.news_date{color: #ECA30C; margin-right: 6px;}
.text-site{color: var(--color-primary);}
.home_news_title{font-size: 1.25rem; line-height: 130%; margin: 16px 0 12px 0; font-weight: 600;}
.home_videos{background-color: #F4F4F4}
.post_all{position: absolute; right: 0; top: 0;}
.post_all a{display: flex; padding: 8px 20px; background-color: var(--color-primary); color: #fff; display: inline-block; border-radius: 4px}
.post_all a:hover{background-color: #000; color: #fff}

.home_news_item_img iframe, .home_news_item_img object, .home_news_item_img embed{width:100%; height:350px;}
.home_video_sub_img iframe, .home_video_sub_img object, .home_video_sub_img embed{width:100%; height:150px;}


a.video_cat:link, a.video_cat:active, a.video_cat:visited{color: #000; text-decoration:none;border: none; background: #FDCF0A; display: inline-block; font-size: 0.9rem; padding: 4px 24px; border-radius: 4px;}
a.video_cat:hover{color: #fff;text-decoration: none; border: none; background-color: var(--color-primary);}
.home_video_title{font-size: 1.5rem; line-height: 130%; margin: 12px 0 12px 0; font-weight: 500;}
.site_post_meta{display: flex; gap: 20px; align-items: center; color: var(--color-primary); text-transform: uppercase; font-size: 0.9rem;}
.home_video_title2{font-size: 1.25rem; line-height: 130%; margin: 12px 0 12px 0; font-weight: 500;}
.home_video_sub{margin-bottom: 30px;}
.home_video_sub_img{height: 140px; border-radius: 8px}
.video_boder{border-left: 1px solid rgba(37, 51, 70, 0.5); }

.page_header{position: relative; z-index: 0;}
.page-id-14 .page_header::before {content: ''; position: absolute;left: 0;top: 0;   width: 100%; height: 100%; background: linear-gradient(270deg, rgba(0, 0, 0, 0.59) 0%, rgba(255, 255, 255, 0.6) 100%);z-index: 1; pointer-events: none;}
.page_header img{width: 100%;}
.page_header_container{position: absolute; bottom: 60px; max-width: 1280px; left: 50%; transform: translateX(-50%); width: 100%;z-index: 1; display: flex; }
.page_header_entry{padding: 24px 32px; background: rgba(255,255,255,0.45); width: auto;}
.page_header_entry h1{font-size: 3rem; line-height: 130%; color: var(--color-primary); margin: 0 0 0px 0;padding: 0;}
.page_header_entry p{color: #000; font-weight: 600; font-size: 1.5rem; line-height: 130%; max-width: 800px; margin: 0; padding: 0;}
.page_content{padding-top: 60px; padding-bottom: 60px;}

.bnp_postlist_1_img{height: 240px; position: relative;}
.bnp_postlist_1_date{position: absolute; left: 0; top: 40px; background: var(--color-primary); color: #fff; text-transform: uppercase; font-size: 1.125rem; padding: 10px 20px; font-weight: 700;}
.bnp_postlist_1_entry{padding: 20px 0; min-height: 200px;}
.bnp_postlist_1_entry p{margin: 0;}
.bnp_postlist_1_title{font-size: 1.5rem; text-transform: uppercase; margin-bottom: 16px;}
.bnp_postlist_1_title b, .bnp_postlist_1_title span{color: var(--color-primary); text-transform: uppercase;}
.bnp_postlist_1_items{margin-top: 20px; margin-bottom: 20px;}
.bnp_postlist_1_more{padding-bottom: 20px;}

.bnp_postlist_1_img iframe, .bnp_postlist_1_img object, .bnp_postlist_1_img embed{width:100%; height:240px;}

.site_section{padding-top: 60px; padding-bottom: 60px;}
.verticalTab .nav-link{padding: 12px 24px; background: #fff; color: #000;   -webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1); 
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1); text-align: left; font-weight: 600; margin-bottom: 8px; display:flex} 
.verticalTab  .nav-pills .nav-link.active, .verticalTab  .nav-pills .show > .nav-link{background-color: var(--color-primary); position: relative;}
.verticalTab  .nav-pills .nav-link.active:before{position: absolute; width: 30px; height: 38px; background:  var(--color-primary); right: -30px; top:5px; content: '';  clip-path: polygon(0 0, 80% 50%, 0 100%); }


.vision-timeline {position: relative; margin: 0px auto;padding: 20px;}
.vision-timeline::before { content: '';position: absolute;left: 50%; top: 0;
  bottom: 0;  width: 2px;  background: var(--color-primary);  transform: translateX(-50%);}
.timeline-block { position: relative; width: 50%; padding: 20px 30px; box-sizing: border-box;}
.timeline-block.left { left: 0;}
.timeline-block.right { left: 50%; text-align: left;}
.timeline-marker { position: absolute; top: 25px; left: 50%; transform: translateX(-50%); display: flex;  align-items: center;  z-index: 2;}
.timeline-dot { width: 18px; height: 18px; background: var(--color-primary); border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 2px var(--color-primary); z-index: 3;}
.timeline-block.left .timeline-year { margin-right: 15px; order: -1; }
.timeline-block.right .timeline-year {margin-left: 15px;}
.timeline-year { padding: 0px; font-weight: 700; font-size: 1.75rem; white-space: nowrap; width:90px;}
.timeline-card { background: #fff; padding: 20px; border-radius: 10px;  box-shadow: 0 2px 10px rgba(0,0,0,0.08);  position: relative;  z-index: 1;}
.timeline-block.left .timeline-card { margin-right: 30px; position: relative;} 
.timeline-block.right .timeline-card { margin-left: 30px; position: relative;}
.timeline-block.left  .timeline-card:after{position: absolute; content: ''; top: 20px; right: -28px; border-top: 15px solid transparent; border-bottom: 15px solid transparent;  border-left: 30px solid #fff;}
.timeline-block.right  .timeline-card:after{position: absolute; content: '';   top: 20px; left: -28px; border-top: 15px solid transparent; border-bottom: 15px solid transparent;  border-right: 30px solid #fff;}
.timeline-card h4 { color: var(--color-primary); font-size: 1.1rem; margin-bottom: 10px;}
.timeline-content p { margin: 0; color: #555; font-size: 0.95rem;}
.right .timeline-year{text-align:right}

.fade-slide {opacity: 0; transform: translateY(50px); transition: all 0.8s ease;}
.fade-slide.visible { opacity: 1; transform: translateY(0);}
.vision-timeline .left .timeline-marker{right: -175px; flex-direction: row-reverse; gap: 20px; left: auto; top: 38px; width:122px;}
.vision-timeline .right .timeline-marker{left: -62px; flex-direction: row-reverse; gap: 20px; right: auto; top: 38px}
.timeline-marker{width: fit-content;}

.site_manifesto_items{padding: 32px; background: #FFF7F7}
.site_manifesto_download{display: inline-flex; -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); align-items: center; background-color: #FDCF0A; flex: 0 0 auto;}
.site_manifesto_icon{background: #EDF0F5; padding: 8px;}
.site_manifesto_text{ padding: 0 20px; font-weight: 500;}
.site_manifesto_items h6{font-size: 1.5rem; line-height: 140%; text-transform: uppercase; color: #00235A}
.site_manifesto_items p{color: #00235A}
.site_manifesto_wrap:nth-child(even) .site_manifesto_items{background-color: #FBFBFB}

.newsletter_items{background-color: #FDFDFD; border-radius: 12px; overflow: hidden; border:1px solid #D9D9D9; height: 100%; position:relative}
.newsletter_items .bnp_postlist_1_img{border-bottom: 6px solid var(--color-primary);}
.newsletter_items .bnp_postlist_1_entry{padding: 24px 24px 100px 24px;}
.newsletter_items .bnp_postlist_1_more{padding: 0 24px 24px 24px; position:absolute; bottom:0}
.newsletter_items p{color: #333}

.site_bg_1{background-color: #FFFAFA}
.site_initiative{padding: 24px; -webkit-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.05); box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.05);}
.initiative_status{font-size: 0.85rem; line-height: 120%; padding: 6px 20px; background: var(--color-primary); color: #fff; font-weight: 500;}
.site_initiative h5{color: #000; font-size: 1.8rem; line-height: 130%;  margin-bottom: 30px; padding-left: 24px; border-left: 8px solid var(--color-primary); margin-top: 20px;}
.bnp_campaign_1_entry{padding: 64px 24px 70px 24px; position: relative; min-height: 260px}
.bnp_campaign_1_entry .initiative_status{position: absolute; left: 0; top: 20px}
.completed{background-color: #757575}
.bnp_news_1_entry{padding: 90px 24px 90px 24px; position: relative; min-height: 260px}
.bnp_news_1_title{font-size: 1.4rem; line-height: 130%; font-weight: 600; margin-bottom: 20px;}
.bnp_news_1_entry .bnp_postlist_1_date{font-size: 1.1rem; padding: 4px 12px; top: 28px}
.video_list .bnp_postlist_1_img{border:0 !important}
.video_list .bnp_postlist_1_entry{min-height: 100px}
.bnp_video_title{font-size: 1.2rem; line-height: 130%; font-weight: 600; margin-bottom: 20px;}

#subscribeModal input[type=text], #subscribeModal input[type=email]{padding: 10px 20px; width: :100%; border-color:#ccc; min-width:100%}
#subscribeModal label{width:100%;}
#subscribeModal p{margin-bottom:16px;}
.newsletter_submit p{display:flex; gap:20px; justify-content:space-between}
.newsletter_submit{padding-top:10px;}

.bnp_video{position:relative; z-index:0}
.bnp_video video{width:100%; display:block; position:relative}
.bnp_video_entry{position:absolute; width:100%; bottom:60px; color:#fff; z-index:1}
.bnp_video_entry h1{font-size: 3rem; line-height: 130%; color: var(--color-primary); margin: 0 0 0px 0;padding: 0;}
.bnp_video_entry p{font-size:1.4rem; line-height:130%; margin:0; color:#fff; font-weight:600}

.fig0{margin:0; padding:0}
.verticalTab .nav-pills .nav-link img{height:24px; width:auto; margin-right:16px; }
.bnp_ideology{padding:32px 32px 32px 32px; background:#F6EDEE; border-radius:8px; height:100%; position:relative}
.bnp_ideology h2{color:#BE2326; margin:0; padding:0; font-size:5rem; line-height:100%}
.bnp_ideology h4{ margin:16px 0; padding:0; font-size:1.4rem; line-height:120%}
.alt_bg{background:#FBFBFB}
.bnp_ideology p:last-child{position:absolute; left:32px; bottom:24px;}
.bnp_ideology:hover{background: var(--color-primary); color:#fff}
.bnp_ideology:hover h2{color:#fff}
.bnp_ideology:hover a.btn1:hover{background:#fff; color:#000}
.timeline-content ul{margin:12px 0;}

.bnp_pledge{border-radius:40px; padding:48px 32px; text-align:center}
.bnp_pledge p{font-size:1.5rem; line-height:150%}
.bnp_anthem{padding:32px; background:var(--color-primary); color:#fff; border-radius:40px;}
.bnp_anthem_text{font-size:1.8rem !important; line-height:130%; margin:0; padding:0}
.bnp_btns a:hover{background:var(--color-secondary) !important; color:#000 !important}

.about_finance{display:flex; align-items:center; gap:20px; background: var(--color-secondary); color: #000}
.about_finance p{margin: 0; font-size:1.15rem}
.about_finance figure{min-width: 60px; background: #F4F4F4 ;  text-align: center;  margin: 0; padding-top: 10px; padding-bottom: 10px}
a.about_finance {text-decoration: none !important; color:#000}
.about_finance:hover{background: var(--color-primary); color:#fff; }

.team-filter-wrap{padding-top:20px; }
.team_page_filter{padding-top:40px; }
ul.team-filters{margin:0 0 10px 0; padding:0; position:relative}
.team_page_filter.sticky-active { position: fixed; top: 134px;  left: 0; width: 100%; background: #fff; z-index: 998; padding-top:20px; -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);}

ul.team-filters li{list-style-type:none; display:inline-block; color:#000; padding:0 20px; border-right:1px solid #000; cursor:pointer; font-weight:500; font-size:1.25rem; margin-bottom:12px;}
ul.team-filters li:last-child{border:0}
ul.team-filters li.active, ul.team-filters li:hover{color: var(--color-primary)}
.team_search{padding: 10px 20px !important;min-width: 500px;border: 1px solid #3A506B !important;border-radius: 30px !important; background: url('../img/search.svg') no-repeat right 16px center;} 
.team_memebr_img {position:relative}
.team_memebr_img img{width:100%; display:block; margin:0; padding:0}
.team_memebr_info{padding-top:20px; padding-bottom:20px;}
.team_mem_spc{margin-top:30px;}
.team_memebr_info i{color:#555; font-size:0.9rem}
.site_tile_2{color: #000; font-size: 1.2rem; line-height: 130%; margin: 16px 0 10px 0; padding-left: 16px; border-left: 8px solid var(--color-primary);}
.team_memebr_info span{text-transform:uppercase}
.team_memebr_info p{font-weight:400; color:  var(--color-primary); font-size:1rem; margin-top:10px;}
.team_memebr_img span{position:absolute; left:0; top:0; font-size:0.8rem; background:var(--color-primary); color:#fff; padding:4px 12px; z-index:1}
.team-search{margin-bottom:16px;}

.team_page_filter.sticky-active ul.team-filters li{padding:0 10px; font-size:1rem}
.sticky .logo{width:160px;}
.cguide_item{height:100%; border:1px solid #ddd; border-radius:12px; overflow:hidden; background:#f7f7f7}
.cguide_item_img{padding:10px; text-align:center; background:#fff}
.cguide_item_img img{width:auto; max-height:200px; margin:0 auto}
.cguide_item_title{padding:24px; text-align:center}
.cguide_item_title h3{font-size:1.5rem; margin:0; padding:0;}

.team_bg_2 { background-color: #FFFAFA; }
.team_bg_1 {  background-color: #F5F5F5; }
.team_bg_3{background:#FBFBFB}
.team_bg_4{background:#FBFBFD}
.team_bg_5{background:#F6EDEE}

.manifesto_bg{background:url('https://dev.nammabnp.org/wp-content/uploads/2025/10/manifesto-bg.jpg') no-repeat center; background-size:cover}

.manifesto_focus{padding:24px; background:#fff; border-radius:8px; height:100%; -webkit-box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.1); 
box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.1); text-align:center; margin-top:20px;}
.manifesto_focus img{margin-bottom:20px;}
.manifesto_focus h5{font-size:1.15rem; line-height:140%; margin:0; padding:0; font-weight:600}
.sv_ipt input[type=text], .sv_ipt input[type=email], .sv_ipt select{padding:10px 20px; border:1px solid #ccc; width:100%; background:#fff}
.sv_ipt textarea{padding:10px 20px; border:1px solid #ccc; width:100%; height:200px;}
.site_manifesto_download{color:#000}
.site_manifesto_download:hover{background: var(--color-primary); color:#fff}

.bh_items{padding:32px 32px 100px 32px; position:relative; height:100%; border-bottom:8px solid transparent;}

.bh_more{position:absolute; bottom:10px; left:32px;}
.bh_items:hover{background:#fff; border-bottom:8px solid var(--color-primary); -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);}
.rci_select select{padding:10px 20px; border:1px solid #ccc; min-width:200px;   background:#fff; border-radius:20px;}
.rci_item{padding:24px; border-radius:20px; -webkit-box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1); box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1);}
.rci_item h2{font-size:3rem; line-height:120%; color:var(--color-primary)}
.rci_item h6{font-size:1.2rem; line-height:120%; text-transform:uppercase}
.rci_item h3{font-size:2.0rem; line-height:120%; text-transform:uppercase; margin-bottom:0}
.rci_item2{padding:24px; border-radius:20px; -webkit-box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1); box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.1); }
.rci_item2 .wp-block-group__inner-container{display:flex; align-items:center; justify-content:space-between; color:#00235A}
.rci_item2 h4, .rci_item2  h2{min-width:50%; margin:0; padding:0}
.rci_item2 h2{text-align:right !important; color:#FDCF0A; font-size:2.6rem; border-left:1px solid #ddd}

.rci_life_cycle{padding:32px;  border-radius:8px;}
.rci_life_cycle .wp-block-group__inner-container{display:flex; gap:30px; align-items:center;}
.rci_life_cycle p, .rci_life_cycle h3 {margin:-0; padding:0}

.work_list{padding:24px; border-radius:8px; -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1); box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1); height:100%; margin-bottom:0px; text-align:center}
.work_list p{margin:0}
.work_list h3{font-size:2.4rem; line-height:130%; margin:0 0 16px 0; padding:0; color:var(--color-primary)}
.work_list h4{font-size:1.4rem; line-height:130%; margin:0 0 16px 0; padding:0}
.work_list:hover{background:var(--color-primary); color:#fff}
.work_list:hover h3{color:#fff}
.site_title3{color: #000; font-size: 1.8rem; line-height: 130%; margin-bottom: 20px; padding-left: 24px; border-left: 8px solid var(--color-primary);}

.bnp_work_1 {padding:32px 64px; border-radius:8px; margin-bottom:30px;}
.bnp_cguide_entry{padding: 20px 24px 80px 24px ; min-height: 100px;}
.bnp_cguide_entry h6{min-height:64px;}

.site_status{display:inline-block; padding:6px 24px; background:#CCCCCC; color:#000; font-size:0.8rem; line-height:140%; font-weight:600; margin-bottom:20px;}
.site_status.Active, .initiative_status.Active{background:var(--color-primary); color:#fff}
.site_status.Completed, .initiative_status.Completed{background: #37A235; color:#fff}
.site_status.Inactive, .initiative_status.Inactive{background: #757575; color:#fff}

.cat_post_excerpt{min-height:120px;}
.news_search{display: flex; gap:0; margin-bottom:20px; border-radius: 30px; border:1px solid #ccc; overflow:hidden}
.news_search  input[type=search]{padding: 12px 20px !important; margin: 0 !important;  border-radius:0;border: 0; -webkit-border-top-left-radius: 30px; -webkit-border-bottom-left-radius: 30px; -moz-border-radius-topleft: 30px; -moz-border-radius-bottomleft: 30px; border-top-left-radius: 30px;
border-bottom-left-radius: 30px;  }
.news_search button{ padding:10px 20px; margin:0;border-radius:0; background:#ccc; color:#000; border:0}
.news_search button:hover{background: var(--color-primary); color: #fff}

.bnp_postlist_1_img i {position: absolute; left: 50%;  top: 50%;  transform: translate(-50%, -50%);   background: #000;
  color: #fff;  width: 40px;  height: 40px;  border-radius: 40px;  text-align: center;  line-height: 40px;  padding: 0; }
.work_initiative{padding:32px; }
.work_initiative_date .wp-block-group__inner-container{display:flex; font-weight:700; margin-bottom:20px;}
.work_initiative_date h4{padding:8px 20px; background:#BE2326; color:#fff; font-size:1.2rem; line-height:2rem}
.work_initiative_date h5{padding:8px 20px; background:#D9D9D9; color:#000; font-size:1.2rem; line-height:2rem}
ul.site_list{margin:20px 0; padding:0 0 0 12px;}
.work_initiative strong{color:var(--color-primary); font-weight:600}
.work_initiative a{color:#0088FF}
.work_initiative a:hover{color:var(--color-primary); }
.bnp_map{margin-top:60px;}

.bnp_cpntact_ipt input[type=text], .bnp_cpntact_ipt input[type=email], .bnp_cpntact_ipt select{padding:10px 20px; border:1px solid #ccc; width:100%; background:#fff}
.bnp_cpntact_ipt textarea{padding:10px 20px; border:1px solid #ccc; width:100%; height:200px;}
.bnp_cpntact_ipt [type="checkbox"]{margin-right:10px; margin-left:0}

.custom-lang-switcher{background: #fff; border-radius: 20px; display:flex; color:#000; font-size:0.8rem; gap:0 }
.custom-lang-switcher span{background: #000; color: #fff !important; border-radius:20px; padding: 4px 10px}
.custom-lang-switcher a{padding: 4px 8px 4px 6px; color:#000}

.sticky {position: sticky; top: 0;z-index: 1000;background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);padding: 0px 0px;transition: all 0.3s ease;left:0}
.galleryList_entry{background-color: #FDFDFD; border-radius: 12px; overflow: hidden; border:1px solid #D9D9D9; height: 100%; position:relative;}
.galleryList_1{height:240px;}
.galleryList_2{padding: 24px 24px 24px 24px;}
.galleryList_2 h6{font-size: 1.2rem; line-height: 130%; font-weight: 600;  }
.work_total h2{color:#BE2326}

.team_search_ward{display:flex; gap:30px;}
.team_search_ward select{padding:12px 20px; background:#fff; border:1px solid #3A506B; border-radius:40px;}
.page_breadcrumb{padding-top:30px; padding-bottom:30px; background:#fff}
.team_mbmber_img {position: relative;display: inline-block;}
.team_mbmber_img::before {content: ''; position: absolute;top: 20px;left: 20px;  width: 100%; height: 100%; background: #FDCF0A;z-index: 1;  }
.team_mbmber_img img{position:relative; z-index:2}
.knowList{margin-bottom:40px;}

.content-section{min-height: 200px; position:relativ; padding-bottom:60px}
.read-more-button {position: absolute; bottom:40px; color: var(--link-btn1-text-color); background-color: var(--link-btn1-bg-color); padding: var(--link-btn1-padding);  border-width: var(--link-btn1-border-width);  border-style: var(--link-btn1-border-style);  border-color: var(--link-btn1-border-color);  border-radius: var(--link-btn1-border-radius);  text-decoration: none; font-weight: 500;  display: inline-block; -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1); font-size:1rem; cursor:pointer }
.read-more-button a{padding:0; background:none; border-radius:0; color:#000; font-size:1rem; cursor:pointer; font-weight: 500;  }
.hidden {display: none;}

.video_list .bnp_postlist_1_entry{padding-bottom:24px;}
.video_list .bnp_video_title{margin:0}
.mem_desig2{font-size:1rem; display:blink; margin-bottom:0px; width:100%; color:#000; float:left}
.mem_desig1{font-size:1rem !important; display:blink; margin-bottom:0px; width:100%; color:#000 !important; float:left; font-weight:400; margin-bottom:12px;}
.bnp_about_video iframe, .bnp_about_video object, .bnp_about_video embed{width:100%; height:500px}
.pop_btn{position:absolute; right:30px;}

.ofa_rp_item a{display:flex; height:100%; color:#000}
.ofa_rp_item:hover .manifesto_focus{background:#f4f4f4}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
/*.home_timeline_nav{display: none;}*/
.np_items{height: 100%; padding-bottom: 44px;}
.home_news_all{position: absolute; width: 100%; bottom: 0}
.home_timeline_nav{ position:absolute; z-index:4; left:47.5%;
  transform: translateX(-50%); bottom:200px;}
.home_timeline_nav a{padding: 10px 16px; background: var(--color-primary); color:var(--color-secondary); margin: 0 2px; border-radius: 12px; text-decoration: none;}
.home_timeline_nav a:hover{background-color: var(--color-secondary); color: var(--color-primary);}
.sticky-active ul.team-filters{margin-bottom: 0  !important}
.ward-team-mem_list, .all-mem_list-ward-team{display: none;}
#ward-team{ background: #eee;  }

.mob_home_lang{ position: absolute; top:4px; right:60px; z-index: 3}
.mob_home_lang_items{display: flex; gap: 20px; align-items: center;}
.mob_home_lang_items i{font-size: 1.4rem; line-height: 2rem; color: #000}

a.lang_btn:link, a.lang_btn:active, a.lang_btn:visited{color: #000; text-decoration:none;border: none; background:#fff; display:inline-block; padding:6px 12px; border-radius: 4px;}
a.lang_btn:hover{color: var(--color-primary);text-decoration: none; border: none; background: var(--color-secondary)}

.main_banner_nav{display: flex; gap: 20px; align-items: center; justify-content: center;}
.main_banner_nav .swiper1-prev, .main_banner_nav .swiper1-next{width:40px;height:40px; color: var(--color-secondary);text-align: center; background:var(--color-primary);line-height:40px;font-size:var(--font-md);   border-radius: 100%; border: 0px solid #fff; float: left;}






/*Mobile*/
@media screen and (max-width: 764px) {
  html{margin:0 !important}
  #preloader{position:absolute; height:100vh}
.preloader-content p {font-size: 1rem;  margin-bottom: 15px; }
/*.preloader-content img { max-width: 140px; }*/
.progress-bar {  max-width: 180px;}
  .mob_full{width:100%}
  .dnone{display: none !important;}
  .mob_spc{padding-left: 8px !important; padding-right: 8px !important}
  .mob_mt10{margin-top: 10px;}
  .mob_mt20{margin-top: 20px;}
  .mob_mt30{margin-top: 30px;}
  .mob_mb10{margin-bottom: 10px;}
  .mob_mb20{margin-bottom: 20px;}
  .mob_mb30{margin-bottom: 30px;}
  .mob_primary_nav{position: absolute; width: 100%; left: 0}
  .col-rev{flex-direction: column-reverse;}
  .menuzord-responsive .menuzord-menu{top: 40px; }
  ul.site_topbar_contact li{padding:10px 0}
  ul.site_social{height: auto; float: left;}
  .site_header{padding-top: 0px; padding-bottom: 0px;}
  .site_logo img{max-height: 40px;}
  .copyright{margin-top: 24px;}
  .site_section{padding-top: 30px; padding-bottom: 30px;}
  .mob_alpha{padding-left: 0; padding-right: 0}
  .mob_center{text-align: center;}
  .header_logo_spc{padding-left: 0}
  .logo{position: relative; margin: 0 auto}
  .mob_topbar{width: 100%; text-align: center;  }
  .menuzord-responsive .menuzord-menu > li > a{border-bottom: 1px solid #eee}

#menu-item-3130{display: block;}
  .header_spc{padding-left:12px; padding-right:12px}
.menuzord-menu ul.dropdown{ border-radius: 0;}
.menuzord-menu ul.dropdown li:first-child a{border-radius: 0;}
.menuzord-menu ul.dropdown li:last-child a{border-radius: 0;}
.site_join_txt{padding:0 20px 20px 20px}
.home_spc{padding-top: 30px; padding-bottom: 30px;}
.site_join_txt p{padding-top: 0; padding-bottom: 20px; font-size: 1.4rem}
.site_title{font-size: 1.8rem}
.sidebar_social{display: none;}
  .home_banner_content p{font-size:1.1rem; font-weight:500}
.home_banner_entry{position: relative; background-color: #fff;   }
.home_banner_content{padding: 24px 24px 100px 24px; max-width: auto; width: 100%; float: left; box-sizing: border-box;}
.timeline_item_content h2, .page_header_entry h1{font-size: 2.2rem; line-height: 120%}
.timeline_nav{position: relative; bottom: 10px; margin-left: 0; padding: 0 30px}
.timeline_item_entry{position: relative;top: auto;}
.timeline_item_content{ padding: 32px;}
.timeline_dot_item{padding-top: 60px}
.home_founder_entry p{font-size: 1rem}
.home_title_1 span{min-width: auto; padding: 8px 12px}
.home_news_item_img{height: 240px}
.video_boder{border:0}
.site_post_meta{flex-direction: column; justify-content: start; align-items: start; gap: 4px}
.home_news_item_entry{width: 100%}
.page_header_container{position: relative; bottom: auto;}
.page_header_entry{padding: 24px;}
.page_header_entry p{font-size: 1.25rem}
.page_content{padding-top: 30px; padding-bottom: 30px;}

.timeline-block { width: 100%; left: 0 !important;  text-align: left !important;
    margin-top: 50px;  }
.vision-timeline::before { left: 25px;}
.timeline-marker { left: 25px; transform: none;}
.timeline-year { margin: 0 0 0 10px !important; order: 0;}
.timeline-block.left .timeline-card,.timeline-block.right .timeline-card {
    margin: 0 0 0 50px; }
  ul.topbar li a{padding:8px 12px;}
  .bnp_video_entry{position:relative; bottom: auto;  padding: 20px 6px;}
  .bnp_video_entry h1{font-size:2rem; line-height:120%; margin-bottom:12px;}
  .bnp_video_entry p{color:#000}
  .vision-timeline .left .timeline-marker{right:auto; left: -4px; top: -34px; flex-direction:none}
  .vision-timeline .right .timeline-marker{right:auto; left: -4px; top: -34px; flex-direction:inherit}
  .right .timeline-year{text-align:left}
  .timeline-block.left .timeline-card, .timeline-block.right .timeline-card{margin-left:16px}
  .timeline-block{padding:20px 0px 20px 30px}
  .timeline-block.left .timeline-card:after{position: absolute; content: '';   top: 20px;left: -29px; border-top: 15px solid transparent; border-bottom: 15px solid transparent;  border-right: 30px solid #fff; border-right:0;  transform: rotate(180deg); right:auto }
  .verticalTabEntry{padding-top:30px;}
  .team-filter-wrap{padding-top:0px; padding-bottom:30px;}
  ul.team-filters{margin-bottom: 20px}
  ul.team-filters li{font-size:1rem; padding:0 12px; margin-bottom:10px;} 
  ul.team-filters{text-align:center; margin-bottom:20px;}
  .team_search{width:100%}
  .team_mem_spc{margin-top:0 ; margin-bottom:30px;}
  .rci_life_cycle .wp-block-group__inner-container{flex-direction:column; text-align:center; gap:10px;}
  .bnp_work_1{padding:20px; margin-bottom:20px;}
  .cat_post_excerpt{min-height:auto;}
  .work_initiative_date .wp-block-group__inner-container{flex-direction:column}
  .work_initiative{padding:20px;}
  .bnp_about_video iframe, .bnp_about_video object, .bnp_about_video embed{width:100%; height:300px}
  .team_search_ward{flex-wrap:wrap; gap:10px; margin-bottom:0px;}
  .team_search{min-width:100%}
  .sticky .logo{display:none}
  .sticky{padding-top:10px; padding-bottom:0px;}
  .team-search{margin-bottom:0; width:50%}
  .team_page_filter{padding-top:20px;}
  ul.team-filters{margin-bottom:10px !important}
  .team_search_ward{width:100%}
  .team_search_ward select{width:100% !important}
  .team-ward-filter{width:46%}
  .team_page_filter.sticky-active{top:128px; box-sizing:border-box}
  
  .team_page_filter.sticky-active{padding-top:10px; padding-bottom:10px;}
  .team_page_filter.sticky-active ul.team-filters li{font-size:0.9rem; line-height:110%; padding:0 10px;}
  .team_mob_menu{display:flex;}
   .team_page_filter {display: none; flex-direction: column; gap: 10px;  background: #fff; width: 100%; padding: 10px; border-top: 1px solid #ddd;}
   .team_page_filter.show { display: block; padding-top:0px; border:0;}
  .menu-toggle { display: flex; color:#000; padding:6px 16px; border:1px solid #000}
  .bnp_accordion{margin-bottom: 40px;}
  .bnp_accordion .accordion-button:not(.collapsed) {background:#be2326; color:#fff}
  .bnp_accordion .accordion-button:not(.collapsed)::after{filter: invert(1) brightness(2);}
  .timeline_item_content h3{font-size: 1.8rem; line-height: 2.4rem}
  .timeline_item_content h2{max-width: 240px;}
  /*.home_timeline_nav{display: block; position: absolute; right: 20px; top: 266px; color: #fff; z-index: 3}
  .home_timeline_nav a{width: 36px; height: 36px; line-height: 36px; float: left; border-radius: 36px; background: rgba(255, 255, 255, 0.8); color: #000; font-size: 1.5rem; text-align: center; margin-left: 10px;}
  .home_timeline_nav a:hover{background-color: #be2326; color: #fff}*/

  .home_banner_item{display: flex; flex-direction: column-reverse;}
  .home_banner_entry{transform: none; left: auto; right: auto}
  .home_banner_content h2{font-size: 2rem}
  .timeline_item::before{background: rgba(0, 0, 0, 0);}
  .home_timeline_nav{ width: 240px; left: 50%; bottom: 170px}
  .mob_team_filter{padding-top: 20px; padding-bottom: 20px;}
}