/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/
/* General Flip Box Container */
/* Hide by default (desktop and tablet) */
#mainMenu nav > ul > li .dropdown-menu > li > a, #mainMenu nav > ul > li .dropdown-menu > li > span, #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300!important;
    font-style: normal;
    color: #000;
    font-family: "Inter", sans-serif;
    padding: 12px 20px 12px 18px;
    display: block;
    letter-spacing: 0.8px;
}
.dip-chart {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: flex-start;
}

.dip-block {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  width: 160px;
  text-align: center;
  background: #f9f9f9;
}

.dip-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.dip-switches {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.switch {
  width: 20px;
  height: 30px;
  border: 2px solid #999;
  border-radius: 3px;
}

.switch {
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.switch:hover {
  transform: scale(1.15);
}

.dip-block {
  transition: all 0.3s ease;
}

.dip-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.switch.on {
  background-color: #fff;
}

.switch.off {
  background-color: #333;
}

.dip-legend {
  font-size: 14px;
  margin-bottom: 20px;
}

.switch-box {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

.switch-box.on {
  background-color: #fff;
}

.switch-box.off {
  background-color: #333;
}

.show-on-mobile-only {
  display: none;
}
#mainMenu nav > ul > li > a {
	padding:0px 8px 0px 8px!important;
	
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #0B703F !important; /* Replace with your exact EverPower green if different */
  transition: color 0.3s ease-in-out;
}

/* Slide Box Container */
.slide-box {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: top;
    border-radius: .375rem;
}
.mobile-break {
  display: inline;
}

#mainMenu nav > ul .badge {
    font-size: 8px;
    padding: 2px 4px; 
    line-height: 9px;
    margin: 30px 4px;
}
h1, .h1 {
    font-size: 45px;
    line-height: 1.31818182em;
}
button.btn.btn-med, .btn:not(.close):not(.mfp-close).btn-med, a.btn:not([href]):not([tabindex]).btn-med {
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 26px;
    padding: 12px 20px;
    font-family: "Montserrat", sans-serif;
}
.bg-light-grey {
    background-color: #E5E5E5  !important; /* A softer, lighter grey */
}
ol, ul {
    padding-left: 1rem;
}
.accordion .ac-item .ac-title {
    font-weight: 600;
    position: relative;
    padding-right: 10px;
    margin: 0;
    font-size: 18px;
    
}
.accordion .ac-item .ac-title:before {
    font-size: 20px;
    content: "\e9be";
    font-family: "inspiro-icons";
    right: 0;
    position: absolute;
}
/* Inner Box */
.slide-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Front Side */
.slide-box-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #187d34; /* EverPower Green */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
	 padding: 40px;
}

/* Back Side (Hidden by Default) */
.slide-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #58a55c; /* EverPower Light Green */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

/* Hover Effect: Slide Up */
.slide-box:hover .slide-box-front {
    transform: translateY(-100%);
}

.slide-box:hover .slide-box-back {
    transform: translateY(0);
}
.slide-box h3,  .slide-box i {
    color: #ffffff !important; /* Forces white text */
}

/* Adjust Font Weight & Size for Better Readability */
.slide-box h3 {
    font-size: 20px;
    font-weight: bold;
    text-align:left;
	
}

.slide-box p {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}/* Icons */
.slide-box i {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: left; /* Ensures alignment */
    align-self: flex-start; /* Moves the icon to the left inside flexbox */
	
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: rgba(0, 0, 0, 0.9)!important;
    opacity: .5;
}
.footer-earthy {
    position: relative;
    background: url('../images/home/footer.png') no-repeat center center;
    background-size: cover;
}

.footer-earthy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(88, 165, 92, 0.8), rgba(24, 125, 52, 0.9)); 
    z-index: 1;
}

.footer-earthy * {
    position: relative;
    z-index: 2; /* Ensures content stays above the overlay */
}


.text-small {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.1;
	border-bottom: solid 1px;
}
section.p-60 {
    margin: 0px auto; /* Adds 0px margin on top & bottom, centers left & right */
    max-width: calc(100% - 120px); /* Ensures white space on both sides */
    background-color: #fff; /* Keeps section background white */
    display: block;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: .5;
}

.btn-pad{
	padding: 12px 38px!important;
}
/* Add white space on left and right for slider */
.slider-container {
    max-width: calc(100% - 120px); /* 60px left & right margin */
    margin: 0 auto; /* Center */
}
.slider-text-container {
    max-width: 50%;  /* Restrict width to 40% */
    margin: 0 auto;  /* Center align */
    text-align: center;  /* Keep text aligned */
}
/* Set the height for the slider */
.inspiro-slider-height {
    height: 580px !important; /* Fixed height for desktop */
}

/* Apply frame effect on slides */
.slider-frame {
    width: 100%;
    height: 100%;
}

.p-r-10{
	padding-right:20px!important;
}
.gradient-text {
    background: linear-gradient(90deg, #0a3d1b, #4a8f67);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.highlighted-text {
    position: relative;
    display: inline-block;
    color: #ffffff; /* White text */
    font-weight: bold;
    z-index: 1;
}

.highlighted-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px; /* Thickness of the highlight */
    background: linear-gradient(90deg, #0a3d1b, #6b8e23); /* Tshenolo green gradient */
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-12deg);
}

.underline-highlight {
    display: inline-block;
    position: relative;
    font-weight: 700;
	
}
h2, .h2 {
    font-size: 35px;
    line-height: 48px;
    font-weight: 700;
}

.underline-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust for spacing */
    width: 100%;
    height: 10px; /* Thickness of the underline */
    background: linear-gradient(to right, #145a26, #187d34 );
    border-radius: 5px; /* Smooth edges */
    z-index: -1;
    transform: rotate(-2deg); /* Slight angle for a brush effect */
}
.position-relative {
    position: relative;
}

.p-t-100{
	padding-top: 100px!important;
}
.p-b-100{
	padding-bottom: 100px!important;
}
.image-stack {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust width as needed */
}

.image-top {
    position: absolute;
    top: 20px;  /* Adjust vertical position */
    left: 20px; /* Adjust horizontal position */
    z-index: 2; /* Ensures top image is above */
    width: 100%; /* Ensures both images stay the same width */
}

.image-bottom {
    position: relative;
    z-index: 1; /* Stays behind */
    width: 100%;
}

.image-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.image-overlay {
    position: absolute;
    width: 100%;
    opacity: 0.9; /* Slight transparency for a layered effect */
}



.cta-button {
    background: #a8431e;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.cta-button:hover {
    background: #8c3414;
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}
.clean-section {
    background: white;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.pattern-background {
    background: url('pattern.png') repeat;
    opacity: 0.2;
}
.btn-custom {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 30px!important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
	 font-family: "Montserrat", sans-serif;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
    background-color: #000000;
    color: #ffffff!important;
}
/* Button Styles */
.btn-primary-green {
    background-color: transparent;
    color: #187d34;
    border: 2px solid #187d34;
}

.btn-black {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-grey {
    background-color: transparent;
    color: #858282;
    border: 2px solid #858282;
}

.btn-off-white {
    background-color: transparent;
    color: #fefee8;
    border: 2px solid #fefee8;
}

.btn-gold {
    background-color: transparent;
    color: #b59f60;
    border: 2px solid #b59f60;
}

.btn-beige {
    background-color: transparent;
    color: #e6ddc6;
    border: 2px solid #e6ddc6;
}

.btn-sun-yellow {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-silver {
    background-color: transparent;
    color: #c0c0c0;
    border: 2px solid #c0c0c0;
}

.btn-dark-green {
    background-color: transparent;
    color: #145a26;
    border: 2px solid #145a26;
}

.btn-light-green {
    background-color: transparent;
    color: #58a55c;
    border: 2px solid #58a55c;
}

.floating-element {
    position: absolute;
    width: 120px;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotateLeaf 5s linear infinite, flickerEffect 3s infinite alternate; /* Rotate + Flicker */
}

/* Existing Rotation Animation */
@keyframes rotateLeaf {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New Flicker Animation */
@keyframes flickerEffect {
    0%, 100% { opacity: 0.8; } /* Fully visible */
    40% { opacity: 0.4; } /* Dimmed */
    70% { opacity: 0.1; } /* Almost off */
}


.form-control {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    font-size: 14px;
    font-weight: 300!important;
    line-height: 1.5;
    color: #1e2022;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
    border-radius: .42rem;
    box-shadow: none;
   
}
button.btn.btn-md, .btn:not(.close):not(.mfp-close).btn-md, a.btn:not([href]):not([tabindex]).btn-md {
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 28px;
    padding: 12px 30px ;
	 font-family: "Montserrat", sans-serif;
}

.lead {
    font-weight: 300;
}
.line-brand {
    border-top: 1px solid #b59f60;
}

.line-light {
    border-top: 1px solid #DADADA;
}

.icon-box h3, .icon-box h5 {
    margin: 0 12px 10px 83px;
    letter-spacing: 0px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
}


.text-off-white {
    color: #fefee8;
}

.text-primary-green { color: #187d34 !important; }
.text-black { color: #000000 !important; }
.text-grey { color: #858282 !important; }
.text-off-white { color: #fefee8 !important; }
.text-gold { color: #b59f60 !important; }
.text-beige { color: #e6ddc6 !important; }
.text-sun-yellow { color: #ffd700 !important; }
.text-silver { color: #c0c0c0 !important; }
.text-dark-green { color: #145a26 !important; }
.text-light-green { color: #58a55c !important; }
.text-dark-grey { color: #444444 !important; } /* More contrast */
.bg-primary-green { background-color: #187d34 !important; }
.bg-black { background-color: #000000 !important; }
.bg-grey { background-color: #858282 !important; }
.bg-off-white { background-color: #fefee8 !important; }
.bg-gold { background-color: #b59f60 !important; }
.bg-beige { background-color: #e6ddc6 !important; }
.bg-sun-yellow { background-color: #ffd700 !important; }
.bg-silver { background-color: #c0c0c0 !important; }
.bg-dark-green { background-color: #145a26 !important; }
.bg-light-green { background-color: #58a55c !important; }
.bg-dark-grey { background-color: #444444 !important; }
.border-primary-green { border: 1px solid #187d34 !important; }
.border-black { border: 1px solid #000000 !important; }
.border-grey { border: 1px solid #858282 !important; }
.border-off-white { border: 1px solid #fefee8 !important; }
.border-gold { border: 1px solid #b59f60 !important; }
.border-beige { border: 1px solid #e6ddc6 !important; }
.border-sun-yellow { border: 1px solid #ffd700 !important; }
.border-silver { border: 1px solid #c0c0c0 !important; }
.border-dark-green { border: 1px solid #145a26 !important; }
.border-light-green { border: 1px solid #58a55c !important; }
/* Deep Gold */
.text-deep-gold { color: #b59f60 !important; }
.bg-deep-gold { background-color: #b59f60 !important; }
.border-deep-gold { border: 1px solid #b59f60 !important; }
.list-icon.list-icon-colored li:before, .list-icon.icon-list-colored i {
    color: #1f2e24;
}
.accordion .ac-item {
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #1f2e24;
}
a {
    color: #145a26;
    text-decoration: none;
}

/* Earthy Rust */
.text-earthy-rust { color: #1f2e24 !important; }
.bg-earthy-rust { background-color: #1f2e24 !important; }
.border-earthy-rust { border: 1px solid #1f2e24 !important; }

/* Sand Beige */
.text-sand-beige { color: #e8dac1 !important; }
.bg-sand-beige { background-color: #e8dac1 !important; }
.border-sand-beige { border: 1px solid #e8dac1 !important; }

.white-frame {
    padding-left: 60px;
    padding-right: 60px;
    background-color: #fff; /* Ensure it's a white frame */
    box-sizing: border-box; /* Keeps the padding inside the container */
}
.footer-dark-green { background-color: #0a3d1b !important; color: #fefee8 !important; }
.footer-muted { background-color: #2a4842 !important; color: #c0c0c0 !important; }
.footer-earthy { background-color: #1f2e24 !important; color: #e6ddc6 !important; padding:20px; }

.footer-link { color: #b59f60 !important; }
.footer-link:hover { color: #ffd700 !important; text-decoration: underline; }

.footer-border { border-top: 1px solid #858282 !important; }
.section-wrapper {
    position: relative;
    overflow: hidden;
}

/* Ensures section doesn't allow unwanted overflow */
.p-t-100.p-b-100 {
    position: relative;
    overflow: hidden;
}

/* Floating image wrapper - ensures images don’t break out */
.floating-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: visible; /* FIX: Ensures images are not hidden */
}

/* Image container */
.image-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust width as needed */
    height: 400px; /* FIX: Prevents collapse */
    cursor: pointer;
}

/* Back image */
.image-back {
    position: absolute;
    top: -20px; /* Moves slightly higher */
    left: 10px;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* Front image */
.image-front {
    position: absolute;
    top: 20px; /* Moves slightly lower */
    left: -10px;
    width: 100%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

/* Prevents images from stretching */
.floating-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fixes z-index swap logic */
.image-container img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
	border-radius: 10px; /* Adjust for more/less roundness */
}
/* Floating animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply animation to both images */
.image-container img {
    animation: floatAnimation 4s infinite ease-in-out;
}
.circuit-container {
    position: absolute;
    bottom:220px; /* Adjust if needed */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    overflow: visible;
    z-index: -1; /* Ensure it's above background but below text */
    pointer-events: none;
}

.circuit-lines {
    display: block;
    width: 100%;
    max-width: 1400px;
    height: auto;
    opacity: 1; /* Ensure visibility */
}
.circuit-lines path {
    stroke: rgba(0, 255, 128, 1);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 12, 8;
    filter: drop-shadow(0px 0px 8px rgba(0, 255, 128, 0.8)); /* Adds glow */
}



/* Pulsing Glow Effect */
@keyframes circuitGlow {
    0% {
        stroke-opacity: 0.3;
        filter: drop-shadow(0px 0px 5px rgba(0, 255, 128, 0.5));
    }
    50% {
        stroke-opacity: 1;
        filter: drop-shadow(0px 0px 12px rgba(0, 255, 128, 1));
    }
    100% {
        stroke-opacity: 0.3;
        filter: drop-shadow(0px 0px 5px rgba(0, 255, 128, 0.5));
    }
}
.image-container-home {
    width: 100%; /* Ensures the image fills the available space */
    height: auto; /* Maintains aspect ratio */
    overflow: hidden; /* Prevents distortion */
    display: flex; /* Ensures alignment */
    justify-content: center; /* Centers image horizontally */
    align-items: center; /* Centers image vertically */
}
.icon-box.large > h3, .icon-box.large > h5 {
    margin: 0 12px 10px 110px;
    font-size: 35px;
	line-height: 40px!important;
}
.text-medium {
    font-size: 25px !important;
    font-weight: 300!important;
	font-style: italic;
    line-height: 35px!important;
    margin-bottom: 0px;
}
.image-container-home img {
    width: 100%; /* Ensures image scales to full width */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    min-height: 800px; /* Adjust based on your section’s height */
}
.image-container-vison {
    width: 100%; /* Ensures the image fills the available space */
    height: auto; /* Maintains aspect ratio */
    overflow: hidden; /* Prevents distortion */
    display: flex; /* Ensures alignment */
    justify-content: center; /* Centers image horizontally */
    align-items: center; /* Centers image vertically */
}

.image-container-vision img {
    width: 100%; /* Ensures image scales to full width */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    min-height: 650px; /* Adjust based on your section’s height */
}
.image-container-vison {
    width: 100%; /* Ensures the image fills the available space */
    height: auto; /* Maintains aspect ratio */
    overflow: hidden; /* Prevents distortion */
    display: flex; /* Ensures alignment */
    justify-content: center; /* Centers image horizontally */
    align-items: center; /* Centers image vertically */
}

.image-container-vision img {
    width: 100%; /* Ensures image scales to full width */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    min-height: 730px; /* Adjust based on your section’s height */
}
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

/* Slide up when entering viewport */
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide up again on hover */
.slide-up:hover {
    transform: translateY(-10px);
    transition: transform 0.4s ease-in-out;
}
.bg-light {
    background-color: #f6f6f6 !important;
}

@media (min-width: 1400px) {
    .container, .container-sm, .container-md, 
    .container-lg, .container-xl, .container-xxl {
        max-width: 1320px; /* Adjust to 1440px if you prefer a wider look */
    }
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
    .white-frame {
        padding-left: 40px;
        padding-right: 40px;
    }
	 .inspiro-slider {
        height: 580px !important; /* Force height for desktop */
    }
}

@media (max-width: 768px) {
.slider-text-container h1 {
    font-size: 25px !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }

  .slider-text-container p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }

  .inspiro-slider .slide .slide-captions {
    text-align: center !important;
    padding: 0 20px;
  }

  .slider-text-container {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

    .white-frame {
        padding-left: 20px;
        padding-right: 20px;
    }
	
	.image-container {
        max-width: 100%;
		height:260px!important;
    }
    .image-front, .image-back {
        top: 0;
        left: 0;
        width: 100%;
    }
	.image-front {
        top: 30px;
        left: 10px;
        width: 100%;
    }
	.inspiro-slider .slide .slide-captions h1, .inspiro-slider .slide .slide-captions h2 {
        font-size: 25px!important;
        line-height: 25px!important;
        margin-bottom: 14px;
    }
	.inspiro-slider .container {
         padding-left: 30px!important; 
        padding-right: 30px!important; 
    }
	.slider-container {
     max-width: calc(100% - 60px); /* 15px on each side */
    margin: 0 30px;
  }
	 .inspiro-slider {
    height: auto !important;
    min-height: unset !important;
  }
	.mobile-break {
    display: none;
  }
	.inspiro-slider-height {
    height: auto !important;
}
	.sm-p-t-60{
		padding-top: 60px!important;
	}
	
	.sm-p-b-60{
		padding-bottom: 60px!important;
	}
	.m-r-60 {
    margin-right: 30px !important;
}
	.m-l-60 {
    margin-left: 30px !important;
}
	
 #header #logo > a {
    display: block;
    padding-left: 20px;
  }	
	button.btn:not(.btn-creative):not(.btn-slide),
  .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide),
  a.btn:not([href]):not([tabindex]):not(.btn-creative):not(.btn-slide) {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
	
	.lead {
        font-size: 16px!important;
        line-height: 26px!important;
    }
	
	.btn-custom {
    width: 100%;
    display: block;
    box-sizing: border-box;
}
	
	.image-container-home img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px;
}
	.icon-box p {
    margin: 0 0 20px 83px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
	.image-container-vision img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px!important;
}
	.sm-p-30{
		padding:30px!important;
	}
	.icon-box.medium > h3, .icon-box.medium > h4, .icon-box.medium > h5 {
    margin: 0 12px 10px 30px;
}
	.icon-box.medium > p {
    margin: 0 0 20px 30px;
}
	.sm-lr-60{
		padding-left:45px!important;
		padding-right: 45px!important;
	}
	.sm-align-items-left{
		align-items: flex-start!important;
	}
	.mainMenu-open #header #mainMenu {
    width: 90%;
    max-width: 320px; /* or adjust as needed */
    margin: 0 auto;
    padding: 30px 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    border-radius: 10px;
    background: #fff!important; /* or inherit */
    min-height: 450px!important;
		overflow: hidden!important;
  }
	#mainMenu nav > ul .badge {
    font-size: 8px;
    padding: 2px 4px;
    line-height: 9px;
    margin: 2px 4px;
}
	#mainMenu nav > ul > li > a {
     padding: 12px 8px 12px 8px !important; 
}.icon-box.large > h3, .icon-box.large > h5 {
    margin: 0 12px 10px 30px;
    font-size: 35px;
    line-height: 40px !important;
}
	.icon-box.large p {
    margin: 0 0 20px 30px;
}
	.show-on-mobile-only {
    display: block;
  }
	h1, .h1 {
    font-size: 30px!important;
    line-height: 1.31818182em;
}
}

