/*  
 * Theme Name: ISDIT
 * Theme URI: https://www.isd.gov.gh/
 * Description: ISDIT
 * Version: 1.0.0
 * Author: ISDIT
 * Tags: custom-background, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
 * Text Domain: pexr
 * Tested up to:      6.8
 * Requires at least: 6.6
 * Requires PHP:      7.4
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html

---------*/

/*
======================================
[ CSS TABLE CONTENT ]
======================================
    [Table of contents]

	1. General
		+ Text Colors
		+ Divider lines
		+ Paddings
		+ Opacity styles
		+ fonts
		+ Icon Boxes
		+ Text Boxes
		+ Buttons
		+ Opacity styles
		+ buttons

	2. Image boxes
		+ section-side-image
		+ background-imgholder
		+ image-left
		+ image-holder
		+ nodisplay-image
	
	3. Lists
		+ iconlist
		+ clientlogo-list
		+ side-nav-list
		+ category-links
		+ tags 
	
	4. Menu Backgrounds
		+ Headers
	
	5. Topbar Styles
		+ topbar
		+ toplist
	
	6. Logo
		+ logo
	
	7. Section Titles
		+ section titles
	
	8. Page Section Styles
		+ Section Styles
	
	9. Footer Styles
		+ footer logo
		+ lists
	
	
	10. Parallax Sections
	
	11. Overlay Styles
		+ Section Overlay
		+ video overlay
	
	12. Social Links
		+ social-icons-1
		+ social-icons-2
		+ social-icons-3
	
	13. Feature boxs
	
	
======================================
[ END CSS TABLE CONTENT ]
======================================*/


/* ===== Mobile Submenu Chevron Animation ===== */
.isd-offcanvas-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 26px;
}

.isd-offcanvas-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.9);
  border-bottom: 2px solid rgba(255,255,255,0.9);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .25s ease, opacity .2s;
  opacity: 0.9;
}

/* When submenu is open - rotate downward */
.isd-offcanvas-menu li.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(135deg);
}
/* =====================================================
   GLOBAL DESIGN TOKENS (Place at top of stylesheet)
===================================================== */
:root {
  /* Core Brand Colors */
  --isd-primary: #0b6b3a;       /* ISD Official Green */
  --isd-primary-hover: #08522c; /* Darker Green for hover states */
  --isd-accent: #EEC213;        /* ISD Gold/Yellow */
  
  /* Typography Colors */
  --isd-text-main: #0f172a;     /* Deep slate for highly readable headings */
  --isd-text-muted: #64748b;    /* Medium slate for dates and descriptions */
  
  /* Layout Colors */
  --isd-bg-light: #f8fafc;      /* Very soft grey-blue for page backgrounds */
  --isd-border: #e2e8f0;        /* Soft border color for cards */
}

/* Optional: Automatic Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --isd-text-main: #f8fafc;
    --isd-text-muted: #94a3b8;
    --isd-bg-light: #0f172a;
    --isd-border: #334155;
    /* Primary and Accent usually stay the same, but you can tweak them here if needed */
  }
}


/*****************************************
  STICKY HEADER + SHRINK
******************************************/
.isd-header {
  position:sticky;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  transition: all .25s ease-in-out;
  backdrop-filter:blur(4px);
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.isd-header.shrink {
  padding:6px 0 !important;
}
.isd-header.shrink .isd-logo-img {
  height:30px !important;
}
.isd-header.shrink .isd-site-title {
  font-size:14px !important;
}

/*****************************************
  MOBILE ACCORDION SUBMENU
******************************************/
.isd-offcanvas-menu li.menu-item-has-children > a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:600;
  font-size:16px;
}

/* Chevron Icon */
.isd-offcanvas-menu li.menu-item-has-children > a::after {
  content:"▸";
  font-size:14px;
  opacity:.9;
  transition:transform .2s;
}

/* Rotate when open */
.isd-offcanvas-menu li.open > a::after {
  transform:rotate(90deg);
}

/* Submenu container */
.isd-offcanvas-menu li ul.sub-menu {
  display:none;
  margin:6px 0 10px 12px;
  padding-left:12px;
  border-left:2px solid rgba(255,255,255,0.25);
  list-style:none;
}

/* Submenu items */
.isd-offcanvas-menu li ul.sub-menu li a {
  font-size:15px;
  padding:8px 2px;
  color:rgba(255,255,255,0.85) !important;
  text-decoration:none;
  display:block;
  border-radius:3px;
  transition:background .15s ease;
}

/* Hover feedback */
.isd-offcanvas-menu li ul.sub-menu li a:hover {
  background:rgba(255,255,255,0.10);
}



.wp-block-latest-posts__post-title {
  color: inherit !important;
  text-decoration: none; /* optional, removes underline */
  transition: color 0.3s ease; /* smooth transition */
}

/* Hover state - green */
.wp-block-latest-posts__post-title a:hover {
  color: #008800 !important; /* ISD green */
}


.header-section.style1.links-dark ul li a {
    color:#272727 !important;
}
.header-section.style1.links-dark ul li a:hover {
    color:#009901 !important;
}

/* Default state - grey */
.wp-block-categories-list.wp-block-categories a {
  color: inherit !important;
  text-decoration: none; /* optional, removes underline */
  transition: color 0.3s ease; /* smooth transition */
  font-size:14px;
}

/* Hover state - green */
.wp-block-categories-list.wp-block-categories a:hover {
  color: #008800 !important; /* ISD green */
}


/* Keyboard Focus Visibility */
:focus {
  outline: 3px solid #FFD700 !important;
  outline-offset: 3px !important;
}

/* Focus visible for keyboard only */
:focus-visible {
  outline: 3px solid #FFD700 !important;
}

.isd-offcanvas a:focus-visible,
.isd-nav-list a:focus-visible,
button:focus-visible {
  outline: 2px solid #FFD700 !important;
  outline-offset: 3px;
  border-radius: 3px;
}


/* === Related Posts Styling (Equal Height) === */
.related-posts {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #eee;
}

.related-posts .section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #04663E; /* ISD green brand */
  text-transform: uppercase;
}

/* Flexbox row for equal height */
.related-posts .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* spacing between cards */
}

.related-posts .col-md-4,
.related-posts .col-sm-6,
.related-posts .col-xs-12 {
  display: flex;
}

.related-post-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Image */
.related-post-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.related-post-item:hover img {
  transform: scale(1.05);
}

/* Title */
.related-post-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 15px;
  margin-top: auto; /* pushes title to bottom for alignment */
}

.related-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-item:hover .related-post-title a {
  color: #04663E; /* hover green */
}





/* Apple-style premium hover for WPBakery Single Image */
.isd-apple-hover img {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              filter 0.6s ease, 
              box-shadow 0.6s ease;
  border-radius: 1px; /* elegant rounded corners */
  transform: scale(1);
  filter: brightness(95%);
}

.isd-apple-hover img:hover {
  transform: scale(1.04); /* subtle zoom */
  filter: brightness(105%); /* slight light-up */
  box-shadow: 0 16px 32px rgba(0, 102, 1, 0.25); /* soft greenish glow */
  cursor: pointer;
}

/* =========== General ============= */

/* ISD brand color variables */
:root {
  --isd-green: #0A4F25;
  --isd-gold:  #d4af37; /* adjust if you have a specific gold */
  --isd-bg: #ffffff;
  --isd-text: #111111;
  --isd-header-bg: var(--isd-green);
  --isd-header-text: #ffffff;
  --isd-card-bg: #ffffff;
  --isd-border: rgba(0,0,0,0.12);
}


@media (prefers-color-scheme: dark) {
  :root {
    --isd-bg: #0d0d0d;
    --isd-text: #eaeaea;
    --isd-header-bg: #0A4F25;
    --isd-header-text: #ffffff;
    --isd-card-bg: #1a1a1a;
    --isd-border: rgba(255,255,255,0.2);
  }

  body {
    background: var(--isd-bg);
    color: var(--isd-text);
  }

  .isd-header {
    background-color: #0A4F25 !important;
    color: var(--isd-header-text) !important;
  }

  .isd-desktop-nav a,
  .isd-site-title {
    color: var(--isd-header-text) !important;
  }

  .isd-card,
  .article,
  .wp-block-group,
  .entry-content {
    background: var(--isd-card-bg) !important;
    border-color: var(--isd-border) !important;
  }

  img, video {
    opacity: .95;
  }

  /* Print stays light */
  @media print {
    body {
      background: white !important;
      color: black !important;
    }
  }
}

/* Base separator wrapper */
.isd-separator {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: visible;
  margin: 0;
}

/* utility sizes */
.isd-sep--thin { height: 36px; }   /* thin */
.isd-sep--slim { height: 24px; }   /* extra thin */
.isd-sep--big  { height: 90px; }   /* larger curve */

/* color utilities (use class or inline style) */
.isd-sep--green   { color: var(--isd-green); }
.isd-sep--gold    { color: var(--isd-gold); }
.isd-sep--inverted { color: #fff; } /* for dark backgrounds */

/* overlap helpers (pull next/previous section slightly over the divider) */
.isd-sep--pull-up   { margin-top: -1px; }   /* small overlap */
.isd-sep--pull-down { margin-bottom: -1px; }

/* keep SVG scalable */
.isd-separator svg { width: 100%; height: 100%; display: block; }

/* small responsive tweak */
@media (max-width: 480px) {
  .isd-sep--thin { height: 28px; }
  .isd-sep--big  { height: 64px; }
}





.dark-primary:hover {
  color: inherit;
  background: inherit;
  text-decoration: none;
  
}
.illas-marquee-green {
  background-color:  #008000 no-repeat center center;
  color: #fff;
  padding: 1rem 0 0 0;
  text-align: center;
}

.illas-marquee-white {
 
  color: #004b43;
  padding: 0 0 4rem 0;
  text-align: center;
}

.illas-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.illas-marquee-content {
  display: flex;
}

.marquee-track {
  display: flex;
  animation: scroll-left 120s linear infinite;
}

.illas-marquee-bottom .marquee-track {
  animation: scroll-right 120s linear infinite;
  display: flex;
}

.marquee-track span {
  display: inline-block;
  margin: 0 1rem;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}



/* Scroll animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Duplicate the content visually for infinite loop */
.marquee-track::after {
  content: attr(data-content);
  display: flex;
}

.text-small2.text-gray-3.line-height-1.margin-bottom-2 {
  display: none !important;
}

.less4 .margin-bottom-2 {
    display: none !important;
}

.icon-user .icon-plain-stiny .opacity-4 {
    display: none !important;
}

body {
    font: 14px 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 24px;
    /* 23px */
      background-color:;
}
    


/* a link Styles
 ------------------------------ */
.vc_row-full-width{
     background-color:inherit !important;
}
a,
.btn {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover {
    text-decoration: none;
}

a:focus,
a:hover {
    color: #008000;
}

a {
    outline: medium none !important;
    color: #008000;
}

.none {
    text-transform: none;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.underline {
    text-decoration: underline;
}

/* Headungs
 ------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 42px;
    /* 40px */
    line-height: 48px;
    /* 40px */
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
}

h1.less-mar-1 {
    margin-bottom: 10px;
}

h1.less-mar-2 {
    margin-bottom: 5px;
}

h1.big-text {
    font-size: 52px;
    /* 50px */
    line-height: 58px;
    /* 50px */
}

h1.big-text-2 {
    font-size: 62px;
    /* 63px */
    line-height: 68px;
    /* 63px */
}

h2 {
    font-size: 32px;
    /* 35px */
    line-height: 38px;
    /* 35px */
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
}

h2.nomargin {
    margin-bottom: 0px;
}

h2.less-mar-1 {
    margin-bottom: 3px;
}

h2.less-mar-2 {
    margin-bottom: 5px;
}

h2.less-mar-3 {
    margin-bottom: 7px;
}

h2.less-mar-4 {
    margin-bottom: 9px;
}

h3 {
    font-size: 28px;
    /* 27px */
    line-height: 34px;
    /* 30px */
    margin-bottom: 18px;
    font-style: normal;
    letter-spacing: 0.5px;
    font-weight: 300;
}

h3.nomargin {
    margin-bottom: 0px;
}

h3.less-mar-1 {
    margin-bottom: 3px;
}

h3.less-mar-2 {
    margin-bottom: 5px;
}

h3.less-mar-3 {
    margin-bottom: 7px;
}

h3.less-mar-4 {
    margin-bottom: 9px;
}

h4 {
    font-size: 24px;
    /* 22px */
    line-height: 30px;
    /* 25px */
    margin-bottom: 18px;
    font-style: normal;
    letter-spacing: 0.5px;
    font-weight: 300;
}

h4.nomargin {
    margin-bottom: 0px;
}

h4.less-mar-1 {
    margin-bottom: 3px;
}

h4.less-mar-2 {
    margin-bottom: 5px;
}

h4.less-mar-3 {
    margin-bottom: 7px;
}

h4.less-mar-4 {
    margin-bottom: 9px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
    /* 23px */
    margin-bottom: 16px;
    font-style: normal;
    letter-spacing: 0.5px;
    font-weight: 300;
}

h5.nomargin {
    margin-bottom: 0px;
}

h5.less-mar-1 {
    margin-bottom: 3px;
}

h5.less-mar-2 {
    margin-bottom: 5px;
}

h5.less-mar-3 {
    margin-bottom: 7px;
}

h5.less-mar-4 {
    margin-bottom: 9px;
}

h6 {
    font-size: 16px;
    line-height: 22px;
    /* 21px */
    margin-bottom: 14px;
    font-style: normal;
    font-weight: 300;
}

h6.small-text {
    font-size: 14px;
    margin-bottom: 20px;
}

h6.nomargin {
    margin-bottom: 0px;
}

h6.less-mar-1 {
    margin-bottom: 3px;
}

h6.less-mar-2 {
    margin-bottom: 5px;
}

h6.less-mar-3 {
    margin-bottom: 7px;
}

h6.less-mar-4 {
    margin-bottom: 9px;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.h1,
.h2,
.h3,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

ul {
    /*	list-style-type: none;*/
}

@media screen and (max-width: 760px) {
    h1 {
        font-size: 32px;
        /* 30px */
        line-height: 38px;
        /* 30px */
    }

    h1.big-text {
        font-size: 32px;
        /* 30px */
        line-height: 38px;
        /* 30px */
    }

    h1.big-text-2 {
        font-size: 42px;
        /* 40px */
        line-height: 48px;
        /* 40px */
    }

    h2 {
        font-size: 22px;
        /* 25px */
        line-height: 28px;
        /* 27px */
    }

}

/*=============== Text Colors ============= */

.text-white {
    color: #fff;
}

.text-dark {
    color: #272727;
}

.text-light {
    color: #acacac; 
}

.text-primary {
    color: #008000 !important;
}

.text-secondary {
    color: #008000 !important;
}

.text-gray {
    color: #727272;
}

.text-gray-2 {
    color: #b3b3b3;
}

.text-gray-3 {
    color: #999;
}

.text-red {
    color: #D91E18 !important;
}

.text-yellow {
    color: #f3b60f !important;
}

.text-green {
    color: #87D37C !important;
}

/*=============== Margins ============= */

.margin-bottom {
    margin-bottom: 0px;
}

.margin-bottom-2 {
    margin-bottom: 20px;
}

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

.margin-bottom-4 {
    margin-bottom: 40px;
}

.margin-bottom-5 {
    margin-bottom: 50px;
}

.margin-bottom-6 {
    margin-bottom: 60px;
}

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

.margin-bottom-9 {
    margin-bottom: 90px;
}

.margin-bottom-10 {
    margin-bottom: 100px;
}

.margin-bottom-11 {
    margin-bottom: 120px;
}

.margin-bottom-12 {
    margin-bottom: 140px;
}

.margin-bottom-13 {
    margin-bottom: 160px;
}

.margin-bottom-14 {
    margin-bottom: 180px;
}

.margin-bottom-15 {
    margin-bottom: 35px;
}

.margin-bottom-16 {
    margin-bottom: 15px;
}


.margin-top {
    margin-top: 0px;
}

.margin-top-1 {
    float: left;
    margin-top: 10px;
    width: 100%;
}

.margin-top-2 {
    float: left;
    margin-top: 20px;
    width: 100%;
}

.margin-top-3 {
    float: left;
    margin-top: 30px;
    width: 100%;
}

.margin-top-4 {
    float: left;
    margin-top: 40px;
    width: 100%;
}

.margin-top-5 {
    float: left;
    margin-top: 50px;
    width: 100%;
}

.margin-top-6 {
    float: left;
    margin-top: 60px;
    width: 100%;
}

.margin-top-7 {
    float: left;
    margin-top: 70px;
    width: 100%;
}

.col-divider-margin {
    width: 100%;
    float: left;
    margin-top: 60px;
}

.col-divider-margin-1 {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.col-divider-margin-2 {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.col-divider-margin-3 {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.col-divider-margin-4 {
    width: 100%;
    float: left;
    margin-top: 40px;
}

.col-divider-margin-5 {
    width: 100%;
    float: left;
    margin-top: 50px;
}

.col-divider-margin-6 {
    width: 100%;
    float: left;
    margin-top: 60px;
}

.nobottom-margin {
    margin-bottom: 0px;
}

.margin-left-1 {
    margin-left: 10px;
}

.margin-left-2 {
    margin-left: 20px;
}

.margin-left-3 {
    margin-left: 30px;
}

.margin-left-4 {
    margin-left: 40px;
}

.margin-left-5 {
    margin-left: 50px;
}

.margin-left-6 {
    margin-left: 60px;
}

.margin-left-7 {
    margin-left: 70px;
}

.colmargin {
    margin: 0 0 0 0;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.margin-right-1 {
    margin-right: 2px;
}

.margin-right-2 {
    margin-right: 5px;
}

.margin-right-3 {
    margin-right: 10px;
}

.margin-right-4 {
    margin-right: 15px;
}

.margin-right-5 {
    margin-right: 20px;
}

.margin-right-6 {
    margin-right: 25px;
}

.margin-right-7 {
    margin-right: 30px;
}

.margin-top-minus-1 {
    float: left;
    margin-top: -43px;
    width: 100%;
}

.margin-top-minus-2 {
    margin-top: -80px;
}

.margin-top-minus-3 {
    margin-top: -140px;
}

.margin-top-minus-4 {
    margin-top: -200px;
}

.margin-top-minus-5 {
    margin-top: -300px;
}

.margin-top-minus-6 {
    margin-top: -4px;
}

.margin-top-percent-1 {
    margin-top: 5%;
}

.margin-top-percent-2 {
    margin-top: 10%;
}

.margin-top-percent-3 {
    margin-top: 14%;
}

.margin-top-percent-4 {
    margin-top: 18%;
}

/* font weight
 ------------------------------ */
.f-weight-1 {
    margin-bottom: 0px;
}

/*=============== Divider lines ============= */
.divider-line {
    float: left;
    width: 100%;
}

.divider-line.dashed {
    border-bottom: 1px dashed;
}

.divider-line.solid {
    border-bottom: 1px solid;
}

.divider-line.dark {
    border-bottom-color: #444444;
}

.divider-line.dark-2 {
    border-bottom-color: #343333;
}

.divider-line.light {
    border-bottom-color: #e3e3e3;
}

.divider-line.top-padding {
    padding-top: 20px;
}

.divider-line.bottom-margin {
    margin-bottom: 20px;
}

.divider-line.margin {
    margin: 20px 0;
}

.divider-line.margin-2 {
    margin: 40px 0;
}

.divider-line.light-2 {
    height: 1px;
    border: none;
    background: #dedede;
}

.divider-line.white-opacity {
    height: 1px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
}

/*=============== Paddings ============= */

.no-top-padding {
    padding-top: 0;
}

/* padding top
 ------------------------------ */
.padding-top {
    padding-top: 5px;
}

.padding-top-1 {
    padding-top: 10px;
}

.padding-top-2 {
    padding-top: 20px;
}

.padding-top-3 {
    padding-top: 30px;
}

.padding-top-4 {
    padding-top: 40px;
}

.padding-top-5 {
    padding-top: 50px;
}

.padding-top-6 {
    padding-top: 60px;
}

.padding-top-7 {
    padding-top: 70px;
}

.padding-top-8 {
    padding-top: 80px;
}

/* padding bottom
 ------------------------------ */
.padding-bottom {
    padding-bottom: 5px;
}

.padding-bottom-1 {
    padding-bottom: 10px;
}

.padding-bottom-2 {
    padding-bottom: 20px;
}

.padding-bottom-3 {
    padding-bottom: 30px;
}

.padding-bottom-4 {
    padding-bottom: 40px;
}

.padding-bottom-5 {
    padding-bottom: 50px;
}

.padding-bottom-6 {
    padding-bottom: 60px;
}

.padding-bottom-7 {
    padding-bottom: 70px;
}

.padding-bottom-8 {
    padding-bottom: 80px;
}


/* left padding
 ------------------------------ */

.padding-left-1 {
    padding-left: 10px;
}

.padding-left-2 {
    padding-left: 20px;
}

.padding-left-3 {
    padding-left: 30px;
}

.padding-left-4 {
    padding-left: 40px;
}

.padding-left-5 {
    padding-left: 50px;
}

.padding-left-6 {
    padding-left: 60px;
}

.padding-left-7 {
    padding-left: 70px;
}

.padding-left-8 {
    padding-left: 80px;
}

/* right padding
 ------------------------------ */

.padding-right-1 {
    padding-right: 10px;
}

.padding-right-2 {
    padding-right: 20px;
}

.padding-right-3 {
    padding-right: 30px;
}

.padding-right-4 {
    padding-right: 40px;
}

.padding-right-5 {
    padding-right: 50px;
}

.padding-right-6 {
    padding-right: 60px;
}

.padding-right-7 {
    padding-right: 70px;
}

.padding-right-8 {
    padding-right: 80px;
}

.no-padding-top {
    padding-top: 0px;
}

.padding-percent {
    padding: 5%;
}

.k. {
    padding: 7%;
}

.padding-percent-2 {
    padding: 10%;
}

.padding-percent-3 {
    padding: 12%;
}

.padding-percent-4 {
    padding: 14%;
}

.padding-percent-5 {
    padding: 16%;
}

.padding-percent-6 {
    padding: 18%;
}

.padding-percent-7 {
    padding: 20%;
}

.padding-percent-8 {
    padding: 4%;
}

.padding-percent-9 {
    padding: 3%;
}

.padding-percent-10 {
    padding: 25%;
}

.padding-percent-11 {
    padding: 7% 12%;
}

/*=============== Opacity styles ============= */
.opacity-1 {
    opacity: 0.1;
}

.opacity-2 {
    opacity: 0.1;
}

.opacity-3 {
    opacity: 0.3;
}

.opacity-4 {
    opacity: 0.4;
}

.opacity-5 {
    opacity: 0.5;
}

.opacity-6 {
    opacity: 0.6;
}

.opacity-7 {
    opacity: 0.7;
}

.opacity-8 {
    opacity: 0.8;
}

/*=============== fonts ============= */

.droid-serif {
    font-family: 'Droid Serif', serif;
}

.ubuntu {
    font-family: 'Ubuntu', sans-serif;
}

.oswald {
    font-family: 'Oswald', sans-serif;
}

.muli {
    font-family: 'Muli', sans-serif;
}

.great-vibes {
    font-family: 'Great Vibes', cursive;
}

.old-standardtt {
    font-family: 'Old Standard TT', serif;
}

.dosis {
    font-family: 'Dosis', sans-serif;
}

.roboto-slab {
    font-family: 'Roboto Slab', serif;
}

.gfs-didot {
    font-family: 'GFS Didot', serif;
}

.raleway {
    font-family: "Raleway", sans-serif;
}

.gloria-hallelujah {
    font-family: 'Gloria Hallelujah', cursive;
}

.love-ya-like-a-sister {
    font-family: 'Love Ya Like A Sister', cursive;
}

.michroma {
    font-family: 'Michroma', sans-serif;
}

.sacramento {
    font-family: 'Sacramento', cursive;
}

.yesteryear {
    font-family: 'Yesteryear', cursive;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.jockey-one {
    font-family: 'Jockey One', sans-serif;
}

.pompiere {
    font-family: 'Pompiere', cursive;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

.six-caps {
    font-family: 'Six Caps', sans-serif;
}

.cinzel-decorative {
    font-family: 'Cinzel Decorative', cursive;
}


/* line height
 ------------------------------ */
.line-height-1 {
    line-height: 18px;
}

.line-height-mid {
    line-height: 22px;
}


/* letter spacing
 ------------------------------ */
.lspace-sm {
    letter-spacing: 3px;
}

.lspace-1 {
    letter-spacing: 5px;
}

.lspace-2 {
    letter-spacing: 10px;
}

.lspace-3 {
    letter-spacing: 14px;
}

.lspace-4 {
    letter-spacing: 18px;
}

.lspace-5 {
    letter-spacing: 20px;
}


/* font weight styles
 ------------------------------ */

.font-weight-1 {
    font-weight: 100;
}

.font-weight-2 {
    font-weight: 200;
}

.font-weight-3 {
    font-weight: 300;
}

.font-weight-4 {
    font-weight: 400;
}

.font-weight-5 {
    font-weight: 500;
}

.font-weight-6 {
    font-weight: 600;
}

.font-weight-7 {
    font-weight: 700;
}

.font-weight-8 {
    font-weight: 800;
}

.font-weight-b {
    font-weight: bold;
}

/*=============== Columns without padding ============= */
.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

/*=============== site main structure ============= */

.site-wrapper {
    width: 100%;
    margin: 0px auto;
    background-color: #FFF;

}

.wrapper-boxed {
    margin: auto;
    background-color: #FFF;
}

/*=============== image Boxes ============= */

.imgbox-dxlarge,
.imgbox-xlarge,
.imgbox-large,
.imgbox-xmedium,
.imgbox-medium,
.imgbox-smedium,
.imgbox-small,
.imgbox-tiny,
.imgbox-xtiny {
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease-out 0s;
}

.imgbox-dxlarge {
    width: 300px;
    height: 300px;

}

.imgbox-dxlarge-2 {
    width: 200px;
    height: 200px;

}

.imgbox-xlarge {
    width: 135px;
    height: 135px;
}

.imgbox-large {
    width: 120px;
    height: 120px;
}

.imgbox-xmedium {
    width: 110px;
    height: 110px;
}

.imgbox-medium {
    width: 100px;
    height: 100px;
}

.imgbox-smedium {
    width: 90px;
    height: 90px;
}

.imgbox-small {
    width: 80px;
    height: 80px;
}

.imgbox-tiny {
    width: 70px;
    height: 70px;
}

.imgbox-xtiny {
    width: 60px;
    height: 60px;
}

.imgbox-xtiny2 {
    width: 40px;
    height: 40px;
}




/* icon rounded
 ------------------------------ */

.imgbox-dxlarge.round,
.imgbox-dxlarge-2.round,
.imgbox-xlarge.round,
.imgbox-large.round,
.imgbox-xmedium.round,
.imgbox-medium.round,
.imgbox-smedium.round,
.imgbox-small.round,
.imgbox-tiny.round,
.imgbox-xtiny.round,
.imgbox-xtiny2.round {
    border-radius: 100%;
}

/* imgboxes alignments
 ------------------------------ */

.imgbox-dxlarge.center,
.imgbox-dxlarge-2.center,
.imgbox-xlarge.center,
.imgbox-large.center,
.imgbox-xmedium.center,
.imgbox-medium.center,
.imgbox-smedium.center,
.imgbox-small.center,
.imgbox-tiny.center,
.imgbox-xtiny.center {
    margin: 0 auto;
}

.imgbox-dxlarge.left,
.imgbox-dxlarge-2.left,
.imgbox-xlarge.left,
.imgbox-large.left,
.imgbox-xmedium.left,
.imgbox-medium.left,
.imgbox-smedium.left,
.imgbox-small.left,
.imgbox-tiny.left,
.imgbox-xtiny.left {
    float: left;
    margin: 0px 20px 0px 0px;
}

.imgbox-dxlarge.right,
.imgbox-dxlarge-2.right,
.imgbox-xlarge.right,
.imgbox-large.right,
.imgbox-xmedium.right,
.imgbox-medium.right,
.imgbox-smedium.right,
.imgbox-small.right,
.imgbox-tiny.right,
.imgbox-xtiny.right {
    float: right;
    margin: 0px 0px 0px 20px;
}

/* imgboxe background colors
 ------------------------------ */
.imgbox-dxlarge.dark,
.imgbox-dxlarge-2.dark,
.imgbox-xlarge.dark,
.imgbox-large.dark,
.imgbox-xmedium.dark,
.imgbox-medium.dark,
.imgbox-smedium.dark,
.imgbox-small.dark,
.imgbox-tiny.dark,
.imgbox-xtiny.dark {
    color: #fff;
    background-color: #101010;
}

.imgbox-dxlarge.white,
.imgbox-dxlarge-2.white,
.imgbox-xlarge.white,
.imgbox-large.white,
.imgbox-xmedium.white,
.imgbox-medium.white,
.imgbox-smedium.white,
.imgbox-small.white,
.imgbox-tiny.white,
.imgbox-xtiny.white {
    color: #323335;
    background-color: #fff;
}

.imgbox-dxlarge.gray,
.imgbox-dxlarge-2.gray,
.imgbox-xlarge.gray,
.imgbox-large.gray,
.imgbox-xmedium.gray,
.imgbox-medium.gray,
.imgbox-smedium.gray,
.imgbox-small.gray,
.imgbox-tiny.gray,
.imgbox-xtiny.gray {
    color: #fff;
    background-color: #474747;
}

/* imgboxs with stroke
 ------------------------------ */
.imgbox-dxlarge.outline-gray,
.imgbox-dxlarge-2.outline-gray,
.imgbox-xlarge.outline-gray,
.imgbox-large.outline-gray,
.imgbox-xmedium.outline-gray,
.imgbox-medium.outline-gray,
.imgbox-smedium.outline-gray,
.imgbox-small.outline-gray,
.imgbox-tiny.outline-gray,
.imgbox-xtiny.outline-gray {
    color: #fff;
    background-color: none;
    border: 1px solid #727272;
}

.imgbox-dxlarge.outline-gray-2,
.imgbox-dxlarge-2.outline-gray-2,
.imgbox-xlarge.outline-gray-2,
.imgbox-large.outline-gray-2,
.imgbox-xmedium.outline-gray-2,
.imgbox-medium.outline-gray-2,
.imgbox-smedium.outline-gray-2,
.imgbox-small.outline-gray-2,
.imgbox-tiny.outline-gray-2,
.imgbox-xtiny.outline-gray-2 {
    color: #323335;
    background-color: none;
    border: 1px solid #e4e4e4;
}

.imgbox-dxlarge.outline-white,
.imgbox-dxlarge-2.outline-white,
.imgbox-xlarge.outline-white,
.imgbox-large.outline-white,
.imgbox-xmedium.outline-white,
.imgbox-medium.outline-white,
.imgbox-smedium.outline-white,
.imgbox-small.outline-white,
.imgbox-tiny.outline-white,
.imgbox-xtiny.outline-white {
    color: #fff;
    background-color: none;
    border: 1px solid #fff;
}

.imgbox-dxlarge.outline-dark,
.imgbox-dxlarge-2.outline-dark,
.imgbox-xlarge.outline-dark,
.imgbox-large.outline-dark,
.imgbox-xmedium.outline-dark,
.imgbox-medium.outline-dark,
.imgbox-smedium.outline-dark,
.imgbox-small.outline-dark,
.imgbox-tiny.outline-dark,
.imgbox-xtiny.outline-dark {
    color: #323335;
    background-color: none;
    border: 1px solid #323335;
}

/*=============== Icon Boxes ============= */

.iconbox-dxlarge,
.iconbox-xlarge,
.iconbox-large,
.iconbox-xmedium,
.iconbox-medium,
.iconbox-smedium,
.iconbox-small,
.iconbox-tiny,
.iconbox-xtiny {
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease-out 0s;
}

.iconbox-dxlarge {
    width: 200px;
    height: 200px;
    font-size: 46px;
    color: #323335;
    border: none;
    line-height: 135px;
}

.iconbox-xlarge {
    width: 135px;
    height: 135px;
    font-size: 46px;
    color: #323335;
    line-height: 135px;
}

.iconbox-large {
    width: 120px;
    height: 120px;
    font-size: 46px;
    color: #323335;
    line-height: 114px;
}

.iconbox-xmedium {
    width: 110px;
    height: 110px;
    font-size: 38px;
    color: #323335;
    line-height: 106px;
}

.iconbox-medium {
    width: 100px;
    height: 100px;
    font-size: 32px;
    color: #323335;
    line-height: 100px;
}

.iconbox-smedium {
    width: 90px;
    height: 90px;
    font-size: 26px;
    color: #323335;
    line-height: 90px;
}

.iconbox-small {
    width: 80px;
    height: 80px;
    font-size: 26px;
    color: #323335;
    line-height: 80px;
}

.iconbox-tiny {
    width: 70px;
    height: 70px;
    font-size: 26px;
    color: #323335;
    line-height: 74px;
}

.iconbox-xtiny {
    width: 60px;
    height: 60px;
    font-size: 22px;
    color: #323335;
    line-height: 60px;
}

.digit {
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    left: 115px;
    top: 115px;
    line-height: 36px;
    border-radius: 100%;
    background-color: #fd602c;
    transition: all 0.3s ease-out 0s;
}

.iconbox-xlarge.no-lineheight {
    line-height: 0;
}

/* icon rounded
 ------------------------------ */

.iconbox-dxlarge.round,
.iconbox-xlarge.round,
.iconbox-large.round,
.iconbox-xmedium.round,
.iconbox-medium.round,
.iconbox-smedium.round,
.iconbox-small.round,
.iconbox-tiny.round,
.iconbox-xtiny.round {
    border-radius: 100%;
}

/* iconboxes alignments
 ------------------------------ */

.iconbox-dxlarge.center,
.iconbox-xlarge.center,
.iconbox-large.center,
.iconbox-xmedium.center,
.iconbox-medium.center,
.iconbox-smedium.center,
.iconbox-small.center,
.iconbox-tiny.center,
.iconbox-xtiny.center {
    margin: 0 auto;
}

.iconbox-dxlarge.left,
.iconbox-xlarge.left,
.iconbox-large.left,
.iconbox-xmedium.left,
.iconbox-medium.left,
.iconbox-smedium.left,
.iconbox-small.left,
.iconbox-tiny.left,
.iconbox-xtiny.left {
    float: left;
    margin: 0px 20px 0px 0px;
}

.iconbox-dxlarge.right,
.iconbox-xlarge.right,
.iconbox-large.right,
.iconbox-xmedium.right,
.iconbox-medium.right,
.iconbox-smedium.right,
.iconbox-small.right,
.iconbox-tiny.right,
.iconbox-xtiny.right {
    float: right;
    margin: 0px 0px 0px 20px;
}

/* iconboxe background colors
 ------------------------------ */
.iconbox-dxlarge.dark,
.iconbox-xlarge.dark,
.iconbox-large.dark,
.iconbox-xmedium.dark,
.iconbox-medium.dark,
.iconbox-smedium.dark,
.iconbox-small.dark,
.iconbox-tiny.dark,
.iconbox-xtiny.dark {
    color: #fff;
    background-color: #101010;
}

.iconbox-dxlarge.white,
.iconbox-xlarge.white,
.iconbox-large.white,
.iconbox-xmedium.white,
.iconbox-medium.white,
.iconbox-smedium.white,
.iconbox-small.white,
.iconbox-tiny.white,
.iconbox-xtiny.white {
    color: #323335;
    background-color: #fff;
}

.iconbox-dxlarge.gray,
.iconbox-xlarge.gray,
.iconbox-large.gray,
.iconbox-xmedium.gray,
.iconbox-medium.gray,
.iconbox-smedium.gray,
.iconbox-small.gray,
.iconbox-tiny.gray,
.iconbox-xtiny.gray {
    color: #fff;
    background-color: #474747;
}

/* iconboxs with stroke
 ------------------------------ */
.iconbox-dxlarge.outline-gray,
.iconbox-xlarge.outline-gray,
.iconbox-large.outline-gray,
.iconbox-xmedium.outline-gray,
.iconbox-medium.outline-gray,
.iconbox-smedium.outline-gray,
.iconbox-small.outline-gray,
.iconbox-tiny.outline-gray,
.iconbox-xtiny.outline-gray {
    color: #fff;
    background-color: none;
    border: 1px solid #727272;
}

.iconbox-dxlarge.outline-gray-2,
.iconbox-xlarge.outline-gray-2,
.iconbox-large.outline-gray-2,
.iconbox-xmedium.outline-gray-2,
.iconbox-medium.outline-gray-2,
.iconbox-smedium.outline-gray-2,
.iconbox-small.outline-gray-2,
.iconbox-tiny.outline-gray-2,
.iconbox-xtiny.outline-gray-2 {
    color: #323335;
    background-color: none;
    border: 1px solid #e4e4e4;
}

.iconbox-dxlarge.outline-white,
.iconbox-xlarge.outline-white,
.iconbox-large.outline-white,
.iconbox-xmedium.outline-white,
.iconbox-medium.outline-white,
.iconbox-smedium.outline-white,
.iconbox-small.outline-white,
.iconbox-tiny.outline-white,
.iconbox-xtiny.outline-white {
    color: #fff;
    background-color: none;
    border: 1px solid #fff;
}

.iconbox-dxlarge.outline-dark,
.iconbox-xlarge.outline-dark,
.iconbox-large.outline-dark,
.iconbox-xmedium.outline-dark,
.iconbox-medium.outline-dark,
.iconbox-smedium.outline-dark,
.iconbox-small.outline-dark,
.iconbox-tiny.outline-dark,
.iconbox-xtiny.outline-dark {
    color: #161616;
    background-color: none;
    border: 1px solid #161616;
}

/* Icons Plain
 ------------------------------ */

.icon-plain-xlarge {
    font-size: 90px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-large {
    font-size: 80px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-slarge {
    font-size: 70px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-medium {
    font-size: 60px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-smedium {
    font-size: 50px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-small {
    font-size: 40px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-msmall {
    font-size: 32px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-tiny {
    font-size: 20px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-stiny {
    font-size: 16px;
    transition: all 0.3s ease-out 0s;
}

.icon-plain-small.rightline {
    border-right: 1px solid #3F3F3F;
}

.icon-plain-medium.rightline {
    margin: 0px 20px 50px 0px;
    border-right: 1px solid #FFC153;
}

.icon-plain-small.dark {
    color: #323335;
}

/* plain icon alignments
 ------------------------------ */

.icon-plain-large.center,
.icon-plain-medium.center,
.icon-plain-small.center,
.icon-plain-msmall.center,
.icon-plain-tiny.center {
    margin: 0 auto;
}

.icon-plain-large.left,
.icon-plain-medium.left,
.icon-plain-small.left,
.icon-plain-msmall.left,
.icon-plain-tiny.left {
    float: left;
    margin: 0px 20px 0px 0px;
}

.icon-plain-large.right,
.icon-plain-medium.right,
.icon-plain-small.right,
.icon-plain-msmall.right,
.icon-plain-tiny.right {
    float: right;
    margin: 0px 0px 0px 20px;
}

/* plain icon colors
 ------------------------------ */

.icon-plain-large.dark,
.icon-plain-medium.dark,
.icon-plain-small.dark,
.icon-plain-msmall.dark,
.icon-plain-tiny.dark {
    color: #323335;
}

.icon-plain-large.white,
.icon-plain-medium.white,
.icon-plain-small.white,
.icon-plain-msmall.white,
.icon-plain-tiny.white {
    color: #fff;
}

.icon-plain-large.green,
.icon-plain-medium.green,
.icon-plain-small.green,
.icon-plain-msmall.green,
.icon-plain-tiny.green {
    color: #fd602c;
}

.icon-plain-large.gray,
.icon-plain-medium.gray,
.icon-plain-small.gray,
.icon-plain-msmall.gray,
.icon-plain-tiny.gray {
    color: #727272;
}

/*============ Text Boxes ============ */

.text-box-right {
    display: block;
    padding: 0px 0px 0px 99px;
    margin: 0px;
    text-align: left;
}

.text-box-left {
    display: block;
    padding: 0px 90px 0px 0;
    margin: 0px;
    text-align: right;
}

.item-holder {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.text-box {
    width: 100%;
    float: left;
}

.text-box.white {
    background-color: #fff;
}

.text-box.gyellow {
    background-color: #f3b60f;
}

.text-box.white-transparent-1 {
    background-color: rgba(255, 255, 255, 0.9);
}

.text-box.light {
    background-color: #f5f5f5;
}

.text-box.dark {
    background-color: #323335;
}

.text-box.xdark {
    background-color: #000;
}

.text-box.border-light {
    border: 1px solid #ececec;
}

.text-box:hover.hover-curves {
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* text boxes with borders
 ------------------------------ */
.text-box-right.border,
.text-box-left.border,
.item-holder.border,
.text-box-inner.border,
.text-box.border {
    border: 1px solid #f1f1f1;
}

.text-box-right.border-top,
.text-box-left.border-top,
.item-holder.border-top,
.text-box-inner.border-top,
.text-box.border-top {
    border-top: 1px solid #f1f1f1;
}

.text-box-right.border-bottom,
.text-box-left.border-bottom,
.item-holder.border-bottom,
.text-box-inner.border-bottom,
.text-box.border-bottom {
    border-bottom: 1px solid #f1f1f1;
}

.text-box-right.border-left,
.text-box-left.border-left,
.item-holder.border-left,
.text-box-inner.border-left,
.text-box.border-left {
    border-left: 1px solid #f1f1f1;
}

.text-box-right.border-right,
.text-box-left.border-right,
.item-holder.border-right,
.text-box-inner.border-right,
.text-box.border-right {
    border-right: 1px solid #f1f1f1;
}

/* text boxe padding
 ------------------------------ */

.text-box.sbox-padd-left {
    padding-left: 0px;
}

.text-box.padding-1 {
    padding: 10px;
}

.text-box.padding-2 {
    padding: 20px;
}

.text-box.padding-3 {
    padding: 30px;
}

.text-box.padding-4 {
    padding: 40px;
}

.text-box.padding-5 {
    padding: 50px;
}

.text-box.padding-6 {
    padding: 60px;
}

.text-box.padding-7 {
    padding: 70px;
}

.text-box.padding-8 {
    padding: 80px;
}

.text-box.padding-9 {
    padding: 90px;
}

/* text boxes margin and paddings
 ------------------------------ */

/* left box
 ------------------------------ */

.item-holder.marginbottom {
    margin: 0 0 40px 0;
}

.text-box-left.more-padding-1 {
    padding: 0px 120px 0px 0px;
}

.text-box-left.more-padding-2 {
    padding: 0px 150px 0px 0px;
}

.text-box-left.less-padding-1 {
    padding: 0px 70px 0px 0;
}

.text-box-left.less-padding-2 {
    padding: 0px 50px 0px 0;
}

/* right box
 ------------------------------ */

.text-box-right.more-padding-1 {
    padding: 0px 0px 0px 120px;
}

.text-box-right.more-padding-2 {
    padding: 0px 0px 0px 140px;
}

.text-box-right.more-padding-3 {
    padding: 0px 0px 0px 160px;
}

.text-box-right.more-padding-4 {
    padding: 0px 0px 0px 170px;
}

.text-box-right.less-padding-1 {
    padding: 0px 0px 0px 70px;
}

.text-box-right.less-padding-2 {
    padding: 0px 0px 0px 50px;
}

.text-box-right.less-padding-3 {
    padding: 0px 0px 0px 30px;
}

.text-box-right.less-padding-4 {
    padding: 0px 0px 0px 80px;
}

.text-box-right.less-padding-5 {
    padding: 0px 0px 0px 60px;
}

@media screen and (max-width: 400px) {
    .text-box-right.less-padding-5.resnopad {
        padding: 0px 0px 0px 0px;
    }

    .padding-bottom-3.resnopad {
        padding-bottom: 0px;
    }
}

/*============ Buttons ============ */

a.read-more {
    color: #034805;
}

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

a.read-more.white {
    color: #fff;
}

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

a.read-more.dark {
    color: #101010;
}

a.read-more.dark:hover {
    color: #6453f7;
}

a.read-more.dark-2 {
    color: #101010;
}

a.read-more.dark-2:hover {
    color: #727272;
}

a.read-more.gyellow {
    color: #ecae3d;
}

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

a.read-more.gyellow-2 {
    color: #ecae3d;
}

a.read-more.gyellow-2:hover {
    color: #fff;
}

/* button styles
 ------------------------------ */

.btn {
    padding: 10px 36px;
    margin: 5px;
    box-shadow: none;
    border-radius: 0;
}

.btn.btn-large {
    padding: 15px 60px;
}

.btn.btn-medium {
    padding: 10px 30px;
}

.btn.btn-small {
    padding: 8px 18px;
}

.btn.btn-small-2 {
    padding: 4px 18px;
}

.btn.btn-fullwidth {
    width: 100%;
}

.btn.btn-half-fullwidth {
    width: 50%;
}

/* button radius
 ------------------------------ */
.btn.btn-xround {
    border-radius: 20px;
}

.btn.btn-xround-2 {
    border-radius: 30px;
}

.btn.btn-round {
    border-radius: 2px;
}

.btn.top-margin {
    margin-top: 20px;
}

/* button right margins
 ------------------------------ */
.btn.btn-mar-right-1 {
    margin-right: 10px
}

.btn.btn-mar-right-2 {
    margin-right: 20px
}

.btn.btn-mar-right-3 {
    margin-right: 30px
}

.btn.btn-mar-right-4 {
    margin-right: 40px
}

.btn.btn-mar-right-5 {
    margin-right: 50px
}

/* button left margins
 ------------------------------ */
.btn.btn-mar-left-1 {
    margin-left: 10px
}

.btn.btn-mar-left-2 {
    margin-left: 20px
}

.btn.btn-mar-left-3 {
    margin-left: 30px
}

.btn.btn-mar-left-4 {
    margin-left: 40px
}

.btn.btn-mar-left-5 {
    margin-left: 50px
}


/* button background colors
 ------------------------------ */

/* button white
 ------------------------------ */
.btn.btn-white {
    color: #101010;
    background-color: #fff;
}

.btn.btn-white:hover {
    color: #fff;
    background-color: #101010;
}

/* button white transparent
 ------------------------------ */
.btn.btn-white-tr {
    color: #101010;
    background-color: rgba(255, 255, 255, 0.6);
}

.btn.btn-white-tr:hover {
    color: #101010;
    background-color: #fff;
}

/* button dark
 ------------------------------ */
.btn.btn-dark {
    color: #fff;
    background-color: #101010;
}

.btn.btn-dark:hover {
    color: #fff;
    background-color: #3e3e3e;
}

/* button dark-2
 ------------------------------ */
.btn.btn-dark-2 {
    color: #fff;
    background-color: #161616;
}

.btn.btn-dark-2:hover {
    color: #161616;
    background-color: #fff;
}

/* button dark-3
 ------------------------------ */
.btn.btn-dark-3 {
    color: #999;
    background-color: #272727;
}

.btn.btn-dark-3:hover {
    color: #fff;
    background-color: #454545;
}

/* button light
 ------------------------------ */
.btn.btn-light {
    color: #101010;
    background-color: #f5f5f5;
}

.btn.btn-light:hover {
    color: #727272;
    background-color: #101010;
}

/* button golden yellow
 ------------------------------ */
.btn.btn-gyellow {
    color: #fff;
    background-color: #6453f7;
}

.btn.btn-gyellow:hover {
    color: #fff;
    background-color: #101010;
}

.btn.btn-gyellow-2 {
    color: #fff;
    background-color: #ecae3d;
}

.btn.btn-gyellow-2:hover {
    color: #101010;
    background-color: #fff;
}

/* button with border
 ------------------------------ */
.btn.btn-border {
    color: #323335;
    border: 2px solid;
}

.btn.btn-border.less-bor {
    border: 1px solid;
}

.btn.btn-border.border-1x {
    border: 1px solid;
}

.btn.btn-border.border-2x {
    border: 2px solid;
}

.btn.btn-border.border-3x {
    border: 3px solid;
}

.btn.btn-border.border-4x {
    border: 4px solid;
}



/* button border white
 ------------------------------ */
.btn.btn-border.white {
    color: #fff;
    border-color: #fff;
}

.btn.btn-border:hover.white {
    color: #323335;
    background-color: #fff;
    border-color: #fff;
}

/* button border dark
 ------------------------------ */
.btn.btn-border.dark {
    border-color: #101010;
}

.btn.btn-border:hover.dark {
    color: #fff;
    background-color: #101010;
    border-color: #101010;
}

/* button border dark
 ------------------------------ */
.btn.btn-border.dark-2 {
    color: #fff;
    border-color: #545454;
}

.btn.btn-border:hover.dark-2 {
    color: #101010;
    background-color: #fff;
    border-color: #fff;
}

/* button border light
 ------------------------------ */
.btn.btn-border.light {
    border-color: #e4e4e4;
}

.btn.btn-border:hover.light {
    color: #fff;
    background-color: #101010;
    border-color: #101010;
}

/* button border extra light
 ------------------------------ */
.btn.btn-border.xlight {
    border-color: #f5f5f5;
}

.btn.btn-border:hover.xlight {
    color: #727272;
    background-color: #101010;
    border-color: #101010;
}

/* button border orange-2
 ------------------------------ */
.btn.btn-border.gyellow {
    color: #ecae3d;
    border-color: #ecae3d;
}

.btn.btn-border:hover.gyellow {
    color: #fff;
    background-color: #ecae3d;
    border-color: #ecae3d;
}

/* button border gray
 ------------------------------ */
.btn.btn-border.gray {
    color: #fff;
    border-color: #727272;
}

.btn.btn-border:hover.gray {
    color: #fff;
    background-color: #5c5b5b;
    border-color: #5c5b5b;
}

/* button border gray-2
 ------------------------------ */
.btn.btn-border.gray-2 {
    color: #101010;
    border-color: #727272;
}

.btn.btn-border:hover.gray-2 {
    color: #fff;
    background-color: #5c5b5b;
    border-color: #5c5b5b;
}

/* button border xdark
 ------------------------------ */
.btn.btn-border.xdark {
    color: #161616;
    border-color: #161616;
}

.btn.btn-border:hover.xdark {
    color: #fff;
    background-color: #161616;
    border-color: #161616;
}

/* button border white on hover golden yellow
 ------------------------------ */
.btn.btn-border.white.gyellow {
    color: #fff;
    border-color: #fff;
}

.btn.btn-border:hover.white.gyellow {
    color: #fff;
    background-color: #ecae3d;
    border-color: #ecae3d;
}

/* Appstore buttons
 ------------------------------ */

.btn.appstore {
    width: 200px;
    padding: 10px 25px;
    margin: 0px;
    text-align: left;
}

.btn.appstore.right-margin {
    margin-right: 10px;
}

.btn.appstore.gyellow {
    background-color: #ecae3d;
}

.btn.appstore span {
    margin: 0px;
    float: left;
    padding: 0;
    text-align: left;
}

.btn.appstore span i {
    font-size: 40px;
    color: #fff;
    padding: 0 20px 0 0;
}

.btn.appstore p {
    font-size: 12px;
    display: block;
    margin: 0;
    padding: 0 25px 0 20px;
    text-align: left;
}

.btn.appstore .big {
    margin: 0px;
    font-size: 18px;
    padding: 0;
}

.btn.appstore.gyellow:hover {
    background-color: #fff;
}

.btn.appstore.gyellow:hover p,
.btn.appstore.gyellow:hover .big,
.btn.appstore.gyellow:hover span i {
    color: #101010;
}

/* Appstore button white
 ------------------------------ */
.btn.appstore.white {
    background-color: #fff;
}

.btn.appstore.white span i {
    font-size: 40px;
    color: #101010;
    padding: 0 20px 0 0;
}

.btn.appstore.white:hover {
    background-color: #ecae3d;
}

.btn.appstore.white:hover p,
.btn.appstore.white:hover .big,
.btn.appstore.white:hover span i {
    color: #fff;
}


/*============ Image Boxes ============ */

.section-side-image {
    position: relative;
    padding: 0px;
    margin: 0px;
}

.section-side-image .img-holder {
    overflow: hidden;
    height: 100%;
    padding: 0px;
    top: 0px;
    position: absolute;
}

.background-imgholder.top-padd {
    padding-top: 80px;
}

.section-side-image .text-inner {
    padding: 80px 80px 80px 0;
}

.section-side-image .text-inner-2 {
    padding: 80px;
}

.section-side-image .text-inner-3 {
    padding: 80px 80px 0px 80px;
}

.section-side-image .text-inner.two {
    padding: 0px 80px 0px 0;
}

.section-side-image .text-inner-4 {
    padding: 0 0 0 0;
}

.section-side-image .text-inner-5 {
    padding: 120px 120px 120px 0;
}

.background-imgholder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
}

/* side image 2
 ------------------------------ */
.section-side-image-2 {
    position: relative;
    padding: 0px;
    margin: 0px;
}

.section-side-image-2 .img-holder {
    overflow: hidden;
    height: 100%;
    padding: 0px;
    top: 0px;
    position: absolute;
}

.section-side-image-2 .background-imgholder-2.top-padd {
    padding-top: 80px;
}

.section-side-image-2 .text-inner.two {
    padding: 0px 80px 0px 0;
}

.section-side-image-2 .background-imgholder-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
}

.image-holder {
    width: 100%;
    float: left;
}

.image-holder.less-width-1 {
    width: 80%;
}

.image-holder.less-width-2 {
    width: 75%;
}

.image-holder.less-width-3 {
    width: 70%;
}

.image-left {
    color: #fff;
    float: left;
    margin: 0;
    padding: 0 20px 0 0;
    transition: all 0.3s ease-out 0s;
}

.img-align-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.nodisplay-image {
    display: none;
}

/* image overflow hidden
 ------------------------------ */
.overflow-hidden {
    overflow: hidden;
}

/*============ Lists ============ */

.iconlist {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.iconlist li {
    padding: 0px;
    margin: 0 0 15px 0;
    display: block;
    line-height: 23px;
}

.iconlist li i {
    color: #ecae3d;
    padding: 0 15px 0 0;
}

.iconlist.gyellow li i {
    color: #ecae3d;
    padding: 0 15px 0 0;
}

.iconlist.dark li i {
    color: #101010;
}

.iconlist.less-margin li {
    margin: 0 0 13px 0;
}

.iconlist.white li i {
    color: #fff;
}

.iconlist.white-2 li {
    color: #fff;
}

.iconlist.medium li i {
    color: #727272;
}


/* icon list style 2
 ------------------------------ */
.iconlist-2 {
    width: 100%;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    float: left;
}

.iconlist-2 .icon {
    width: 18px;
    height: 18px;
    padding: 0px;
    margin: 3px 0px 0px 0px;
    float: left;
    font-size: 14px;
    text-align: center;
    line-height: 15px;
    color: #cc0000;
    border-radius: 100%;
}

.iconlist-2 .text {
    padding: 0px 0 0 28px;
    margin: 0px;
    display: block;
}

.iconlist-2 .icon.dark {
    color: #101010;
}

.iconlist-2 .icon.light {
    color: #f5f5f5;
}

.iconlist-2 .icon.white {
    color: #fff;
}

.iconlist-2 .icon.gyellow {
    color: #ecae3d;
}

/* =========== client logos ============= */

.clients-list.grid-cols-2 li {
    width: 50%;
}

.clients-list.grid-cols-3 li {
    width: 33.33%;
}

.clients-list.grid-cols-4 li {
    width: 25%;
}

.clients-list.grid-cols-5 li {
    width: 20%;
}

.clients-list.grid-cols-6 li {
    width: 16.66%;
}

.clients-list {
    padding-left: 0px;
    overflow: hidden;
}

.clients-list li {
    position: relative;
    width: 20%;
    float: left;
    padding: 25px 0;
    transition: all 0.3s ease-out 0s;
    list-style: none;
}

.clients-list li a img {
    width: 100%;
}

.clients-list li a,
.clients-list li img {
    display: block;
    margin: 0 auto;
    width: 75%;
}

.clients-list li::before,
.clients-list li::after {
    content: "";
    position: absolute;
}

.clients-list li::before {
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px solid #e9e9e9;
}

.clients-list li::after {
    width: 100%;
    height: 0;
    left: 0;
    top: auto;
    bottom: -1px;
    border-bottom: 1px solid #e9e9e9;
}

.clients-list.border-dark li::before {
    border-left: 1px solid #333333;
}

.clients-list.border-dark li::after {
    border-bottom: 1px solid #333333;
}

.clients-list.noborder li::after {
    border-bottom: none;
}

.clients-list.noborder li::before {
    border-left: none;
}

/* logo hover styles
 ------------------------------ */

.clients-list.hover-1 li:hover {
    background-color: #f5f5f5;
}

.clients-list.hover-2 li:hover {
    background-color: #f5f5f5;
}

.clients-list.hover-3 li:hover {
    background-color: #f5f5f5;
}

.clients-list.hover-4 li a {
    opacity: 0.4;
}

.clients-list.hover-4 li a:hover {
    opacity: 1;
}

.clients-list.hover-5 li a {
    opacity: 0.8;
}

.clients-list.hover-5 li a:hover {
    opacity: 1;
}

.clients-list.hover-6 li {
    opacity: 0.8;
}

.clients-list.hover-6 li:hover {
    background-color: #f5f5f5;
}

/* side navigation list
 ------------------------------ */
.side-nav-list {
    width: 100%;
    padding: 0px;
    margin: 0px;
    float: left;
}

.side-nav-list li {
    width: 100%;
    padding: 0px;
    margin: 0 0 2px 0;
    float: left;
}

.side-nav-list li a {
    width: 100%;
    padding: 15px 25px;
    margin: 0px;
    font-weight: normal;
    float: left;
    background-color: #f6f6f6;
}

.side-nav-list li a:hover,
.side-nav-list li a.active {
    color: #fff;
    background-color: #ecae3d;
}

/* side navigation list
 ------------------------------ */
.category-links {
    width: 100%;
    padding: 0px;
    margin: 0px;
    float: left;
}

.category-links li {
    width: 100%;
    padding: 10px 0;
    margin: 0 0 0 0;
    float: left;
    border-bottom: 1px solid #eeeeee;
}

.category-links li a:hover,
.category-links li a.active {
    color: #ecae3d;
}

.category-links li:last-child {
    border-bottom: none;
}

/* blog1 tags
 ------------------------------ */
.tags {
    padding: 0px;
    margin: 0px;
}

.tags li {
    padding: 0px;
    margin: 0;
}

.tags li a {
    padding: 5px 15px 5px 15px;
    margin: 0 10px 10px 0;
    float: left;
    color: #727272;
    background-color: #e7e7e7;
}

.tags li a:hover,
.tags li a.active {
    color: #fff;
    background-color: #dbdc33;
}

.tags.two li a {
    color: #323335;
    background-color: #fff;
    border: 1px solid #e4e4e4;
}

.tags.two li a:hover,
.tags.two li a.active {
    color: #fff;
    background-color: #42d1aa;
    border: 1px solid #42d1aa;
}

/*tags 2
 ------------------------------ */
.tags-2 {
    padding: 0px;
    margin: 0px;
}

.tags-2 li {
    padding: 0px;
    margin: 0;
}

.tags-2 li a {
    padding: 5px 15px 5px 15px;
    margin: 0 10px 10px 0;
    float: left;
    color: #727272;
    border: 1px solid #e4e4e4;
    background-color: #fff;
}

.tags-2 li a:hover,
.tags-2 li a.active {
    color: #fff;
    border: 1px solid #ecae3d;
    background-color: #ecae3d;
}


/* sidebar works list
 ------------------------------ */
.sidebar-works {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.sidebar-works li {
    width: 32%;
    padding: 0px;
    margin: 4px 4px 0 0;
    float: left;
}

.sidebar-works li a img {
    width: 100%;
}

.sidebar-works li:last-child {
    margin: 4px 0 0 0;
}

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

/* Sticky bg
 ------------------------------ */
#header {
    position: relative;
    background: #034805;
    padding: 0;
    width: 100%;
   
    z-index: 999;
}




/*============ Section Titles ============ */

/* title container
 ------------------------------ */

.title {
    transition: all 0.3s ease-out 0s;
}

/* title container
 ------------------------------ */
.sec-title-container {
    width: 100%;
    float: left;
    padding-bottom: 70px;
}

.sec-title-container {
    width: 100%;
    float: left;
    padding-bottom: 70px;
}

.sec-title-container.less-padding-1 {
    padding-bottom: 60px;
}

.sec-title-container.less-padding-2 {
    padding-bottom: 50px;
}

.sec-title-container.less-padding-3 {
    padding-bottom: 40px;
}

.sec-title-container.less-padding-4 {
    padding-bottom: 30px;
}

.sec-title-container.less-padding-5 {
    padding-bottom: 20px;
}

.sec-title-container.less-padding-6 {
    padding-bottom: 15px;
}

/* page title
 ------------------------------ */
.section-title {
    font-weight: 400;
}

/* subtitle
 ------------------------------ */
.sub-title {
    width: 48%;
    font-size: 16px;
    margin: 0 auto 70px auto;
}

/* title line
 ------------------------------ */
.title-line-1 {
    width: 125px;
    height: 4px;
    margin: 12px auto 0 auto;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
}

.title-line-1.align-left {
    width: 125px;
    margin: 12px auto 0 0;
}

.title-line-1.transp {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.title-line-2 {
    width: 260px;
    height: 1px;
    margin: 12px auto 0 auto;
    background-color: #e7e7e7;
}

.title-line-2.align-left {
    width: 260px;
    margin: 12px auto 0 0;
}

/* featurebox title line
 ------------------------------ */
.feabox-title-line {
    width: 60px;
    height: 2px;
    margin: 0 auto 0 0;
    background-color: #101010;
}

.feabox-title-line.center {
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: #101010;
}

/*============ Footer Styles Sections ============ */

/* footer section
 ------------------------------ */
.fo-map {
    width: 100%;
    float: left;
    background-color: url(../images/fo-map.png) left 100px no-repeat;
}

.fo-map {
    background-size: 100%;
}

.fo-sec-1 {
    position: relative;
    width: 100%;
    padding: 110px 0 0 0;
    margin: 0;
    float: left;
}

.fo-sec-1 .newsletter-box {
    position: absolute;
    width: 100%;
    float: left;
    left: 0px;
    top: -238px;
    padding: 70px;
    background-color: #ecae3d;
}

.fo-sec-1 .newsletter-box input {
    width: 80%;
    height: 60px;
    float: left;
    padding: 15px;
    border: 1px solid #fff;
    background-color: #fff;
}

.fo-sec-1 .newsletter-box .submit-btn {
    width: 20%;
    height: 60px;
    float: left;
    padding: 0px;
    border: 1px solid #101010;
    background-color: #101010;
}

/* footer section 2
 ------------------------------ */
.fo-sec-2 {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
    margin: 0;
    float: left;
}

.fo-sec-2 .social-iconbox {
    position: absolute;
    width: 265px;
    float: left;
    left: 40%;
    top: -107px;
    padding: 0px;
    margin: 0px;
    z-index: 2;
    background-color: #fff;
}

.fo-sec-2 .social-iconbox .side-shape1 {
    position: absolute;
    width: 13px;
    height: 28px;
    float: left;
    left: -13px;
    top: -1px;
    padding: 0px;
    margin: 0px;
}

.fo-sec-2 .social-iconbox .side-shape1.right-icon {
    left: 265px;
    top: -1px;
}

.fo-sec-2 ul.sc-icons {
    width: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.fo-sec-2 .sc-icons li {
    display: inline-block;
}

.fo-sec-2 .sc-icons li a {
    padding: 15px 10px;
    display: inline-block;
}

/* footer section 3
 ------------------------------ */
.fo-sec-3 {
    position: relative;
    width: 100%;
    padding: 110px 0 0 0;
    margin: 0;
    float: left;
}

.fo-sec-3 .primary-box {
    position: absolute;
    width: 100%;
    float: left;
    left: 0px;
    top: -150px;
    padding: 50px;
    background-color: #ecae3d;
}


/* footer latest posts
 ------------------------------ */
.fo-posts {
    width: 100%;
    padding: 0px;
    margin: 0 0 25px 0;
    float: left;
}

.fo-posts .post-info {
    font-size: 12px;
    color: #727272;
}

.fo-posts-info {
    font-size: 12px;
    color: #727272;
}

.fo-posts a:hover,
.fo-posts a.active {
    color: #ecae3d;
}

.fo-posts .post-info.text-light {
    color: #d0d0d0;
}

/* footer title bottom line
 ------------------------------ */
.fo-title-bottom-line {
    width: 34px;
    height: 2px;
    color: #fff;
    float: left;
    display: block;
    margin-bottom: 40px;
    background-color: #fff;
}

.fo-title-bottom-line.dark {
    background-color: #101010;
}

.fo-title-bottom-line.white {
    background-color: #fff;
}

.fo-title-bottom-line.gyellow {
    background-color: #ecae3d;
}

/* footer newsletter
 ------------------------------ */
.fo-newsletter-1 {
    border: 1px solid #3b3b3b;
    border-width: 1px 0 1px 1px;
    color: #727272;
    float: left;
    font-size: 13px;
    font-weight: normal;
    height: 50px;
    line-height: 39px;
    padding: 0 7px;
    width: 70%;
    background-color: transparent;
}

.fo-newsletter-submit-1 {
    background-color: #3b3b3b;
    border: 1px solid #3b3b3b;
    float: left;
    height: 50px;
    margin: 0;
    padding: 5px 10px;
}

.fo-newsletter-submit-1.gyellow {
    color: #fff;
    background-color: #ecae3d;
    border: 1px solid #ecae3d;
}

/* footer newsletter 2
 ------------------------------ */
.fo-newsletter-2 {
    border: 1px solid #101010;
    border-width: 1px 0 1px 1px;
    color: #727272;
    float: left;
    font-size: 13px;
    font-weight: normal;
    height: 50px;
    line-height: 39px;
    padding: 0 7px;
    width: 66%;
    background-color: transparent;
}

.fo-newsletter-submit-2 {
    background-color: #101010;
    border: 1px solid #101010;
    float: left;
    height: 50px;
    margin: 0;
    padding: 5px 20px;
}

/* footer appointment form
 ------------------------------ */
.fo-appointment-form {
    padding: 0px;
    width: 100%;
    float: left;
}

.fo-appointment-form input {
    border: 1px solid #212121;
    color: #727272;
    float: left;
    font-size: 13px;
    font-weight: normal;
    height: 35px;
    line-height: 39px;
    padding: 0 7px;
    width: 100%;
    margin: 0 0 15px 0;
    background-color: transparent;
}

.fo-appointment-form textarea {
    border: 1px solid #212121;
    color: #727272;
    float: left;
    font-size: 13px;
    font-weight: normal;
    height: 70px;
    min-height: 70px;
    resize: none;
    line-height: 39px;
    padding: 0 7px;
    width: 100%;
    margin: 0 0 15px 0;
    background-color: transparent;
}

.fo-appointment-form .submit-btn {
    background-color: #ecae3d;
    border: 1px solid #ecae3d;
    float: left;
    height: 40px;
    margin: 0;
    color: #fff;
    padding: 0 10px;
}

/* Footer title
 ------------------------------ */

.footer-title {
    color: #fff;
    float: left;
}

.footer-title-bottomstrip {
    width: 10%;
    height: 3px;
    margin-right: 95%;
    color: #fff;
    float: left;
    display: block;
    margin-bottom: 40px;
    background-color: #fff;
}

.footer-title-bottomstrip.gyellow {
    background-color: #ecae3d;
}

.footer-title-bottomstrip-2 {
    width: 34px;
    height: 2px;
    color: #fff;
    float: left;
    display: block;
    margin-bottom: 40px;
    background-color: #fff;
}

.footer-title-bottomstrip-3 {
    width: 34px;
    height: 2px;
    color: #fff;
    float: left;
    display: block;
    margin-bottom: 30px;
    background-color: #101010;
}

.footer-title-bottomstrip.dark {
    background-color: #101010;
}

.footer-title-bottomstrip-2.dark {
    background-color: #101010;
}

.footer-title-bottomstrip-2.gyellow {
    background-color: #ecae3d;
}

/* ---------- Footer quick links ---------- */

.footer-quick-links {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0px;
}

.footer-quick-links li {
    padding: 25px 15px;
    margin: 40px 0 10px 0;
    display: inline-block;
}

.footer-quick-links li a {
    padding: 3px 0;
    margin: 0;
    color: #727272;
    float: left;
    display: inline-block;
}

.footer-quick-links li a:hover {
    color: #fff;
}

.footer-quick-links li a i {
    padding: 0 10px 0 0;
}

/* ---------- Footer quick links ---------- */

.footer-quick-links-2 {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0px;
}

.footer-quick-links-2 li {
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

.footer-quick-links-2 li a {
    padding: 0 35px 20px 0;
    margin: 0;
    color: #727272;
    float: left;
    display: inline-block;
}

.footer-quick-links-2 li a:hover {
    color: #fff;
}

.footer-quick-links-2 li a i {
    padding: 0 10px 0 0;
}

.footer-quick-links-2.top-padding {
    padding: 60px 0 0 0;
}

/* ---------- Footer quick links 3 ---------- */

.footer-quick-links-3 {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0px;
    display: block;
}

.footer-quick-links-3 li {
    width: 100%;
    padding: 0px;
    margin: 0px;
    float: left;
    display: block;
}

.footer-quick-links-3 li a {
    padding: 3px 0;
    margin: 0;
    color: #727272;
    float: left;
    display: block;
}

.footer-quick-links-3 li a:hover {
    color: #101010;
}

.footer-quick-links-3 li a i {
    padding: 0 10px 0 0;
}

.footer-quick-links-3.top-padding {
    padding: 60px 0 0 0;
}

/* ---------- Footer quick links 4---------- */

.footer-quick-links-4 {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0px;
}

.footer-quick-links-4 li {
    width: 100%;
    padding: 0px;
    margin: 0;
    display: inline-block;
}

.footer-quick-links-4 li a {
    padding: 3px 0;
    margin: 0;
    color: #727272;
    float: left;
    display: inline-block;
}

.footer-quick-links-4 li a:hover {
    color: #fff;
}

.footer-quick-links-4 li a i {
    padding: 0 10px 0 0;
}

.footer-quick-links-4.dark-hover li a:hover {
    color: #101010;
}

/* ---------- Footer social links ---------- */
.footer-social-icons {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.footer-social-icons li {
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

.footer-social-icons li i {
    font-size: 12px;
}

.footer-social-icons li a {
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    display: inline-block;
    padding: 0px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-social-icons.round li a {
    border-radius: 100%;
}

.footer-social-icons li a:hover,
.footer-social-icons li a.active {
    color: #999;
    background-color: #fff;
}

/* ---------- Footer social links 2 ---------- */
.footer-social-icons-2 {
    width: 100%;
    padding: 0px;
    text-align: center;
    margin: 20px 0 20px 0;
}

.footer-social-icons-2 li {
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

.footer-social-icons-2 li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    padding: 0px;
    font-size: 16px;
    color: #101010;
    border: 1px solid #e4e4e4;
    background-color: #fff;
}

.footer-social-icons-2 li a:hover {
    color: #fff;
    border: 1px solid #ecae3d;
    background-color: #ecae3d;
}

.footer-social-icons-2 li a:hover,
.footer-social-icons-2 li a.active {
    color: #fff;
    border: 1px solid #ecae3d;
    background-color: #ecae3d;
}

.footer-social-icons-2.dark-hover li a:hover,
.footer-social-icons-2.dark-hover li a.active {
    color: #fff;
    border: 1px solid #101010;
    background-color: #101010;
}

/* ---------- Footer flickr gallery ---------- */

ul.footer-flickr {
    width: 100%;
    padding: 0;
    margin: 0px;
}

.footer-flickr li {
    width: 80px;
    padding: 0;
    margin: 0 0 11px 0;
    float: left;
}

.footer-flickr li.mar-r {
    margin-right: 11px;
}

/* ---------- Footer opening list ---------- */
.fo-opening-list {
    float: left;
    padding: 0;
    width: 100%;
}

.fo-opening-list li {
    color: #727272;
    float: left;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fo-opening-list li:first-child {
    padding-top: 0px;
}

.fo-opening-list li:last-child {
    border-bottom: none;
}

/*============ css arrows ============ */

/*.arrow-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #fd602c;
}
.arrow-up {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid black;
}
.arrow-right {
	width: 0;
	height: 0;
	border-top: 60px solid transparent;
	border-bottom: 60px solid transparent;
	border-left: 60px solid green;
}
.arrow-left {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid #fff;
}*/

/*============ Page Section Styles ============ */

/* section background dark
 ------------------------------ */
.section-dark {
    background-color: #272727;
}

.section-dark.two {
    background-color: #181818;
}

.section-medium-dark {
    background-color: #4b4b4b;
}

.section-fulldark {
    background-color: #121212;
}

/* section background light
 ------------------------------ */
.section-light {
    background-color: #f7f7f9;
}

.section-light-2 {
    background-color: #e9e9e9;
}

.section-light-3 {
    background-color: #f3f3f3;
}

.section-light-4 {
    background-color: #999;
}

/* section background white
 ------------------------------ */
.section-white {
    background-color: #fff;
}

/* section background golden yellow
 ------------------------------ */
.section-primary {
    background-color: #6453f7;
}

.section-secondary {
    background-color: #f3b60f;
}

.section-primary-2 {
    background-color: #044e67;
}

.section-red {
    background-color: #D91E18;
}

.section-yellow {
    background-color: #f3b60f;
}

.section-green {
    background-color: #87D37C;
}

.section-primary-gradient {
    background: #6453f7;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(to bottom right, #6453f7, #261e71);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(to bottom right, #6453f7, #261e71);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(to bottom right, #6453f7, #261e71);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #6453f7, #261e71);
    /* Standard syntax */
}

/* section copyright
 ------------------------------ */
.section-copyrights {
    margin: 0;
    text-align: center;
    background-color: #1a1a1a;
}

/* section big map
 ------------------------------ */
.section-big-map {
    width: 100%;
    margin: 0;
    text-align: center;
    background: #161616 url(../images/site-img46.png) center 150px no-repeat;
}

/* section pattren 1
 ------------------------------ */
.section-pattren-1 {
    width: 100%;
    height: 100%;
    margin: 0;
    background: url(../images/pattren1.jpg) 0 0 repeat;
}

/* Section Paddings
 ------------------------------ */
.sec-padding {
    padding: 0px 0 0px 0;
}

.sec-more-padding-1 {
    padding: 117px 0 117px 0;
}

.sec-more-padding-1.bottom-less {
    padding-bottom: 50px;
}

.sec-more-padding-1.no-padding {
    padding-bottom: 0px;
}

.sec-more-padding-2 {
    padding: 150px 0 150px 0;
}

.sec-bpadding-1 {
    padding-bottom: 40px;
}

.sec-bpadding-2 {
    padding-bottom: 80px;
}

.sec-tpadding-2 {
    padding-top: 80px;
}

.sec-tpadding-2.less-padding {
    padding-top: 20px;
}

.sec-tpadding-3 {
    padding-top: 120px;
}

.sec-bpadding-3 {
    padding-bottom: 120px;
}

.sec-tpadding-4 {
    padding-top: 150px;
}

.sec-bpadding-4 {
    padding-bottom: 150px;
}

.sec-bpadding.less-padding {
    padding-bottom: 30px;
}

.section-xmore-padding {
    padding: 150px 0 150px 0;
}

.section-less-padding {
    padding: 50px 0 50px 0;
}

.section-less-padding-2 {
    padding: 30px 0 30px 0;
}

.section-less-padding-3 {
    padding: 35px 0 35px 0;
}

.sec-dummy-top-padding {
    padding-top: 0px;
}

.sec-less-padding {
    padding: 50px 0 50px 0;
}

.sec-mid-padding {
    padding: 75px 0 70px 0;
}

/* Section minus margins
 ------------------------------ */
.sec-m-margin-1 {
    margin-top: 0px;
}

/*============ Page Section pattrens ============ */

.sec-pattren-1 {
    width: 100%;
    background: url(../images/bg-pattrens/pattren1.jpg) repeat;
}

.sec-pattren-2 {
    width: 100%;
    background: url(../images/bg-pattrens/pattren2.jpg) repeat;
}

.sec-pattren-3 {
    width: 100%;
    background: url(../images/bg-pattrens/pattren3.jpg) repeat;
}

.sec-pattren-4 {
    width: 100%;
    background: url(../images/bg-pattrens/pattren4.jpg) repeat;
}

.sec-pattren-5 {
    width: 100%;
    background: url(../images/bg-pattrens/pattren5.jpg) repeat;
}

/*============ Footer Styles ============ */

.footer-logo {
    margin-bottom: 20px;
}

/* Footer Useful Links
 ------------------------------ */

.fo-usefull-links {
    padding: 0px;
    margin: 0px;
}

.fo-usefull-links li {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    border-bottom: 1px solid #2e2e2e;
}

.fo-usefull-links li a {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #727272;
    line-height: 23px;
}

.fo-usefull-links li a:hover {
    color: #fff;
}

.fo-usefull-links li i {
    color: #727272;
    padding: 0 10px 0 0;
}

.fo-usefull-links li:last-child {
    border-bottom: none;
}

/* useful links 2
 ------------------------------ */
.fo-usefull-links-2 {
    padding: 0px;
    margin: 0px;
}

.fo-usefull-links-2 li {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    border-bottom: 1px solid #e4e4e4;
}

.fo-usefull-links-2 li a {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #727272;
    line-height: 23px;
}

.fo-usefull-links-2 li a:hover {
    color: #323335;
}

.fo-usefull-links-2 li i {
    color: #727272;
    padding: 0 10px 0 0;
}

.fo-usefull-links-2 li:last-child {
    border-bottom: none;
}

.fo-usefull-links-2.no-border li {
    border-bottom: none;
}

/* useful links 3
 ------------------------------ */
.fo-usefull-links-3 {
    padding: 0px;
    margin: 0px;
}

.fo-usefull-links-3 li {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.fo-usefull-links-3 li a {
    padding: 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #fff;
    line-height: 23px;
}

.fo-usefull-links-3 li a:hover {
    color: #323335;
}

.fo-usefull-links-3 li i {
    color: #fff;
    padding: 0 10px 0 0;
}

.fo-usefull-links-3 li:last-child {
    border-bottom: none;
}

.fo-usefull-links-3.no-border li {
    border-bottom: none;
}

/* Footer Address
 ------------------------------ */

.fo-address-info {
    padding: 0px;
    margin: 0px;
}

.fo-address-info li {
    width: 100%;
    padding: 0px 0px 10px 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #727272;
    line-height: 23px;
    border-bottom: 1px solid #282828;
}

.fo-address-info.border-light li {
    border-bottom: 1px solid #f0f0f0;
}

.fo-address-info li i {
    color: #727272;
    padding: 0 10px 0 0;
}

.fo-address-info li:last-child {
    border-bottom: none;
}

.fo-address-info.no-border li {
    border-bottom: none;
}

/* Footer Address 2
 ------------------------------ */

.fo-address-info-2 {
    padding: 0px;
    margin: 0px;
}

.fo-address-info-2 li {
    padding: 0px 0px 10px 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #727272;
    line-height: 23px;
    border-bottom: 1px solid #e4e4e4;
}

.fo-address-info-2 li i {
    color: #727272;
    padding: 0 10px 0 0;
}

.fo-address-info-2 li:last-child {
    border-bottom: none;
}

.fo-address-info-2.no-border li {
    border-bottom: none;
}

/* Footer Address 3
 ------------------------------ */

.fo-address-info-3 {
    padding: 0px;
    margin: 0px;
}

.fo-address-info-3 li {
    padding: 0px 0px 10px 0px;
    margin: 0 0 10px 0;
    display: block;
    color: #fff;
    line-height: 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.fo-address-info-3 li i {
    color: #fff;
    padding: 0 10px 0 0;
}

.fo-address-info-3 li:last-child {
    border-bottom: none;
}

.fo-address-info-3.no-border li {
    border-bottom: none;
}


/* Footer Tags
 ------------------------------ */

.footer-tags {
    padding: 0px;
    margin: 0px;
}

.footer-tags li {
    padding: 0px;
    margin: 0;
}

.footer-tags li a {
    padding: 5px 15px 5px 15px;
    margin: 0 10px 10px 0;
    float: left;
    color: #727272;
    border: 1px solid #2e2e2e;
}

.footer-tags li a:hover,
.footer-tags li a.active {
    border: 1px solid #ecae3d;
    color: #ecae3d;
}

.footer-tags.border-light li a {
    border: 1px solid #ebebeb;
}

/* Footer Posts
 ------------------------------ */
.footer-post-info {
    padding: 0px;
}

.footer-post-info span {
    font-size: 13px;
    color: #494747;
    margin-right: 5px;
}

.fo-postimg-inner {
    width: 80px;
    height: 80px;
    padding: 0px;
    margin: 0px;
    float: left;
    border-radius: 100%;
}

.opening-list {
    float: left;
    padding: 0;
    width: 100%;
}

.opening-list li {
    color: #727272;
    float: left;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-list li:first-child {
    padding-top: 0px;
}

.opening-list li:last-child {
    border-bottom: none;
}

.opening-list.dark-border li {
    border-bottom: 1px solid #f1f1f1;
}

/* Footer copyright box
 ------------------------------ */

.fo-copyright-holder {
    position: relative;
    width: 100%;
    float: left;
    padding: 0px;
    margin: 0px;
}

.fo-copyright-holder .social-iconbox {
    position: absolute;
    width: 265px;
    float: left;
    left: 40%;
    top: -57px;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
}

.fo-copyright-holder .social-iconbox.bg-dark {
    background-color: #101010;
}

.fo-copyright-holder .social-iconbox .side-shape1 {
    position: absolute;
    width: 13px;
    height: 28px;
    float: left;
    left: -13px;
    top: -1px;
    padding: 0px;
    margin: 0px;
}

.fo-copyright-holder .social-iconbox .side-shape1.right-icon {
    left: 265px;
    top: -1px;
}

.fo-copyright-holder .sc-icons {
    width: 100%;
    float: left;
    padding: 0px;
    margin: 0px;
}

.fo-copyright-holder .sc-icons li {
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

.fo-copyright-holder .sc-icons li a {
    float: left;
    font-size: 15px;
    padding: 15px 10px;
    margin: 0px;
    display: inline-block;
}

/* Footer contact info with big icons
 ------------------------------ */

.contact-info-holder {
    position: relative;
    width: 100%;
    padding: 0px;
}

.contact-info-holder .iconbox-xmedium {
    color: #ecae3d;
}

.contact-info-holder:hover .iconbox-xmedium,
.contact-info-holder.active .iconbox-xmedium {
    color: #fff;
    background-color: #ecae3d;
}


/*============ Overlay Styles ============ */
.section-overlay {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
    left: 0px;
    top: 0px;
    float: left;
    z-index: 2;
}

.video-overlay {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
    left: 0px;
    top: 0px;
    float: left;
    z-index: 2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    float: left;
    z-index: 10;
}

/*video padding
 ------------------------------ */
.video-tpadd {
    padding-top: 150px;
}

.video-bpadd {
    padding-bottom: 150px;
}

/* Overlay opacity styles
 ------------------------------ */

.bg-opacity-1 {
    background-color: rgba(39, 39, 39, 0.1);
}

.bg-opacity-2 {
    background-color: rgba(39, 39, 39, 0.2);
}

.bg-opacity-3 {
    background-color: rgba(39, 39, 39, 0.3);
}

.bg-opacity-4 {
    background-color: rgba(39, 39, 39, 0.4);
}

.bg-opacity-5 {
    background-color: rgba(39, 39, 39, 0.5);
}

.bg-opacity-6 {
    background-color: rgba(39, 39, 39, 0.6);
}

.bg-opacity-7 {
    background-color: rgba(39, 39, 39, 0.7);
}

.bg-opacity-8 {
    background-color: rgba(39, 39, 39, 0.8);
}

.bg-opacity-9 {
    background-color: rgba(39, 39, 39, 0.9);
}

.bg-white-opacity-1 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-opacity-2 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-white-opacity-3 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-primary-opacity-1 {
    background-color: rgba(100, 82, 247, 0.2);
}

.bg-primary-opacity-2 {
    background-color: rgba(100, 82, 247, 0.4);
}

.bg-primary-opacity-3 {
    background-color: rgba(100, 82, 247, 0.6);
}

.bg-primary-opacity-4 {
    background-color: rgba(100, 82, 247, 0.8);
}

.bg-primary-opacity-5 {
    background-color: rgba(100, 82, 247, 0.9);
}


/* Overlay Background colors
 ------------------------------ */
/* Background light
 ------------------------------ */
.section-overlay.light {
    background-color: rgba(246, 246, 246, 0.9);
}

.section-overlay.light-2 {
    background-color: rgba(246, 246, 246, 0.8);
}

.section-overlay.light-3 {
    background-color: rgba(246, 246, 246, 0.7);
}

.section-overlay.light-4 {
    background-color: rgba(246, 246, 246, 0.6);
}

.section-overlay.light-5 {
    background-color: rgba(246, 246, 246, 0.5);
}

/* Overlay Background dark
 ------------------------------ */
.section-overlay.dark {
    background-color: rgba(0, 0, 0, 0.7);
}

.section-overlay.dark-2 {
    background-color: rgba(0, 0, 0, 0.3);
}

.section-overlay.dark-3 {
    background-color: rgba(0, 0, 0, 0.9);
}

.section-overlay.dark-4 {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Overlay Background golden yellow
 ------------------------------ */
.section-overlay.gyellow {
    background-color: rgba(236, 174, 61, 0.9);
}

.parallax-overlay.primary {
    background-color: rgba(101, 216, 53, 0.7);
}

.parallax-overlay.secondary {
    background-color: rgba(29, 109, 162, 0.8);
}

.parallax-overlay.light {
    background-color: rgba(246, 246, 246, 0.9);
}

.parallax-overlay.light-2 {
    background-color: rgba(246, 246, 246, 0.8);
}

.parallax-overlay.light-3 {
    background-color: rgba(246, 246, 246, 0.7);
}

.parallax-overlay.light-4 {
    background-color: rgba(246, 246, 246, 0.6);
}

.parallax-overlay.light-5 {
    background-color: rgba(246, 246, 246, 0.5);
}

/*============ Social Links ============ */

.social-icons-1 {
    width: 100%;
    margin: 30px 0 0 0;
    list-style-type: none;
}

.social-icons-1 li {
    display: inline-block;
}

.social-icons-1 li a {
    font-size: 16px;
    padding: 0 20px 0 0;
    color: #fff;
    display: inline-block;
}

.social-icons-1 li a:hover,
.social-icons-1 li a.active {
    color: #ecae3d;
}

/* social icons 2
 -----------------------------------------------*/

.social-icons-2 {
    width: 100%;
    margin: 30px 0 0 0;
    list-style-type: none;
}

.social-icons-2 li {
    display: inline-block;
}

.social-icons-2 li a {
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    padding: 0px;
    color: #101010;
    background-color: #fff;
}

.social-icons-2 li a:hover,
.social-icons-2 li a.active {
    color: #ecae3d;
}

/* social icons 3
 -----------------------------------------------*/

.social-icons-3 {
    width: 100%;
    margin: 30px 0 0 0;
    list-style-type: none;
}

.social-icons-3.margin-left {
    margin: 10px 0 0 -40px;
}

.social-icons-3 li {
    display: inline-block;
}

.social-icons-3 li a {
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 37px;
    display: inline-block;
    padding: 0px;
    color: #101010;
    border: 1px solid #e4e4e4;
    background-color: #fff;
}

.social-icons-3 li a:hover,
.social-icons-3 li a.active {
    color: #fff;
    border: 1px solid #101010;
    background-color: #101010;
}



/*============ Blog Posts ============ */

/* post image holder
 -----------------------------------------------*/

.blog-img-holder {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

/* post date boxes
 -----------------------------------------------*/

.post-date-box {
    position: absolute;
    width: 90px;
    height: 90px;
    float: left;
    font-size: 25px;
    color: #fff;
    padding: 22px 0 0 0;
    margin: 0;
    z-index: 2;
    text-align: center;
    background-color: #ecae3d;
    transition: all 0.3s ease-out 0s;
}

.post-date-box span {
    font-size: 13px;
    color: #fff;
    display: block;
}

.post-date-box .arrow-down {
    position: absolute;
    left: 25px;
    top: 81px;
    float: left;
    z-index: 3;
    border-top: 20px solid #ecae3d;
}

/* Date box colors
 -----------------------------------------------*/
.post-date-box.gyellow {
    background-color: #ecae3d;
}

/* post author image holder
 -----------------------------------------------*/

.post-author-image {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 35px;
    top: 247px;
    float: left;
}

.post-author-image.round {
    border-radius: 100%;
    border: 5px solid #fff;
    text-align: center;
}

/* post info icons
 -----------------------------------------------*/

.post-infoicon {
    padding: 3px 12px 3px 12px;
    margin: 0 5px 0 0;
    color: #fff;
    float: left;
    font-size: 12px;
    border-radius: 20px;
    background-color: #ecae3d;
}

.post-infoicon.dark {
    background-color: #161616;
}


/*============ Footer Newsletter ============ */

.newsletter .email-input {
    background-color: #FFF;
    border: 0px none;
    color: #999;
    float: left;
    font-size: 13px;
    font-weight: normal;
    height: 39px;
    line-height: 39px;
    padding: 0px 7px;
    width: 75%;
}

.newsletter .email-input.dark {
    background-color: #2d2d2d;
    color: #727272;
}

.newsletter .input-submit {
    background-color: #fd602c;
    border: 0px none;
    color: #FFF;
    cursor: pointer;
    float: left;
    height: 39px;
    padding: 0px 20px;
}

.newsletter .input-submit.gyellow {
    background-color: #ecae3d;
}

.newsletter .input-submit.white {
    color: #161616;
    background-color: #fff;
}

.newsletter .input-submit.dark {
    color: #727272;
    background-color: #2d2d2d;
}

/*============ Video wrapers ============ */

.video-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 0px;
    height: auto;
}

.video-wrapper video {
    width: 100%;
}

/*video padding
 ------------------------------ */
.video-padding-top {
    padding-top: 150px;
}

.video-padding-bottom {
    padding-bottom: 150px;
}

/*============ Progress bar ============ */

/*style 1
 ------------------------------ */
.progressbar-style1 {
    margin-top: 10px;
    margin-bottom: 38px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: visible;
    height: 10px;
    color: #fff;
    background: #fff;
    border-radius: 0px;
    box-shadow: none;
    text-transform: uppercase;
}

.progressbar-style1 .progress-bar {
    position: relative;
    overflow: visible;
    background-color: #101010;
    font-size: 13px;
    color: #ecae3d;
    line-height: 44px;
    padding: 0px 0 0 0px;
    text-align: left;
    border: 2px solid #fff;
}

.progressbar-style1 .progress-bar.yellow-3 {
    background-color: #f7c800;
}

/*style 2
 ------------------------------ */
.progressbar-style2 {
    margin-top: 10px;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: visible;
    height: 3px;
    color: #161616;
    background: #ccc;
    border-radius: 0px;
    box-shadow: none;
    text-transform: uppercase;
}

.progressbar-style2 .progress-bar {
    position: relative;
    overflow: visible;
    background-color: #161616;
    font-size: 13px;
    color: #161616;
    padding: 3px 0 0 0;
    text-align: left;
}

/*style 3
 ------------------------------ */
.progressbar-style3 {
    margin-top: 10px;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: visible;
    height: 8px;
    color: #161616;
    background: #fff;
    border-radius: 0px;
    box-shadow: none;
    text-transform: uppercase;
}

.progressbar-style3 .progress-bar {
    position: relative;
    overflow: visible;
    background-color: #e9b444;
    font-size: 13px;
    color: #fff;
    padding: 8px 0 0 0;
    text-align: left;
}

/*style 4
 ------------------------------ */
.progressbar-style4 {
    margin-top: 10px;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: visible;
    height: 8px;
    color: #161616;
    background: #e7e7e7;
    border-radius: 0px;
    box-shadow: none;
    text-transform: uppercase;
}

.progressbar-style4 .progress-bar {
    position: relative;
    overflow: visible;
    background-color: #ff9320;
    font-size: 13px;
    color: #727272;
    padding: 8px 0 0 0;
    text-align: left;
}

/*style 5
 ------------------------------ */
.progressbar-style5 {
    margin-top: 10px;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: visible;
    height: 8px;
    color: #161616;
    background: #f5f5f5;
    border-radius: 0px;
    box-shadow: none;
    text-transform: uppercase;
}

.progressbar-style5 .progress-bar {
    position: relative;
    overflow: visible;
    background-color: #101010;
    font-size: 13px;
    color: #101010;
    padding: 8px 0 0 0;
    text-align: left;
}

/*============ Newsletter ============ */

.email-input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 65px;
    line-height: 39px;
    padding: 0 15px;
    width: 87%;
}

.email-submit {
    background-color: #fff;
    border: 1px solid #fff;
    color: #323335;
    float: left;
    margin: 0px;
    padding: 20px 30px;
    text-transform: uppercase;
    transition: all 0.3s ease-out 0s;
}

.email-submit:hover {
    background-color: #323335;
    border: 1px solid #323335;
    color: #fff;
}

/*============ css progress circles ============ */

.knob {
    display: none;
}

div.demo {
    position: relative;
    text-align: center;
    width: 280px;
    float: left
}

div.demo > p {
    font-size: 20px
}

div.demo .title {
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 40px;
    float: left;
    top: 60px;
}

div.demo .title span {
    text-align: center;
    width: 100%;
    font-size: 20px;
    float: left;
    margin-top: 10px;
}

/*============ Page Scroll to Top ============ */

.scrollup {
    width: 40px;
    height: 40px;
    opacity: 1;
    position: fixed;
    bottom: 22px;
    right: 20px;
    display: none;
    text-indent: -9999px;
    background: url(assets/images/scroll-top-arrow.png) no-repeat left top;
    z-index: 9001;
}

/*============ google maps ============ */
.map {
    width: 100%;
    height: 300px;
    border: 1px solid #e4e4e4;
}

.map p {
    margin: 10px;
    color: #333;
}

/*============ blog ============ */

.blog-post-info {
    width: 100%;
    font-size: 13px;
    color: #b9b9b9;
    margin-right: 15px;
}

.blog-post-info span {
    font-size: 13px;
    color: #b9b9b9;
    margin-right: 15px;
}

/*============ onepage sidebar content holder ============ */
.wrapper-main {
    padding-left: 300px;
    background-color: #fff;
}


/*============ header inner ============ */

.header-inner-tmargin {
    width: 100%;
    float: left;
    margin-top: -145px;
}

.header-inner-tmargin.less-mar {
    margin-top: -41px;
}

.header-inner {
    position: relative;
    width: 100%;
    height: 500px;
    float: left;
    overflow: hidden;
}

.header-inner.less-height {
    height: 430px;
}

.header-inner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
}

.header-inner .text {
    position: absolute;
    width: 100%;
    height: 1000px;
    padding: 16% 0 0 0;
    top: 0px;
    margin: 0px;
    float: left;
    z-index: 3;
}

.header-inner .text .title {
    font-size: 30px;
    font-weight: 600;
}

.header-inner .text .sub-title {
    width: 100%;
    font-size: 18px;
}

/* less height
 ------------------------------ */
.header-inner.less-height {
    height: 335px;
}

.header-inner.less-height .text {
    height: 300px;
    padding: 9% 0 0 0;
}

/*============ pagenation ============ */
.pagenation-holder {
    border-bottom: 1px solid #f0f0f0;
    float: left;
    margin: 0;
    padding: 25px 0 10px;
    width: 100%;
}

.pagenation-holder .breadcrumb {
    float: right;
    margin-bottom: 0px;
    background-color: #fff;
}

.pagenation-holder .breadcrumb li {
    display: inline;
}

.pagenation-holder .breadcrumb li.current a {
    color: #ecae3d;
}

.pagenation-holder .breadcrumb li + li:before {
    content: "» ";
}


/*============ 5 and 7 custom cols ============ */

.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
    width: 14.2857%;
}

.five-cols .col-md-1,
.five-cols .col-sm-1,
.five-cols .col-lg-1 {
    width: 20%;
}



/*----------------------------RESPONSIVE STYLES------------------------------- */
/* ---------- MAX 1024PX ---------- */
@media screen and (max-width: 1024px) {
    .col-divider-margin {
        margin-top: 30px;
    }

    .text-box-right {
        padding: 0px 0px 0px 100px;
    }

    .wrapper-main {
        width: 100%;
        padding-left: 230px;
        background-color: #fff;
    }

    .wrapper-main .container {
        width: 100%;
    }

    .header-inner.less-height .text {
        padding: 13% 0 0;
    }

    .header-inner .text {
        padding: 25% 0 0;
    }

    .text-box.padding-percent-2 {
        padding: 10% 5% !important;
    }

    .img-hover-text5 .distext {
        padding: 7% !important;
    }

    .img-hover-text5 h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .img-hover-text5 h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .img-hover-text5 hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }



}

@media screen and (max-width: 1000px) {

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .sec-m-margin-1 {
        margin-top: 0px;
    }

    .topbar-transparent {
        background-color: #101010;
    }

    .wrapper-main {
        padding-left: 0px;
    }

    .header-inner-tmargin {
        margin-top: 0px;
    }







}



/* ---------- MAX 991PX ---------- */
@media only screen and (max-width: 991px) {
    .margin-bottom {
        margin-bottom: 30px !important;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 40px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 40px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 40px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .header-inner {
        height: 385px;
    }

    .header-inner.less-height {
        height: 385px;
    }

    .header-inner.less-height .text {
        padding: 16% 0 0;
    }

    .header-inner .text {
        padding: 16% 0 0;
    }

    .text-box.padding-percent-2 {
        padding: 10% 5% !important;
    }

    .img-hover-text5 .distext {
        padding: 7% !important;
    }

    .img-hover-text5 h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .img-hover-text5 h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .img-hover-text5 hr {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .flips1 {
        margin-bottom: 30px;
    }

    .flips1_front img {
        width: 100% !important;
        height: 100% !important;
    }

    .flips1_back {
        height: 100%;
    }

    .text-box.padding-percent-3 {
        padding: 10% !important;
    }



}



/* ---------- MAX 800PX ---------- */
@media only screen and (max-width: 800px) {

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

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 40px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 40px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 40px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 60px 0 60px 0;
    }

    .sec-more-padding-1 {
        padding: 60px 0 60px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 60px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 60px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 60px 0 60px 0;
    }

    .sec-moreless-padding {
        padding: 60px 0 60px 0;
    }

    .thumbs li {
        width: 10%;
    }

    .fo-copyright-holder .social-iconbox {
        left: 33%;
        top: -87px;
    }

    .fo-sec-3 {
        padding: 244px 0 0 0;
    }

    .header-inner {
        height: 310px;
    }

    .header-inner.less-height {
        height: 310px;
    }






}



/* ---------- MAX 768PX ---------- */
@media only screen and (max-width: 768px) {

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

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 40px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 40px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 40px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 60px 0 60px 0;
    }

    .sec-more-padding-1 {
        padding: 60px 0 60px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 60px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 60px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 60px 0 60px 0;
    }

    .sec-moreless-padding {
        padding: 60px 0 60px 0;
    }

    .fo-copyright-holder .social-iconbox {
        left: 33%;
        top: -87px;
    }

    .header-inner {
        height: 325px;
    }

    .header-inner.less-height {
        height: 325px;
    }

    .five-cols .col-md-1,
    .five-cols .col-sm-1,
    .five-cols .col-lg-1 {
        width: 100%;
    }

    .mhide {
        display: none;
    }












}



/* ---------- MAX 767PX ---------- */
@media only screen and (max-width: 767px) {

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

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 40px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 40px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 40px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .topbar-left-items {
        width: 50%;
    }

    .topbar-right-items {
        width: 50%;
    }





}


@media screen and (max-width: 640px) {
    .margin-bottom {
        margin-bottom: 30px;
    }

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 40px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 40px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 40px;
    }

    .lspace-sm,
    .lspace-1,
    .lspace-2,
    .lspace-3,
    .lspace-4,
    .lspace-5 {
        letter-spacing: 0px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 40px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 40px 0 40px 0;
    }

    .sec-more-padding-1 {
        padding: 40px 0 40px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 40px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 40px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 40px 0 40px 0;
    }

    .sec-moreless-padding {
        padding: 40px 0 40px 0;
    }

    #style-customizer {
        display: none;
    }

    .text-box.sbox-padd-left {
        padding-left: 80px;
    }

    .fo-sec-1 .newsletter-box {
        top: 0;
    }

    .fo-sec-1 {
        top: 0px;
        padding: 315px 0 0 0;
    }

    .fo-copyright-holder .social-iconbox {
        left: 29%;
        top: -67px;
    }

    .section-side-image .text-inner-5 {
        padding: 40px 40px 40px 40px;
    }

    .header-inner {
        height: 270px;
    }

    .header-inner.less-height {
        height: 270px;
    }





}



@media screen and (max-width: 480px) {
    .margin-bottom {
        margin-bottom: 30px;
    }

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 30px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 30px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 30px;
    }

    .lspace-sm,
    .lspace-1,
    .lspace-2,
    .lspace-3,
    .lspace-4,
    .lspace-5 {
        letter-spacing: 0px;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 30px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .topbar .border-r {
        border-right: none;
    }

    .topbar .padd-left {
        padding-left: 0px;
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 40px 0 40px 0;
    }

    .sec-more-padding-1 {
        padding: 40px 0 40px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 40px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 40px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 40px 0 40px 0;
    }

    .sec-moreless-padding {
        padding: 40px 0 40px 0;
    }

    #style-customizer {
        display: none;
    }

    .fo-copyright-holder .social-iconbox {
        left: 12%;
        top: -67px;
    }

    .fo-sec-3 {
        padding: 287px 0 0 0;
    }

    .section-side-image .text-inner-5 {
        padding: 40px 40px 40px 40px;
    }

    .header-inner .text .title {
        font-size: 20px;
    }

    .header-inner .text .sub-title {
        font-size: 14px;
    }

    .header-inner {
        height: 225px;
    }

    .header-inner.less-height {
        height: 225px;
    }

    .clients-list.grid-cols-6 li {
        width: 50%;
    }




}



/* ---------- MAX 360PX ---------- */
@media screen and (max-width: 360px) {
    .margin-bottom {
        margin-bottom: 30px;
    }

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 25px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 25px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 25px;
    }

    .lspace-sm,
    .lspace-1,
    .lspace-2,
    .lspace-3,
    .lspace-4,
    .lspace-5 {
        letter-spacing: 0px;
    }

    .iconbox-dxlarge.left,
    .iconbox-xlarge.left,
    .iconbox-large.left,
    .iconbox-xmedium.left,
    .iconbox-medium.left,
    .iconbox-smedium.left,
    .iconbox-small.left,
    .iconbox-tiny.left,
    .iconbox-xtiny.left {
        margin: 0px 0px 20px 0px;
    }

    .imgbox-dxlarge.left,
    .imgbox-dxlarge-2.left,
    .imgbox-xlarge.left,
    .imgbox-large.left,
    .imgbox-xmedium.left,
    .imgbox-medium.left,
    .imgbox-smedium.left,
    .imgbox-small.left,
    .imgbox-tiny.left,
    .imgbox-xtiny.left {
        float: left;
        margin: 0px 0 20px 0px;
    }

    .text-box-right {
        width: 100%;
        padding: 0 0 0 0;
    }

    .text-box-left {
        width: 100%;
        padding: 0 0 0 0;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 25px;
    }

    .text-box-left.more-padding-1,
    .text-box-left.more-padding-2,
    .text-box-left.less-padding-1,
    .text-box-left.less-padding-2 {
        padding: 0px 0px 0px 0px;
    }

    .text-box-right.more-padding-1,
    .text-box-right.more-padding-2,
    .text-box-right.more-padding-3,
    .text-box-right.more-padding-4,
    .text-box-right.less-padding-1,
    .text-box-right.less-padding-2,
    .text-box-right.less-padding-3 {
        padding: 0px 0px 0px 0px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .btn.btn-large {
        padding: 15px 30px;
    }

    .section-side-image .text-inner-2 {
        padding: 40px;
    }

    .section-side-image .text-inner {
        padding: 40px 40px 40px 0;
    }

    .section-side-image .text-inner.two {
        padding: 0px 40px 0px 0;
    }

    .section-side-image-2 .background-imgholder-2.top-padd {
        padding-top: 40px;
    }

    .section-side-image-2 .text-inner.two {
        padding: 0px 40px 0px 0;
    }

    .section-side-image .text-inner-5 {
        padding: 40px 40px 40px 40px;
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 40px 0 40px 0;
    }

    .sec-more-padding-1 {
        padding: 40px 0 40px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 40px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 40px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 40px 0 40px 0;
    }

    .sec-moreless-padding {
        padding: 40px 0 40px 0;
    }

    .fo-copyright-holder .social-iconbox {
        left: 5%;
    }

    .fo-sec-1 .newsletter-box {
        padding: 35px;
    }

    .fo-sec-2 .social-iconbox {
        left: 14%;
        top: -67px;
    }

    .section-side-image .text-inner-3 {
        padding: 30px 30px 0px 30px;
    }

    .fo-sec-3 {
        padding: 328px 0 0 0;
    }

    .text-box-right {
        width: 100%;
        padding: 0 0 0 0;
        float: left;
    }

    .text-box-right.less-padding-4 {
        padding: 0px 0px 0px 0px;
    }

    .header-inner {
        height: 195px;
    }

    .header-inner.less-height {
        height: 195px;
    }









}


/* ---------- MAX 320PX ---------- */
@media only screen and (max-width: 320px) {
    .margin-bottom {
        margin-bottom: 30px;
    }

    .margin-bottom-4,
    .margin-bottom-5 {
        margin-bottom: 20px;
    }

    .margin-top-3,
    .margin-top-4,
    .margin-top-5,
    .margin-top-6,
    .margin-top-7 {
        margin-top: 20px;
    }

    .col-divider-margin {
        margin-top: 20px;
    }

    .col-divider-margin-1,
    .col-divider-margin-2,
    .col-divider-margin-3,
    .col-divider-margin-4,
    .col-divider-margin-5,
    .col-divider-margin-6 {
        margin-top: 20px;
    }

    .margin-left-1,
    .margin-left-2,
    .margin-left-3,
    .margin-left-4,
    .margin-left-5,
    .margin-left-6,
    .margin-left-7 {
        margin-left: 0px;
    }

    .padding-top-1,
    .padding-top-2,
    .padding-top-3,
    .padding-top-4,
    .padding-top-5,
    .padding-top-6 {
        padding-top: 20px;
    }

    .padding-left-1,
    .padding-left-2,
    .padding-left-3,
    .padding-left-4,
    .padding-left-5,
    .padding-left-6,
    .padding-left-7,
    .padding-left-8 {
        padding-left: 20px;
    }

    .padding-right-1,
    .padding-right-2,
    .padding-right-3,
    .padding-right-4,
    .padding-right-5,
    .padding-right-6,
    .padding-right-7,
    .padding-right-8 {
        padding-right: 20px;
    }

    .lspace-sm,
    .lspace-1,
    .lspace-2,
    .lspace-3,
    .lspace-4,
    .lspace-5 {
        letter-spacing: 0px;
    }

    .iconbox-dxlarge.left,
    .iconbox-xlarge.left,
    .iconbox-large.left,
    .iconbox-xmedium.left,
    .iconbox-medium.left,
    .iconbox-smedium.left,
    .iconbox-small.left,
    .iconbox-tiny.left,
    .iconbox-xtiny.left {
        margin: 0px 0px 20px 0px;
    }

    .imgbox-dxlarge.left,
    .imgbox-dxlarge-2.left,
    .imgbox-xlarge.left,
    .imgbox-large.left,
    .imgbox-xmedium.left,
    .imgbox-medium.left,
    .imgbox-smedium.left,
    .imgbox-small.left,
    .imgbox-tiny.left,
    .imgbox-xtiny.left {
        float: left;
        margin: 0px 0 20px 0px;
    }

    .text-box-right {
        width: 100%;
        padding: 0 0 0 0;
    }

    .text-box-left {
        width: 100%;
        padding: 0 0 0 0;
    }

    .text-box.padding-1,
    .text-box.padding-2,
    .text-box.padding-3,
    .text-box.padding-4,
    .text-box.padding-5,
    .text-box.padding-6,
    .text-box.padding-7,
    .text-box.padding-8,
    .text-box.padding-9 {
        padding: 20px;
    }

    .text-box-right.more-padding-1,
    .text-box-right.more-padding-2,
    .text-box-right.more-padding-3,
    .text-box-right.more-padding-4,
    .text-box-right.less-padding-1,
    .text-box-right.less-padding-2,
    .text-box-right.less-padding-3 {
        padding: 0px 0px 0px 0px;
    }

    .btn.btn-mar-left-1,
    .btn.btn-mar-left-2,
    .btn.btn-mar-left-3,
    .btn.btn-mar-left-4,
    .btn.btn-mar-left-5 {
        margin-left: 0px
    }

    .btn.btn-large {
        padding: 15px 30px;
    }

    .section-side-image .text-inner {
        padding: 40px 40px 40px 0;
    }

    .section-side-image .text-inner.two {
        padding: 0px 40px 0px 0;
    }

    .section-side-image-2 .background-imgholder-2.top-padd {
        padding-top: 40px;
    }

    .section-side-image-2 .text-inner.two {
        padding: 0px 40px 0px 0;
    }

    .sec-title-container.less-padding-1,
    .sec-title-container.less-padding-2,
    .sec-title-container.less-padding-3,
    .sec-title-container.less-padding-4,
    .sec-title-container.less-padding-5,
    .sec-title-container.less-padding-6 {
        padding-bottom: 30px;
    }

    .sec-padding {
        padding: 30px 0 30px 0;
    }

    .sec-more-padding-1 {
        padding: 30px 0 30px 0;
    }

    .sec-bpadding-2,
    .sec-bpadding-3,
    .sec-bpadding-4 {
        padding-bottom: 30px;
    }

    .sec-tpadding-2,
    .sec-tpadding-3,
    .sec-tpadding-4 {
        padding-top: 30px;
    }

    .section-xmore-padding,
    .section-less-padding,
    .section-less-padding-2 {
        padding: 30px 0 30px 0;
    }

    .sec-moreless-padding {
        padding: 30px 0 30px 0;
    }

    .fo-copyright-holder .social-iconbox {
        left: 16%;
        top: -59px;
    }

    .fo-copyright-holder .social-iconbox {
        width: 71%;
    }

    .fo-copyright-holder .social-iconbox .side-shape1.right-icon {
        left: 213px;
    }

    .fo-sec-2 .social-iconbox {
        left: 9%;
        top: -57px;
    }

    .fo-sec-3 {
        padding: 409px 0 0 0;
    }

    .fo-copyright-holder .social-iconbox .side-shape1 {
        left: -13px;
        top: 1px;
    }

    .fo-copyright-holder .social-iconbox .side-shape1.right-icon {
        left: 205px;
        top: 1px;
    }

    .header-inner {
        height: 170px;
    }

    .header-inner.less-height {
        height: 170px;
    }

    .sec-title-container {
        padding-bottom: 35px;
    }




}




/* added new styles */
h1.less-mar-3 {
    margin-bottom: 18px;
}

a.white {
    color: #fff;
}

a.white:hover {
    opacity: 0.5;
}
.dark-primary:hover {
  background-color: white !important;
}
a.opacity-white {
    color: #fff;
    opacity: 0.5;
}

a.opacity-white:hover {
    opacity: 1;
}

a.primary {
    color: #034805;
}

a.primary:hover {
    color: #034805;
}

a.secondary {
    color: #f3b60f;
}

a.secondary:hover {
    color: #034805;
}

a.secondary.sty2:hover {
    color: #fff;
}

a.dark-primary {
    color: #272727;
}

a.dark-primary:hover {
    color: #008800 !important;
}

a.dark-secondary {
    color: #272727;
}

a.dark-secondary:hover {
    color: #034805;
}

.text-small {
    font-size: 12px;
}

.text-small2 {
    font-size: 13px;
}

.height-full {
    height: 100vh;
}

.text-box-white {
    background-color: #fff;
}

.text-box-light {
    background-color: #f3f3f3;
}

.text-box-dark {
    background-color: #323335;
}

.text-box.padding-top-less1 {
    padding: 30px 40px 40px 40px;
}

.linkcaps {
    text-transform: none;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

.lspace-6 {
    letter-spacing: 1px;
}

.lspace-7 {
    letter-spacing: 2px;
}

.line-height-2 {
    line-height: 25px;
}

.line-height-3 {
    line-height: 27px;
}

.line-height-4 {
    line-height: 30px;
}

.line-height-5 {
    line-height: 35px;
}

.line-height-6 {
    line-height: 40px;
}

.line-height-7 {
    line-height: 46px;
}

.line-height-8 {
    line-height: 50px;
}

.line-height-9 {
    line-height: 55px;
}

.imgbox-smedium .vtalign {
    line-height: 90px;
    vertical-align: middle;
}

.margin-bottom-1 {
    margin-bottom: 10px;
}

.margin-bottom-11 {
    margin-bottom: 5px;
}

.sec-bpadding-5 {
    padding-bottom: 100px;
}

.sec-bpadding-6 {
    padding-bottom: 30px;
}

.less1 {
    width: 50% !important;
    margin: 0 auto;
}

.less2 {
    width: 60% !important;
    margin: 0 auto;
}

.less3 {
    width: 70% !important;
    margin: 0 auto;
}

.less4 {
    width: 80% !important;
    margin: 0 auto;
}

.less5 {
    width: 90% !important;
    margin: 0 auto;
}

.less6 {
    width: 75% !important;
    margin: 0 auto;
}

.less7 {
    width: 85% !important;
    margin: 0 auto;
}

.less8 {
    width: 96.3% !important;
    margin: 0 auto;
}

/* alignments */
.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
    margin: inherit auto;
}

.absolute {
    position: absolute;
}

.absolute2 {
    position: absolute;
    right: 50px;
    top: 250px;
}

.centmid {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {

    .less1,
    .less2,
    .less3,
    .less4,
    .less5,
    .less6,
    .less7,
    .less8 {
        width: 90% !important;
    }

    .text-right.respo {
        text-align: center;
    }

    .text-left.respo {
        text-align: center;
    }

}

a.opacity-link-dark {
    color: #727272;
    opacity: 0.5;
    transition: all 0.3s ease;
}

a.opacity-link-dark:hover {
    color: #727272;
    opacity: 1;
}

a.opacity-link-light {
    color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

a.opacity-link-light:hover {
    color: #fff;
    opacity: 1;
}

hr.divider-line.light-2 {
    border-top-color: #e5e5e5;
}

hr.divider-line-fixed {
    border-top-color: #fff;
    border-width: 2px;
    width: 100px;
    margin: 0 auto;
}

hr.divider-line-full {
    border-top-color: #e9e9e9;
    border-width: 1px;
    width: 100%;
}

hr.divider-line-fixed-primary {
    border-top-color: #6453f7;
    border-width: 3px;
    width: 50px;
}


.slider-but-1 {
    color: #fff;
    background: #6453f7;
    border-radius: 3px;
    padding: 16px 36px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.slider-but-1:hover {
    color: #fff;
    background: #272727;
}

.slider-but-1.sty2:hover {
    color: #fff;
    background: none;
    border: 2px solid #fff;
}

.slider-but-2 {
    color: #fff;
    background: #272727;
    border: 2px solid #272727;
    border-radius: 3px;
    padding: 13px 30px;
    text-align: center;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.slider-but-2:hover {
    color: #272727;
    background: none;
    border: 2px solid #272727;
}

.slider-but-3 {
    color: #6453f7;
    background: #fff;
    border-radius: 26px;
    padding: 16px 36px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.slider-but-3:hover {
    color: #fff;
    background: #272727;
}

@media screen and (max-width: 768px) {
    .slider-but-1 {
        border-radius: 20px;
        padding: 10px 25px;
    }

    .slider-but-2 {
        padding: 10px 22px;
    }

    .slider-but-3 {
        padding: 10px 22px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 450px) {
    .slider-but-1 {
        font-size: 10px;
        border-radius: 18px;
        padding: 7px 18px;
    }

    .slider-but-2 {
        font-size: 8px;
        padding: 5px 10px;
    }

    .slider-but-3 {
        font-size: 8px;
        padding: 5px 10px;
        border-radius: 10px;
    }

}

.but-stbutton-1 {
    color: #fff;
    border: 2px solid #fff;
    padding: 18px 45px;
    border-radius: 3px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.but-stbutton-1:hover {
    color: #2e2f31;
    background: #fff;
}

.but-stbutton-2 {
    color: #fff;
    text-align: center;
    padding: 14px 36px;
    font-weight: bold;
    background: #6453f7;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.but-stbutton-2:hover {
    color: #fff;
    box-shadow: inset 200px 0px 0 0px #2e2f31;
}

.but-stbutton-3 {
    color: #fff;
    font-size: 13px;
    border: 1px solid #272727;
    background: #272727;
    padding: 10px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.but-stbutton-3:hover,
.but-stbutton-3.active {
    color: #fff;
    background: #6453f7;
    border: 1px solid #6453f7;
}

.but-stbutton-4 > a {
    position: relative;
    color: #6453f7;
    text-align: center;
    font-size: 13px;
}

.but-stbutton-4 > a:hover {
    color: #6453f7;
}

.but-stbutton-4 > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #6453f7;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.but-stbutton-4 > a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.but-stbutton-5 {
    color: #323335;
    border: 2px solid #323335;
    padding: 13px 27px;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.but-stbutton-5:hover {
    color: #fff;
    background: #323335;
}

.but-stbutton-6 {
    color: #fff;
    border: 2px solid #fff;
    padding: 13px 27px;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.but-stbutton-6:hover {
    color: #65d835;
    background: #fff;
}

.but-stbutton-7 {
    color: #65d835;
    border: 2px solid #65d835;
    padding: 13px 27px;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.but-stbutton-7:hover {
    color: #fff;
    background: #65d835;
}

.but-stbutton-8 {
    color: #6453f7;
    text-align: center;
    padding: 14px 36px;
    font-weight: bold;
    background: #fff;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.but-stbutton-8:hover {
    color: #fff;
    box-shadow: inset 200px 0px 0 0px #65d835;
}

.but-stbutton-9 {
    color: #fff;
    text-align: center;
    padding: 14px 36px;
    font-weight: bold;
    background: #65d835;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.but-stbutton-9:hover {
    color: #65d835;
    box-shadow: inset 200px 0px 0 0px #fff;
}

.but-stbutton-10 {
    color: #fff;
    text-align: center;
    padding: 14px 36px;
    font-weight: bold;
    background: #65d835;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.but-stbutton-10:hover {
    color: #fff;
    box-shadow: inset 200px 0px 0 0px #6453f7;
}



.sitebutton-1 {
    color: #6453f7;
    border: 2px solid #6453f7;
    padding: 14px 36px;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sitebutton-1:hover {
    color: #fff;
    background: #6453f7;
}

.sitebutton-1.sty2 {
    color: #fff;
    border: 0px;
    background: #6453f7;
}

.sitebutton-1.sty2:hover {
    color: #fff;
    background: #272727;
}

.sitebutton-1.sty2.yellow {
    color: #fff;
    border: 0px;
    background: #272727;
}

.sitebutton-1.sty2.yellow:hover {
    color: #fff;
    background: #f3b60f;
}

.sitebutton-1.sty2.dark {
    color: #fff;
    border: 0px;
    background: #272727;
}

.sitebutton-1.sty2.dark:hover {
    color: #fff;
    background: #727272;
}

.sitebutton-1.sty2.dark2 {
    color: #fff;
    border: 0px;
    background: #727272;
}

.sitebutton-1.sty2.dark2:hover {
    color: #fff;
    background: #272727;
}

.sitebutton-1.sty2.red {
    color: #fff;
    border: 0px;
    background: #D91E18;
}

.sitebutton-1.sty2.red:hover {
    color: #fff;
    background: #272727;
}

.sitebutton-1.sty2.green {
    color: #fff;
    border: 0px;
    padding: 14px 50px;
    background: #87D37C;
}

.sitebutton-1.sty2.green:hover {
    color: #87D37C;
    background: #fff;
}

.sitebutton-1.sty3 {
    color: #fff;
    border: 2px solid #fff;
    background: none;
}

.sitebutton-1.sty3:hover {
    color: #272727;
    background: #fff;
}

.sitebutton-1.sty3.small {
    padding: 9px 25px;
}

.sitebutton-1.sty4 {
    color: #272727;
    border: 2px solid #e3e3e3;
    background: #e3e3e3;
}

.sitebutton-1.sty4:hover {
    color: #fff;
    background: #272727;
    border: 2px solid #272727;
}

.sitebutton-1.sty5 {
    color: #272727;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 25px;
}

.sitebutton-1.sty5:hover {
    color: #fff;
    background: none;
    border: 2px solid #fff;
}

.sitebutton-1.sty5.small {
    border-radius: 23px;
    padding: 12px 28px;
}



.sitebutton-1.sty6 {
    color: #fff;
    font-size: 9px;
    padding: 5px 0px;
    width: 116px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid #fff;
}

.sitebutton-1.sty6:hover {
    color: #272727;
    background: #fff;
}

.sitebutton-1.sty7 {
    color: #999;
    border: 2px solid #999;
    background: none;
}

.sitebutton-1.sty7:hover {
    color: #fff;
    background: #999;
}

.sitebutton-1.sty8 {
    color: #fff;
    border: 2px solid #6453f7;
    background: #6453f7;
    border-radius: 25px;
}

.sitebutton-1.sty8:hover {
    color: #272727;
    background: none;
    border: 2px solid #272727;
}

.sitebutton-1.sty9 {
    color: #fff;
    padding: 12px 32px;
    border: none;
    background: #6453f7;
    border-radius: 25px;
}

.sitebutton-1.sty9:hover {
    color: #fff;
    background: #272727;
    border: none;
}


.sitebutton-2 {
    color: #f3b60f;
    border: 2px solid #f3b60f;
    padding: 14px 36px;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sitebutton-2:hover {
    color: #fff;
    background: #f3b60f;
}

.sitebutton-3 {
    color: #f3b60f;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #f3b60f;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.sitebutton-3:hover {
    box-shadow: inset 200px 0 0 0 #f3b60f;
    color: #fff;
    padding-left: 18px;
    padding-right: 18px;
}


.sitebutton-4 {
    color: #31302B;
    background: #FFF;
    padding: 12px 17px;
    margin: 25px;
    font-family: 'OpenSansBold', sans-serif;
    border: 3px solid #31302B;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #31302B;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.sitebutton-4:hover {
    box-shadow: inset 300px 0 0 0 #e0e0e0;
    color: #fff;
}

.sitebutton-5 {
    color: #999;
    font-size: 11px;
    border: 1px solid #e3e3e3;
    border-radius: 25px;
    padding: 8px 20px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sitebutton-5:hover {
    color: #272727;
    background: #e3e3e3;
}

.sitebutton-6 {
    color: #fff;
    text-align: center;
    padding: 16px 36px;
    background: #f3b60f;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.sitebutton-6:hover {
    color: #272727;
    box-shadow: inset 0 -70px 0 0px #fff;
}






/* text boxe padding percent
 ------------------------------ */
.text-box.padding-percent {
    padding: 5%;
}

.text-box.padding-percent-1 {
    padding: 10%;
}

.text-box.padding-percent-2 {
    padding: 15%;
}

.text-box.padding-percent-3 {
    padding: 20%;
}

.text-box.padding-percent-4 {
    padding: 25%;
}

.text-box.padding-percent-5 {
    padding: 30%;
}

.text-box.padding-percent-6 {
    padding: 12%;
}

.text-box.padding-percent-7 {
    padding: 8%;
}

.text-box.padding-percent-11 {
    padding: 30% 10%;
}

.text-box.padding-percent-12 {
    padding: 20% 10%;
}

@media screen and (max-width: 768px) {
    .text-box.padding-percent {
        padding: 3%;
    }

    .text-box.padding-percent-1 {
        padding: 8%;
    }

    .text-box.padding-percent-2 {
        padding: 8%;
    }

    .text-box.padding-percent-3 {
        padding: 8%;
    }

    .text-box.padding-percent-4 {
        padding: 8%;
    }

    .text-box.padding-percent-5 {
        padding: 8%;
    }

    .text-box.padding-percent-6 {
        padding: 8%;
    }

    .text-box.padding-percent-7 {
        padding: 8%;
    }

    .text-box.padding-percent-11 {
        padding: 8% 8%;
    }

    .text-box.padding-percent-12 {
        padding: 8% 8%;
    }
}

/*============ box shadows ============ */
.box-shadow-1 {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.box-shadow-2 {
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
}

.box-shadow-3 {
    -webkit-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

.box-shadow-4 {
    -webkit-box-shadow: 0px 0px 0px 7px rgba(243, 243, 243, 1);
    -moz-box-shadow: 0px 0px 0px 7px rgba(243, 243, 243, 1);
    box-shadow: 0px 0px 0px 7px rgba(243, 243, 243, 1);
}

.box-shadow-5 {
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
}

.box-shadow-6 {
    -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.07);
}

.box-shadow-7 {
    -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.1);
}

.hover-shadow-1 {
    transition: all 0.3s ease;
}

.hover-shadow-1.active,
.hover-shadow-1:hover {
    -webkit-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.05);
}

.hover-shadow-2 {
    transition: all 0.2s ease;
}

.hover-shadow-2.active,
.hover-shadow-2:hover {
    -webkit-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px 7px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.hover-shadow-3 {
    float: left;
    width: 93%;
    padding: 25px 0px 18px 25px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.hover-shadow-3.active,
.hover-shadow-3:hover {
    padding: 25px 0px 18px 25px;
    background: #fff;
    -webkit-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 10px 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px 7px rgba(0, 0, 0, 0.5);
}

.hover-shadow-3.active p,
.hover-shadow-3.active h5,
.hover-shadow-3:hover p,
.hover-shadow-3:hover h5 {
    color: #272727;
}

.hover-shadow-3.active i,
.hover-shadow-3:hover i {
    color: #6453f7;
}

.hover-shadow-3.active .border-all-opacity6,
.hover-shadow-3:hover .border-all-opacity6 {
    border: 2px solid #6453f7;
}

.img-hover-text1 {
    position: relative;
    background: #6453f7;
}

.img-hover-text1 img {
    opacity: 1;
    display: block;
    transition: all 0.3s ease;
}

.img-hover-text1:hover img {
    opacity: 0.05;
}

.img-hover-text1 .distext {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.img-hover-text1:hover .distext {
    bottom: 50px;
}

.img-hover-text1 .distext .hidtext {
    opacity: 0;
    transition: all 0.3s ease;
}

.img-hover-text1:hover .distext .hidtext {
    opacity: 1;
}

.img-hover-text2 {
    position: relative;
    background: #2b2726;
}

.img-hover-text2 img {
    opacity: 1;
    display: block;
    transition: all 0.3s ease;
}

.img-hover-text2:hover img {
    opacity: 0.09;
}

.img-hover-text2 .distext {
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.img-hover-text2:hover .distext {
    bottom: 16%;
}

.img-hover-text2 .distext .hidtext {
    opacity: 0;
    transition: all 0.3s ease;
}

.img-hover-text2:hover .distext .hidtext {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .img-hover-text2 .distext {
        left: 5%;
        right: 5%;
    }

}

.img-hover-text3 {
    position: relative;
    background: #2b2726;
}

.img-hover-text3 img {
    opacity: 1;
    display: block;
    transition: all 0.3s ease;
}

.img-hover-text3:hover img {
    opacity: 0;
    transform: scale(1.04);
    position: relative;
    z-index: 2;
}

.img-hover-text3 .distext {
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 30%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.img-hover-text3:hover .distext {
    bottom: 36%;
}

.img-hover-text3 .distext .hidtext {
    opacity: 0;
    transition: all 0.3s ease;
}

.img-hover-text3:hover .distext .hidtext {
    opacity: 1;
}

.img-hover-text3.sty2,
.img-hover-text3.sty2 img {
    border-radius: 25px;
}

.img-hover-text3.sty2:hover img {
    transform: scale(0.95);
    z-index: 0;
}


@media screen and (max-width: 1024px) {
    .img-hover-text3 .distext {
        left: 5%;
        right: 5%;
    }

}

.img-hover-text4 {
    position: relative;
    background: #f3b60f;
}

.img-hover-text4 img {
    display: block;
    transition: all 0.3s ease;
}

.img-hover-text4 img:hover {
    opacity: 1;
}

.img-hover-text4 .distext {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 14% 14% 5% 14%;
    background: #f3b60f;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.95);
}

.img-hover-text4:hover .distext {
    opacity: 1;
    transform: scale(1);
}

.img-hover-text4.sty2 {
    border-radius: 35px;
}

.img-hover-text4.sty2 img {
    border-radius: 35px;
}

.img-hover-text4.sty2 .distext {
    border-radius: 35px;
}

@media screen and (max-width: 1024px) {
    .img-hover-text4 .distext {
        left: 5%;
        right: 5%;
    }

    .img-hover-text4.sty2 .distext {
        left: 0%;
        right: 0%;
    }

}

.img-hover-text5 {
    position: relative;
    background: #1d2025;
}

.img-hover-text5 img {
    display: block;
    opacity: 0.5;
}

.img-hover-text5 .distext {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10% 12% 5% 12%;
    color: #fff;
    text-decoration: none;
}

.img-hover-text5.sty2 .distext {
    position: absolute;
}

.img-hover-text5 .section-dark a:hover {
    color: #cccccc;
}


/* alignments */
.float-left {
    float: left;
}

.float-right {
    float: right;
}

.link-hover-bline1 {
    height: 1px;
    width: 0px;
    background-color: #fff;
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
}

a:hover .link-hover-bline1 {
    width: 100%;
}

.boxlight-hover-secondary {
    background-color: #f3f3f3;
    transition: all 0.3s ease;
}

.boxlight-hover-secondary:hover {
    background-color: #6453f7;
}

.boxlight-hover-secondary:hover p {
    color: #fff;
}

.img-boder {
    border: 1px solid #d3d3d3;
    padding: 8px;
}


.imghvr *,
.imghvr *:before,
.imghvr *:after {
    box-sizing: border-box;
    transition: all .3s ease;
}

.imghvr {
    position: relative;
    display: inline-block;
    background-color: #fff;
    color: #fff;
    overflow: hidden;
    padding: 40px 40px;
    text-align: center;
    width: 19.8%;
    float: left;
    margin: 1px;
    -webkit-box-shadow: inset 0px 0px 75px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 0px 75px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 75px 0px rgba(0, 0, 0, 0.1);
}

.imghvr div {
    vertical-align: top;
}

.imghvr figcaption {
    background-color: #2e2f31;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    transform: translateY(-100%);
    padding: 30px 40px 40px 40px;
}

.imghvr:hover figcaption {
    transform: translate(0, 0);
}

.imghvr:hover div {
    transform: translateY(100%);
}

@media screen and (max-width: 1024px) {
    .imghvr {
        padding: 20px;
        width: 49.5%;
    }

    .imghvr figcaption {
        padding: 20px 30px 30px 30px;
    }
}

@media screen and (max-width: 630px) {
    .imghvr {
        padding: 20px;
        width: 100%;
    }

    .imghvr figcaption {
        padding: 10px 30px 30px 30px;
    }
}

/* border opacity */
.border-all-opacity {
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.border-all-opacity2 {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.border-all-opacity3 {
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.border-all-opacity4 {
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.border-all-opacity5 {
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.border-all-opacity6 {
    border: 2px solid rgba(255, 255, 255, 0.8);
}



/* pricing sections */
.price-sec-one {
    transition: all 0.3s ease;
}

.price-sec-one .vc_col-sm-3,
.price-sec-one .vc_col-sm-4,
.price-sec-one .vc_col-sm-6 {
    transition: all 0.3s ease;
    background: #fff;
    border-right: 1px solid #eee;
}

.price-sec-one .vc_col-sm-3:hover,
.price-sec-one .vc_col-sm-4:hover,
.price-sec-one .vc_col-sm-6:hover {
    z-index: 3;
    background: #eee;
}

.price-sec-one .vc_col-sm-3.active,
.price-sec-one .vc_col-sm-4.active,
.price-sec-one .vc_col-sm-6.active {
    z-index: 2;
    background: #eee;
}

.price-sec-one .hilight {
    color: #fff;
    height: 26px;
    font-weight: 700;
    line-height: 26px;
    background: #f3b60f;
    margin-top: -26px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}

/* circles */
.circle {
    border-radius: 100%;
}

.circle1 {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.circle2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.circle3 {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.circle4 {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.circle5 {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.circle6 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.circle7 {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.circle8 {
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

.circle9 {
    width: 90px;
    height: 90px;
    border-radius: 100%;
}

.circle10 {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.circle11 {
    width: 120px;
    height: 120px;
    border-radius: 100%;
}

.circle12 {
    width: 140px;
    height: 140px;
    border-radius: 100%;
}

.circle13 {
    width: 160px;
    height: 160px;
    border-radius: 100%;
}

.circle14 {
    width: 180px;
    height: 180px;
    border-radius: 100%;
}

.circle15 {
    width: 200px;
    height: 200px;
    border-radius: 100%;
}

.circle16 {
    width: 230px;
    height: 230px;
    border-radius: 100%;
}

.circle17 {
    width: 250px;
    height: 250px;
    border-radius: 100%;
}

.circle1.center,
.circle2.center,
.circle3.center,
.circle4.center,
.circle5.center,
.circle6.center,
.circle7.center,
.circle8.center,
.circle9.center,
.circle10.center,
.circle11.center,
.circle12.center,
.circle13.center,
.circle14.center,
.circle15.center,
.circle16.center,
.circle17.center {
    margin: 0 auto;
}

/* responsive image */
.img-responsive-2 {
    max-width: 50%;
    height: auto;
}

.img-responsive-3 {
    max-width: 25%;
    height: auto;
}

.img-responsive-4 {
    max-width: 12.5%;
    height: auto;
}

.img-responsive-5 {
    max-width: 33.3333333333%;
    height: auto;
}





/* font sizes */
.iconsize,
i.iconsize {
    font-size: 5px;
}

.iconsize1,
i.iconsize1 {
    font-size: 16px;
}

.iconsize2,
i.iconsize2 {
    font-size: 20px;
}

.iconsize3,
i.iconsize3 {
    font-size: 25px;
}

.iconsize4,
i.iconsize4 {
    font-size: 30px;
}

.iconsize5,
i.iconsize5 {
    font-size: 40px;
}

.iconsize6,
i.iconsize6 {
    font-size: 50px;
}

.iconsize7,
i.iconsize7 {
    font-size: 60px;
}

.iconsize8,
i.iconsize8 {
    font-size: 70px;
}

.iconsize9,
i.iconsize9 {
    font-size: 80px;
}

.iconsize10,
i.iconsize10 {
    font-size: 90px;
}

.iconsize11,
i.iconsize11 {
    font-size: 100px;
}

.iconsize12,
i.iconsize12 {
    font-size: 120px;
}

.iconsize13,
i.iconsize13 {
    font-size: 9px;
}

.iconsize14,
i.iconsize14 {
    font-size: 12px;
}

.iconsize15,
i.iconsize15 {
    font-size: 14px;
}


/* page titles */
.no-page-title {
    display: none;
}

.page-title-bar {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 65px 0px;
    background: url(assets/images/page-title-bg.jpg) no-repeat center top;
}

.page-title-1 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 65px 0px;
    background: url(assets/images/page-title-bg-1.jpg) no-repeat center top;
}

.page-title-2 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 65px 0px;
    background: url(assets/images/page-title-bg-2.jpg) no-repeat center top;
}

.page-title-3 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 65px 0px;
    background: url(assets/images/page-title-bg-3.jpg) no-repeat center top;
}

.page-title-4 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 65px 0px;
    background: url(assets/images/page-title-bg-4.jpg) no-repeat center top;
}

.page-title-5 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 57px 0px;
    background: url(assets/images/page-title-bg-5.jpg) no-repeat center top;
}

.page-title-6 {
    /*	float: left;*/
    width: 100%;
    padding: 80px 0px 57px 0px;
    background: url(assets/images/page-title-bg-6.jpg) no-repeat center top;
}


@media screen and (max-width: 700px) {
    .page-title-bar {
        padding: 180px 0px 70px 0px;
    }

    .page-title-1 {
        padding: 180px 0px 70px 0px;
    }

    .page-title-2 {
        padding: 180px 0px 70px 0px;
    }

    .page-title-3 {
        padding: 180px 0px 70px 0px;
    }

    .page-title-4 {
        padding: 50px 0px 50px 0px;
    }
}

.border-top-light1 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-top-light2 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top-light3 {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.border-bottom-light1 {
    border-bottom: 1px solid #eee;
}

.border-radius-1 {
    border-radius: 5px;
}

.border-radius-2 {
    border-radius: 10px;
}

.border-radius-left-bottom {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.border-inside-1 {
    margin: 18px;
    -webkit-box-shadow: inset 0px 0px 0px 5px #f3f3f3;
    -moz-box-shadow: inset 0px 0px 0px 5px #f3f3f3;
    box-shadow: inset 0px 0px 0px 5px #f3f3f3;
}

.text-primary-transp {
    background: rgba(30, 170, 216, 0.8);
}

.text-primary-transp2 {
    background: rgba(30, 170, 216, 0.5);
}

.text-dark-transp {
    background: rgba(58, 58, 58, 0.5);
}

.text-dark-transp2 {
    background: rgba(58, 58, 58, 0.3);
}

.opacity-img {
    opacity: 1;
    transition: all 0.3s ease;
}

.opacity-img:hover {
    opacity: 0.5;
}

.hover-mline {
    position: relative;
    display: inline-block;
}

.hover-mline:after {
    position: absolute;
    left: 0%;
    top: 0%;
    content: '';
    height: 100%;
    transition: all 0.2s linear;
    width: 100%;
    border-bottom: 1px solid #f3b60f;
    transform: scaleX(0);
}

.hover-mline:hover:after {
    transform: scale(1);
}

.hover-icon-up span {
    position: absolute;
    top: 7px;
    left: 42.5%;
    transition: all 0.3s ease;
}

.hover-icon-up:hover span {
    top: 0px;
}

@media screen and (max-width: 1024px) {
    .hover-icon-up span {
        left: 40%;
    }
}

@media screen and (max-width: 780px) {
    .hover-icon-up span {
        left: 44%;
    }
}

@media screen and (max-width: 400px) {
    .hover-icon-up span {
        left: 41%;
    }
}

.hover-icon-up-2 img {
    position: absolute;
    top: 12px;
    left: 14px;
    transition: all 0.3s ease;
}

.hover-icon-up-2:hover img {
    top: 0px;
}

.border-left-1 {
    border-left: 1px solid #e3e3e3;
}

.border-left-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.border-top-1 {
    border-top: 5px solid #000;
}

img.grayscale {
    -webkit-filter: grayscale(100%);
    /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}

.youtube-video-respo {
    width: 100%;
    height: 70vh;
}


.box-hover-text-1 {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px 40px 30px 40px;
    transition: all 0.3s ease;
}

.box-hover-text-1:hover {
    background: #f3b60f;
}

.box-hover-text-1:hover p {
    color: #fff;
}

.box-hover-text-1 .distext {
    position: relative;
    bottom: -20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.box-hover-text-1:hover .distext {
    bottom: 0px;
}

.box-hover-text-1 .distext .hidtext {
    opacity: 0;
    transition: all 0.2s ease;
}

.box-hover-text-1:hover .distext .hidtext {
    opacity: 1;
}


.box-hover-text-2 {
    position: relative;
    background: #272727;
    padding: 50px 50px 40px 50px;
    transition: all 0.3s ease;
}

.box-hover-text-2:hover {
    background: #6453f7;
}

.box-hover-text-2 .distext {
    position: relative;
    bottom: -25px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.box-hover-text-2:hover .distext {
    bottom: 0px;
}

.box-hover-text-2 .distext .hidtext {
    opacity: 0;
    transition: all 0.2s ease;
}

.box-hover-text-2:hover .distext .hidtext {
    opacity: 1;
}

.d-none {
    display: none;
}

/* =============================
   GOVERNMENT PRINT STYLES
   ============================= */
@media print {

  /* Remove UI chrome */
  .isd-header,
  .isd-topbar,
  .isd-footer,
  .isd-offcanvas,
  .show-on-mobile,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination,
  .sticky-banner,
  nav,
  aside,
  button,
  video,
  form {
    display: none !important;
  }

  /* Body adjustments */
  body {
    font-size: 12pt;
    line-height: 1.45;
    color: #000 !important;
    background: #fff !important;
  }

  /* Make content full width */
  main, article, .content, #content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Links show URLs for clarity */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  /* Hide link URLs for nav items only */
  nav a[href]:after {
    content: "" !important;
  }

  /* Images scale */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Avoid broken page cuts */
  h1, h2, h3, h4, p, img, table {
    page-break-inside: avoid;
  }

  /* Page margins */
  @page {
    margin: 15mm;
  }
}

.isd-news-body {
  padding: 16px 16px 20px !important;
}

.isd-news-featured-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25), transparent) !important;
}
.isd-news-body h4 {
  font-size: 16px !important;
  line-height: 1.4 !important;
}
/* ==============================
   ISD NEWS PAGE FINAL POLISH
============================== */

/* Featured overlay readability */
.isd-news-featured-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25), transparent) !important;
}

.isd-news-featured-overlay h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
}

/* Card improvements */
.isd-news-body {
  padding: 16px 16px 20px !important;
}

.isd-news-body h4 {
  font-size: 16px !important;
  line-height: 1.4 !important;
}

.isd-news-body p {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

/* Stronger card look */
.isd-news-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
}

.isd-news-card:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,0.12) !important;
}

/* Sidebar scroll categories */
.isd-sidebar-box ul {
  max-height: 260px !important;
  overflow-y: auto !important;
  padding-right: 6px;
}

.isd-sidebar-box ul::-webkit-scrollbar {
  width: 6px;
}

.isd-sidebar-box ul::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 10px;
}

/* Sidebar heading */
.isd-news-hybrid-sidebar h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2px;
}

/* Press releases section */
.isd-news-list-clean {
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 14px !important;
  padding: 18px !important;
}

.isd-news-list-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
}

.isd-news-list-item:hover {
  background: #f3f4f6 !important;
}

.isd-news-body p {
  font-size: 14.5px !important;
}
.isd-sidebar-box ul {
  max-height: 260px !important;
  overflow-y: auto !important;
  padding-right: 6px;
}

.isd-news-list-clean {
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 14px !important;
  padding: 18px !important;
}
.isd-news-hybrid-sidebar h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2px;
}

/* =====================================
   SINGLE POST PAGE - GOV STYLE OVERRIDE
===================================== */

/* Main article container */
.single-post .site-content,
.single-post .content-area {
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 40px 18px !important;
}

/* Make article look like official document */
.single-post article {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 16px !important;
  padding: 30px 28px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05) !important;
}

/* Title */
.single-post h1,
.single-post .entry-title {
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
  color: #333333 !important;
}

/* Meta info (date/category) */
.single-post .entry-meta,
.single-post .post-meta {
  font-size: 13px !important;
  color: #6b7280 !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
}

/* Featured image */
.single-post .post-thumbnail img,
.single-post .wp-post-image {
  width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
  margin-bottom: 22px !important;
}

/* Paragraph readability */
.single-post .entry-content p {
  font-size: 16.5px !important;
  line-height: 1.9 !important;
  color: #1f2937 !important;
  margin-bottom: 18px !important;
}

/* Headings inside article */
.single-post .entry-content h2,
.single-post .entry-content h3 {
  font-weight: 800 !important;
  margin-top: 30px !important;
  margin-bottom: 12px !important;
  color: #0b6623 !important;
}

/* Remove ugly default sidebar widgets */
.single-post .widget_recent_comments,
.single-post .widget_archive {
  display: none !important;
}

/* Sidebar should look modern */
.single-post .widget {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 14px !important;
  padding: 18px 16px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
}

.single-post .widget-title {
  font-size: 15px !important;
  font-weight: 850 !important;
  border-left: 4px solid #c9a227 !important;
  padding-left: 10px !important;
  margin-bottom: 14px !important;
}

/* Hide comments section (government standard) */
.single-post #comments,
.single-post .comments-area,
.single-post .comment-respond {
  display: none !important;
}
.single-post .sidebar,
.single-post #secondary {
  position: sticky !important;
  top: 110px !important;
  align-self: start !important;
}
/* STICKY SIDEBAR BUT NEVER COVER FOOTER */
.isd-news-hybrid-sidebar,
.single-post #secondary,
.single-post .sidebar {
  position: sticky !important;
  top: 110px !important;
  align-self: flex-start !important;
  max-height: calc(100vh - 140px) !important;
  overflow-y: auto !important;
  padding-bottom: 20px;
}
.isd-news-hybrid-sidebar::-webkit-scrollbar,
.single-post #secondary::-webkit-scrollbar {
  width: 6px;
}

.isd-news-hybrid-sidebar::-webkit-scrollbar-thumb,
.single-post #secondary::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 10px;
}
.widget_recent_comments,
.widget_archive {
  display: none !important;
}
/* ==============================
   ISD SINGLE POST GOV STYLE
============================== */

.single-post .post-title {
  font-size: 30px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
  color: #111827 !important;
}

.isd-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  font-weight: 650;
  color: #6b7280;
  margin-bottom: 20px;
}

.isd-post-meta i {
  color: #0b6623;
  margin-right: 6px;
}

.isd-post-featured img {
  width: 100% !important;
  border-radius: 14px !important;
  margin-bottom: 22px !important;
}

.single-post .single-post p {
  font-size: 16.5px !important;
  line-height: 1.9 !important;
  color: #1f2937 !important;
}

/* Prev/Next */
.isd-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.isd-post-navigation a {
  text-decoration: none;
  font-weight: 750;
  color: #0b6623;
}

.isd-post-navigation a:hover {
  text-decoration: underline;
  color:#333;
}

/* Related posts */
.isd-related-posts {
  margin-top: 40px;
}

.isd-related-posts h3 {
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 18px;
  border-left: 4px solid #c9a227;
  padding-left: 12px;
}

.isd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.isd-related-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.isd-related-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.isd-related-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.isd-related-body {
  padding: 14px;
}

.isd-related-body h4 {
  font-size: 14.8px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #0b6623;
}

.isd-related-body time {
  font-size: 12px;
  color: #6b7280;
}

/* Responsive */
@media(max-width: 900px) {
  .isd-related-grid {
    grid-template-columns: 1fr;
  }

  .isd-post-navigation {
    flex-direction: column;
  }
}


/* ===========================
   SINGLE POST GOVERNMENT CLEAN
=========================== */

.isd-single-post {
  background: #ffffff;
  padding: 30px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

/* Title spacing */
.isd-single-post .post-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #111827;
}

/* Meta row */
.isd-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.isd-post-meta i {
  color: #0b6623;
  margin-right: 6px;
}

/* Featured image spacing */
.isd-post-featured {
  margin-bottom: 22px;
}

.isd-post-featured img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Content spacing */
.isd-post-content {
  font-size: 16.5px;
  line-height: 1.85;
  color: #374151;
}

.isd-post-content p {
  margin-bottom: 16px;
  max-width: 100% !important;
}

/* ===========================
   SHARE ICONS FIX (FA brands)
=========================== */

.isd-share-wrap {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.isd-share-wrap h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.isd-share-icons {
  display: flex;
  gap: 12px;
}

.isd-share-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 18px;
  background: #0b6623;
  color: #fff !important;
  transition: transform .2s ease, background .2s ease;
}

.isd-share-icons a:hover {
  background: #064d1a;
  transform: translateY(-2px);
}

/* ===========================
   PREV NEXT NAV
=========================== */

.isd-post-navigation {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.isd-post-navigation a {
  font-weight: 700;
  color: #0b6623;
  text-decoration: none !important;
}

.isd-post-navigation a:hover {
  text-decoration: underline !important;
}

/* ===========================
   RELATED POSTS (3 columns)
=========================== */

.isd-related-posts {
  margin-top: 50px;
}

.isd-related-posts h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111827;
}

.isd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.isd-related-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.isd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.isd-related-card a {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.isd-related-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.isd-related-body {
  padding: 14px 14px 18px;
}

.isd-related-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0b6623;
  line-height: 1.35;
}

.isd-related-body time {
  font-size: 12px;
  color: #6b7280;
}

/* Mobile related posts */
@media(max-width: 992px){
  .isd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  .isd-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SIDEBAR STICKY (NO FOOTER OVERLAP)
=========================== */

@media(min-width: 992px){
  .sidebar {
    position: sticky;
    top: 110px; /* leaves space for header */
    align-self: flex-start;
  }
}


/* LEADERSHIP FIX */
body .isd-leadership-grid .vc_single_image-wrapper {
  display: block !important;
  margin: 0 auto 18px auto !important;
  position: relative !important;
}

body .isd-leadership-grid img {
  display: block !important;
  margin: 0 auto !important;
  max-width: 170px !important;
  height: auto !important;
}

body .isd-leader-name {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 12px !important;
  position: relative !important;
  z-index: 5 !important;
}
/* ==========================
   MODERN GOVERNMENT SIDEBAR
========================== */

.isd-news-sidebar{
    position:sticky;
    top:100px;
}

.isd-sidebar-card{
    background:#fff;
    border-radius:16px;
    padding:24px;
    margin-bottom:24px;
    box-shadow:0 5px 30px rgba(0,0,0,.06);
    border:1px solid #edf1f5;
}

.isd-sidebar-title{
    font-size:18px;
    font-weight:700;
    color:#CEF0DF;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:2px solid #f1f4f8;
    position:relative;
}

.isd-sidebar-title:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:60px;
    height:2px;
    background:#c89b3c;
}

.isd-sidebar-post{
    display:flex;
    gap:15px;
    margin-bottom:18px;
    padding-bottom:18px;
    border-bottom:1px solid #f3f3f3;
}

.isd-sidebar-post:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.isd-sidebar-thumb img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

.isd-sidebar-content h5{
    font-size:14px;
    line-height:1.5;
    margin:0 0 6px;
}

.isd-sidebar-content h5 a{
    color:#1f2937;
    text-decoration:none;
}

.isd-sidebar-content h5 a:hover{
    color:#CEF0DF;
}

.isd-sidebar-content span{
    font-size:12px;
    color:#6b7280;
}

.isd-category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.isd-category-list li{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #f1f1f1;
}

.isd-category-list li:last-child{
    border-bottom:none;
}

.isd-category-list a{
    color:#374151;
    text-decoration:none;
}

.isd-category-list a:hover{
    color:#CEF0DF;
}

.isd-quick-links{
    list-style:none;
    padding:0;
    margin:0;
}

.isd-quick-links li{
    margin-bottom:12px;
}

.isd-quick-links a{
    display:block;
    padding:12px 15px;
    background:#f8fafc;
    border-radius:10px;
    color:#1f2937;
    text-decoration:none;
    transition:.3s;
}

.isd-quick-links a:hover{
    background:#CEF0DF;
    color:#fff;
}

.isd-social-links{
    display:flex;
    gap:10px;
}

.isd-social-links a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3f6fa;
    color:#CEF0DF;
    transition:.3s;
}

.isd-social-links a:hover{
    background:#CEF0DF;
    color:#fff;
}

.single-wrapper {
   
    margin: 0 auto;
    padding: 60px 20px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #f6f7fb;
}

.single-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.single-header {
    margin-bottom: 25px;
}

.single-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #111;
}

.single-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 8px;
    align-items: center;
}

.single-thumb {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
}

.single-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.single-thumb img:hover {
    transform: scale(1.02);
}

.single-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.single-content p {
    margin-bottom: 16px;
}

.single-content h2,
.single-content h3 {
    margin-top: 30px;
}

.single-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #f6f7fb;
}

.single-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.single-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.single-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #111;
}

.single-meta {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.single-category {
    background: #e8f0ff;
    color: #1a4fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.single-thumb img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.single-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.single-sidebar {
    position: sticky;
    top: 20px;
}

@media (max-width: 900px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: static;
    }
}
.isd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Main block */
.sidebar-block {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #0b6b3a; /* ISD GREEN */
}

/* Headings (FIXED SIZE - was too small before) */
.sidebar-block h3 {
    font-size: 1.1rem; /* increased */
    font-weight: 700;
    margin-bottom: 14px;
    color: #0b6b3a;
}

/* Brand section */
.sidebar-brand {
    background: linear-gradient(135deg, #0b6b3a, #149b55);
    color: #fff;
    border-left: none;
}

.sidebar-brand h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.sidebar-brand p {
    font-size: 0.95rem; /* FIX: was too small */
    opacity: 0.9;
    line-height: 1.5;
}

/* Lists */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 1rem; /* FIX: was too small */
    line-height: 1.5;
    transition: 0.25s ease;
}

.sidebar-list a:hover {
    color: #0b6b3a;
    padding-left: 6px;
}

/* Contact section */
.sidebar-contact p {
    font-size: 0.95rem; /* FIX: improved readability */
    line-height: 1.7;
    color: #333;
}

/* Improve spacing feel */
.sidebar-block p {
    margin: 0;
}.isd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base block style */
.sidebar-block {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #0a3d91;
}

/* Headings */
.sidebar-block h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #0a3d91;
}

/* Brand */
.sidebar-brand {
    background: linear-gradient(135deg, #0a3d91, #1456c0);
    color: #fff;
    border-left: none;
}

.sidebar-brand h3 {
    color: #fff;
    margin-bottom: 5px;
}

.sidebar-brand p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lists */
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: 0.3s;
}

.sidebar-list a:hover {
    color: #0a3d91;
    padding-left: 4px;
}

/* Contact box */
.sidebar-contact p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.isd-single {
    background: #f4f7f5;
    padding: 40px 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.isd-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
}

/* ARTICLE */
.isd-article {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* TOP META */
.isd-top-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.isd-category {
    background: #0b6b3a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.isd-date {
    color: #777;
}

/* TITLE */
.isd-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

/* FEATURED IMAGE */
.isd-featured img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* SHARE BAR */
.isd-share {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: #f1f6f3;
    border-left: 4px solid #0b6b3a;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.isd-share span {
    font-weight: 600;
    color: #0b6b3a;
}

.isd-share a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
    color: #333;
}

.isd-share a:hover {
    background: #0b6b3a;
    color: #fff;
}

/* CONTENT */
.isd-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}

.isd-content p {
    margin-bottom: 15px;
}

/* RELATED */
.isd-related {
    margin-top: 40px;
}

.isd-related h2 {
    font-size: 1.3rem;
    color: #0b6b3a;
    margin-bottom: 15px;
}

.isd-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.isd-related-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.isd-related-card:hover {
    transform: translateY(-3px);
}

.isd-related-img img {
    width: 120px;
    height: 90px;
    object-fit: cover;
}

.isd-related-info {
    padding: 10px;
}

.isd-related-info h3 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 5px;
}

.isd-related-info span {
    font-size: 0.85rem;
    color: #777;
}

/* SIDEBAR */
.isd-sidebar {
    position: sticky;
    top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .isd-container {
        grid-template-columns: 1fr;
    }

    .isd-sidebar {
        position: static;
    }
}
.isd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* BOX STYLE */
.isd-side-box {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    border-left: 4px solid #0b6b3a;
}

/* HEADINGS */
.isd-side-box h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #0b6b3a;
    font-weight: 700;
}

/* BRAND BOX */
.isd-brand {
  
    color: #fff;
    border-left: none;
}

.isd-brand h3 {
    margin: 0;
    font-size: 1.1rem;
}

.isd-brand p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* LIST STYLE */
.isd-side-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isd-side-box li {
    margin-bottom: 10px;
}

.isd-side-box a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: 0.25s;
    line-height: 1.4;
}

.isd-side-box a:hover {
    color: #0b6b3a;
    padding-left: 4px;
}

.isd-category-page {
    background: #f4f7f5;
    padding: 40px 0;
    font-family: system-ui, sans-serif;
}

.isd-category-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 30px;
}

/* HEADER */
.isd-category-header h1 {
    font-size: 2rem;
    color: #0b6b3a;
    margin-bottom: 5px;
}

.isd-category-header p {
    color: #666;
    margin-bottom: 20px;
}

/* FEATURED POST */
.isd-featured-post {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.isd-featured-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.isd-featured-content {
    padding: 20px;
}

.isd-featured-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #111;
}

.isd-featured-content p {
    color: #555;
    line-height: 1.6;
}

.isd-featured-content span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #777;
}

/* GRID */
.isd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.isd-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.isd-card:hover {
    transform: translateY(-4px);
}

.isd-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.isd-card-content {
    padding: 12px;
}

.isd-card-content h3 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 6px;
}

.isd-card-content span {
    font-size: 0.85rem;
    color: #777;
}

/* SIDEBAR */
.isd-category-sidebar {
    position: sticky;
    top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .isd-category-container {
        grid-template-columns: 1fr;
    }

    .isd-grid {
        grid-template-columns: 1fr;
    }

    .isd-featured-img img {
        height: 220px;
    }
}
body {
    color: #333;
}

.isd-content a,
.isd-sidebar a,
.isd-category-page a {
    color: #0b6b3a;
}

.isd-category-page * {
    opacity: 1 !important;
    visibility: visible !important;
}

.isd-grid,
.isd-category-container,
.isd-category-main {
    display: block !important;
}

.isd-card {
    display: block !important;
    background: #fff !important;
    margin-bottom: 15px;
}
.isd-category-page {
    all: unset;
    font-family: system-ui, sans-serif;
    display: block;
}

.isd-category-page * {
    box-sizing: border-box;
}
.isd-category {
    background: #f4f7f5;
    padding: 40px 0;
    font-family: system-ui, sans-serif;
}

/* WRAPPER */
.isd-category-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
}

/* HEADER */
.isd-header h1 {
    font-size: 2rem;
    color: #0b6b3a;
    margin-bottom: 5px;
}

.isd-header p {
    color: #666;
    margin-bottom: 20px;
}

/* FEATURED */
.isd-featured-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.isd-featured-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.isd-featured-content {
    padding: 18px;
}

.isd-featured-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* GRID */
.isd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* CARD */
.isd-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.isd-card:hover {
    transform: translateY(-4px);
}

.isd-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.isd-card-content {
    padding: 12px;
}

.isd-card-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* SIDEBAR */
.isd-sidebar {
    position: sticky;
    top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .isd-category-wrapper {
        grid-template-columns: 1fr;
    }

    .isd-grid {
        grid-template-columns: 1fr;
    }

    .isd-featured-img img {
        height: 220px;
    }
}

.isd-category-container {
    display: grid !important;
    grid-template-columns: 2.3fr 1fr !important;
    gap: 30px !important;
    align-items: start;
}

.isd-category-main {
    min-width: 0;
}

/* Featured post stays full width inside main */
.isd-featured-post {
    width: 100%;
    margin-bottom: 25px;
}

/* GRID FIX */
.isd-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

/* CARD FIX */
.isd-card {
    width: 100%;
    display: block;
}

/* SIDEBAR FIX */
.isd-category-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.isd-logo-wrap {
    display:none;
}

/* ===== SEARCH PAGE LAYOUT ===== */
.isd-search-page{
    padding: 40px 0;
    background:#f6f7fb;
}

.isd-search-header{
    margin-bottom: 30px;
}

.isd-search-title{
    font-size: 34px;
    font-weight: 800;
    color:#111;
}

.isd-search-subtitle{
    color:#666;
}

.isd-search-subtitle span{
    font-weight:600;
    color:#000;
}

/* ===== GRID ===== */
.isd-search-layout{
    display:grid;
    grid-template-columns: 2.5fr 1fr;
    gap:30px;
}

.isd-search-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
}

/* ===== CARD ===== */
.isd-search-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    transition:.3s;
    display:block;
}

.isd-search-card:hover{
    transform:translateY(-5px);
}

.isd-search-thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.isd-search-content{
    padding:15px;
}

.isd-search-post-title{
    font-size:18px;
    margin-bottom:10px;
    color:#111;
}

.isd-search-excerpt{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

.isd-search-meta{
    font-size:12px;
    color:#888;
}

/* ===== SIDEBAR ===== */
.isd-search-sidebar{
    position:sticky;
    top:20px;
}

.isd-widget{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.isd-widget h3{
    margin-bottom:15px;
}

.isd-widget ul{
    list-style:none;
    padding:0;
}

.isd-widget li{
    margin-bottom:10px;
}

/* ===== MOBILE ===== */
@media(max-width:900px){
    .isd-search-layout{
        grid-template-columns:1fr;
    }

    .isd-search-grid{
        grid-template-columns:1fr;
    }
}
* {
    box-sizing: border-box;
}

.isd-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.isd-search-layout{
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.isd-search-main,
.isd-search-sidebar{
    min-width: 0;
}

.isd-search-thumb img{
    display:block;
}





.isd-search-sidebar {
    border: 3px solid orange;
}

.isd-search-page{
    width: 100%;
    display: block;
}

.isd-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FORCE GRID TO NOT BE TREATED AS SIDEBAR LAYOUT */
.isd-search-layout{
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
    gap: 30px;
}

/* CRITICAL: stop theme sidebar interference */
.no-sidebar,
.no-sidebar .container,
.no-sidebar main{
    width: 100% !important;
    float: none !important;
    display: block !important;
}

/* prevent theme sidebar styles leaking */
aside,
.sidebar{
    box-sizing: border-box;
}

/* Search Box */
.isd-search-box{
    margin:40px 0;
}

.isd-search-form{
    display:flex;
    gap:10px;
}

.isd-search-input{
    flex:1;
    padding:14px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
}

.isd-search-input:focus{
    border-color:#0056b3;
    box-shadow:0 0 0 3px rgba(0,86,179,.15);
}

.isd-search-btn{
    background:green;
    color:#fff;
    border:none;
    padding:0 15px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.isd-search-btn:hover{
    background:#003f85;
}

/* Remove theme sidebar width */
.isd-category-page{
    width:100%;
    padding:50px 0 70px;
    background:#f7f8fa;
}

.isd-container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 25px;
}

/* Force full width */
.site-content,
.content-area,
.primary,
#primary,
.site-main{
    width:100% !important;
    max-width:100% !important;
    float:none !important;
}

.widget-area,
.sidebar,
#secondary{
    display:none !important;
}

.isd-category-header{
    margin-bottom:50px;
}

.isd-category-header h1{
    font-size:48px;
    margin:10px 0;
}

.isd-category-description{
    max-width:800px;
    color:#666;
    font-size:18px;
}

/* Featured */
.isd-featured-post{
    margin-bottom:70px;
}

.isd-featured-post a{
    display:grid;
    grid-template-columns:58% 42%;
    gap:40px;
    text-decoration:none;
    color:inherit;
}

.isd-featured-image img{
    width:100%;
    height:460px;
    object-fit:cover;
    border-radius:12px;
}

.isd-featured-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.isd-featured-content h2{
    font-size:38px;
    margin:15px 0;
}

/* Grid */
.isd-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
}

.isd-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.isd-card:hover{
    transform:translateY(-5px);
}

.isd-card-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.isd-card-content{
    padding:22px;
}

.isd-card h3{
    margin:10px 0;
    font-size:22px;
}

.isd-pagination{
    margin:60px 0;
    text-align:center;
}

.isd-category-search{
    margin-top:60px;
}

@media(max-width:991px){

.isd-featured-post a{
    grid-template-columns:1fr;
}

.isd-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.isd-grid{
    grid-template-columns:1fr;
}

.isd-featured-image img{
    height:260px;
}

}
/* =====================================================
   ISD CATEGORY NEWSROOM STYLE
   Clean Government News Layout
===================================================== */

.isd-category-page{
    background:#f7f8fa;
    padding:40px 0 80px;
}

/* FULL WIDTH FIX (kills sidebar layout issues) */
.isd-category-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* Sometimes theme forces sidebar widths */
.content-area,
#primary,
.site-main,
.main-content,
.content{
    width:100% !important;
    max-width:100% !important;
    float:none !important;
}

/* hide sidebar if theme injects it */
.sidebar,
#sidebar,
.widget-area,
#secondary{
    display:none !important;
}

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

.isd-category-header{
    margin-bottom:40px;
}

.isd-category-header h1{
    font-size:44px;
    margin-bottom:10px;
    color:#111;
}

.isd-category-description{
    font-size:17px;
    color:#666;
    max-width:850px;
    line-height:1.6;
}

/* =====================================================
   FEATURED STORY (HERO)
===================================================== */

.isd-featured-post{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.isd-featured-post a{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    text-decoration:none;
    color:inherit;
}

.isd-featured-img img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.isd-featured-content{
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.isd-meta{
    font-size:14px;
    color:#888;
    margin-bottom:10px;
}

.isd-featured-content h2{
    font-size:34px;
    line-height:1.3;
    margin-bottom:15px;
    color:#111;
}

.isd-featured-content p{
    font-size:17px;
    color:#555;
    line-height:1.6;
}

.isd-read-more{
    margin-top:18px;
    color:#003366;
    font-weight:600;
}

/* =====================================================
   NEWS LIST (REUTERS STYLE ROWS)
===================================================== */

.isd-news-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Each article row */
.isd-news-item{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
    transition:.25s;
}

.isd-news-item:hover{
    transform:translateY(-3px);
}

.isd-news-item a{
    display:grid;
    grid-template-columns:200px 1fr;
    gap:20px;
    text-decoration:none;
    color:inherit;
}
/* =========================
   CATEGORY GRID BLOCK
========================= */

.isd-category-block{
    margin-bottom:50px;
}

.isd-section-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
}

/* grid layout */
.isd-category-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:15px;
}

/* category card */
.isd-category-item{
    background:#fff;
    border-radius:10px;
    padding:5px 5px;
    text-decoration:none;
    color:#111;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
    transition:.2s ease;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.isd-category-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    color:#003366;
}

/* category name */
.isd-cat-name{
    font-weight:400;
    font-size:12px;
}

/* post count */
.isd-cat-count{
    font-size:13px;
    color:#777;
}

/* responsive */
@media(max-width:900px){
    .isd-category-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .isd-category-grid{
        grid-template-columns:1fr;
    }
}


/* Thumbnail */
.isd-news-thumb img{
    width:100%;
    height:140px;
    object-fit:cover;
}

/* Content */
.isd-news-content{
    padding:18px 18px 18px 0;
}

.isd-news-content h3{
    font-size:20px;
    margin:8px 0;
    color:#111;
}

.isd-news-content p{
    font-size:15px;
    color:#666;
    line-height:1.5;
}

/* =====================================================
   READ MORE STYLE
===================================================== */

.isd-read-more{
    display:inline-block;
    margin-top:10px;
    font-size:14px;
    color:green;
    font-weight:600;
}

/* =====================================================
   PAGINATION
===================================================== */

.isd-pagination{
    margin:50px 0;
    text-align:center;
}

.isd-pagination a,
.isd-pagination span{
    padding:10px 14px;
    margin:0 4px;
    border-radius:6px;
    background:#fff;
    color:green;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.isd-pagination .current{
    background:green;
    color:#fff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px){

    .isd-featured-post a{
        grid-template-columns:1fr;
    }

    .isd-featured-img img{
        height:280px;
    }

    .isd-news-item a{
        grid-template-columns:120px 1fr;
    }

    .isd-news-thumb img{
        height:100px;
    }
}

@media(max-width:600px){

    .isd-news-item a{
        grid-template-columns:1fr;
    }

    .isd-news-thumb img{
        height:200px;
    }

    .isd-news-content{
        padding:15px;
    }
}

/* ===============================
   ISD FOOTER
=================================*/

.isd-footer{
    background:#003b71;
    color:#fff;
    margin-top:80px;
}

.isd-footer-top{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    padding:70px 40px;
}

.isd-footer-col h3{
    color:#fff;
    margin-bottom:10px;
}

.isd-footer-col h4{
    color:#f7c948;
    margin-bottom:20px;
    font-size:18px;
}

.isd-footer-col p{
    color:#d9e5f3;
    line-height:1.8;
    font-size:15px;
}

.isd-footer-tag{
    color:#f7c948;
    font-weight:600;
    margin-bottom:15px;
}

.isd-footer-logo{
    width:85px;
    margin-bottom:18px;
}

.isd-footer-col ul{
    list-style:none;
    padding:0;
}

.isd-footer-col ul li{
    margin-bottom:12px;
}

.isd-footer-col ul li a{
    color:#d9e5f3;
    text-decoration:none;
    transition:.3s;
}

.isd-footer-col ul li a:hover{
    color:#f7c948;
    padding-left:5px;
}

.isd-footer-social{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.isd-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.isd-footer-social a:hover{
    background:#f7c948;
    color:#003b71;
}

.isd-footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    max-width:1400px;
    margin:auto;
}

.isd-footer-bottom-links{
    display:flex;
    gap:25px;
}

.isd-footer-bottom-links a{
    color:#d9e5f3;
    text-decoration:none;
}

.isd-footer-bottom-links a:hover{
    color:#f7c948;
}

@media(max-width:992px){

.isd-footer-top{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.isd-footer-top{
grid-template-columns:1fr;
text-align:center;
}

.isd-footer-social{
justify-content:center;
}

.isd-footer-bottom{
flex-direction:column;
gap:15px;
text-align:center;
}

}

/* =========================
   ISD LIVE SEARCH DROPDOWN
========================= */


.isd-search-box{
position:relative;
}



#isd-search-results{

position:absolute;

top:100%;

left:0;

right:0;

background:#fff;

z-index:9999;

display:none;

border:1px solid #ddd;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}





.isd-live-results{

list-style:none;

padding:0;

margin:0;

}





.isd-live-results li{

padding:12px 15px;

border-bottom:1px solid #eee;

}





.isd-live-results li:hover{

background:#f5f5f5;

}





.isd-live-results a{

display:flex;

flex-direction:column;

text-decoration:none;

color:#333;

}





.isd-live-results small{

color:#019031;

font-size:12px;

margin-top:4px;

}




.isd-no-live-results{

padding:15px;

color:#777;

}

/* =========================
ACCESSIBILITY
========================= */


/* Skip link */


/*************************************
 ACCESSIBILITY
*************************************/

.skip-link {
    position:absolute !important;
    top:-9999px !important;
    left:-9999px !important;
    background:#000000 !important;
    color:#ffffff !important;
    padding:12px 18px !important;
    font-size:16px !important;
    font-weight:700 !important;
    text-decoration:none !important;
    z-index:999999 !important;
    border:2px solid #ffffff !important;
}

.skip-link:focus,
.skip-link:focus-visible {
    top:10px !important;
    left:10px !important;
    background:#000000 !important;
    color:#ffffff !important;
    outline:3px solid #019031 !important;
    outline-offset:3px !important;
}


/* Keyboard focus */


a:focus,
button:focus,
input:focus,
select:focus{

outline:3px solid #EEC213;

outline-offset:3px;

}






/* Toolbar */


.isd-accessibility-toolbar{

display:flex;

gap:8px;

align-items:center;

}



.isd-accessibility-toolbar button{

cursor:pointer;

padding:5px 10px;

border:1px solid #ccc;

background:white;

}





/* HIGH CONTRAST MODE */


.high-contrast{

background:#000!important;

color:#fff!important;

}



.high-contrast a{

color:#ffff00!important;

}



.high-contrast button{

background:#000;

color:white;

border:1px solid white;

}

/* ==========================
   FONT RESIZE ACCESSIBILITY
========================== */


/* Increase */

body.font-large p,
body.font-large li,
body.font-large a,
body.font-large span,
body.font-large input,
body.font-large button{

font-size:120% !important;

}



body.font-large h1{

font-size:140% !important;

}


body.font-large h2{

font-size:130% !important;

}



body.font-large h3{

font-size:120% !important;

}







/* Decrease */


body.font-small p,
body.font-small li,
body.font-small a,
body.font-small span,
body.font-small input,
body.font-small button{

font-size:90% !important;

}



body.font-small h1{

font-size:90% !important;

}


body.font-small h2{

font-size:90% !important;

}

/* ======================
   ISD SITEMAP
====================== */


.isd-sitemap-page{

padding:50px 0;

}



.isd-sitemap-header{

text-align:center;

margin-bottom:40px;

}



.isd-sitemap-header h1{

font-family:"Work Sans";

font-size:36px;

font-weight:700;

}



.isd-sitemap-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}



.isd-sitemap-box{

border:1px solid #eee;

padding:25px;

background:#fff;

transition:.3s;

}



.isd-sitemap-box:hover{

transform:translateY(-5px);

border-color:#019031;

}



.isd-sitemap-box h2{

font-size:22px;

color:#019031;

border-bottom:3px solid #EEC213;

padding-bottom:10px;

}



.isd-sitemap-box ul{

padding:0;

list-style:none;

}



.isd-sitemap-box li{

margin:12px 0;

}



.isd-sitemap-box a{

color:#333;

text-decoration:none;

}



.isd-sitemap-box a:hover{

color:#019031;

}




@media(max-width:900px){

.isd-sitemap-grid{

grid-template-columns:1fr;

}

}

/* =====================
   PRIVACY POLICY PAGE
===================== */


.isd-policy-page{

padding:50px 0;

}



.isd-policy-header{

margin-bottom:40px;

}



.isd-policy-header h1{

font-family:"Work Sans";

font-size:38px;

font-weight:700;

color:#333;

}



.isd-policy-header p{

color:#019031;

font-size:18px;

}



.isd-policy-content{

background:#fff;

padding:40px;

border:1px solid #eee;

line-height:1.8;

}



.isd-policy-content h2{

font-size:26px;

color:#019031;

margin-top:35px;

}



.isd-policy-content h3{

font-size:21px;

}



.isd-policy-content ul{

padding-left:25px;

}



@media(max-width:768px){

.isd-policy-content{

padding:20px;

}

}
.isd-category-badge {

    display:inline-block;
    background:#019031;
    color:#fff;
    padding:7px 18px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:20px;

}

/* SIDEBAR */


.isd-news-sidebar {

    position:sticky;
    top:110px;
    align-self:start;

}


@media(max-width:992px){

    .isd-news-sidebar{

        position:relative;
        top:auto;

    }

}


.isd-sidebar-box {


    background:#fff;

    border:1px solid #e5e5e5;

    padding:25px;

    margin-bottom:25px;

}

/* =====================================
   ISD CATEGORY WIDGET
===================================== */


.isd-category-widget {

    background:#ffffff;

    border-radius:16px;

    padding:25px;

    border:1px solid #e8e8e8;

    box-shadow:0 8px 25px rgba(0,0,0,0.06);

    margin-bottom:30px;

}



/* HEADER */


.isd-widget-header {

    display:flex;

    align-items:center;

    gap:12px;

    padding-bottom:18px;

    margin-bottom:15px;

    border-bottom:3px solid #019031;

}



.isd-widget-header h3 {

    margin:0;

    font-family:"Work Sans",sans-serif;

    font-size:22px;

    font-weight:700;

    color:#333;

}




.isd-widget-icon {

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#019031;

    color:#fff;

    border-radius:50%;

    font-size:18px;

}




/* LIST */


.isd-category-list {

    list-style:none;

    padding:0;

    margin:0;

}




.isd-category-list li {

    margin-bottom:5px;

}




.isd-category-list li a {


    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:5px 5px;

    background:#f8faf8;

    border-radius:5px;

    text-decoration:none;

    color:#333;

    font-family:"Work Sans",sans-serif;

    font-size:12px;

    font-weight:500;

    transition:all .3s ease;


}




.isd-category-list li a:hover {


    background:#019031;

    color:#fff;

    transform:translateX(6px);


}


/* =====================================
   ISD CATEGORY NEWS GRID
===================================== */


.isd-news-grid {


display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}




/* CARD */


.isd-news-card {


background:#ffffff;

border-radius:14px;

overflow:hidden;

border:1px solid #e8e8e8;

transition:.35s ease;


}



.isd-news-card:hover {


transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.12);


}





/* IMAGE */


.isd-news-card-image {


height:190px;

overflow:hidden;


}



.isd-news-card-image img {


width:100%;

height:100%;

object-fit:cover;

transition:.4s ease;


}



.isd-news-card:hover img {


transform:scale(1.08);


}





/* CONTENT */


.isd-news-card-body {


padding:18px;


}




.isd-news-date {


font-size:13px;

color:#019031;

font-weight:600;


}





.isd-news-card h3 {


font-family:"Work Sans",sans-serif;

font-size:19px;

line-height:1.4;

font-weight:700;

margin:12px 0;

color:#333;


}




.isd-read-more {


font-size:14px;

font-weight:600;

color:#019031;


}



.isd-news-card:hover .isd-read-more {


color:#EEC213;


}






/* RESPONSIVE */


@media(max-width:1200px){


.isd-news-grid{

grid-template-columns:repeat(3,1fr);

}


}



@media(max-width:900px){


.isd-news-grid{

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


.isd-news-grid{

grid-template-columns:1fr;

}


}


.isd-category-name {


    display:flex;

    align-items:center;

    gap:5px;


}



.isd-category-name i {


    font-size:12px;

    color:#019031;


}



.isd-category-list li a:hover 
.isd-category-name i {


    color:#EEC213;


}



/* COUNT BADGE */


.isd-category-count {


    background:#EEC213;

    color:#333;

    font-size:11px;

    font-weight:500;

    min-width:28px;

    height:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;


}




.isd-category-list li a:hover 
.isd-category-count {


    background:#fff;

    color:#019031;


}

/* =====================================
   ISD STICKY SIDEBAR
===================================== */

.isd-news-sidebar {

    position: sticky;
    top: 30px;

    height: fit-content;

    align-self: start;

}


/* Optional: make sidebar cards look better while sticky */

.isd-news-sidebar .isd-sidebar-box,
.isd-news-sidebar .isd-category-widget {

    margin-bottom:25px;

}
/* =========================================
   RELATED CATEGORIES
=========================================*/

.isd-related-categories{

    margin-top:70px;

    padding-top:50px;

    border-top:4px solid #019031;

}

.isd-section-title{

    margin-bottom:35px;

}

.isd-section-title h2{

    font-size:34px;

    color:#019031;

    margin-bottom:8px;

}

.isd-section-title p{

    color:#666;

}

.isd-related-categories-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.isd-related-category-card{

    display:flex;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    text-decoration:none;

    border:1px solid #e6e6e6;

    transition:.35s;

}



.isd-related-category-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}



.isd-related-category-image{

    width:180px;

    flex-shrink:0;

}



.isd-related-category-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}



.isd-related-category-content{

    padding:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}



.isd-related-category-name{

    font-size:22px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;

}



.isd-related-category-count{

    color:#019031;

    font-weight:600;

    margin-bottom:15px;

}



.isd-related-category-link{

    color:#EEC213;

    font-weight:700;

}



.isd-related-category-card:hover{

    background:#019031;

}



.isd-related-category-card:hover
.isd-related-category-name{

    color:#fff;

}



.isd-related-category-card:hover
.isd-related-category-count{

    color:#EEC213;

}



.isd-related-category-card:hover
.isd-related-category-link{

    color:#fff;

}



@media(max-width:900px){

.isd-related-categories-grid{

grid-template-columns:1fr;

}

.isd-related-category-card{

flex-direction:column;

}

.isd-related-category-image{

width:100%;

height:220px;

}

}
/* ======================================================
   ISD CATEGORY PAGE RESPONSIVE
====================================================== */

/* Large Tablets */

@media (max-width: 1200px){

    .isd-category-layout{
        grid-template-columns:2fr 1fr;
        gap:30px;
    }

    .isd-news-grid{
        grid-template-columns:repeat(3,1fr);
    }

}



/* Tablets */

@media (max-width:992px){

    .isd-category-layout{

        display:block;

    }

    .isd-category-main{

        width:100%;

    }

    .isd-category-sidebar{

        width:100%;
        margin-top:40px;

    }

    .isd-news-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .isd-related-categories-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .isd-news-card h3{

        font-size:20px;

    }

}



/* Mobile */

@media (max-width:768px){

    .isd-category-container{

        padding:20px 15px;

    }

    .isd-category-header h1{

        font-size:34px;

    }

    .isd-category-description{

        font-size:16px;

    }

    .isd-news-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .isd-news-card-image{

        height:240px;

    }

    .isd-news-card h3{

        font-size:22px;

    }

    .isd-related-categories-grid{

        grid-template-columns:1fr;

    }

    .isd-related-category-card{

        flex-direction:column;

    }

    .isd-related-category-image{

        width:100%;
        height:220px;

    }

    .isd-related-category-content{

        width:100%;

    }

    .isd-pagination{

        overflow-x:auto;

    }

}



/* Small Phones */

@media (max-width:576px){

    .isd-category-header h1{

        font-size:28px;

    }

    .isd-news-card-body{

        padding:18px;

    }

    .isd-news-card h3{

        font-size:19px;

        line-height:1.4;

    }

    .isd-card-category{

        font-size:12px;

    }

    .isd-news-date{

        font-size:13px;

    }

    .isd-sidebar-box{

        padding:20px;

    }

    .isd-widget-header h3{

        font-size:20px;

    }

    .isd-category-list li a{

        padding:8px;

    }

}
@media (min-width:993px){

    .isd-category-sidebar{

        position:sticky;
        top:110px;
        align-self:start;

    }

}

/* =====================================
   CATEGORY PAGE DESKTOP STRUCTURE
===================================== */


.isd-category-layout{

    display:grid;

    grid-template-columns:70% 30%;

    gap:35px;

    align-items:start;

}


.isd-category-main{

    min-width:0;

}


.isd-category-sidebar{

    min-width:0;

}

/* =====================================================
   ISD CATEGORY PAGE FINAL RESPONSIVE OVERRIDE
   IMPORTANT FIX
===================================================== */


/* ===============================
   DESKTOP STRUCTURE
=============================== */


.isd-category-layout{

    display:grid !important;

    grid-template-columns:70% 30% !important;

    gap:35px !important;

    align-items:start !important;

}



.isd-category-main{

    min-width:0 !important;

}



.isd-category-sidebar{

    min-width:0 !important;

}





/* ===============================
   NEWS GRID DESKTOP
=============================== */


.isd-news-grid{

    display:grid !important;

    grid-template-columns:repeat(4,1fr) !important;

    gap:25px !important;

}





/* ===============================
   STICKY SIDEBAR DESKTOP
=============================== */


.isd-category-sidebar,
.isd-news-sidebar{


    position:sticky !important;

    top:110px !important;

    align-self:start !important;


}





/* ===============================
   LAPTOP
=============================== */


@media(max-width:1200px){


.isd-category-layout{

    grid-template-columns:65% 35% !important;

}


.isd-news-grid{

    grid-template-columns:repeat(3,1fr) !important;

}


}






/* ===============================
   TABLET
=============================== */


@media(max-width:992px){


.isd-category-layout{

    display:block !important;

}



.isd-category-main{

    width:100% !important;

}



.isd-category-sidebar{

    width:100% !important;

    margin-top:40px !important;

}



.isd-news-grid{

    grid-template-columns:repeat(2,1fr) !important;

}



/* Disable sticky sidebar */

.isd-category-sidebar,
.isd-news-sidebar{

    position:relative !important;

    top:auto !important;

}



}





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


@media(max-width:600px){



.isd-category-container{

    padding-left:15px !important;

    padding-right:15px !important;

}



.isd-news-grid{

    grid-template-columns:1fr !important;

    gap:25px !important;

}



.isd-news-card-image{

    height:230px !important;

}



.isd-news-card h3{

    font-size:20px !important;

}



.isd-related-categories-grid{

    grid-template-columns:1fr !important;

}



.isd-related-category-card{

    flex-direction:column !important;

}



.isd-related-category-image{

    width:100% !important;

    height:220px !important;

}



.isd-related-category-content{

    width:100% !important;

}




}





/* ===============================
   CATEGORY SIDEBAR TYPOGRAPHY
=============================== */


.isd-category-list li a{

    font-size:12px !important;

    padding:7px 7px !important;

}




.isd-category-count{

    font-size:12px !important;

    height:22px !important;

}





/* ===============================
   RELATED CATEGORY CARDS
=============================== */


.isd-related-category-image{

    width:35% !important;

    flex-shrink:0 !important;

}



.isd-related-category-content{

    width:65% !important;

}





@media(max-width:600px){


.isd-related-category-image{

    width:100% !important;

}



.isd-related-category-content{

    width:100% !important;

}


}
/* =====================================================
   ISD CATEGORY PAGE - MODERNIZED
===================================================== */

/* 1. Base Variables (If not already defined in your :root) */
:root {
  --isd-primary: #0b6b3a;
  --isd-primary-hover: #08522c;
  --isd-accent: #EEC213;
  --isd-text-main: #0f172a;
  --isd-text-muted: #64748b;
  --isd-border: #e2e8f0;
  --isd-bg-light: #f8fafc;
}

/* 2. Main Layout */
.isd-category-page {
  background-color: var(--isd-bg-light);
  padding: 3rem 0 5rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.isd-category-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.isd-category-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .isd-category-layout {
    grid-template-columns: 2.3fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* 3. Header Area */
.isd-category-header {
  margin-bottom: 3rem;
}

.isd-breadcrumbs {
  font-size: 0.875rem;
  color: var(--isd-text-muted);
  margin-bottom: 1rem;
}

.isd-breadcrumbs a {
  color: #0B6B3A;
  text-decoration: none;
  font-weight: 500;
}

.isd-breadcrumbs a:hover {
  text-decoration: underline;
}

.isd-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.isd-header-title-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--isd-text-main);
  margin: 0;
  line-height: 1.2;
}

.isd-category-post-count {
  background: #e2e8f0;
  color: #334155;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.isd-category-description {
  font-size: 1.125rem;
  color: var(--isd-text-muted);
  max-width: 800px;
  line-height: 1.6;
}

/* 4. News Grid & Cards */
.isd-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.isd-news-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--isd-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.isd-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08), 0 4px 12px -4px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.isd-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.isd-news-card-image {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--isd-border);
}

.isd-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.isd-news-card:hover .isd-news-card-image img {
  transform: scale(1.05);
}

.isd-news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.isd-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}

.isd-card-category {
  color: #0B6B3A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.isd-news-date {
  color: var(--isd-text-muted);
}

.isd-news-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.5rem 0;
  color: var(--isd-text-main);
  transition: color 0.2s;
}

.isd-news-card:hover h3 {
  color: #0B6B3A;
}

.isd-read-more {
  margin-top: auto; /* Pushes button to bottom */
  font-size: 0.875rem;
  font-weight: 600;
  color: #0B6B3A;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.isd-news-card:hover .isd-read-more {
  color: var(--isd-accent);
  transform: translateX(4px);
}

/* 5. Sidebar & Widgets */
.isd-category-sidebar {
  position: sticky;
  top: 100px;
}

.isd-category-widget,
.isd-sidebar-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--isd-border);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.isd-widget-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 1.25rem;
}

.isd-widget-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--isd-text-main);
  margin: 0;
}

.isd-widget-icon {
  color: yellow;
  font-size: 1.25rem;
}

.isd-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.isd-category-list li {
  margin-bottom: 0.1rem;
}

.isd-category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px;
  background: var(--isd-bg-light);
  border-radius: 8px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.isd-category-list li a:hover {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #0B6B3A;
  transform: translateX(6px);
}

.isd-category-name i {
  font-size: 0.75rem;
  margin-right: 0.5rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.isd-category-list li a:hover .isd-category-name i {
  color: var(--isd-accent);
}

.isd-category-count {
  background: #e2e8f0;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 700;
  transition: all 0.2s;
}

.isd-category-list li a:hover .isd-category-count {
  background: #0B6B3A;
  color: #fff;
}

.isd-latest-post {
  padding: 1rem 0;
  border-bottom: 1px solid var(--isd-border);
  display: flex;
  flex-direction: column;
}

.isd-latest-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.isd-latest-post a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--isd-text-main);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.isd-latest-post a:hover {
  color: #0B6B3A;
}

.isd-latest-post time {
  font-size: 0.8125rem;
  color: var(--isd-text-muted);
}

/* 6. Related Categories Section */
.isd-related-categories {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--isd-border);
}

.isd-section-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--isd-text-main);
  margin: 0 0 0.5rem 0;
}

.isd-section-title p {
  color: var(--isd-text-muted);
  margin-bottom: 2rem;
}

.isd-related-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.isd-related-category-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--isd-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.isd-related-category-card:hover {
  border-color: #0B6B3A;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.isd-related-category-image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-right: 1px solid var(--isd-border);
}

.isd-related-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.isd-related-category-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.isd-related-category-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--isd-text-main);
}

.isd-related-category-count {
  font-size: 0.8125rem;
  color: var(--isd-text-muted);
  margin-top: 0.25rem;
}

.isd-related-category-link {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0B6B3A;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.isd-related-category-card:hover .isd-related-category-link {
  opacity: 1;
  transform: translateX(0);
}
/* =====================================================
   ISD PAGINATION - MODERNIZED
===================================================== */
.isd-pagination {
  margin: 4rem 0 2rem;
  width: 100%;
}

/* Flexbox centers the pagination elements and controls the gap */
.isd-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Base style for all pagination items (links, current page, and prev/next) */
.isd-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  background: #fff;
  color: var(--isd-text-main);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid var(--isd-border);
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for clickable links */
.isd-pagination a.page-numbers:hover {
  background: var(--isd-bg-light);
  border-color: #cbd5e1;
  color: #0B6B3A;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Active/Current page state */
.isd-pagination .page-numbers.current {
  background: #0B6B3A;
  color: #fff;
  border-color: #0B6B3A;
  box-shadow: 0 4px 12px rgba(11, 107, 58, 0.25);
  cursor: default;
}

/* The '...' unclickable spacer */
.isd-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  color: var(--isd-text-muted);
  min-width: auto;
  padding: 0 0.5rem;
}

/* Prev/Next specific styling */
.isd-pagination .prev.page-numbers,
.isd-pagination .next.page-numbers {
  font-weight: 700;
  color: #0B6B3A;
}

/* ==========================================================================
   ISD Single News Template Styles
   ========================================================================== */

:root {
    --isd-primary: #2563eb;
    --isd-text-main: #1e293b;
    --isd-text-muted: #64748b;
    --isd-border: #e2e8f0;
    --isd-bg-light: #f8fafc;
    --isd-radius: 8px;
    --isd-transition: all 0.2s ease-in-out;
}

.isd-single-wrapper {
    background-color: #ffffff;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.isd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

/* --- Typography & Header --- */
.isd-breadcrumb {
    font-size: 0.875rem;
    color: var(--isd-text-muted);
    margin-bottom: 24px;
}

.isd-breadcrumb a {
    color: #0B6B3A;
    text-decoration: none;
}

.isd-breadcrumb .isd-sep {
    margin: 0 8px;
}

.isd-badge {
    display: inline-block;
    background-color: var(--isd-bg-light);
    color: #0b6b3a;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.isd-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--isd-text-main);
    margin: 0 0 20px 0;
    font-weight: 800;
}

.isd-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--isd-border);
    color: var(--isd-text-muted);
    font-size: 0.95rem;
}

.isd-dot {
    margin: 0 8px;
}

/* --- Media --- */
.isd-featured-media {
    margin: 32px 0;
}

.isd-featured-media img {
    width: 100%;
    height: auto;
    border-radius: var(--isd-radius);
    display: block;
    object-fit: cover;
}

/* --- Content --- */
.isd-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--isd-text-main);
    margin-bottom: 40px;
}

.isd-content p {
    margin-bottom: 1.5em;
}

.isd-content h2, .isd-content h3 {
    margin-top: 2em;
    margin-bottom: 0.75em;
    color: #000;
}

/* --- Social Share --- */
.isd-share-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    padding: 16px;
    background-color: var(--isd-bg-light);
    border-radius: var(--isd-radius);
}

.isd-share-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--isd-text-main);
}

.isd-share-links {
    display: flex;
    gap: 12px;
}

.isd-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: var(--isd-transition);
}

.isd-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.isd-facebook { background-color: #1877F2; }
.isd-twitter { background-color: #000000; }
.isd-whatsapp { background-color: #25D366; }

/* --- Post Navigation --- */
.isd-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px 0;
    border-top: 1px solid var(--isd-border);
    border-bottom: 1px solid var(--isd-border);
    margin-bottom: 40px;
}

.isd-nav-next { text-align: right; }

.isd-nav-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--isd-text-muted);
    margin-bottom: 4px;
}

.isd-post-navigation a {
    color: #0b6b3a;
    text-decoration: none;
    font-size: 1.05rem;
}

.isd-post-navigation a:hover {
    text-decoration: underline;
}

/* --- Related Posts --- */
/* --- Related Posts --- */
.isd-section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-left: 4px solid var(--isd-primary);
    padding-left: 12px;
}

.isd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 20px; /* Modern, tight spacing */
}

.isd-related-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--isd-border);
    border-radius: var(--isd-radius);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Modern Hover Lift Effect */
.isd-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.isd-related-img img {
    width: 100%;
    height: 140px; /* Smaller, standard thumbnail height */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--isd-border); /* Separator */
}

.isd-related-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.isd-related-date {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--isd-text-muted);
    margin-bottom: 6px;
}

.isd-related-title {
    font-size: 0.95rem; /* Compact title font */
    color: var(--isd-text-main);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    
    /* Strict Line Clamping for Grid Uniformity */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Responsive Degradation for the Grid --- */
@media (max-width: 992px) {
    .isd-related-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .isd-related-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* --- Sidebar --- */
.isd-sticky-sidebar {
    position: sticky;
    top: 32px;
}

.isd-widget {
    background: #fff;
    border: 1px solid var(--isd-border);
    border-radius: var(--isd-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.isd-widget-title {
    font-size: 1.125rem;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--isd-bg-light);
}

/* Search Form */
.isd-search-form {
    display: flex;
    position: relative;
}

.isd-search-form input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--isd-border);
    border-radius: var(--isd-radius);
    font-size: 1rem;
    outline: none;
}

.isd-search-form input:focus {
    border-color: #0B6B3A;
}

.isd-search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--isd-text-muted);
    cursor: pointer;
    padding: 8px;
}

.isd-search-form button:hover {
    color: #0B6B3A;
}

/* Latest News Widget */
.isd-latest-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--isd-border);
}

.isd-latest-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.isd-latest-item time {
    display: block;
    font-size: 0.75rem;
    color: var(--isd-text-muted);
    margin-bottom: 4px;
}

.isd-latest-title {
    color: var(--isd-text-main);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.isd-latest-title:hover {
    color: #0B6B3A;
}

/* Category Widget */
.isd-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isd-category-list li {
    margin-bottom: 8px;
}

.isd-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--isd-bg-light);
    color: var(--isd-text-main);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--isd-transition);
}

.isd-category-list a:hover {
    background-color: #0b6b3a;
    color: #fff;
}

.isd-cat-count {
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.isd-category-list a:hover .isd-cat-count {
    background: rgba(255,255,255,0.2);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .isd-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .isd-sticky-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .isd-related-grid, .isd-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .isd-nav-next {
        text-align: left;
        margin-top: 16px;
    }
}
/* --- Modern Government Portal Styles --- */

/* Reset & Containers */
.isd-section-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 2rem !important;
    border-left: 5px solid #d97706; /* Ghana Gold/Brand Color */
    padding-left: 15px !important;
}

/* Professional Buttons */
.isd-btn, .isd-btn.secondary{
    display: inline-block;
    padding: 6px 12px !important;;
    background: #1e293b; /* Dark Navy/Professional */
    color: #eec213 !important;
    
    border-radius: 2px;
    font-weight: 200 !important;;
    transition: 0.3s;
}

.isd-btn:hover {
    background: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
}

/* Director Profile Card */
.isd-director-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}
.isd-director-name { font-size: 1.25rem; margin-bottom: 4px; }
.isd-director-role { color: #64748b; font-size: 0.9rem; }

/* Divisions Grid */
.wpb_single_image {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.wpb_single_image:hover {
    transform: translateY(-5px);
}
/* Quicklinks Styling */
.isd-quicklinks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates the two-column layout */
    gap: 15px 30px; /* 15px vertical gap, 30px horizontal gap between columns */
}

.isd-quicklinks-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
}

.isd-quicklinks-list a {
    color: #ffffff; /* Explicit white for readability on dark background */
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center; /* Vertically centers the arrow with the text */
    justify-content: flex-start; /* Forces content to the left */
}

.isd-quicklinks-list a::before {
    content: "→";
    margin-right: 8px; /* Adjusted: reduced this for tighter spacing */
    color: #d97706; /* Keep your brand gold */
    flex-shrink: 0; /* Prevents the arrow from resizing */
}

/* Responsive: Stack to 1 column and center align on mobile */
@media (max-width: 768px) {
    .isd-quicklinks-list {
        grid-template-columns: 1fr;
    }
    
    .isd-quicklinks-list a {
        justify-content: center; /* Centers the text and arrow on mobile */
    }
}
/* Tighten the entire page */
.vc_row { margin-bottom: 0px !important; }
.wpb_column { padding-bottom: 0px !important; }
.vc_column-inner { padding: 5px !important; }
.isd-section-title { margin-bottom: 15px !important; }

.isd-modern-list{
  list-style: none !important;
  padding: 0;
  margin: 0;
  background: #ffffff;
  border: 0px solid #e5e7eb;
  border-radius: 0px !important;
  overflow: hidden;
  box-shadow: 0 0px 1px rgba(0,0,0,0.06) !important;
}

/* --- Global Professional Reset --- */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa; /* Soft off-white for better eye comfort */
}

/* --- Improved Container & Grid Spacing --- */
.wpb_row, .vc_row {
    margin-bottom: 10px !important; /* Consistent block spacing */
}

.wpb_column {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* --- Professional Typography --- */
h1, h2, h3, h4 {
    color: inherit; /* Authoritative Deep Navy */
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #444444;
}

/* --- Clean, Modern Button Styling --- */
.vc_btn3 {
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
}

.vc_btn3-color-blue {
    background-color: #004a99 !important; /* Official/Authoritative Blue */
}

.vc_btn3:hover {
    background-color: #002d5e !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- Sidebar/Utility Enhancement (70/30 Split) --- */
/* Target the sidebar column specifically */
.sidebar-column {
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    padding: 20px !important;
}

/* --- Card Style for News/Related Grid --- */
.news-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    transition: transform 0.2s;
    border-bottom: 3px solid #FFD700; /* Ghana Gold Accent */
}

.news-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #006B3C; /* Ghana Green Accent */
}
/* Quick Links Bar Styling */
.citizen-quick-links {
    background-color: #f4f4f4;
    border-bottom: 2px solid #006B3C; /* Official Green Accent */
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.citizen-quick-links a {
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.citizen-quick-links a:hover {
    color: #004a99; /* Navy Blue Accent */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .citizen-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Container */
.isd-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* Ensure the title doesn't look like a link */
.isd-quick-links strong {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    color: inherit;
    font-size: 16px;
    text-transform: uppercase;
}

/* Individual Link Styling */
.isd-quick-links a {
    background: #f8f9fa;
    color: inherit;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border-left: 4px solid #006B3C;
    transition: all 0.3s ease;
    font-size: 13px;
}

/* Hover Effect */
.isd-quick-links a:hover {
    background: #CEF0DF !important;
    color: green !important;
    border-left-color: #FFD700;
}
/* --- News Grid Container --- */
.isd-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* --- Individual News Card --- */
.news-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-bottom: 4px solid #006B3C; /* Official Green Base */
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-bottom-color: #FFD700; /* Gold Hover Accent */
    transform: translateY(-5px);
}

/* --- Card Content --- */
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures uniform image height */
}

.news-card-content {
    padding: 20px;
}

.news-card h3 {
    font-size: 18px;
    color: green; /* Navy Blue */
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.news-card .read-more {
    font-weight: 700;
    color: #004a99;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* --- Hero Section Styling --- */
.isd-about-hero {
    background-color: green !important; /* Deep Navy */
    color: #ffffff !important;
    padding: 30px 10px !important;
    text-align: center;
}

.isd-about-hero h1 { color: #ffffff !important; }

/* --- Content Layout --- */
.isd-about-main h2 {
    color: green;
    font-size: 28px;
    border-bottom: 3px solid #006B3C; /* Ghana Green Accent */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.isd-about-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* --- Vision & Mission Cards --- */
.isd-vision-mission-row .vc_column_inner {
    background: #f8f9fa;
    border-left: 5px solid #FFD700; /* Gold Accent */
    padding: 20px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 4px;
}

/* --- Sidebar Image Responsiveness --- */
.isd-sidebar-img img {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.isd-sidebar-img img:hover {
    transform: scale(1.02);
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .isd-about-main { padding-right: 0 !important; }
    .isd-vision-mission-row { flex-direction: column; }
    .isd-vision-mission-row .vc_column_inner { margin-bottom: 15px; }
}

/* Typography: Professional breathing room */
.isd-about-main {
    line-height: 1.8 !important;
    font-size: 17px !important;
    color: #333;
    padding-right: 30px !important;
}

.isd-about-main h2 {
    color: green; /* Navy */
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #006B3C; /* Green Accent */
    padding-bottom: 10px;
}

/* Improve the list appearance */
.isd-about-main ol, .isd-about-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Container for collapsible section */
.isd-collapsible {
    max-height: 300px; /* Initially hidden */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.isd-collapsible.open {
    max-height: 2000px; /* Expands to show all */
}

/* Toggle Button */
.isd-toggle-btn {
    display: block;
    cursor: pointer;
    color: #004a99;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
}


/* Sidebar Styling */
.isd-sidebar-img {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.isd-sidebar-img:hover {
    transform: scale(1.02);
    border-color: #FFD700; /* Gold */
}

/* Sticky Sidebar - Keeps content visible while scrolling */
.isd-timeline-sticky {
    position: sticky;
    top: 100px; 
}

/* Custom Header Styling for the About Page */
.isd-about-main h2, 
.isd-about-main .vc_column_text h2 {
    color: inherit; /* Official Navy */
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700; /* Ghana Gold Underline */
    display: inline-block;
    width: 100%;
}

/* Vision & Mission Cards */
.isd-vision-mission-row .vc_column_inner {
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #006B3C; /* Green side accent */
    padding: 25px !important;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Subtle shadow gives depth */
}



/* Professional Government Button */
.isd-cta-button {
    display: inline-block;
    background-color: #0B7D3B; /* Navy */
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.isd-cta-button:hover {
    background-color: #006B3C; /* Green */
    border-color: #006B3C;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Add breathing room to sections */
.isd-about-main {
    padding-right: 40px !important; /* Separation from sidebar */
}

.isd-about-main p {
    margin-bottom: 25px !important;
    font-size: 16px;
    line-height: 1.7; /* Crucial for legibility */
    color: #444;
}

/* Give headers more space */
.isd-about-main h2 {
    margin-top: 50px !important;
    margin-bottom: 25px !important;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFD700; /* Gold */
}

#backToTopBtn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: gold; /* Navy */
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%;
    font-size: 18px;
}
#backToTopBtn:hover { background-color: #006B3C; } /* Green */

.leadership-cta-card {
    background: #f4f7f9;
    padding: 30px;
    border-left: 5px solid #FFD700; /* Gold Accent */
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}
.leadership-cta-card h3 {
    margin-top: 0;
    color: inherit;
}

a:focus, button:focus {
    outline: 3px solid #FFD700 !important; /* High contrast gold */
    outline-offset: 2px;
}

/* Force a highly visible focus outline for keyboard users */
a:focus, 
button:focus, 
input:focus, 
select:focus, 
textarea:focus, 
[tabindex]:focus {
    outline: 3px solid #ffcc00 !important; /* Use a color that contrasts with your background */
    outline-offset: 2px !important;
}

/* Remove focus outline for mouse users, keep it for keyboard users (modern approach) */
:focus:not(:focus-visible) {
    outline: none !important;
}

.skip-link{
    position:absolute;
    left:-9999px;
    top:0;
    background:#019031;
    color:#ffffff;
    padding:12px 18px;
    z-index:99999;
    text-decoration:none;
    font-weight:700;
}

.skip-link:focus{
    left:20px;
    top:20px;
}

.gov-cat-link{
    color:#005a2b !important;
    background:transparent !important;
    opacity:1 !important;
    text-decoration:none !important;
    font-weight:600 !important;
}

.gov-cat-link:link,
.gov-cat-link:visited{
    color:#005a2b !important;
}

.gov-cat-link:hover,
.gov-cat-link:focus{
    color:#ffffff !important;
    background:#019031 !important;
    text-decoration:none !important;
    outline:2px solid #005a2b !important;
    outline-offset:2px !important;
}

.gov-cat-link:active{
    color:#ffffff !important;
    background:#005a2b !important;
}

abbr{
    color:#333333 !important;
    background:transparent !important;
    opacity:1 !important;
    font-weight:500 !important;
    text-decoration:none !important;
}

abbr[title]{
    color:#333333 !important;
    background:transparent !important;
    opacity:1 !important;
}

abbr:hover,
abbr:focus{
    color:#000000 !important;
    background:#f5f5f5 !important;
    outline:2px solid #019031 !important;
    outline-offset:2px !important;
}

.skip-link{
    position:absolute !important;
    left:-9999px !important;
    top:20px !important;
    padding:12px 20px !important;
    background:#000000 !important;
    color:#ffffff !important;
    font-size:16px !important;
    font-weight:700 !important;
    line-height:1.5 !important;
    text-decoration:none !important;
    border:2px solid #ffffff !important;
    border-radius:4px !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:999999 !important;
}

.skip-link:focus,
.skip-link:focus-visible,
.skip-link:hover{
    left:20px !important;
    background:#000000 !important;
    color:#ffffff !important;
    border-color:#ffffff !important;
    outline:3px solid #ffcc00 !important;
    outline-offset:3px !important;
    opacity:1 !important;
}

/* ISD Brand CTA Styles */
.isd-brand-cta {


  padding: 15px 16px;
  margin: 2px 0;
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: justify;
}

.isd-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.isd-cta-title {
  color: #1a1a1a;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.isd-cta-highlight {
  color: #006B3F; 
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.5;
}

.isd-cta-description {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 32px;
}

.isd-cta-button {
  display: inline-block;
  background-color: #006B3F; 
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 107, 63, 0.2);
}

.isd-cta-button:hover {
  background-color: #004d2d; /* Darker green for hover state */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 107, 63, 0.3);
}

/* High-visibility focus state for accessibility */
.isd-cta-button:focus-visible {
  outline: 3px solid #FCD116; /* Official Gold */
  outline-offset: 3px;
}

/* Responsive formatting for mobile devices */
@media (max-width: 768px) {
  .isd-brand-cta {
    padding: 32px 16px;
  }
  .isd-cta-title {
    font-size: 1.75rem;
  }
  .isd-cta-highlight {
    font-size: 1.15rem;
  }
  .isd-cta-description {
    font-size: 1rem;
  }
  .isd-cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Container Spacing */
.isd-functions-container {
 
  padding: 1rem;
}

.section-title {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: .5rem;
  text-align: center;
}

/* Auto-responsive Grid */
.functions-grid {
  display: grid;
  /* Automatically fits as many 300px columns as possible, then expands them to fill space */
  grid-template-columns: repeat(auto-fit, minmax(4fr, 1fr));
  gap: .5rem;
}

/* Card Styling - High Contrast & Scannable */
.function-card {
  background-color: #ffffff;
  border: 1px solid #d1d5db; /* High contrast border */
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* Typography for readability */
.function-card p {
  color: #333333; /* Dark enough to pass WCAG AAA contrast against white */
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Icon Styling */
.card-icon {
  color: #004d40; /* Assuming a dark green/official accent color */
  background-color: #e0f2f1;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover & Focus States for Interactive Feel */
.function-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #004d40;
}

/* 1. Global Focus Outline (Crucial for keyboard navigation) */
a:focus, 
button:focus, 
input:focus {
  outline: 3px solid #ffbf47 !important; /* Standard high-visibility focus ring */
  outline-offset: 2px;
}

/* 2. Style the Legislative Framework List */
.legislative-list {
  list-style: none;
  padding-left: 0;
}

.legislative-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

/* Adds a custom bullet that doesn't rely on default browser rendering */
.legislative-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #004d40;
  font-weight: bold;
}

/* 3. Hide the broken PHP loop text safely */
/* If that repeating "About ISD" text has a specific class, hide it from screen readers and view */
.broken-loop-class {
  display: none !important;
  aria-hidden: "true";
}

.gov-slide-category .gov-cat-link {
    background-color: rgb(0, 118, 45) !important;
    color: rgb(255, 255, 255) !important;
}

.gov-slide-category .gov-cat-link {
    /* Forces the text to be large/bold enough to pass with a 3.86:1 ratio */
    font-size: 12px !important; 
    font-weight: bold !important;
}



.isd-footer-col h3 {
    color: gold !important;
}

.isd-cta-button {
    color:#FFE96B;
    
}

.home .wpb_single_image .vann img {
    max-width: 100% !important; 
    height: auto !important; 
    display: block;
}

/* 1. Main Container Background & Border */
.custom-news-design {
    background-color: #f7f7f9 !important; /* Light gray background */
    border: 1px solid #e5e5e5 !important; /* Thin gray border */
    padding: 30px 20px 20px 20px !important; /* Padding for spacing */
    position: relative;
    margin-top: 20px;
}

/* 2. "Latest News" Header Styling */
.custom-news-design h2, 
.custom-news-design h3, 
.custom-news-design .widget-title {
    background-color: #999999 !important; /* Gray background */
    color: #ffffff !important; /* White text */
    display: inline-block !important;
    padding: 6px 16px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    position: absolute;
    top: -15px; /* Pulls it up onto the border */
    left: 20px;
    margin: 0 !important;
}

/* 3. Clean up the List Structure */
.custom-news-design ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 4. Remove current dividers and add spacing */
.custom-news-design ul li {
    border-bottom: none !important; /* Removes the light blue line */
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-left: 20px !important; /* Space for the new green bullet */
}

/* 5. Create the Green Bullet Points */
.custom-news-design ul li::before {
    content: '' !important;
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #004d00 !important; /* Dark green bullet */
    border-radius: 50%;
}

/* 6. Post Title Styling */
.custom-news-design ul li a {
    color: #333 !important; /* Dark grey/black text */
    text-decoration: underline !important; /* Underline the links */
    font-size: 15px !important;
    font-weight: normal !important;
    display: inline !important; /* Forces it to sit on the same line as the date */
}

/* 7. Post Date Styling (Bring it to the same line) */
.custom-news-design ul li .post-date, 
.custom-news-design ul li .wp-block-latest-posts__post-date,
.custom-news-design ul li time {
    display: inline-block !important;
    color: #4a7c4a !important; /* Light green text */
    font-size: 13px !important;
    margin-left: 8px !important;
    font-style: italic !important;
}

/* 8. Hide the old date bullet/icon (if generated by CSS) */
.custom-news-design ul li .post-date::before,
.custom-news-design ul li time::before {
    display: none !important;
}

/* 9. "More Latest News" Button Styling */
.custom-news-design .more-link, 
.custom-news-design .all-news-btn {
    background-color: #004d00 !important; /* Dark green button */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    display: inline-block !important;
    position: absolute;
    bottom: -18px; /* Pulls it down onto the bottom border */
    left: 20px;
}
/* Force inner text elements to drop their default spacing */
.custom-news-design ul li a,
.custom-news-design ul li p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.4 !important; /* Keeps the text lines snug */
}

/* 1. Parent container setup */
.hero-welcome-overlay {
    position: relative;
    width: 100%;
}

/* 2. Image setup - removes default bottom gap */
.hero-welcome-overlay img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: Softens edges */
}

/* 3. The SINGLE text box layer */
.hero-welcome-overlay .wpb_text_column {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); /* Perfectly centers the box horizontally */
    background-color: rgba(17, 17, 17, 0.9) !important;
    padding: 15px 40px !important;
    border-radius: 12px !important;
    width: 80% !important; /* Adjust this if you want the box wider/narrower */
    max-width: 750px !important;
    text-align: center;
    margin: 0 !important;
    z-index: 10;
    box-sizing: border-box;
}

/* 4. Ensure inner text elements don't create their own background boxes */
.hero-welcome-overlay .wpb_text_column .wpb_wrapper,
.hero-welcome-overlay .wpb_text_column p,
.hero-welcome-overlay .wpb_text_column h2,
.hero-welcome-overlay .wpb_text_column h3 {
    position: static !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
}

/* ====================================================
   Responsive Adjustments for Hero Overlay
   ==================================================== */

/* Tablet Devices (Screens smaller than 768px) */
@media only screen and (max-width: 768px) {
    .hero-welcome-overlay .wpb_text_column {
        width: 65% !important; /* Expands to fill more of the tablet screen */
        padding: 12px 25px !important; /* Reduces padding slightly */
        bottom: 15px; /* Brings it a bit closer to the bottom edge */
    }
}

/* Mobile Phones (Screens smaller than 480px) */
@media only screen and (max-width: 480px) {
    .hero-welcome-overlay .wpb_text_column {
        width: 92% !important; /* Maximizes width on small phones */
        padding: 10px 15px !important; /* Tightens padding to save space */
        bottom: 10px; /* Tucks it closely to the bottom */
        border-radius: 8px !important; /* Slightly smaller border radius for smaller screens */
    }

    /* Optional: Scale down the text size for mobile so it doesn't break into too many lines */
    .hero-welcome-overlay .wpb_text_column h2,
    .hero-welcome-overlay .wpb_text_column h3 {
        font-size: 16px !important; 
        line-height: 1.3 !important;
    }
    
    .hero-welcome-overlay .wpb_text_column p {
        font-size: 14px !important;
    }
}

/* ====================================================
   Responsive Adjustments for Custom News Block
   ==================================================== */

/* Tablet Devices (Screens smaller than 768px) */
@media only screen and (max-width: 768px) {
    .custom-news-design {
        padding: 30px 15px 20px 15px !important; /* Reduced left/right padding */
    }
    
    /* Align the absolute elements with the new reduced padding */
    .custom-news-design h2, 
    .custom-news-design h3, 
    .custom-news-design .widget-title,
    .custom-news-design .more-link, 
    .custom-news-design .all-news-btn {
        left: 15px !important; 
    }
}

/* Mobile Phones (Screens smaller than 480px) */
@media only screen and (max-width: 480px) {
    .custom-news-design {
        padding: 25px 10px 15px 10px !important; /* Tighter padding for small screens */
        margin-top: 25px !important; /* Extra top margin for the overlapping header */
        margin-bottom: 25px !important; /* Extra bottom margin for the overlapping button */
    }

    /* Adjust overlapping header for mobile */
    .custom-news-design h2, 
    .custom-news-design h3, 
    .custom-news-design .widget-title {
        left: 10px !important; 
        top: -12px !important; 
        padding: 4px 12px !important;
        font-size: 13px !important; /* Slightly smaller text */
    }

    /* Adjust overlapping button for mobile */
    .custom-news-design .more-link, 
    .custom-news-design .all-news-btn {
        left: 10px !important;
        bottom: -15px !important;
        padding: 6px 14px !important;
        font-size: 12px !important;
    }

    /* Stack the title and the date to prevent awkward wrapping on tiny screens */
    .custom-news-design ul li a {
        display: block !important; 
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    
    .custom-news-design ul li .post-date, 
    .custom-news-design ul li .wp-block-latest-posts__post-date,
    .custom-news-design ul li time {
        margin-left: 0 !important; /* Removes the left margin since it's on a new line */
        display: block !important;
    }
}

.home li {
    line-height: 21px !important;
    
}
.custom-news-design {
  list-style: none;
  padding-left: 0;
}

.custom-news-design li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.7em;
}

.custom-news-design li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55em;
  height: 0.55em;
  background-color: #006B3D;   /* ISD / Ghana green */
  border-radius: 2px;          /* slightly rounded square */
}


.isd-green-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.isd-green-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.7em;
  line-height: 1.55;
}

.isd-green-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5em;
  height: 0.5em;
  background-color: #006B3D;
  border-radius: 2px;
}

/* ====================================================
   Director Profile Left Alignment
   ==================================================== */

/* Desktop & Tablet Landscape (Screens larger than 768px) */
@media only screen and (min-width: 769px) {
    .align-profile-left {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
       
        justify-content: center;
    }

    /* Override any default WPBakery image centering */
    .align-profile-left .wpb_single_image,
    .align-profile-left .vc_single_image-wrapper,
    .align-profile-left img {
        margin-left: 0 !important;
        text-align: left !important;
    }

    /* Ensure the button aligns left */
    .align-profile-left .vc_btn3-container, 
    .align-profile-left .wpb_button {
        text-align: left !important;
        margin-left: 0 !important;
    }
}

/* Mobile & Small Tablets (Screens smaller than 768px) */
@media only screen and (max-width: 768px) {
    .align-profile-left {
        width: 100% !important;
        text-align: center !important; /* Keeps it centered on small phone screens for a better look */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        padding: 0 15px !important; /* Prevents touching the screen edges */
    }
    
    .align-profile-left img {
        margin: 0 auto !important; /* Ensures the image stays centered on mobile */
    }
}
.quick-links-simple {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e8f0ec;
  width: 100%;
}

.quick-links-simple h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b3d2e;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-links-simple ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  color: #0b3d2e;
}

.quick-links-simple li {
  margin-bottom: 8px;
}

.quick-links-simple li:last-child {
  margin-bottom: 0;
}

.quick-links-simple a {
  color: #0b3d2e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-links-simple a:hover {
  color: #167a4a;
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .quick-links-simple {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    padding: 16px 12px;
  }

  .quick-links-simple h3 {
    font-size: 1rem;
  }

  .quick-links-simple a {
    font-size: 0.9rem;
  }
}


/* ====================================================
   ISD Intro Section Styles (Updated Flexbox Fix)
   ==================================================== */

/* Main Two-Column Layout (Ultra-Strict) */
.isd-intro-section {
    display: flex !important;
    flex-direction: row !important; /* Forces a left-to-right row */
    flex-wrap: nowrap !important; /* Prevents stacking on desktop */
    justify-content: space-between !important;
    align-items: flex-start !important; 
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 0 !important;
    width: 100% !important;
    clear: both !important;
}

/* Fix the squished text by forcing full width */
.isd-text-block {
    width: 100% !important;
    margin-bottom: 35px !important;
    padding: 0 !important;
}

/* Heading Alignment */
.isd-heading {
    color: #004d00 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    letter-spacing: 0.5px !important;
}

/* Override theme paragraph width limits */
.isd-intro-section p {
    color: #333333 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    width: 100% !important; 
    max-width: 100% !important; /* Stops the early text wrap */
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix the mandate list gaps and width */
.isd-mandate-list {
    list-style: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.isd-mandate-list li {
    color: #333333 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    width: 100% !important;
    max-width: 100% !important; /* Stops early text wrap */
    margin: 0 0 8px 0 !important; /* Tightens the huge gap from the image */
    padding: 0 !important;
    display: block !important;
}

/* Button Styling */
.isd-green-btn {
    display: inline-block !important;
    background-color: #004d00 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    margin-top: 15px !important;
}

.isd-green-btn:hover {
    background-color: #003300 !important; 
    color: #ffffff !important;
}

/* ====================================================
   Responsive Adjustments for Mobile
   ==================================================== */
@media only screen and (max-width: 768px) {
    .isd-intro-section {
        flex-wrap: wrap !important; /* Allows columns to stack on mobile */
        padding: 20px 15px !important;
    }
    .isd-column {
        width: 100% !important; /* Full width on mobile */
        flex: 0 0 100% !important;
    }
    .isd-column:first-child {
        margin-bottom: 20px !important; /* Gap between the stacked columns */
    }
}

/* ====================================================
   Bulletproof News & Media Section Styles
   ==================================================== */

/* Section Title */
h2.isd-section-title, 
h3.isd-section-title,
.isd-section-title {
    color: #004d00 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
}

/* Dynamic WP Post Grid Overrides (Scoped strictly to the grid) */
.isd-dynamic-news .vc_grid-item,
.isd-dynamic-news .wp-block-latest-posts__list li {
    text-align: center; 
}

.isd-dynamic-news img {
    border-radius: 4px; 
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
}

.isd-dynamic-news a,
.isd-dynamic-news .vc_gitem-post-data-title a {
    color: #333333 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    display: inline-block;
}

.isd-dynamic-news a:hover {
    text-decoration: underline !important;
    color: #004d00 !important;
}

/* Resources Container (Safe Flexbox) */
div.isd-resources-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-top: 40px; 
    width: 100%;
}

/* Links List */
div.isd-resource-links {
    flex: 1;
    min-width: 150px;
}

ul.isd-green-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.isd-green-links li {
    position: relative;
    padding-left: 15px !important;
    margin-bottom: 12px !important;
}

ul.isd-green-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #004d00;
    border-radius: 50%;
}

ul.isd-green-links li a {
    color: #004d00 !important; 
    font-size: 13px !important;
    text-decoration: underline !important; 
}

ul.isd-green-links li a:hover {
    color: #333333 !important;
}

/* Magazines Grid */
div.isd-magazines {
    display: flex;
    gap: 15px;
    flex: 1.5;
    min-width: 200px;
}

div.isd-mag-item {
    text-align: center;
    width: 100%;
}

div.isd-mag-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid #e5e5e5; 
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
}

div.isd-mag-item h4 {
    color: #004d00 !important;
    font-size: 10px !important; 
    font-weight: bold !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    letter-spacing: 0.5px;
}

/* Responsive Rules */
@media only screen and (max-width: 992px) {
    div.isd-resources-container {
        flex-direction: column; 
        padding-top: 20px;
    }
    
    div.isd-magazines {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ====================================================
   Our Divisions (Left Column)
   ==================================================== */

/* Reuse the section title from before, just in case */
h3.isd-section-title {
    color: #004d00 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    margin: 0 0 25px 0 !important;
}

/* 4-Column Grid for Icons */
div.isd-divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 15px;
    width: 100%;
}

div.isd-division-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.isd-division-item img {
    max-width: 90px; /* Controls icon size */
    height: auto;
    margin-bottom: 12px;
}

div.isd-division-item span {
    display: block;
    font-size: 11px !important; /* Small text matching Figma */
    color: #333333 !important;
    line-height: 1.3 !important;
}

/* ====================================================
   Leadership & Promo Image (Right Column)
   ==================================================== */

div.isd-leadership-promo {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 30px;
    padding-top: 45px; /* Pushes it down to align with the grid on the left */
    width: 100%;
}

/* Profile Card Area */
div.isd-profile-card {
    text-align: center;
    flex: 1; /* Takes half the space inside the right column */
}

/* Circular Profile Image with Outer Green Ring */
img.isd-profile-img {
    width: 110px !important;
    height: 110px !important;
    
   
    object-fit: cover !important;
    margin: 0 auto 12px auto !important;
    display: block !important;
    background-color: #ffffff; /* Ensures the gap is white */
}

div.isd-profile-card h4.isd-profile-name {
    color: #000000 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: 0 0 4px 0 !important;
}

div.isd-profile-card p.isd-profile-title {
    font-size: 10px !important;
    color: #555555 !important;
    line-height: 1.4 !important;
    margin: 0 0 15px 0 !important;
}

/* Pill-Shaped Button */
a.isd-btn-pill {
    display: inline-block !important;
    background-color: #004d00 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    border-radius: 25px !important; /* Creates the rounded pill shape */
    font-size: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: background-color 0.3s ease;
}

a.isd-btn-pill:hover {
    background-color: #003300 !important;
}

/* Right Side Image (Vans) */
div.isd-promo-image {
    flex: 1.3; /* Gives the image slightly more room than the text */
}

div.isd-promo-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
}

/* ====================================================
   Responsive Adjustments (Mobile & Tablet)
   ==================================================== */
@media only screen and (max-width: 992px) {
    div.isd-divisions-grid {
        grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on mobile */
    }
    
    div.isd-leadership-promo {
        flex-direction: column; /* Stacks profile on top of the vans image */
        padding-top: 20px;
    }
    
    div.isd-promo-image {
        margin-top: 20px;
        width: 100%;
    }
}


/* ====================================================
   Mobile Left-Alignment Overrides
   ==================================================== */
@media only screen and (max-width: 768px) {
    
    /* 1. Left-align the Divisions Icons & Text */
    div.isd-division-item {
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* 2. Left-align the Leadership Profile */
    div.isd-profile-card {
        text-align: left !important;
    }
    
    /* Removes auto-centering from the profile image */
    img.isd-profile-img {
        margin: 0 0 12px 0 !important; 
    }

    /* 3. Left-align the Dynamic News Posts */
    .isd-dynamic-news .vc_grid-item,
    .isd-dynamic-news .wp-block-latest-posts__list li,
    .isd-dynamic-news {
        text-align: left !important;
    }

    /* 4. Left-align the Magazines Grid */
    div.isd-magazines {
        justify-content: flex-start !important;
    }
    
    div.isd-mag-item {
        text-align: left !important;
    }
}
/* ====================================================
   Hide Promo Image (Vans) on Mobile
   ==================================================== */
@media only screen and (max-width: 768px) {
    div.isd-promo-image {
        display: none !important;
    }
}

.entry-title a
{
    font-size:14px !important;
    
    
}
/* ====================================================
   ISD Header Layout (Complete Master CSS)
   ==================================================== */

/* Main Header Bar */
.isd-header {
    background-color: #0A4F25 !important; 
    padding: 12px 0;
    width: 100%;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.isd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 1. Branding (Logo & Title) */
/* 1. Branding (Logo & Title) */
.isd-brand {
    flex: 0 0 auto !important; 
    margin-right: 40px !important; 
}

.isd-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 12px;
}

.isd-logo-img {
    height: 40px; 
    width: auto;
}

.isd-site-title {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap !important; 
}

/* 2. Navigation Menu  */
.isd-desktop-nav {
    display: flex !important;
    align-items: center !important; 
    justify-content: center !important;
    flex: 1 1 auto !important;
}

.isd-nav-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; 
    align-items: center !important; 
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 18px !important; /* Reduced slightly from 25px to ensure it all fits safely */
}

.isd-nav-list li {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.isd-nav-list li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap !important; /* Keeps individual link names like "About ISD" from splitting */
    transition: opacity 0.3s ease;
}

/* 3. Search, Socials & Translation (Nuclear Inline Fix) */
.isd-header-right {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; 
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
    min-width: max-content !important; 
    width: auto !important;
    flex: 0 0 auto !important; 
}

/* Search Bar Override for Existing Theme Form */
.isd-search-bar {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important; 
}

.isd-search-bar form {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.isd-search-bar input[type="search"],
.isd-search-bar input[type="text"] {
    padding: 6px 15px !important;
    border-radius: 20px !important;
    border: none !important;
    outline: none !important;
    font-size: 13px !important;
    width: 160px !important; 
    max-width: 160px !important; 
    color: #333333 !important;
    margin: 0 !important;
    background-color: #ffffff !important;
}

/* Force Socials to stay inline */
.isd-desktop-socials {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
}

.isd-desktop-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.isd-desktop-socials a:hover {
    transform: scale(1.1);
}

.social-fb { background-color: #1877F2; } 
.social-x { background-color: #000000; } 
.social-yt { 
    background-color: transparent !important; 
    color: #FF0000 !important; 
    font-size: 24px !important; 
}

/* GTranslate Switcher Override */
.isd-lang-switch.gtranslate-custom-wrap {
    display: flex !important;
    align-items: center !important;
    margin-left: 10px !important;
    flex: 0 0 auto !important;
}

.gtranslate-custom-wrap select {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    padding: 6px 28px 6px 12px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 12px !important;
    transition: all 0.3s ease;
}

.gtranslate-custom-wrap select:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
}

.gtranslate-custom-wrap select option {
    background-color: #ffffff !important;
    color: #333333 !important;
    font-weight: normal !important;
    padding: 8px !important;
}

/* ====================================================
   Mobile Visibility Toggles
   ==================================================== */
.show-on-mobile {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .show-on-mobile {
        display: block !important;
    }
    
    .isd-header-inner {
        justify-content: space-between;
    }
}
}



/* ====================================================
   Language Switcher Styles
   ==================================================== */

.isd-lang-switch {
    position: relative;
    display: flex !important;
    align-items: center;
    margin-left: 10px !important;
    flex: 0 0 auto !important; /* Prevents squishing */
}

/* The visible button */
.isd-lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white border */
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.isd-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.isd-lang-toggle .isd-chevron {
    font-size: 10px;
}

/* The Dropdown Menu */
.isd-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #ffffff;
    list-style: none;
    padding: 10px 0;
    width: 130px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Show the dropdown on hover */
.isd-lang-switch:hover .isd-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.isd-lang-dropdown li {
    margin: 0;
    padding: 0;
}

.isd-lang-dropdown li a {
    display: block;
    color: #333333 !important;
    padding: 8px 15px;
    font-size: 13px;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.isd-lang-dropdown li a:hover {
    background-color: #f5f5f5;
    color: #004d00 !important; /* Highlights with the brand green */
}

/* ====================================================
   Pop-Out Search Bar (Click to Expand)
   ==================================================== */
.isd-search-bar {
    display: block !important;
    margin: 0 10px 0 0 !important;
    flex: 0 0 auto !important; 
}

.isd-sliding-search {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 20px !important;
    background: transparent !important;
    transition: background-color 0.4s ease !important;
}

/* Turns the background white only when active */
.isd-sliding-search.is-active {
    background-color: #ffffff !important;
}

/* 1. The Input Field (Hidden by default) */
.isd-sliding-search .search-field {
    width: 0 !important; 
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #333333 !important;
    font-size: 13px !important;
    transition: all 0.4s ease !important; /* Smooth sliding */
}

/* 2. The Input Field (When Active) */
.isd-sliding-search.is-active .search-field {
    width: 140px !important; 
    opacity: 1 !important;
    padding: 6px 5px 6px 15px !important;
}

/* 3. The Magnifier Button */
.isd-search-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 16px !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    transition: all 0.4s ease !important;
}

.isd-search-btn:hover {
    transform: scale(1.1);
}

/* 4. Make Icon Green when Active */
.isd-sliding-search.is-active .isd-search-btn {
    color: #004d00 !important; /* ISD Green */
    padding-right: 12px !important;
}

/* Hide default theme submit buttons */
.isd-sliding-search input[type="submit"] {
    display: none !important;
}

/* ====================================================
   Two-Column Link List
   ==================================================== */
.isd-two-column-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Creates two equal columns */
    gap: 12px 10px !important; /* 12px vertical spacing, 20px horizontal spacing */
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.isd-two-column-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.isd-two-column-list li a {
    color: #333 !important; /* Adjust this to #ffffff if placing on a dark background */
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.isd-two-column-list li a:hover {
    color: #004d00 !important; /* ISD Brand Green on hover */
}

/* Mobile Visibility - Drops to 1 column on small screens */
@media only screen and (max-width: 768px) {
    .isd-two-column-list {
        grid-template-columns: 1fr !important; /* Stacks to a single column */
        gap: 15px !important; /* Slightly more vertical breathing room on mobile */
    }
}

/* ====================================================
   Modern Footer (Based on Figma Layout)
   ==================================================== */
.isd-modern-footer {
    background-color: #004d00; /* Deep, premium dark green */
    color: #ffffff;
    font-family: inherit;
    padding: 60px 0 20px; /* Ample top padding like the reference */
}

.isd-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Grid --- */
.isd-footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr; /* Matches the 4 columns, wider right col */
    gap: 30px;
    margin-bottom: 40px;
}

.isd-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.isd-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isd-footer-list li {
    margin-bottom: 12px;
}

.isd-footer-list a {
    color: #b3cbb8; /* Soft light green-grey for unhovered links */
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.isd-footer-list a:hover {
    color: #ffcc00; /* ISD Gold on hover */
}

/* --- Newsletter Column --- */
.isd-newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.isd-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
}

.isd-newsletter-form button {
    background-color: red; /* Muted orange/bronze to match the reference image button */
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.isd-newsletter-form button:hover {
    background-color: red;
}

/* --- Social Icons --- */
.isd-footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.soc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.soc-icon:hover { transform: translateY(-3px); }
.soc-fb { background-color: #3b5998; }
.soc-yt { background-color: #ff0000; }
.soc-ig { background-color: #c13584; }
.soc-x  { background-color: #000000; } /* X Twitter */

/* --- Contact Text --- */
.isd-footer-contact-text p {
    margin: 5px 0;
    font-size: 14px;
    color: #ffffff !important;
}

/* --- Divider --- */
.isd-footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

/* --- Middle Section (Logo, Copyright, Top) --- */
.isd-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.isd-footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.isd-footer-brand img {
    height: 50px;
    width: auto;
}

.isd-brand-text {
    display: flex;
    flex-direction: column;
}

.isd-brand-main {
    font-size: 20px;
    font-weight: 700;
    color: #ffcc00; /* ISD Gold */
    line-height: 1.1;
}

.isd-brand-sub {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.isd-footer-copyright {
    font-size: 14px;
    color: #ffffff;
}

.modern-scrollup {
    background-color: green; /* Purpleish-blue arrow box from reference image */
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.modern-scrollup:hover {
    background-color: #4f46e5;
}

/* --- Bottom Legal Links --- */
.isd-footer-legal {
    text-align: center;
    margin-top: 30px;
}

.isd-footer-legal a {
    color: #557960; /* Darker green-grey text so it doesn't distract */
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
}

.isd-footer-legal a:hover {
    color: #ffffff;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .isd-footer-top-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .isd-footer-top-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .isd-footer-middle {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .isd-footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .isd-footer-legal {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Mobile Responsiveness (Strictly Centered) --- */
@media (max-width: 768px) {
    /* 1. Stack and center the main columns */
    .isd-footer-col {
        flex: 1 1 100% !important; 
        text-align: left !important; 
        margin-bottom: 30px !important;
    }
    
    /* 2. Center the newsletter form */
    .isd-newsletter-form {
        justify-content: left !important;
    }
    
    /* 3. Center the social icons */
    .isd-footer-socials {
        justify-content: left !important;
    }

    /* 4. Center the contact text */
    .isd-footer-contact-text {
        text-align: left !important;
    }
    
    /* 5. Center the logo, copyright, and scroll button */
    .isd-footer-middle {
        flex-direction: column !important;
        text-align: left !important;
        justify-content: left !important;
        align-items: left !important;
        gap: 25px !important;
    }
    
    .isd-footer-brand {
        flex-direction: column !important;
        align-items: left !important;
        text-align: left !important;
    }
}

/* Force all text, paragraphs, and bold tags in the contact section to be white */
.isd-footer-contact-text,
.isd-footer-contact-text p,
.isd-footer-contact-text strong {
    color: #ffffff !important;
    margin: 5px 0 !important;
    font-size: 14px !important;
}

/* ====================================================
   Strict Left Alignment (Desktop & Mobile)
   ==================================================== */

/* 1. Force all text to align left */
.isd-footer-col,
.isd-footer-contact-text,
.isd-footer-title {
    text-align: left !important;
}

/* 2. Push flex elements (Socials, Form, Legal Links) to the left */
.isd-newsletter-form,
.isd-footer-socials,
.isd-footer-legal {
    justify-content: flex-start !important;
}

/* 3. Mobile Stacking (Keep it on the left) */
@media (max-width: 768px) {
    /* Stack the logo, copyright, and button but pin them left */
    .isd-footer-middle {
        flex-direction: column !important;
        align-items: flex-start !important; 
        text-align: left !important;
        gap: 20px !important;
    }
    
    /* Pin the logo image and title to the left */
    .isd-footer-brand {
        align-items: flex-start !important; 
        text-align: left !important;
    }

    /* Ensure columns don't center on small screens */
    .isd-footer-col {
        margin-bottom: 30px !important;
        align-items: flex-start !important;
    }
}

/* ====================================================
   Mobile Padding & Alignment Fix
   ==================================================== */
@media (max-width: 768px) {
    
    /* 1. Adjust the master container padding to match the rest of your site */
    .isd-footer-container {
        padding-left: 80px !important;  /* Change this number if needed to match your main page */
        padding-right: 25px !important; 
    }

    /* 2. Add some breathing room between the stacked columns */
    .isd-footer-col {
        padding-bottom: 15px !important; 
    }
    
    /* 3. Ensure the bottom legal links stack nicely on the left edge */
    .isd-footer-legal {
        padding-top: 15px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    /* Remove the left margin on legal links so they sit flush against the edge */
    .isd-footer-legal a {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Add this to the parent row containing the slider and news */
.isd-top-hero-row {
    display: flex !important;
    align-items: flex-start !important; /* Forces them to align at the top edge */
    gap: 30px !important;
}

/* Ensure the columns don't have rogue top margins */
.isd-top-hero-row .wpb_column {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ====================================================
   Middle Section Fixes (About, Vision, Mission)
   ==================================================== */

/* 1. Improve reading rhythm and legibility */
.isd-about-text p, 
.isd-vision-text p {
    line-height: 1.7 !important;
    font-size: 15px !important;
    color: #444444 !important; /* Softens the black for easier reading */
    margin-bottom: 18px !important;
}

/* 2. Fix the 'Our Mandate' list indentation */
.isd-mandate-list {
    padding-left: 20px !important; /* Standard bullet indent */
    margin-left: 0 !important;
    list-style-position: outside !important;
}

.isd-mandate-list li {
    line-height: 1.6 !important;
    font-size: 15px !important;
    margin-bottom: 12px !important;
    color: #444444 !important;
}

/* 3. Give all green theme buttons consistent breathing room */
.isd-theme-btn,
.wpb_button, 
.vc_btn3 {
    margin-top: 25px !important;
    display: inline-block !important;
}

/* ====================================================
   Bottom Section Fixes (Divisions Grid)
   ==================================================== */

/* 1. Force the 8 icons into a clean 2-column layout */
.isd-divisions-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Two equal columns */
    gap: 25px 15px !important; /* 25px vertical gap, 15px horizontal gap */
    align-items: start !important;
}

/* 2. Style the individual icon blocks */
.isd-division-item {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* 3. Control the icon sizes */
.isd-division-item img,
.isd-division-item i {
    max-width: 80px !important; 
    height: auto !important;
    margin-bottom: 12px !important;
    color: #557960 !important; /* ISD muted green for icons */
}

/* 4. Make the tiny labels readable */
.isd-division-item p,
.isd-division-item span {
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #01230d !important;
    margin: 0 !important;
}

/* ====================================================
   Homepage Mobile Responsiveness (Strict Stacking)
   ==================================================== */
@media (max-width: 768px) {
    /* 1. Stack the Hero Image and Latest News */
    .isd-top-hero-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .isd-top-hero-row .wpb_column {
        width: 100% !important;
    }

    /* 2. Adjust typography for smaller screens */
    .isd-about-text p, 
    .isd-vision-text p,
    .isd-mandate-list li {
        font-size: 15px !important; /* Never go below 15px on mobile */
        line-height: 1.6 !important;
    }

    /* 3. Keep Divisions in a 2-column grid, but shrink the gap */
    .isd-divisions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px 10px !important; 
    }

    /* 4. Center the Leadership Profile on mobile so it anchors the bottom */
    .isd-leadership-profile {
        align-items: center !important;
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .isd-leadership-profile img {
        margin-bottom: 10px !important;
    }
}

/* ====================================================
   Swiper Post Slider (Card Elevation & UX)
   ==================================================== */

/* 1. The Slide Container (The "Card") */
.swiper.gov-slider .swiper-slide {
    background-color: #ffffff !important;
    border-radius: 12px !important; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important; 
    overflow: hidden !important; 
    display: flex !important;
    flex-direction: column !important;
    height: auto !important; /* Let Flexbox control the height */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important; 
    border: 1px solid #f0f0f0 !important; 
    cursor: pointer !important; /* Indicates interactivity */
}

/* 2. The Hover State (The "Lift") */
.swiper.gov-slider .swiper-slide:hover {
    transform: translateY(-8px) !important; 
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12) !important; 
}

/* 3. The Image Constraints (Perfect alignment) */
.swiper.gov-slider .swiper-slide .gov-slide-image img {
    width: 100% !important;
    height: 220px !important; /* Forces every image to be exactly the same height */
    object-fit: cover !important; /* Prevents awkward stretching of different sized photos */
    border-bottom: 3px solid #ffcc00 !important; /* ISD Gold accent line */
    margin: 0 !important;
    display: block !important;
}

/* 4. The Text Content Area (Assuming the text is just below the image) */
.swiper.gov-slider .swiper-slide h3,
.swiper.gov-slider .swiper-slide .post-title {
    font-size: 18px !important;
    line-height: 1.4 !important;
    color: white !important; /* ISD Dark Green */
    font-weight: 700 !important;
    margin: 20px 20px 10px 20px !important; /* Strict internal padding */
}

.swiper.gov-slider .swiper-slide p,
.swiper.gov-slider .swiper-slide .excerpt {
    font-size: 14px !important;
    color: #555555 !important;
    line-height: 1.6 !important;
    margin: 0 20px 20px 20px !important;
}

/* ====================================================
   Slider Overlay Fixes (Accessibility & Spacing)
   ==================================================== */

/* 1. The Protective Scrim & Padding */
.slider-text-container {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    /* This creates the dark fade behind the text */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 60px 30px 25px 30px !important; /* Extra top padding for a smooth fade, standard bottom/side padding */
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    z-index: 2 !important; /* Ensures it sits above the image */
}

/* 2. The Headline (White with depth) */
.slider-title {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6) !important; /* Crisp shadow for legibility */
}

/* 3. The Date (Subdued) */
.slider-date {
    color: rgba(255, 255, 255, 0.8) !important; /* 80% opacity white */
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6) !important;
    margin-bottom: 15px !important; /* Keeps it clear of the pagination dots */
}

/* 4. Pagination Dots Safe Zone */
.swiper-pagination {
    bottom: 15px !important; /* Moves the dots slightly up so they don't clip the bottom edge */
    z-index: 3 !important;
}

/* ====================================================
   Fix Footer Link Alignment (Flush Left)
   ==================================================== */
@media (max-width: 768px) {
    .isd-footer-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
        list-style-position: inside !important;
    }
    
    .isd-footer-list li {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    /* Ensures the social icons and contact text also align to the exact same left edge */
    .isd-footer-socials,
    .isd-footer-contact-text,
    .isd-footer-title {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
}

/* ====================================================
   Fix Mobile Section Gaps (About Us to News)
   ==================================================== */
@media (max-width: 768px) {
    /* 1. Reduce the default massive margins WPBakery puts at the bottom of rows */
    .vc_row, 
    .wpb_row, 
    .wpb_column {
        margin-bottom: 15px !important; 
    }

    /* 2. Hide any accidental empty paragraph tags that create invisible blocks of space */
    .wpb_text_column p:empty,
    .wpb_text_column p:blank {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    
    .isd-news-media-section {  if different */
        margin-top: -15px !important;
    }
}

*/
.isd-footer-list {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.isd-footer-list li {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* ====================================================
   Fix Footer Link Alignment (Flush Left on Desktop)
   ==================================================== */
.isd-footer-list {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.isd-footer-list li {
    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* ====================================================
   About Us Page - Green Top Header (Alignment Fixes)
   ==================================================== */
.isd-about-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    
    /* FIX 1: Removed left padding to snap it to the logo alignment */
    padding: 15px 15px 15px 0 !important; 
    
    box-sizing: border-box !important;
    gap: 30px !important; 
}

/* --- Left Side (Title & Breadcrumbs) --- */
.isd-header-title-box {
    flex: 0 0 auto !important; 
    display: flex !important;
    flex-direction: column !important;
    
    align-items: center !important; 
}

/* FIX 2: Stronger selector to force the yellow/gold color over theme defaults */
h1.isd-page-title,
.isd-header-title-box h1 {
    color: #ffcc00 !important; 
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 8px 0 !important; 
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important; 
}

/* --- Breadcrumbs --- */
.isd-breadcrumbs {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    display: flex !important; 
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important; /* Anchors the links to the middle */
    gap: 6px !important; 
    width: 100% !important;
}

.isd-breadcrumbs a, 
.isd-breadcrumb-sep, 
.isd-breadcrumb-current {
    display: inline-block !important; 
    margin: 0 !important;
}

.isd-breadcrumbs a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.isd-breadcrumbs a:hover {
    color: #ffcc00 !important; 
}

.isd-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6) !important;
}

.isd-breadcrumb-current {
    color: #ffcc00 !important; 
}

/* --- Right Side (Intro Paragraph) --- */
.isd-header-intro-box {
    flex: 1 1 auto !important; 
    max-width: 700px !important; 
}

.isd-header-intro-box p {
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    text-align: left !important;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .isd-about-header {
        flex-direction: column !important;
        align-items: flex-start !important; 
        padding: 15px 10px !important;
        gap: 10px !important;
    }
    
    .isd-header-title-box {
        align-items: flex-start !important; /* Pushes breadcrumbs back to the left on mobile */
    }
    
    h1.isd-page-title {
        font-size: 28px !important;
        text-align: left !important;
        color: yellow;
    }
}

/* --- Mobile Responsiveness (Updated Alignment) --- */
@media (max-width: 768px) {
    .isd-about-header {
        flex-direction: column !important;
        align-items: flex-start !important; 
        /* Reduces left padding to snap it in line with your top logo */
        padding: 20px 10px !important; 
        gap: 10px !important;
        width: 100% !important;
    }
    
    /* 1. Pin Title and Breadcrumbs strictly to the left */
    .isd-header-title-box {
        align-items: flex-start !important; 
        width: 100% !important;
    }
    
    h1.isd-page-title {
        font-size: 28px !important;
        text-align: left !important; 
    }

    .isd-breadcrumbs {
        justify-content: flex-start !important; /* Pushes the links to the left edge */
        width: 100% !important;
    }
    
    /* 2. Force the Paragraph to center below them */
    .isd-header-intro-box {
        width: 100% !important;
    }

    .isd-header-intro-box p {
        font-size: 15px !important;
        text-align: center !important; /* Centers the paragraph text */
        margin: 0 auto !important;
    }
}

/* ====================================================
   About Us Page - Body Layout & Cards
   ==================================================== */

/* 1. The Master Card Layout */
.isd-content-card {
    background-color: #f8f9fa !important; /* Light grey background from your mockup */
    border: 1px solid #eaeaea !important; 
    border-radius: 12px !important;
    padding: 20px 15px !important; 
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important; /* Soft elevation */
}

/* 2. Standardized Headings */
h3.isd-card-title {
    color: #004d00 !important; /* ISD Dark Green */
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* 3. High-Legibility Body Text */
.isd-content-card p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #444444 !important;
    margin-bottom: 20px !important;
}

.isd-content-card p:last-child {
    margin-bottom: 0 !important; /* Prevents awkward spacing at the bottom of the card */
}

/* ====================================================
   Custom "Our Functions" List
   ==================================================== */
.isd-functions-wrapper {
    margin-bottom: 30px !important;
}

.isd-functions-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* The List Item Card */
.isd-functions-list li {
    position: relative !important;
    background-color: #ffffff !important;
    padding: 16px 20px 16px 45px !important; /* 45px left padding makes room for the arrow */
    margin-bottom: 12px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important; /* Subtle pop off the page */
    
    /* The Unified Brand Borders */
    border-top: 1px solid #eaeaea !important;
    border-bottom: 1px solid #eaeaea !important;
    border-left: 1px solid #eaeaea !important;
    border-right: 4px solid #ffcc00 !important; /* The thick right border in ISD Gold */
    
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Hover Effect for Interactivity */
.isd-functions-list li:hover {
    transform: translateX(4px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* The CSS Triangle (Arrow/Chevron on the left) */
.isd-functions-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-left: 8px solid #004d00 !important; /* The triangle pointing right in ISD Green */
}

/* Mobile Constraints */
@media (max-width: 768px) {
    .isd-content-card {
        padding: 25px 20px !important;
    }
}

/* ====================================================
   "Our Functions" List - Exact Figma Colors
   ==================================================== */

/* 1st Item: Burgundy / Deep Purple */
.isd-functions-list li:nth-child(1) { border-right-color: #6a1b41 !important; }
.isd-functions-list li:nth-child(1)::before { border-left-color: #6a1b41 !important; }

/* 2nd Item: Blue */
.isd-functions-list li:nth-child(2) { border-right-color: #0072ce !important; }
.isd-functions-list li:nth-child(2)::before { border-left-color: #0072ce !important; }

/* 3rd Item: Bronze / Dark Gold */
.isd-functions-list li:nth-child(3) { border-right-color: #98752c !important; }
.isd-functions-list li:nth-child(3)::before { border-left-color: #98752c !important; }

/* 4th Item: Orange */
.isd-functions-list li:nth-child(4) { border-right-color: #f37021 !important; }
.isd-functions-list li:nth-child(4)::before { border-left-color: #f37021 !important; }

/* 5th Item: Pink / Magenta */
.isd-functions-list li:nth-child(5) { border-right-color: #e31c79 !important; }
.isd-functions-list li:nth-child(5)::before { border-left-color: #e31c79 !important; }

/* 6th Item: Teal / Mint Green */
.isd-functions-list li:nth-child(6) { border-right-color: #009ca6 !important; }
.isd-functions-list li:nth-child(6)::before { border-left-color: #009ca6 !important; }


/* ====================================================
   Profile & Leadership Section 
   ==================================================== */

/* 1. Profile Standard List */
.isd-standard-list {
    padding-left: 20px !important;
    margin-bottom: 25px !important;
    list-style-type: disc !important;
}

.isd-standard-list li {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin-bottom: 8px !important;
}

/* 2. Leadership 3-Column Gallery Grid */
.isd-leadership-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 equal columns */
    gap: 12px !important; /* Tight spacing between photos */
    margin-bottom: 25px !important;
    margin-top: 20px !important;
    align-items: center !important;
}

.isd-leadership-gallery img {
    width: 100% !important;
    height: 90px !important; /* Forces all images to a uniform height */
    object-fit: cover !important; /* Prevents stretching */
    border-radius: 4px !important; /* Very slight rounding */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    display: block !important;
}

/* 3. Embedded Gallery Text */
.gallery-text {
    padding: 5px !important;
}

.gallery-text p {
    font-size: 11px !important;
    color: #004d00 !important; /* ISD Dark Green */
    line-height: 1.4 !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 !important;
}

/* 4. Custom Button Styling */
.isd-theme-btn {
    display: inline-block !important;
    background-color: #004d00 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.isd-theme-btn:hover {
    background-color: #ffcc00 !important; /* Flips to Gold on hover */
    color: #004d00 !important;
    transform: translateY(-2px) !important; /* Slight lift effect */
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .isd-leadership-gallery {
        grid-template-columns: repeat(2, 1fr) !important; /* Drops to 2 columns on phones */
    }
    
    .gallery-text p {
        font-size: 12px !important;
    }
}


.isd-division-hero {
    padding: 0px 0px 0px 0px !important;
    
}

/* ====================================================
   Division Pages Template UI
   ==================================================== */

/* 1. Division Overview Flexbox Layout */
.isd-division-overview {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
}

/* 2. Profile Photo Column */
.isd-division-profile {
    flex: 0 0 280px !important; /* Strict 280px width */
    background-color: #e6e9ea !important; /* Soft grey background */
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

.isd-division-profile img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 3. Dark Overlay Caption */
.isd-profile-caption {
    background-color: #1a1a1a !important; /* Almost black */
    color: #ffffff !important;
    padding: 15px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.isd-profile-caption strong {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.isd-profile-caption span {
    font-size: 11px !important;
    color: #cccccc !important;
}

/* 4. Right Content Column */
.isd-division-details {
    flex: 1 1 auto !important;
}

/* 5. Sub-Titles (e.g., "Key Responsibilities") */
h4.isd-sub-title {
    color: #004d00 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
}

/* ====================================================
   Division Template - Mobile Fixes (Overlaps & Edges)
   ==================================================== */
@media (max-width: 768px) {
    
    /* 1. Force the Profile Image Column to behave and clear space */
    .isd-division-profile {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px !important; /* Pushes the text safely down */
        display: block !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    /* 2. Lock the Image and Caption together securely */
    .isd-division-profile img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .isd-profile-caption {
        position: relative !important; 
        width: 100% !important;
        box-sizing: border-box !important;
        z-index: 2 !important; /* Forces it to sit strictly above the image background */
    }

    /* 3. Restore and Shrink the Colored Edge for Mobile */
    .wpb_column.isd-has-edge > .vc_column-inner {
        padding-right: 20px !important; /* Strict safe zone for text */
    }
    
    .isd-color-edge {
        display: flex !important; /* Brings the tabs back */
        width: 4px !important; /* Made thinner (4px instead of 6px) for phone screens */
        top: 15px !important;
        bottom: 15px !important;
    }

    /* 4. Fix Button Spacing */
    .isd-theme-btn {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        display: inline-block !important;
        width: 100% !important; /* Makes the button full-width on mobile for easy tapping */
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

/* ====================================================
   Division Card - Decorative Right Edge (Column Fix)
   ==================================================== */

/* 1. Make the WPBakery column the anchor */
.wpb_column.isd-has-edge > .vc_column-inner {
    position: relative !important; 
    padding-right: 40px !important; /* Safe zone so text doesn't touch the tabs */
}

/* 2. Position the edge strictly inside that column */
.isd-color-edge {
    position: absolute !important;
    right: 0 !important;
    top: 20px !important; /* Slight gap from the top of the column */
    bottom: 20px !important; /* Slight gap from the bottom of the column */
    width: 6px !important; /* Thickness */
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important; /* Gap between colors */
    z-index: 10 !important; /* Forces it to sit on top of everything */
}

/* 3. Style the tabs */
.isd-color-edge span {
    flex: 1 !important; 
    width: 100% !important;
    border-radius: 4px 0 0 4px !important; 
}

/* 4. The Figma Colors */
.isd-color-edge span:nth-child(1) { background-color: #6a1b41 !important; } 
.isd-color-edge span:nth-child(2) { background-color: #0072ce !important; } 
.isd-color-edge span:nth-child(3) { background-color: #98752c !important; } 
.isd-color-edge span:nth-child(4) { background-color: #f37021 !important; } 
.isd-color-edge span:nth-child(5) { background-color: #e31c79 !important; } 
.isd-color-edge span:nth-child(6) { background-color: #009ca6 !important; } 
.isd-color-edge span:nth-child(7) { background-color: #ffcc00 !important; } 
.isd-color-edge span:nth-child(8) { background-color: #004d00 !important; } 

/* 5. Hide on Mobile */
@media (max-width: 768px) {
    .wpb_column.isd-has-edge > .vc_column-inner {
        padding-right: 15px !important; 
    }
    .isd-color-edge {
        display: none !important; 
    }
}

/* ====================================================
   Homepage - Division Icons Resizing
   ==================================================== */
.isd-division-item {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.isd-division-item img {
    width: 100% !important;
    max-width: 150px !important; /* Increase this number if you want them even larger */
    height: auto !important;
    object-fit: contain !important; /* Prevents stretching */
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important; /* Smooth hover effect preparation */
}

/* Optional: Slight pop effect on hover to show interactivity */
.isd-division-item img:hover {
    transform: scale(1.05) !important;
}

/* Mobile Restraint */
@media (max-width: 768px) {
    .isd-division-item img {
        max-width: 140px !important; /* Keeps them neat when stacked in a 2-column mobile grid */
    }
}

/* Add the subtle shadow and rounded corners to the WPBakery columns */
.ati-card-column > .vc_column-inner {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%; /* Forces the inner column to stretch */
}

/* Force WPBakery's internal wrapper to use Flexbox */
.ati-card-column .wpb_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make the Post Carousel and Gallery widgets grow to fill the empty space */
.ati-card-column .wpb_wrapper > .wpb_content_element,
.ati-card-column .wpb_wrapper > .vc_carousel {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- ISD Search Layout Fixes --- */
.peelart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.isd-search-header {
    text-align: center;
    margin-bottom: 40px;
}

.isd-search-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.highlight-term {
    color: #006B3F;
    font-weight: bold;
}

/* --- Layout Grid --- */
.isd-search-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.isd-search-main {
    flex: 1 1 65%; /* Takes up roughly 2/3 of the page */
    min-width: 0;
}

.isd-search-sidebar {
    flex: 1 1 300px; /* Sidebar stays around 300px wide */
}

/* --- Search Box Styling --- */
.isd-search-box-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #006B3F;
    margin-bottom: 30px;
}

.isd-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.isd-search-input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.isd-search-btn {
    background: #006B3F;
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
}

/* --- Filters --- */
.isd-filter-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.isd-select, .isd-btn-filter {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: white;
}

.isd-btn-filter {
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}

/* --- Results Grid (Equal Height Cards) --- */
.isd-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.isd-search-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}

.isd-search-card:hover {
    transform: translateY(-5px);
}

.isd-search-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.isd-search-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.isd-search-post-title {
    font-size: 1.2rem;
    margin: 10px 0;
}

.isd-search-post-title a {
    color: #333;
    text-decoration: none;
}

.isd-search-post-title a:hover {
    color: #006B3F;
}

/* --- Badges --- */
.isd-badge {
    background: #E8F5E9;
    color: #006B3F;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
}

/* --- Sidebar Widgets --- */
.isd-card-widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    margin-bottom: 25px;
}

.isd-widget-title {
    font-size: 1.2rem;
    border-bottom: 2px solid #006B3F;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.isd-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isd-widget-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.isd-widget-list a {
    color: #555;
    text-decoration: none;
}

.isd-widget-list a:hover {
    color: #006B3F;
}


/* =========================================================
   ISD Divisions Page – Beautiful Layout
   ========================================================= */

:root {
  --isd-green: #0B6B3A;
  --isd-green-hover: #085530;
  --isd-green-light: #E8F5EE;
  --isd-green-soft: #D1FAE5;
  --isd-bg: #F7F9F8;
  --isd-card: #FFFFFF;
  --isd-text: #1A1A1A;
  --isd-text-secondary: #5A5A5A;
  --isd-border: #E2E8E4;
  --isd-radius: 14px;
  --isd-shadow: 0 4px 20px rgba(11, 107, 58, 0.07);
  --isd-shadow-hover: 0 12px 32px rgba(11, 107, 58, 0.13);
}

.isd-divisions-page {
  background: var(--isd-bg);
  padding: 40px 0 80px;
}

.isd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Page Header ---------- */
.isd-page-header {
  margin-bottom: 48px;
  max-width: 780px;
}

.isd-breadcrumb {
  font-size: 0.9rem;
  color: var(--isd-text-secondary);
  margin-bottom: 16px;
}

.isd-breadcrumb a {
  color: var(--isd-green);
  text-decoration: none;
  font-weight: 500;
}

.isd-breadcrumb a:hover {
  text-decoration: underline;
}

.isd-breadcrumb .separator {
  margin: 0 8px;
  opacity: 0.6;
}

.isd-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--isd-green);
  margin: 0 0 16px;
  line-height: 1.2;
}

.isd-page-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--isd-text-secondary);
  margin: 0;
}

/* ---------- Divisions Grid ---------- */
.isd-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

/* ---------- Division Card ---------- */
.isd-division-card {
  background: var(--isd-card);
  border-radius: var(--isd-radius);
  box-shadow: var(--isd-shadow);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
  height: 100%;
}

.isd-division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--isd-shadow-hover);
  border-color: var(--isd-green-soft);
}

.isd-card-icon {
  width: 52px;
  height: 52px;
  background: var(--isd-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--isd-green);
  transition: background 0.25s, color 0.25s;
}

.isd-division-card:hover .isd-card-icon {
  background: var(--isd-green);
  color: #fff;
}

.isd-card-icon svg {
  width: 26px;
  height: 26px;
}

.isd-card-body {
  flex: 1;
}

.isd-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.isd-card-title {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--isd-text);
  margin: 0;
  line-height: 1.35;
}

.isd-abbr {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--isd-green);
  background: var(--isd-green-light);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.isd-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--isd-text-secondary);
  margin: 0 0 20px;
}

.isd-card-footer {
  margin-top: auto;
  padding-top: 8px;
}

.isd-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--isd-green);
  text-decoration: none;
  transition: gap 0.2s;
}

.isd-learn-more:hover {
  gap: 12px;
}

.isd-learn-more svg {
  transition: transform 0.2s;
}

.isd-learn-more:hover svg {
  transform: translateX(3px);
}

/* ---------- Network Strip ---------- */
.isd-network-strip {
  background: var(--isd-card);
  border-radius: var(--isd-radius);
  box-shadow: var(--isd-shadow);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  border-left: 5px solid var(--isd-green);
}

.isd-network-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--isd-green);
  margin: 0 0 10px;
}

.isd-network-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--isd-text-secondary);
  margin: 0;
  max-width: 620px;
}

.isd-network-content strong {
  color: var(--isd-text);
}

/* ---------- CTA Banner ---------- */
.isd-cta-banner {
  background: linear-gradient(135deg, var(--isd-green) 0%, #0a5c32 100%);
  border-radius: var(--isd-radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
}

.isd-cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.isd-cta-content p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.isd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.isd-btn-outline {
  background: transparent;
  color: var(--isd-green);
  border: 2px solid var(--isd-green);
}

.isd-btn-outline:hover {
  background: var(--isd-green);
  color: #fff;
}

.isd-btn-solid {
  background: #fff;
  color: var(--isd-green);
  border: 2px solid #fff;
}

.isd-btn-solid:hover {
  background: var(--isd-green-soft);
  border-color: var(--isd-green-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .isd-divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .isd-page-title {
    font-size: 2rem;
  }

  .isd-divisions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .isd-network-strip,
  .isd-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .isd-network-action,
  .isd-cta-banner .isd-btn {
    width: 100%;
  }

  .isd-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .isd-page-title {
    font-size: 1.75rem;
  }

  .isd-page-lead {
    font-size: 1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .isd-division-card,
  .isd-learn

/* ==========================================================================
   ISD "Our Leadership" Page Styles (Matching Design Tokens)
   ========================================================================== */

:root {
    --isd-green: #0B6B3A;
    --isd-green-hover: #085530;
    --isd-green-tint: #E8F5EE;
    --isd-green-tint-deep: #D1FAE5;
    --isd-text-dark: #1F2937;
    --isd-text-muted: #4B5563;
    --isd-border: #E5E7EB;
    --isd-bg-light: #F9FAFB;
    --isd-shadow: 0 4px 20px rgba(11, 107, 58, 0.07);
}

.isd-page-wrapper {
    background-color: var(--isd-bg-light);
    padding: 40px 0 80px 0;
    font-family: inherit;
}

/* --- Header --- */
.isd-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.isd-breadcrumb {
    font-size: 0.875rem;
    color: var(--isd-text-muted);
    margin-bottom: 16px;
}

.isd-breadcrumb a {
    color: var(--isd-green);
    text-decoration: none;
}

.isd-page-title {
    font-size: 2.75rem;
    color: var(--isd-text-dark);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.isd-page-lead {
    font-size: 1.125rem;
    color: var(--isd-text-muted);
    line-height: 1.7;
}

/* --- Director Feature Hero Card --- */
.isd-director-section {
    margin-bottom: 60px;
}

.isd-director-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--isd-shadow);
    border: 1px solid var(--isd-border);
    border-left: 6px solid var(--isd-green);
    display: flex;
    gap: 40px;
    align-items: center;
}

.isd-director-avatar-box {
    flex-shrink: 0;
}

.isd-avatar-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--isd-green-tint);
    color: var(--isd-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    border: 4px solid var(--isd-green-tint-deep);
}

.isd-director-info {
    flex-grow: 1;
}

.isd-director-name {
    font-size: 2rem;
    color: var(--isd-text-dark);
    font-weight: 700;
    margin: 8px 0 4px 0;
}

.isd-director-title {
    font-size: 1.125rem;
    color: var(--isd-green);
    font-weight: 600;
    margin-bottom: 16px;
}

.isd-director-bio {
    color: var(--isd-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* --- Section Titles --- */
.isd-section-header {
    margin-bottom: 30px;
}

.isd-section-heading {
    font-size: 1.85rem;
    color: var(--isd-text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.isd-section-sub {
    color: var(--isd-text-muted);
    font-size: 1rem;
}

.isd-leadership-section {
    margin-bottom: 60px;
}

/* --- Leadership Grids --- */
.isd-leadership-grid {
    display: grid;
    gap: 24px;
}

.isd-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.isd-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Leader Cards (Equal Height) --- */
.isd-leader-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--isd-shadow);
    border: 1px solid var(--isd-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.isd-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(11, 107, 58, 0.12);
}

.isd-leader-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.isd-leader-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--isd-green-tint);
    color: var(--isd-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.small-avatar {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.isd-leader-content {
    flex-grow: 1;
    margin-bottom: 16px;
}

.isd-leader-name {
    font-size: 1.2rem;
    color: var(--isd-text-dark);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.isd-leader-role {
    color: var(--isd-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.isd-leader-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--isd-border);
}

.isd-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--isd-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.2s ease;
}

.isd-learn-more:hover {
    gap: 10px;
    color: var(--isd-green-hover);
}

/* --- Badges & Buttons --- */
.isd-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.isd-badge-post { background: var(--isd-green-tint); color: var(--isd-green); }
.isd-badge-publication { background: #FEF3C7; color: #B78700; }

.isd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.isd-btn-solid { background-color: var(--isd-green); color: #ffffff; }
.isd-btn-solid:hover { background-color: var(--isd-green-hover); color: #ffffff; transform: translateY(-2px); }
.isd-btn-outline { border: 2px solid var(--isd-green); color: var(--isd-green); background: transparent; }
.isd-btn-outline:hover { background-color: var(--isd-green); color: #ffffff; }

/* --- National Network Strip --- */
.isd-network-strip {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--isd-shadow);
    border: 1px solid var(--isd-border);
    border-left: 8px solid var(--isd-green);
}

.isd-network-content h2 {
    font-size: 1.5rem;
    color: var(--isd-text-dark);
    margin-bottom: 8px;
}

.isd-network-content p {
    color: var(--isd-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .isd-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .isd-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .isd-director-card { flex-direction: column; text-align: center; padding: 30px 20px; }
    .isd-director-actions { display: flex; justify-content: center; }
    .isd-grid-3, .isd-grid-4 { grid-template-columns: 1fr; }
    .isd-network-strip { flex-direction: column; text-align: center; padding: 30px 20px; }
    .isd-page-title { font-size: 2.25rem; }
}




.prcd-newletter img {
  /* Default desktop styling (optional, adjust as needed) */
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
  loading: lazy;
  border-radius: 4px;
}

/* Mobile styling: Forces exact 200px by 200px square */
@media (max-width: 768px) {
  .prcd-newletter img {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px;
    max-width: 200px;
    object-fit: cover; /* Ensures images crop nicely into the square without distorting */
    margin: 0 auto;    /* Centers the image if inside a flex/block container */
  }
}


/* =========================================
   BASE STYLES & VARIABLES
   ========================================= */
:root {
    --isd-green: #0a4f25 !important; 
    --text-dark: #333333 !important;
    --bg-light: #f9f9fa !important;
    --font-main: 'Arial', sans-serif !important; 
}

body {
    font-family: var(--font-main) !important;
    color: var(--text-dark) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}

.isd-homepage-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

h1, h2, h3, h4 {
    text-transform: uppercase !important;
    color: var(--text-dark) !important;
    font-weight: bold !important;
}

.btn-primary {
    display: inline-block !important;
    background-color: var(--isd-green) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    margin-top: 15px !important;
}

.btn-primary:hover {
    background-color: #073b1b !important;
}

/* =========================================
   HEADER STYLES
   ========================================= */
.main-header {
    background-color: var(--isd-green) !important;
    padding: 10px 0 !important;
    color: #fff !important;
    position: relative !important; 
}

.header-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important; 
}

/* Left Section */
.header-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.header-logo img {
    height: 40px !important;
    width: auto !important;
}

.logo-text {
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

/* Center Section */
.header-nav ul {
    list-style: none !important;
    display: flex !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-nav a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: bold !important;
}

.header-nav a:hover {
    color: #ffcc00 !important;
}

/* Right Section */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.search-icon {
    font-size: 1.2rem !important;
    cursor: pointer !important;
    margin-right: 5px !important;
}

.social-circle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.fb-circle { background-color: #1877F2 !important; }
.x-circle { background-color: #000000 !important; }
.yt-circle { color: white !important; background: transparent !important; font-size: 1.2rem !important; }

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin-left: 10px !important;
}

/* =========================================
   SECTION 1: HERO & LATEST NEWS
   ========================================= */
.hero-section {
    display: flex !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.hero-image-wrapper {
    flex: 2 !important;
    position: relative !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.hero-image-wrapper img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.hero-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 15px !important;
}

.hero-overlay h1 {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 1.5rem !important;
}

.latest-news-widget {
    flex: 1 !important;
    border: 1px solid #e0e0e0 !important;
    padding: 20px !important;
    background: #ffffff !important;
}

.latest-news-widget .widget-header {
    background-color: #999 !important; 
    display: inline-block !important;
    padding: 5px 15px !important;
    margin-bottom: 20px !important;
}

.latest-news-widget h2 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

.news-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.news-list li {
    margin-bottom: 15px !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 10px !important;
}

.news-list a {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: bold !important;
    display: block !important;
}

.news-date {
    font-size: 0.8rem !important;
    color: #666 !important;
}

/* =========================================
   SECTION 2: ABOUT, MANDATE, VISION
   ========================================= */
.about-mandate-section {
    display: flex !important;
    gap: 50px !important;
    background-color: var(--bg-light) !important;
    padding: 40px !important;
    margin-top: 40px !important;
}

.column-left, .column-right {
    flex: 1 !important;
}

.mandate-list {
    list-style-type: disc !important;
    margin-left: 20px !important;
}

/* =========================================
   SECTION 3: DIVISIONS
   ========================================= */
.divisions-leadership-section {
    display: flex !important;
    gap: 30px !important;
    margin-top: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid #ddd !important;
}

.divisions-grid-container {
    flex: 2 !important;
}

.divisions-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    text-align: center !important;
}

.division-item img {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 10px !important;
}

.division-item span {
    display: block !important;
    font-size: 0.85rem !important;
}

.director-profile {
    flex: 1 !important;
    text-align: center !important;
}

.director-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--isd-green) !important;
}

.multimedia-highlight {
    flex: 1 !important;
}

.multimedia-highlight img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

/* =========================================
   SECTION 4: NEWS & USEFUL LINKS
   ========================================= */
.media-links-section {
    display: flex !important;
    gap: 40px !important;
    margin-top: 40px !important;
    margin-bottom: 60px !important;
}

.news-media-feature {
    flex: 1 !important;
}

.featured-media-card {
    background: #000 !important;
    color: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.featured-media-card img {
    width: 100% !important;
    display: block !important;
}

.featured-content {
    padding: 20px !important;
}

.featured-content a {
    color: #fff !important;
    text-decoration: none !important;
}

.useful-links {
    flex: 2 !important;
    border: 1px solid #ddd !important;
    padding: 30px !important;
}

.links-grid {
    display: flex !important;
    gap: 40px !important;
}

.links-grid ul {
    list-style-type: none !important;
    padding: 0 !important;
    flex: 1 !important;
}

.links-grid li {
    margin-bottom: 10px !important;
}

.links-grid a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.links-grid a:hover {
    color: var(--isd-green) !important;
    text-decoration: underline !important;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.main-footer {
    background-color: var(--isd-green) !important;
    color: #fff !important;
    padding: 50px 0 20px 0 !important;
    margin-top: 40px !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-top {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-bottom: 30px !important;
    margin-bottom: 20px !important;
}

.footer-col h4 {
    color: #ffcc00 !important; 
    text-transform: none !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col li {
    margin-bottom: 12px !important;
}

.footer-col a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.footer-col a:hover {
    text-decoration: underline !important;
}

.footer-social-boxes {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.social-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 4px !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
}

.fb-box { background-color: #6a82b8 !important; }
.x-box { background-color: #000 !important; }
.yt-box { background-color: #ff0000 !important; }
.ig-box { background-color: #c13584 !important; }

.contact-details p {
    margin: 10px 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.footer-bottom-logo {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.footer-bottom-logo img {
    height: 50px !important;
}

.footer-brand-text {
    display: flex !important;
    flex-direction: column !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

.yellow-text {
    color: #ffcc00 !important;
}

.footer-copyright {
    font-size: 0.9rem !important;
}

.scroll-to-top {
    background-color: #28a745 !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */

/* TABLET & SMALL DESKTOP (Screens 900px and below) */
@media (max-width: 900px) {
    /* Stack horizontal flexbox layouts vertically */
    .hero-section,
    .about-mandate-section,
    .divisions-leadership-section,
    .media-links-section {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-mandate-section {
        padding: 20px !important;
    }

    /* Change 4-column division grid to 2 columns */
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Header Mobile Menu Adjustments */
    .mobile-menu-toggle {
        display: block !important; 
    }

    .header-nav {
        display: none !important; 
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: var(--isd-green) !important;
        padding: 20px 0 !important;
        z-index: 1000 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2) !important;
    }

    .header-nav.active {
        display: block !important; 
    }

    .header-nav ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .header-nav a {
        font-size: 1.1rem !important;
    }

    /* Footer Adjustments */
    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important; 
    }
}

/* MOBILE PHONES (Screens 600px and below) */
@media (max-width: 600px) {
    /* General Layout Adjustments */
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Forces divisions to stay 2 columns on mobile */
        gap: 10px !important;
    }
    
    .links-grid {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-overlay h1 {
        font-size: 1.2rem !important;
    }

    .director-img {
        width: 100px !important;
        height: 100px !important;
    }

    /* Header Adjustments */
    .logo-text {
        display: none !important; 
    }

    .header-right {
        gap: 8px !important; 
    }

    /* Footer Adjustments */
    .footer-top {
        grid-template-columns: 1fr !important; 
        text-align: center !important;
    }

    .footer-social-boxes {
        justify-content: center !important; 
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-bottom-logo {
        flex-direction: column !important;
    }
}

/* =========================================
   ABOUT ISD PAGE STYLES
   ========================================= */

/* Banner Section */
.page-banner {
    background-color: var(--isd-green) !important;
    color: #ffffff !important;
    padding: 40px 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-banner-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 40px !important;
}

.banner-title {
    flex: 1 !important;
}

.banner-title h1 {
    color: #ffcc00 !important;
    margin: 0 0 10px 0 !important;
    font-size: 2rem !important;
}

.breadcrumbs {
    font-size: 0.9rem !important;
    font-weight: bold !important;
}

.breadcrumbs a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.breadcrumbs a:hover {
    color: #ffcc00 !important;
}

.breadcrumbs span {
    color: #ffcc00 !important;
}

.banner-description {
    flex: 2 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

/* Two-Column Layout */
/* =========================================
   TWO-COLUMN LAYOUT (FORCED)
   ========================================= */
.about-content-wrapper {
    display: flex !important;
    flex-direction: row !important; /* Strictly forces side-by-side */
    flex-wrap: nowrap !important; /* Prevents them from dropping to the next line */
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

.about-col-left,
.about-col-right {
    flex: 1 1 50% !important; /* Strictly forces each column to take exactly half the space */
    width: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

/* Cards */
.about-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    padding: 30px !important;
    border-radius: 4px !important;
}

.about-card h3 {
    color: var(--isd-green) !important;
    margin-top: 0 !important;
    border-bottom: 2px solid var(--bg-light) !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
}

.about-card p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
}

/* Profile List */
.profile-list {
    margin-left: 20px !important;
    font-size: 0.95rem !important;
    font-weight: bold !important;
    color: var(--text-dark) !important;
}

.profile-list li {
    margin-bottom: 8px !important;
}

/* Functions List with Colored Borders */
.functions-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.functions-list li {
    border: 1px solid #e0e0e0 !important;
    padding: 15px !important;
    font-size: 0.9rem !important;
    background: #fafafa !important;
}

/* Right-side colored borders mimicking the mockup */
.border-green  { border-right: 5px solid #28a745 !important; }
.border-blue   { border-right: 5px solid #007bff !important; }
.border-brown  { border-right: 5px solid #8b4513 !important; }
.border-orange { border-right: 5px solid #fd7e14 !important; }
.border-red    { border-right: 5px solid #dc3545 !important; }
.border-teal   { border-right: 5px solid #20c997 !important; }

/* Leadership Gallery Grid */
.leadership-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.leadership-gallery img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
}

/* (Inside your existing max-width: 900px query) */
@media (max-width: 900px) {
    /* Stack the About Banner text vertically */
    .page-banner-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Stack the left and right About columns vertically */
    .about-content-wrapper {
        flex-direction: column !important;
    }
}
    
/* =========================================
   INTERNAL PAGES GENERAL STYLES
   ========================================= */
.internal-content-wrapper {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

/* MEDIA PAGE */
.media-grid {
    display: flex !important;
    gap: 40px !important;
}
.news-column { flex: 2 !important; }
.sidebar-column { flex: 1 !important; }
.news-article-card {
    display: flex !important;
    gap: 20px !important;
    border: 1px solid #ddd !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    border-radius: 4px !important;
}
.news-article-card img {
    width: 200px !important;
    height: 150px !important;
    object-fit: cover !important;
}
.sidebar-widget {
    background: #f9f9fa !important;
    padding: 20px !important;
    border: 1px solid #ddd !important;
    margin-bottom: 30px !important;
}
.sidebar-widget h3 { margin-top: 0 !important; color: var(--isd-green) !important; border-bottom: 2px solid #ddd !important; padding-bottom: 10px !important; }
.newsletter-list, .press-list { list-style: none !important; padding: 0 !important; }
.newsletter-list li, .press-list li { margin-bottom: 15px !important; }
.newsletter-list a, .press-list a { text-decoration: none !important; color: var(--text-dark) !important; font-weight: bold !important; }

/* DIVISIONS PAGE */
.divisions-page-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}
.division-card {
    border: 1px solid #ddd !important;
    padding: 30px !important;
    border-radius: 4px !important;
    text-align: center !important;
    background: #fafafa !important;
}
.division-icon {
    font-size: 2.5rem !important;
    color: var(--isd-green) !important;
    margin-bottom: 15px !important;
}

/* MINISTERS PAGE */
.ministers-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}
.minister-profile-card {
    display: flex !important;
    gap: 30px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 30px !important;
    border-radius: 4px !important;
    align-items: center !important;
}
.minister-profile-card img {
    width: 250px !important;
    height: 300px !important;
    object-fit: cover !important;
    border: 3px solid var(--isd-green) !important;
}
.minister-title {
    color: #fd7e14 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    display: block !important;
    margin-bottom: 15px !important;
}

/* CONTACT PAGE */
.contact-layout {
    display: flex !important;
    gap: 40px !important;
}
.contact-form-section { flex: 2 !important; }
.contact-info-section { flex: 1 !important; }
.isd-form .form-group { margin-bottom: 20px !important; }
.isd-form label { display: block !important; font-weight: bold !important; margin-bottom: 8px !important; }
.isd-form input, .isd-form select, .isd-form textarea {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-family: var(--font-main) !important;
}
.contact-card {
    background: var(--isd-green) !important;
    color: #fff !important;
    padding: 30px !important;
    border-radius: 4px !important;
    margin-bottom: 20px !important;
}
.contact-card h3 { color: #ffcc00 !important; margin-top: 0 !important; }

/* INTERNAL PAGES RESPONSIVENESS */
@media (max-width: 900px) {
    .media-grid, .contact-layout, .minister-profile-card { flex-direction: column !important; }
    .divisions-page-grid { grid-template-columns: 1fr !important; }
    .news-article-card { flex-direction: column !important; }
    .news-article-card img { width: 100% !important; height: 200px !important; }
    .minister-profile-card img { width: 100% !important; height: auto !important; }
}

/* =========================================
   ABOUT PAGE RESPONSIVENESS
   ========================================= */

/* TABLET & SMALL DESKTOP (Screens 900px and below) */
@media (max-width: 900px) {
    /* Stack the Banner text vertically */
    .page-banner-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Override the forced 2-column desktop layout to stack vertically */
    .about-content-wrapper {
        flex-direction: column !important;
    }

    /* Reset the column widths to take full width on smaller screens */
    .about-col-left,
    .about-col-right {
        width: 100% !important;
        flex: none !important; 
    }
}

/* MOBILE PHONES (Screens 600px and below) */
@media (max-width: 600px) {
    /* Adjust banner font size to prevent overlapping on small screens */
    .banner-title h1 {
        font-size: 1.5rem !important;
    }

    /* Reduce padding inside the cards to save screen space */
    .about-card {
        padding: 20px !important;
    }

    /* Change leadership gallery from 3 images across to 2 images across */
    .leadership-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

