/* Debug Header Colors 

/* RED
@media (max-width: 575.98px) {   
    .has-header-image .navbar {
        background-color: red; 
    }   
}

/* BLUE 
@media (max-width: 768px) and (min-width: 576px) {    
    .has-header-image .navbar {
        background-color: blue; 
    }   
}

/* GREEN 
@media (min-width: 769px) and (max-width: 1139px) {
    .has-header-image .navbar {
        background-color: green; 
    }
}

/* YELLOW 
@media (min-width: 1140px) {   
    .has-header-image .navbar {
        background-color: yellow; 
    }   
}
*/


/* ===========================
   START CAROUSEL MOD
   =========================== */
   .slick-prev, .slick-next {
    display: block !important;  /* Ensures arrows are not hidden */
    color: black !important;    /* Changes the color to black for visibility */
    z-index: 1000;              /* Brings arrows to the forefront */
}

.slick-prev:before, .slick-next:before {
    color: black; /* Ensures arrow icons are visible */
}

.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

.news-carousel {
    padding: 10px; /* Adds padding around the slider */
}

.news-carousel .slide {
    display: flex;
    align-items: center;
    background: white; /* White background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Drop shadow */
    padding: 15px;
    margin: 10px 15px; /* Adds vertical and horizontal spacing */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.news-carousel .slick-track {
    display: flex;
    align-items: center;
}

.news-carousel .slide-image img {
    max-width: 95%; 
    max-height: 50%;
}

.slick-slide {
    height: 350px; 
    overflow: hidden;
}

.slick-slide img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-description {
	color: black;
	font-size: 24px;
}
	
.elementor-widget-container{
		color: black;
		font-size: 18px !important;
	}

@media (max-width: 768px) {
    .news-carousel .slide-image img {
        max-width: 100%; /* Allows image to take full width of the slide on smaller screens */
    }
}
/* ===========================
   END CAROUSEL MODS
   =========================== */



/* ===========================
   Large Fonts
   =========================== */
.main-content .post-wrapper .entry-content 	 {
			color: black;
			font-size: 20px;
}
/* ===========================
   END Large Fonts
   =========================== */


/* Home and Post Pages Header bar */ 
.has-header-image .navbar {
    background-color: rgba(255, 255, 255, 0.0);
}


/* Category Page Header Bar */
.headroom--not-top .navbar { 
    background-color: rgba(255, 255, 255, 0.9) !important;
}


/* MENU IMG SIZE & MOBILE BREAKPOINTS */
.custom-logo-link {
    font-size: 0;
}

.custom-logo-link img {
    max-height: 200px;
    max-width: 350px;
}

.navbar a {
    padding: 18px 0;
    color: #000;
    font-style: bold;    

}

/* black background behind menu */
.mobile-menu-wrapper {
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 0px;
    display: inline-block; 
}

/* Turn off sticky header 
.site .site-header.headroom {
    position: static !important;
}
*/

.jet-mega-menu-item > .jet-mega-menu-sub-menu .jet-mega-menu-item__label {
    color: black !important;
    text-shadow: none;
}

.jet-mega-menu-item__label {
    color: white !important; 
    text-shadow: -1px -1px 0 #000,  
                 1px -1px 0 #000,
                -1px  1px 0 #000,
                 1px  1px 0 #000; 
}

/* Hero text setup */ 
.site-branding-text { 
    text-shadow: -1px -1px 0 #000,  
                  1px -1px 0 #000,
                 -1px  1px 0 #000,
                  1px  1px 0 #000; 
}

p.site-description { 
    font-size: 32px;
    font-style: bold;
    text-shadow: -1px -1px 0 #000,  
                  1px -1px 0 #000,
                 -1px  1px 0 #000,
                  1px  1px 0 #000; 
}




.jet-listing-grid__items {
    gap: 0px; /* Adjust this value to increase or decrease spacing */
}

/* the vertical amount of space the banner takes up */
.page .entry-cover-image, .single .entry-cover-image {
    height: 380px !important;
}

/* Right align the left column so that the left column hugs the center of the page */ 
.post-wrapper { 
    margin-right: 20px !important;
}

/* Adjust the margin of the right column to hug the center of the page */
.sidebar-content {
    margin: 0 auto !important;
    margin-left: 20px !important;
}

.sidebar-content h2 {
    font-size: 12px; /* Adjust the size as needed */
    color: #888; /* A gray color */
    font-weight: normal; /* Make the font weight normal */
}




/* Remove annoying line below the title */
.entry-title:after { 
    height: 0px !important;
}

.entry-title {
    height: 60px !important;
}

/* Target top-level menu links in JetMenu */
.jet-mega-menu-item__link  > a {
    pointer-events: none; /* Disable clicking */
    cursor: default; /* Change cursor style to indicate it's not clickable */
}



#menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
  background: black; 
  position: relative;

} 

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: white; 
    position: relative;
    color: #fff;
    text-shadow: -1px -1px 0 #000,  
                 1px -1px 0 #000,
                -1px  1px 0 #000,
                 1px  1px 0 #000; 
}

.hamburger-icon::before,
.hamburger-icon::after {
	content: '';
	width: 25px;
	height: 3px;
	background: white;
	position: absolute;
	left: 0;
		
}

.hamburger-icon::before {
	top: -8px;
}

.hamburger-icon::after {
	top: 8px;
}

#mobile-menu {
	display: none;
	background: #fff;
	position: absolute;
	top: 50px;
	right: 0;
	width: 200px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}

#mobile-menu.active {
	display: block;
}

/* End hamburger */

.entry-footer {
    display: none;
}

.link-more .more-link { 
    display: none;
}


/* Custom style to underline strong on machine names */
.elementor-widget-container p strong {
  text-decoration: underline;
}


/* Hide image filenames / titles on Featured Images pages VERY IMPORTANT*/ 

.page-id-101 .slb_template_tag_item_title {
  display: none;
}

/* ===========================
   Lightbox Styles
   =========================== */

/* Constrain the lightbox container */
.slb_content {
  width: 100%;
  max-height: 250px;
  width: auto !important;
  height: auto !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure the image fits within the container */
.slb_content img {
  width: 100% !important;
  max-height: 250px !important;
  /*width: auto !important;*/
  height: auto !important;
  object-fit: contain;
}

/* Adjust the overall lightbox container to fit the content */
.slb_viewer_layout {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slb_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50% !important;
  height: 50% !important;
  /*width: auto !important; */
  /*height: auto !important; */
  overflow: hidden !important;
}





/* Responsive adjustments with media queries */


@media (max-width: 480px) { 
/* Adjusts for mobile phones */
    .custom-logo-link img {
        max-height: 90px; 
        max-width: 200px; 
    }
    .navbar a {
        padding: 10px 0; 
        font-size: 12px; 
    }
	.slide-description {
		color: black;
		font-size: 8px !important;
	}
		
	.elementor-widget-container{
		color: black;
		font-size: 8px !important;
	}
		.main-content .post-wrapper .entry-content 	 {
		color: black;
		font-size: 8px;
	}

    /* USE DEFAULT LIGHTBOX SETTINGS */
	
}


@media (max-width: 768px) { 
/* Adjusts for tablets and smaller devices */
		p.site-description { 
			font-size: 22px;
		}
    .custom-logo-link img {
        max-height: 120px; 
        max-width: 300px; 
    }
    .navbar a {
        padding: 12px 0; 
        font-size: 14px; 
    }
	.slide-description {
		color: black;
		font-size: 12px !important;
	}
	
	.elementor-widget-container{
		color: black;
		font-size: 12px !important;
	}
	.main-content .post-wrapper .entry-content 	 {
			color: black;
			font-size: 12px;
	}

	p {
        padding: 0 10px;
    }

     /* USE DEFAULT LIGHTBOX SETTINGS */

}







@media (max-width: 1023px) {
    .mobile-menu-wrapper {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
		.slide-description {
			color: black;
			font-size: 20px;
		}
		
	.elementor-widget-container{
		color: black;
		font-size: 18px !important;
	}
	.main-content .post-wrapper .entry-content 	 {
			color: black;
			font-size: 18px;
	}

	.entry-header .inner-wrap .entry-title { 
		font-style: underline;
	}
	.main-content .post-wrapper .entry-content 	 {
			color: black;
			font-size: 18px;
	}
     /* USE DEFAULT LIGHTBOX SETTINGS */
	
}

@media (min-width: 1024px) {
    /* Show the wide-screen navigation */
    .jet-mega-menu--layout-horizontal {
        display: block;
    }

    /* Hide the mobile/hamburger menu */
    .jet-mega-menu--layout-dropdown {
        display: none;
    }
    .site-description { 
        font-size: 24px;
        font-style: bold;
    }
		.main-content .post-wrapper .entry-content 	 {
			color: black;
			font-size: 24px;
	}
	.navbar a {
    padding: 18px 0;
    color: #000;
    font-style: bold;   
		font-size: 14px;

	}

	/* Hamburger Mobile Menu */ 
	.hamburger-menu {
			display: none;
	}

     /* Adjust the lightbox container */
     .slb_container {
        max-height: 580px !important;
    }

    .slb_content {
        max-height: 580px;
    }

    .slb_content img {
        max-height: 375px !important;
    }
}




/* Media query for screens larger than 1140 pixels */
@media (min-width: 1141px) {
    /* Show the wide-screen navigation */
    .jet-mega-menu--layout-horizontal {
        display: block;
    }

    /* Hide the mobile/hamburger menu */
    .jet-mega-menu--layout-dropdown {
        display: none;
    }
    .site-description { 
        font-size: 24px;
        font-style: bold;
    }


	/* Hamburger Mobile Menu */ 
	.hamburger-menu {
			display: none;
	}
		.navbar a {
    padding: 18px 0;
    color: #000;
    font-style: bold;   
		font-size: 18px;

	}
	
}

@media (min-width: 1535px) {
	
	.custom-logo-link img {
    max-height: 200px;
    max-width: 550px;
	}
	.navbar a {
    padding: 18px 0;
    color: #000;
    font-style: bold;   
		font-size: 25px;

	}
	 /* Adjust the lightbox container */
     .slb_container {
        max-height: 800px !important;
    }

    .slb_content {
        max-height: 800px;
    }

    .slb_content img {
        max-height: 650px !important;
    }
	
}

/* ===========================
   Category Main Images: 
   =========================== */

img.attachment-full.size-full.wp-post-image {
    width: 80%; 
    height: auto;
    max-width: 600px; /* Override the existing max-width */
}


/* ===========================
   Setup the number of columns the welding section: 
   =========================== */

/* Default to 3 columns for desktop */
/* Flex container setup */
body.elementor-page-95 .elementor-jet-posts.jet-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensure items use the full width */
}

/* Default to 3 columns for desktop */
body.elementor-page-95 .elementor-jet-posts.jet-elements .jet-posts__item {
    flex: 1 0 calc(33.33% - 10px); 
    margin: 5px; 
}

/* Tablet view */
@media (max-width: 1024px) {
    body.elementor-page-95 .elementor-jet-posts.jet-elements .jet-posts__item {
        flex: 1 0 calc(50% - 10px); /* 2 columns for tablet */
    }
}

/* Mobile view */
@media (max-width: 768px) {
    body.elementor-page-95 .elementor-jet-posts.jet-elements .jet-posts__item {
        flex: 1 0 100%; /* 1 column for mobile */
			  max-width: none !important;
    }
}

/* ===========================
   Setup the number of columns the SERVICES section: 
   =========================== */

/* Default to 3 columns for desktop */
body.elementor-page-97 .elementor-jet-posts.jet-elements .jet-posts__item {
    flex: 1 0 calc(25% - 10px); 
    margin: 5px; 
}

/* Tablet view */
@media (max-width: 1024px) {
    body.elementor-page-97 .elementor-jet-posts.jet-elements .jet-posts__item {
        flex: 1 0 calc(50% - 10px); /* 2 columns for tablet */
    }
}

/* Mobile view */
@media (max-width: 768px) {
    body.elementor-page-97 .elementor-jet-posts.jet-elements .jet-posts__item {
        flex: 1 0 100%; /* 1 column for mobile */
			  max-width: none !important;
    }
}

/* ********* Category Page Items */

/* Default styles for more than 768px (4 columns) */
.jet-posts {
    /*display: flex;
    flex-wrap: wrap; */
}

.jet-posts__item {
    /*width: 25%;  4 columns */
}

.post-thumbnail__img, .wp-post-img {
    /*width: auto !important;*/
}

.jet-posts.jet-equal-cols .jet-posts__item {
    height: 400px;
}


