.elementor-kit-7{--e-global-color-primary:#008A0E;--e-global-color-secondary:#E9A202;--e-global-color-text:#000000;--e-global-color-accent:#DE9907;--e-global-typography-primary-font-family:"Roboto Condensed";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:var( --e-global-color-text );font-family:"Lato", Sans-serif;font-size:1.125rem;letter-spacing:0.2px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 a{color:var( --e-global-color-primary );}.elementor-kit-7 a:hover{color:var( --e-global-color-secondary );}.elementor-kit-7 h1{font-family:"Roboto Condensed", Sans-serif;font-size:5rem;text-transform:uppercase;}.elementor-kit-7 h2{color:var( --e-global-color-text );font-family:"Roboto Condensed", Sans-serif;font-size:3.8rem;font-weight:100;text-transform:uppercase;}.elementor-kit-7 h3{font-family:"Roboto Condensed", Sans-serif;font-size:2.5rem;}.elementor-kit-7 h4{font-family:"Roboto Condensed", Sans-serif;font-size:2rem;}.elementor-kit-7 h5{font-family:"Roboto Condensed", Sans-serif;font-size:1.75rem;}.elementor-kit-7 h6{font-family:"Roboto Condensed", Sans-serif;font-size:1.4rem;font-weight:100;text-transform:uppercase;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{font-family:"Bree Serif", Sans-serif;border-radius:0px 0px 0px 0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-7 h2{font-size:2.8rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body {
    max-width: 2200px;
}

/* Ensure long words break and wrap to the next line */
h1, h2, h3 {
  word-wrap: break-word; 
  word-break: break-word; 
}


/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(100,100,100,0.5) transparent;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background-color 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.8);
}


.sticky-section,
.sticky-text {
  position: sticky;
  top: 100px;

  z-index: 1; /* Ensure the header appears above other elements */
}


.menu-item a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.menu-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transition: width 0.5s ease;
}

.menu-item a:hover::after {
  width: 100%;
}



/*
.mega-menu-wrapper {
  overflow-x: hidden;
}

.mega-menu-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

.menu-item {
  transition: all 0.5s ease;
}

.menu-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  height: 25px;
  border-top: 2px solid #fff;  
  border-left: 2px solid #fff; 
  transform: translateY(-50%) rotate(135deg);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.menu-item:hover {
  cursor: pointer;
}

.menu-item:hover::after {
  opacity: 1;
  right: 5px;
}


.menu-item:hover .long-arrow-right {
  right: 0;
  opacity: 1;
}
*/







.elementor-field-textual {
    padding: 0 !important;
}

.section-header-container p {
     margin:6px;    
}


.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 22px; /* Adjust for consistent button padding */
  transition: all 0.2s ease;
  width: fit-content;
 font-weight: 100;
}

.cta:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  border-radius: 0; /* Maintain the circle */
  background: #000; /* Primary color for the circle */
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
  z-index: -1; /* Keep behind the button text */
}

.cta:after {
  content: "→"; /* Unicode arrow */
  position: absolute;
  font-size: 24px; /* Adjust arrow size */
  font-weight: bold;
  color: #fff; /* Arrow color inside the circle */
  top: 46%;
  left: 28px; /* Center the arrow inside the circle */
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  z-index: 1; /* Ensure the text is above the background */
  font-size: 1.4rem;
  line-height: 26px;
  font-weight: 200;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  vertical-align: middle;
  color: #000; /* Initial text color */
  padding-left: 14px;
  transition: all 0.3s ease;

}

.cta:hover:before {
  width: 100%; /* Expand circle to fill the button */
  border-radius: 0; /* Maintain slight rounding on hover */
  background: #008A0E; /* Darker shade for hover effect */
}

.cta:hover:after {
  left: calc(100% - 44px); /* Position arrow near the right edge */
  transform: translate(50%, -50%); /* Slightly align with padding */
}

.cta:hover span {
  padding-left: 0; /* Remove padding on hover */
  color: #fff; /* Change text color to white */
}



.hero-btn {

  color: #fff; /* White text */
}

.hero-btn:before {
  background: #fff; /* Black background */

}

.hero-btn:after {
  content: "→"; /* Unicode arrow */

  font-size: 24px;
  color: #000; /* Black arrow initially */

}

.hero-btn span {

  letter-spacing: 0.04em;

  color: #fff; 
}

.hero-btn:hover:before {
  width: 100%;
  background: #008A0E; /* Darker green on hover */
}

.hero-btn:hover:after {
  left: calc(100% - 44px);
  transform: translate(50%, -50%);
  color: #fff; 
}

.hero-btn:hover span {
  padding-left: 0;
  color: #fff;
}



/* POST NAVIGATION */

.project-navigation {
    display: flex; /* Use flexbox to create a horizontal layout */
    justify-content: space-between; /* Space between the columns */
    margin: 4% 0; /* Add margin for spacing above and below */
}

.project-column {
    flex: 1; /* Each column takes equal space */
    text-align: left; /* Align text to the left */
}

.project-column img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

.project-column h3 a,
.project-column p a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

.project-column h3 {
    padding-left: 4%;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 0;
}

.project-column p {
    padding-left: 4%;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0;
}

.elementor-post-navigation .elementor-post-navigation__link a {
    align-items: center !important;
    display: flex !important;
    max-width: 100%;
    flex-direction: column-reverse !important;
}

.elementor-post-navigation span.elementor-post-navigation__link__prev {
    width: 100%;
    padding: 4%;
}

.elementor-post-navigation span.elementor-post-navigation__link__next, .elementor-post-navigation span.elementor-post-navigation__link__prev {
    width: 100%;
    padding: 4%;
}

/* END POST NAVIGATION */




/* CLIENTS SLIDER */

/* Apply box-shadow to simulate borders */
.testimonials-slider .swiper-slide, .footer-slider .swiper-slide, .client-slider .swiper-slide {
    box-shadow:
        inset 0 1px 0 #4c8630,    /* Top border */
        inset 0 -1px 0 #4c8630,   /* Bottom border */
        inset -1px 0 0 #4c8630;   /* Right border */
    box-sizing: border-box;
}

.elementor-image-carousel-wrapper {
    width: 100.04%;
    overflow-x: hidden;
}

/* Default styles for the accreditations slider */
.client-slider .swiper-slide-image {
    max-width: 220px; /* Custom max height for this slider */
}

.client-slider .swiper-slide figure {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px; /* Custom height for this slider */
}

/* Default styles for the footer slider */
.footer-slider .swiper-slide-image {
    max-width: 130px; /* Custom max height for this slider */
}

.footer-slider .swiper-slide figure {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Custom height for this slider */
}



@media (max-width: 600px) {
    
 .cta {

    padding: 10px 14px;

}
    
 .project-navigation {
        flex-direction: column; /* Stack columns vertically on mobile */
        align-items: center; /* Center items */
    }

    .project-column {
        width: 100%; /* Full width for each column */
        padding: 0 10%; /* Add padding to the sides */
        margin-bottom: 20px; /* Space between columns */
    }

    .project-column h3 {
        font-size: 1.5rem; /* Larger heading on mobile */
    }

    .project-column p {
        font-size: 1.2rem; /* Smaller paragraph text on mobile */
    }
    
    .elementor-post-navigation .elementor-post-navigation__link {
    width: 100% !important;
}
    .elementor-post-navigation {
    display: initial !important;
    /* overflow: hidden; */
}

}



/* EXTRA LARGE SCREENS */


/* Apply left/right borders only on extra-large screens */
@media (min-width: 2000px) {
    body {
        margin: 0 auto;
        border-left: 1px solid #ececec;
        border-right: 1px solid #ececec;
    }
}/* End custom CSS */