/* //////////////// CSS - GENERAL //////////////// */

/* INFO BREAKPOINTS OLD
	-- 1280px
	-- 975px
	-- 768px
	-- 675px
	-- 375px
*/


/* INFO BREAKPOINTS NEW
	-- 1280px
	-- 975px
	-- 768px
	-- 625px
	-- 425px
*/

/*///////////////////////////////////////////// CUSTOM FONTS */

/* HEADING FONT */
@import url('https://fonts.cdnfonts.com/css/arial');

/* PARAGRAPH FONT */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800&display=swap');

/* ////////////////////////////////////////////// CSS VARIABLES */
:root {
	--transition: .3s;
	--transition-slow: .6s;
	--transition-fast: .15s;
	--widthdesktop: 1140px;
	--margindesktop: 40px;
	--widthscrollbar: 10px;
}
:root body {
    --metalite-group: #1e4486;
    --metalite-blue: #0ca0d7;
    --metalite-orange: #e37d3a;
    
	--grey: #E5E5E5;
	--light-grey: #EEE;
	--dark-grey: #444;
	--white: #ffffff;
	--black: #333333;
	
	--standard-padding: 30px;
}

@media (max-width: 675px) {
	:root {
		--margindesktop: 30px; 
		--widthscrollbar: 0px;
	}
}
.hr-line {
    border-bottom: 1px solid var(--grey);
    margin: var(--margindesktop) auto;
    max-width: var(--widthdesktop);
}
/* ////////////////////////////////////////////// BACKGROUND COLOR CLASSES */
.has-metalite-group-background-color,
.m_group {
    background-color: var(--metalite-group);
}
.has-metalite-blue-background-color,
.m_blue { 
    background-color: var(--metalite-blue);
}
.has-metalite-orange-background-color,
.m_orange { 
    background-color: var(--metalite-orange);
}

/* ////////////////////////////////////////////// COLOR CLASSES */

.has-metalite-group-color,
.metalite-c-group {
    color: var(--metalite-group);
}
.has-metalite-blue-color,
.metalite-c-blue { 
    color: var(--metalite-blue);
}
.has-metalite-orange-color
.metalite-c-orange { 
    color: var(--metalite-orange);
}
.has-white-color {
    color: var(--white);
}
.has-black-color {
    color: var(--black);
}
.has-w3w-color {
    color: #e11f26 !important;
}

/* ////////////////////////////////////////////// TEXT CLASSES */

.title-font{
	font-family: 'Montserrat', sans-serif;                                                
	font-weight: 600;
	line-height: 1.4;
}

.paragraph-font{
	font-family: "Roboto",Arial,sans-serif;
}

.is-bold{
	font-weight: 700;
}
.uppercase {
    text-transform: uppercase;
}

/* ////////////////////////////////////////////// TEXT STYLES */

body {
	font-family: 'Montserrat', Arial;
	font-weight: 500;
	color: #333;
}

h1, h1 a, .font-size-48 {
	font-family: 'Montserrat', sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: calc(var(--margindesktop) / 1);
}

@media (max-width: 675px) {
	h1, h1 a, .font-size-48 {
		font-size: 36px;
	}	
	h1.wp-block-heading {
	    font-size: 46px !important;
	}
}

h2, h2 a, .font-size-28 {
	font-family: 'Montserrat', sans-serif;                                                
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

h3, h3 a, .font-size-18 {
	font-family: 'Montserrat', sans-serif;                                                
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

h4, h4 a {
	font-family: 'Montserrat', sans-serif;                                                
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

h5, h5 a {
	font-family: 'Montserrat', sans-serif;                                                
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

h6, h6 a {
	font-family: 'Montserrat', sans-serif;                                                
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

p {
	font-family: "Roboto",Arial,sans-serif;
	font-weight: 500;
	font-size: 1em;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2) !important;
}

p.bold, p strong {
	font-weight: 700;
}

strong {
	font-weight: bold;
}

a {
	line-height: 1.4;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

em {
	font-style: italic;
}
/*//////////////////////LIST STYLES */
.entry-content.is-classic ul,
.entry-content.is-classic ol {
    margin-left: 25px;
}
.entry-content.is-classic ol {
    list-style-type: decimal;
}
.entry-content.is-classic ul li{
    font-family: "Roboto",Arial,sans-serif;
    font-weight: normal;
    font-size: 1em;
}
.entry-content.is-classic ol li {
    font-family: "Roboto",Arial,sans-serif;
    text-decoration: underline;
    font-size: 1em;
}
.entry-content.is-classic p {
    font-family: "Roboto",Arial,sans-serif;
    font-weight: normal;
}

ul:not(.menu, .sub-menu, .wp-block-social-links, .search-sidebar-widget ul, .archive-sidebar-widget ul, .searchandfilter ul, ul.wp-block-navigation ),
ol:not(.menu, .sub-menu, .wp-block-social-links, .search-sidebar-widget ul, .archive-sidebar-widget ul, .searchandfilter ul, ul.wp-block-navigation ) {
	list-style: outside;
	margin-left: calc(var(--margindesktop) * 1);
	margin-bottom: calc(var(--margindesktop) / 1 );
	width: auto!important;
}

li:not(.menu-item) {
	font-family: 'Montserrat', Arial;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: calc(var(--margindesktop) / 2);
}

input, select, textarea {
	font-family: 'Montserrat';
}

@media (max-width: 675px) {
	ul:not(.menu, .sub-menu, .wp-block-social-links, .search-sidebar-widget ul, .archive-sidebar-widget ul, .searchandfilter ul, ul.wp-block-navigation ),
	ol:not(.menu, .sub-menu, .wp-block-social-links, .search-sidebar-widget ul, .archive-sidebar-widget ul, .searchandfilter ul, ul.wp-block-navigation )  {
		margin-left: calc(var(--margindesktop) / 2);
	}
}

/*///////////////////////////////////////////// HEADER */

.header {
    z-index: 1000;
	/*position: sticky;*/
	top: 0px;
	width: 100%;
	transition: var(--transition);
}
@media(max-width: 768px) {
    .header     {
        position: unset;
    }
}


/*.home .header {*/
/*    width: 100%;*/
/*    z-index: 1000;*/
/*	position: sticky !important;*/
/*}*/



.header a {
    color: var(--white);
}
.header .m_group a {
    border-bottom: 5px solid var(--metalite-group);
}
.header .m_blue a {
    border-bottom: 5px solid var(--metalite-blue);
}
.header .m_orange a {
    border-bottom: 5px solid var(--metalite-orange);
}
.header .header-container-right ul li:not(.sub-menu li) {
    border-bottom: 5px solid var(--metalite-group);
}

.header ul li:hover:not(.sub-menu li) ,
.header .menu > .menu-item.current-menu-item,
.header .menu > .menu-item.current-menu-ancestor{
    border-bottom: 5px solid var(--white);
}
.menu > li > ul.sub-menu li a{
    border-bottom: unset !important;
}
.admin-bar .header {
	top: var(--wp-admin--admin-bar--height);
}

@media (max-width: 975px) {
.header {
	transition: unset;
}
}
/* ///////////////// SIMPLE HEADER  */

.header-top-bar {
    max-height: 40px !important;
    padding-left: var(--standard-padding);
    padding-right: var(--standard-padding);
    background-color: var(--black);
    color: var(--white);
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    font-size: 12px;
}
.header-top-bar span {
    font-size: 15px;
}
.header-top-bar div {
    margin-right: 20px;
}
.header-top-bar span,
.header-top-bar div {
    height: 100%;
    display: flex;
    align-items: center;
}
.header-top-bar .site_group_text {
    margin-right: 0;
    margin-left: auto;
}

/* ///////////////// SITE SEARCH */
.site_search .search-toggle {
    cursor: pointer;
}

.site_search .search-form-wrapper {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%; /* below the icon */
    right: 0;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 100;
}

.site_search.active .search-form-wrapper {
    display: block;
}

.site_search .search-form input[type="search"] {
    padding: 0.3rem 0.5rem;
    width: 150px;
}

.site_search .search-form button {
    display: none; /* hide submit button if desired */
}
/* ///////////////// GENERAL HEADER */


.header .header-container {
    padding-left: var(--standard-padding);
    padding-right: var(--standard-padding);
    max-width: var(--widthdesktop);
    width: 100%;
	height: 100px;
    display: flex;
    justify-content: space-around;
	align-items: center;
	margin: 0px auto;
	box-shadow: 0 5px 6px -2px rgba(0, 0, 0, 0.3);
	position: relative; 
	z-index:2;
}

.header .header-container .header-container-left {
    width: 25%;
    display: flex;
}

.header .header-container .header-container-right {
    width: 75%;
    display: flex;
    height: 100%;
}


.header .header-container .header-container-left {
    justify-content: flex-start;
}
 
.header .header-container .header-container-right  {
    justify-content: flex-end;
}


@media (max-width: 1280px) {
.header .header-container {
    padding-left: var(--margindesktop);
    padding-right: var(--margindesktop);
    width: 100%;
	height: 100px;
    display: flex;
    justify-content: space-around;
	align-items: center;
}	
}


@media (max-width: 975px) {
.header .header-container .header-container-left {
    width: 100%;
}
.header .header-container .header-container-right {
    width: 0%;
}
}

@media (max-width: 675px) {
.header .header-top-bar {
	display: none;
}
}

/* HEADER MENU */

.header .menu ul {
    display: inline-flex;
    list-style: none;
    margin: unset;
}


.header .menu ul li {
    margin-bottom: unset;
    padding-left: calc( var(--margindesktop) / 2);
}
.menu > li > ul.sub-menu {
    border: none !important;
    padding: 0px !important;
    z-index: 2;
    height: unset;
}
.menu > li > ul.sub-menu li {
    padding: 0px !important;
}

/* HEADER LOGO */

.header .header-container .custom-logo {
   transition: var(--transition);
    height: 50px;
    display: flex;
    align-items: center;
	margin: 0;
	padding: 0;
	/*margin-bottom: 15px;*/
}


/* ///////////////// HEADER MOBILE */

@media (min-width: 976px) {
.header .header-mobile {
    display: none!important;
}
}

.header .header-mobile {
    display: none;
}

.header .header-mobile {
	width: 100%!important;
}

/*///////////////////////////////////////////// FOOTER */
.footer-copyright,
.footer-container-bottom,
.footer .footer-container,
.footer-container-contact .footer-widgets  {
    width: var(--widthdesktop);
    margin: 0px auto;
}
.footer-container-contact .footer-widgets  {
    z-index:2;
    position: relative;
}
.footer-container-bottom {
    padding-top: calc(var(--standard-padding) * 2);
    padding-bottom: calc(var(--standard-padding) * 2);   
}
.footer-container-top {
	padding: var(--margindesktop) 0;
    display: flex;
    justify-content: flex-start;
}

.footer-container-bottom h3 {
    font-size: 1.3em !important;
    font-weight: 700;
    margin-bottom: var(--margindesktop);
}
.footer-container-bottom .quick-links::after {
    content: '';
    border-bottom: 3px solid var(--metalite-group);
    width: 75px;
    display: block;
    padding-bottom: 10px;
}
.footer-container-bottom #menu-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    list-style: none;
    padding: 0;
    margin-bottom: 4em;
}
.footer-container-bottom #menu-quick-links li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding-bottom: 10px;
}
.footer-container-bottom #menu-quick-links li a {
    color: var(--black);
    font-family: "Roboto",Arial,sans-serif;
    font-weight: 400;
}
.footer-copyright {
    border-top: 5px solid var(--black);
    padding: var(--margindesktop) 0;
}
.footer-copyright .footer-navigation ul li a {
    color: var(--black);
}
.footer-container-bottom #menu-quick-links li a:hover,
.footer-copyright .footer-navigation ul li a:hover {
    color: var(--metalite-group);
}
.footer-copyright .footer-navigation .sub-menu {
    display: none !important;
}
.footer-company-logo {
    width:50%;
    float:left;
}
.footer-company-logo img {
    height: 40px;
}
.footer-container-contact {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding: var(--margindesktop);
    background-repeat: no-repeat !important;
    color: var(--white);
    
}
.footer-LinkedIn {
   background-color: #0072B1;
   border-radius: 100%;
   width:35px;
   height: 35px;
}
.footer-LinkedIn a {
    color: var(--white);
}
.footer-LinkedIn a span {
    font-size: 20px;
    width: 20px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.footer-logos .sgs_logo {
   height: 80px; 
}
.footer-logos .made_logo {
    background-color: #ffffff;
    max-height: 40px;
}

@media (max-width: 768px) {
    .entry-content > :not(.full-width-element) {
        width: 100% !important;
        padding: 0px 40px;
    }
    .footer-container-bottom,
    .footer-copyright {
        padding: var(--margindesktop); 
        
    }
    .grid.cols-2,
    .grid.cols-4,
    .footer-container-bottom #menu-quick-links {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .footer-company-logo {
        padding: 0px 20px 0px 0px;
    }
    .footer-copyright, .footer-container-bottom, .footer .footer-container, .footer-container-contact .footer-widgets {
        width:100% !important;
        flex-direction: column;
    }
    .footer-navigation,
    .footer-navigation ul {
        display: block;
        margin-left: 0px !important;
    }
    .footer-navigation ul {
        margin-top: 30px;
    }
    .footer-navigation ul li {
        margin-bottom: 20px;
    }
    .footer-container-bottom #menu-quick-links {
        margin-bottom: 0px;
    }
    .contact-detail-box {
        position: unset !important;
        background-color: rgba(255, 255, 255, .85);
        border: 1px solid rgba(0, 0, 0, .15);
        -webkit-box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, .15);
        box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, .15);
        padding: var(--margindesktop);
        margin: 0 auto;
        display: block !important;
        max-width: 300px;
        transform: none !important;
        margin: var(--margindesktop) auto !important;
        
    }
}




/*///////////////////////////////////////////// CONTAINER */

/*
.main-container {
	opacity: 1;
}
*/
.main-container {
    position: relative;
}
.home .main-container {
    top: 0px;
}

.home.admin-bar .main-container {
    top: var(--wp-admin--admin-bar--height);
}


div#container .header,
div#container header {
	padding-left: calc( ( 100% - var(--widthdesktop) ) / 2 );
    padding-right: calc( ( 100% - var(--widthdesktop) ) / 2 );
    padding-top: var(--margindesktop);
    width: 100%;
}

/* ENTRY CONTENT */
/*.home .entry-content .section-hero {*/
/*    margin-top: 200px;*/
/*}*/



.entry-content > :not(.full-width-element) {
    width: var(--widthdesktop);
    margin: auto auto;
}

.entry-content > .full-width-element {
	width: 100%;
}

@media (max-width: 1280px) {
div#container .header,
div#container header {
	padding-left: var(--margindesktop);
    padding-right: var(--margindesktop);
    padding-top: var(--margindesktop);
    width: 100%;
}	

/* TBC .entry-content > .full-width-element, */
.entry-content > :not(.full-width-element) {
	width: var(--widthdesktop);
	margin: 0px auto;
}
}
.privacy-policy .entry-content.is-classic,
.page-terms-and-conditions .entry-content.is-classic {
    width:100%;
    max-width:var(--widthdesktop);
    margin: 0 auto;
}

/* ENTRY FOOTER */

.entry-footer > :not(.full-width-element) {
	padding-left: calc( ( 100% - var(--widthdesktop) ) / 2 );
    padding-right: calc( ( 100% - var(--widthdesktop) ) / 2 );
    width: 100%;
}

@media (max-width: 1280px) {
.entry-footer > :not(.full-width-element) {
	padding-left:  var(--margindesktop);
	padding-right:  var(--margindesktop);
	width: 100%;
}
}

/*///////////////////////////////////////////// BEADCRUMBS */

.section-breadcrumb {
    /*display: flex;*/
    /*align-items: center;*/
	padding-left: calc( ( 100% - var(--widthdesktop) ) / 2 );
    padding-right: calc( ( 100% - var(--widthdesktop) ) / 2 );
    padding-top: var(--margindesktop);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.section-breadcrumb .homeLink {
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif; 
    margin-bottom: calc(var(--margindesktop) / 2);
}
.section-breadcrumb .homeLink a {
    color: var(--white) !important;
}
.header .section-breadcrumb .homeLink a:hover {
    color: var(--metalite-group) !important;
}
.section-breadcrumb .page-name {
    line-height: 1.3;
    font-family: "Montserrat";
    font-size: 2.667em;
    font-weight: 600;
    display: block;
    color: var(--white);
} 

@media (max-width: 975px) {
    .section-breadcrumb {
        padding: var(--standard-padding);
    }
}
@media (max-width: 768px) {
    .section-breadcrumb .page-name {
        font-size: 2em;
    }
}

/*///////////////////////////////////////////// DIVIDERS */

.divider-top {
	padding-left: unset!important;
	padding-right: unset!important;
	width: 100%!important;
	position: absolute;
	z-index: 0;
	background-color: #ffffff;
	top: -1px;
}

.divider-bottom {
	padding-left: unset!important;
	padding-right: unset!important;
	width: 100%!important;
	position: absolute;
	z-index: 0;
	background-color: #ffffff;
	bottom: -1px;
}

.divider-bottom img {
	width: 100%;
}

/*///////////////////////////////////////////// SEPARATOR */

body .entry-content > .wp-block-separator,
body .entry-content > hr  {
	margin-bottom: 10px
	margin-top: 10px;
    margin-left: calc( ( 100% - var(--widthdesktop) ) / 2 );
    margin-right: calc( ( 100% - var(--widthdesktop) ) / 2 );
	width: auto!important;
	color: var(--grey-light);
}

@media (max-width: 1280px){
body .entry-content > .wp-block-separator,
body .entry-content > hr {
    margin-left: var(--margindesktop);
    margin-right: var(--margindesktop);
    width: auto!important;
}
}

/*///////////////////////////////////////////// COLUMNS */

:where(.wp-block-columns.is-layout-flex) {
	gap: var(--margindesktop);
}

/*///////////////////////////////////////////// FORMS */

.wpcf7 br {
	display: none;
}

form select,
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="password"],
form textarea, 
.wpcf7 input.wpcf7-text,
.wpcf7 input.wpcf7-tel,
.wpcf7 input.wpcf7-email,
.wpcf7 textarea {
	padding: 0 10px;
	height: 40px;
	margin-bottom: calc( var(--margindesktop) / 2);
	font-size: 16px;
	background-color: #ffffff;
	width: 100%;
	transition: var(--transition);
	
    /* Disable rounding on iPhone */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;      
}

.wpcf7 textarea {
	height: unset;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	font-size: 12px;
	margin: unset;
	text-align: center;
	padding: calc(var(--margindesktop) / 2);
	margin-bottom: calc(var(--margindesktop) / 2);
}

.wpcf7 .wpcf7-list-item {
	margin: 10px 0 0 0;
}

.wpcf7 span.wpcf7-form-control.wpcf7-acceptance {
	display: flex;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: 16px;
	font-weight: unset;
	display: block;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	opacity: 1;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	opacity: 1;
}


.wpcf7 .form-row p {
	display: flex;
}

@media (max-width: 475px) {
	/* Add specific styles for screens up to 475px wide */
}

/* FORM COLUMNS */

/* Container for two-column layout */
.cf7-two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cf7-two-column p {
    margin-bottom: unset;
}

/* Individual column styling */
.cf7-column {
    flex: 1;
    box-sizing: border-box;
    max-width: calc(50% - calc( var(--margindesktop) / 2) );
}

/* Flex display for rows within columns */
.cf7-column > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Full-width section */
.cf7-fullwidth {
    width: 100%;
    margin-top: calc( var(--margindesktop) / 2); /* Adjust spacing as needed */
}

/* Adjust styles for smaller screens */
@media screen and (max-width: 768px) {
	.cf7-two-column {
		flex-direction: column;
	}
    .cf7-column {
        max-width: 100%;
    }
}


/*///////////////////////////////////////////// BUTTONS */
.wp-block-button__link,
.cta-button,
.wpcf7 input.wpcf7-submit,
li.sf-field-submit input {
  background-color: var(--metalite-group);
  height: 45px;
  width: fit-content;
  min-width: 160px;
  color: #ffffff !important;
  font-size: .8em;
  font-weight: 700;
  transition: var(--transition);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: unset;
  padding-bottom: unset;
  display: flex;
  align-items: center;
  border-color: var(--metalite-group);
  border-style: solid;
  border-width: 2px;
  line-height: unset;
  border-radius: 0px !important;
}

.cta-button.button-primary {
	background-color: var(--metalite-group);
}

.cta-button.button-secondary,
li.sf-field-submit input {
	color: var(--black);
	background-color: var(--grey);
}
.wp-block-button__link:hover,
.cta-button.button-primary:hover,
.wpcf7 input.wpcf7-submit:hover {
	background-color: var(--white);
	color: var(--metalite-group);
	cursor: pointer;
}

.cta-button.button-secondary:hover,
li.sf-field-submit input:hover {
	background-color: var(--white);
	color: var(--metalite-group));
	cursor: pointer;
}
.wp-block-button__link::after,
.cta-button::after,
.wpcf7 input.wpcf7-submit::after,
li.sf-field-submit input::after {
  content: "\f061";
  font-family: dashicons;
  font-weight: 900;
  margin-left: calc(var(--margindesktop) / 2);
  content: "\f345";
}

/*///////////////////////////////////////////// TABLES */

table * ,
.wp-block-table * {
	font-size: 16px;
	line-height: calc(16px * 1.4);
}
.wp-block-table thead {
	background-color: var(--grey-light);
}
.wp-block-table th {
	font-family: "FontTown10Bold", Helvetica;
	text-align: left;
}
table th,
table td,
.wp-block-table th, 
.wp-block-table td {
	padding: 15px 10px;
	;
}
table:not(.lwa table) tr,
.wp-block-table tr {
	border-bottom: 1px solid var(--grey-light);
}
@media (max-width: 475px){
	table td:not(:first-child),
	.wp-block-table th:not(:first-child), 
	.wp-block-table td:not(:first-child) {
		padding: 15px 2.5px;
	}
}

/*///////////////////////////////////////////// IMG & POST IMAGE */

.wp-post-image, 
img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: calc( var(--margindesktop) / 2);
    margin-top: calc( var(--margindesktop) / 2);
}

/*///////////////////////////////////////////// NAV LINKS */

.nav-links {
    display: flex;
    justify-content: space-between;
    padding-left: calc( ( 100% - var(--widthdesktop) ) / 2);
    padding-right: calc( ( 100% - var(--widthdesktop) ) / 2);
    padding-top: var(--margindesktop);
    padding-bottom: var(--margindesktop);
}

.nav-links * {
	transition: var(--transition);
}
.nav-links a {
	color: var(--dark-grey);
	text-decoration: unset;
}
.nav-links .nav-previous:hover a,
.nav-links .nav-next:hover a {
	color: var(--dark-grey);
}

@media screen and (max-width: 1280px) {
.nav-links {

    padding-left: var(--margindesktop);
    padding-right: var(--margindesktop);

}
}

/*///////////////////////////////////////////// ADMIN BAR */

@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed;
	}
}
/*///////////////////////////////////////////// RE-CAPTCHA */

.grecaptcha-badge { 
    visibility: hidden;
}

/*///////////////////////////////////////////// FANCYBOX */

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 100040;
    visibility: hidden;
    background-image: unset;
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
}

.fancybox-prev span:before {
    content: "\f341";
    font-family: 'dashicons';
}

.fancybox-next span:before {
    content: "\f345";
    font-family: 'dashicons';
}


/*///////////////////////////////////////////// SEARCH AND FILTER */

.searchandfilter ul {
    display: flex;
    flex-wrap: wrap;
}

.searchandfilter label {
    width: 100%;
}

.searchandfilter ul li {
    padding: unset;
    width: 100%;
}
/*///////////////////////////////////////////// COUNTERs */

.wpsm_number {
    font-family: "Roboto",Arial,sans-serif !important;
}
.wpsm_count-title {
    margin-top: 0px !important;
}
.wpsm_col-md-4 {
    border-right: 1px solid var(--white);
}
.wpsm_col-md-4:last-child {
    border-right: 0;
}
@media(max-width: 768px) {
    .wpsm_col-md-4 {
        border: none !important;
    }
    .wpsm_counterbox {
        margin: 0px !important;
    }
}
/*///////////////////////////////////////////// PAGINATION */

.archive-pagination {
    margin-top: var(--margindesktop);
}

/* ===== EBY mobile header fixes ===== */

/* 0) Make sure the mobile nav actually hides/shows via [hidden] */
.mobile-nav[hidden] { display: none !important; }

/* 1) Desktop defaults */
.primary-nav { display: block; height: 100%; }
.primary-nav ul {height: inherit;}


/* 2) Mobile breakpoint: hide desktop nav, show mobile block, show toggle */
@media (max-width: 975px) {
  /* show the toggle and make it visible in flow */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: none;
    border: 0;
    padding: .25rem .5rem;
    line-height: 1;
    cursor: pointer;
  }

  /* hide desktop nav on small screens */
  .primary-nav { display: none !important; }

  /* undo the "always hide" from general.css */
  .header .header-mobile { position: absolute; top: 0px; z-index: 1001; top: 100px; background-color: var(--white); }
  .header .header-mobile #menu-main-navigation-1 {padding-top: 0px; }
  .header a { color: var(--black) !important;}
  
  /* make the mobile menu block-level when shown (we still use [hidden] to toggle) */
  .mobile-nav { display: block; }

  /* optional: give the panel some structure so it’s not collapsing */
  .mobile-nav .menu { display: block; padding: .75rem 0; }
  .mobile-nav .menu > li { padding: .5rem var(--margindesktop); position: relative; }
  .mobile-nav .menu a.menu-link { display: block; }
  
  .mobile-nav .menu > li button {
      position: absolute;
      right: 15px;
      top: 8px;
  }
    .menu > li > .submenu-toggle span {
        color: var(--black);
    }
    .menu > li > ul.sub-menu {
        margin-top: 10px;
    }
    .menu > li > ul.sub-menu .menu-item .menu-link .menu-text {
        color: var(--white) !important;
    }
}

/* 3) Header layout tweaks so the toggle doesn’t get pushed off-screen */
.header .header-container { justify-content: space-between; } /* was space-around */
.header .header-container-left,
.header .header-container-right { align-items: center; }

/* 4) Logo: target WP’s markup reliably */
.custom-logo-link img,
img.custom-logo {
  display: block;
  height: 50px;
  width: auto;
  margin: 0; /* avoid the 15px bottom gap pushing things */
}

/* 5) Submenu defaults (desktop); mobile uses stacked styles above */
/*.menu li > ul.sub-menu[hidden] { display: none; }*/
/*.menu li.submenu-open > ul.sub-menu { display: block; }*/

.page-id-278 .border-box {
    background-color: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.15);
    -webkit-box-shadow: 2px 2px 1px 0 rgba(0,0,0,.15);
    box-shadow: 2px 2px 1px 0 rgba(0,0,0,.15);
    padding: var(--margindesktop);
} 
.border-box h2 {
    margin-bottom: 0px !important;
    font-size: 1.2em;
    font-family: "Montserrat";
}

.border-box .safe-svg-inside svg {
    fill: var(--metalite-group);
}
.border-box .safe-svg-inside:hover svg {
    fill: #333;
}


/*////////////////////////////////CONTACT STYLES */
.contact-detail-container {
    max-width: var(--widthdesktop);
    margin: 0px auto;
}
.contact-detail-box {
    background-color: var(--white);
    padding: 15px;
    width: unset !important;
    position: absolute;
    z-index: 2;
    min-width: 300px;
    top:50%;
    transform:translate(0%, -50%);
}
.contact-detail-box .wp-block-heading {
    font-size: 1.3em !important;
    font-weight: 700;
    margin-bottom: calc(var(--margindesktop) / 2 );
    color: var(--metalite-group);
}
.contact-detail-box .wp-block-heading::after {
    content: '';
    border-bottom: 3px solid var(--metalite-group);
    width: 75px;
    display: block;
    padding-bottom: 10px;
}
.contact-detail-box p a {
    color: var(--metalite-group) !important;
}
@media(max-width:768px) {
    .taxonomy-filter {
        display: none;
    }
    .accordion-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* ////////////////// PPC TEMPLATE PAGE STYLES */
.page-template-ppc-page .header-container.m_orange a {
    border-bottom: none !important;
}

