:root {
	--txt:#222;
	--bg0:black;
	--bg1:#333;
	--bg2:#888;
	--bg3:#efefef;
	--bg4:#efefef;
	--bg-gray:gray;
	--bg-snow:snow;
	--bg-tomato:tomato;
	--bg-blue:dodgerblue;
	--bg-accent:#fc6408; /* brick */
	--bg-link:orange;
	--accord-item-min-width:250px;
	--accord-item-max-width:450px;
	--opacity1: rgba(0, 128, 128, 0.8);
}
*{margin:0;padding:0;}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #fff;
}

h1 {
	color: hsl(240, 100%, 27%);
	font-size:calc(1.2rem + 1.4vw);
    font-weight: 300;
	text-align:center;
	margin-top: 2rem;
    margin-bottom: 0.5rem;
}
h2 {
	color: hsl(240, 100%, 27%);
	font-size:calc(1rem + 1vw);
    font-weight: 300;
	text-align:center;
	margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
h3 {
	color:#444;
	font-size:2rem;
    font-weight: 300;
	text-align:center;
	margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
h5 {
	color:#444;
	font-size:1.5rem;
    font-weight: 300;
	text-align:left;
	margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
	color:#333; 
	font-size:1.1rem; 
	line-height: 1.6;
	margin-bottom: 15px;
}
	
a {
    color: var(--bg1);
    text-decoration: none; 
}

a:hover {
    color: var(--bg-accent);
    text-decoration: underline; 
}

a:visited {
    color: gray; 
}

a:active {
    color: var(--bg1);
}
ul {
	padding-left: 20px;
	margin:20px;
}


ul li {
	color:#333;
	font-size:1.1rem; 
	line-height: 150%;
	letter-spacing: 0.5pt;
	margin-left:20px;
}	

ul li a{
	color:#333;
	text-decoration:none;	
}	
ul li a:hover{
	color:#333;
	color:var(--bg-accent);
}

/* General container styling */
.container {
	display: flex;
	flex-direction:row;
	flex-wrap:nowrap;
    justify-content: flex-start;
	align-items:flex-start;
	margin:0;
	padding:0;
    width:100%;
}

.column1 {
	min-width:15%;
	max-width:28%;
}
.column2 {
	max-width:100%;
	border:3px solid red;
} 

@media (max-width:1200px) {
    .container {
    }
    .column1 {
		padding:0;		
    }
    .column2 {
   }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    .column1 {
		width:100%;
		max-width:100%;
		padding:0;		
		background-color: var(--bg3);
	}
    .column2 {
    }
}

/*------------------------- skip link --------------*/
/* Hide the skip link by default */
.skip-link {
	position: absolute;
	top: -40px; /* Move it off-screen initially */
	left: 10px;
	background-color: #000;
	color: #fff;
	padding: 8px 16px;
	text-decoration: none;
	border-radius: 5px;
	z-index: 100; /* Ensure it stays above other elements */
	transition: top 0.3s ease;
}

/* Show the link when it's focused (e.g., by keyboard) */
.skip-link:focus {
  top: 0;
  opacity: 1;
}

/*------------------------- top slogan --------------*/
.slogan_container{
	display: flex; 
	flex-wrap: nowrap; 
	justify-content: space-between; 
	width: 100%; 
	margin: 0; 
	padding: 5px 0; 
	background-color: var(--bg1);"
}
.slogan_sites {
	display: flex; 
	flex-wrap: nowrap; 
	align-items: center;
}          
.slogan_service {
	display: flex; 
	flex-wrap: nowrap; 
	align-items: center;
}
.we_ship {
}
.slogan_container_2nd_line{
	display: flex; 
	flex-wrap: nowrap; 
	justify-content: center; 
	width: 100%; 
	margin: 0; 
	padding: 2px 0; 
	background-color: var(--bg2);
}
.slogan_2nd_line{
		display:none;
}
@media (max-width: 768px) {
	.we_ship {
		display:none;
	}
	.slogan_2nd_line{
		display:flex;
	}
}

/*------------------------- top menu ---------------*/
.std_logo {
	padding:1rem;
}
.std_logo a {
    display: flex;
    align-items: center; /* Vertically aligns images in the middle if their heights differ */
    justify-content: flex-start; /* Ensures they stay side by side, aligned to the left */
    text-decoration: none; /* Removes any underline or text decoration */
}
.std_logo a img {
    display: block; /* Ensures there is no gap below the images */
    margin-right: 5px; /* Optional: Adds space between the images */
}

.top_menu_container {
    display: flex;
	flex-direction:row;
	flex-wrap:nowrap;
    justify-content: flex-start;
	align-items:center;
    margin: 0 auto;
	padding:0;
	min-height:120px; 
    width:100%;
	background-color:var(--bg3);
}

.top_menu_w_search {
    display: flex;
	flex-direction:row;
	flex-wrap:wrap;
    justify-content:center;
	align-items:center;
    margin: 0 auto;
	padding:0 2rem;
}

.top_menu {
	padding:1rem;
}
.top_menu ul {
    display:flex; 
    justify-content:space-around;
    white-space: nowrap;
    list-style: none;
    padding-top: 6px;
    margin: 0;
	margin-left:calc(2px + 2vw);
}
.top_menu li {
    display: inline-block;
    margin:0;
	text-transform:uppercase;
}
.top_menu li a {
    display: inline-block;
	color:#333;
	font-size:1.1rem;
    text-decoration: none;
    margin: 0;
    padding: 0 calc(3px + 1vw);	
}

.top_menu li a:hover {
    color:var(--bg-accent);
}

@media (max-width: 992px) {
	.std_logo {
		padding:0rem;
		padding-top:1rem;
	}
	.top_menu_container {
		flex-direction:column;
		flex-wrap:wrap;
		justify-content:center;
		align-items:center;
	}
}
@media (max-width: 768px) {
	.top_menu_container {
		flex-direction:column;
		justify-content:center;
		min-height:90px; 
	}
	.top_menu {
		display:none;
	}
	.top_menu ul {
		display:flex; 
		flex-direction:column;
		padding-bottom:2rem;
	}
	.top_menu li {
		padding-top:1rem;
		border-bottom: 1px solid gray;
	}
}
.thin-line {
    height: 1px; /* Height of the line */
    background-color: var(--bg1); /* Line color */
    width: 100%; /* Ensures it spans the entire width */
    margin: 0; /* Adds optional vertical spacing */
}


/*------------ Breadcrumb Container -------------*/
.breadcrumb {
	display: flex;
	list-style: none;
	padding: 10px 15px;
	background-color: #fff;
	border-radius: 5px;
	margin: 20px 0;
}

/* Breadcrumb Items */
.breadcrumb li {
	display: inline;
	text-align: left;
}

.breadcrumb li + li::before {
	content: ">";
	margin: 0 10px;
	color: #6c757d;
}

.breadcrumb a {
	color: var(--bg-accent);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--bg1);
	text-decoration: underline;
}

/* Breadcrumb Adjustments for Small Screens */
@media (max-width: 768px) {
	.breadcrumb {
		flex-wrap: wrap;
	}

	.breadcrumb li {
		margin-bottom: 5px;
	}

	.breadcrumb li + li::before {
		margin-left: 5px;
		margin-right: 5px;
	}
}


/*----------- footer --------------*/
.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:var(--bg3);
	padding:2rem;
	padding-bottom:0;
}
.footer-box {
	width:100%;
	margin:0;
	padding:0;
	background-color:var(--bg3);
}
/* Footer styling */
.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four equal columns */
    gap: 20px;
    color: #444;
    padding: 20px;
    text-align: left;
    background-color:var(--bg3);
}

/* Footer section styling */
.footer-section {
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.2rem;
	font-weight:500;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
	margin-bottom: 8px;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
	color:var(--bg-accent);
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer {
		grid-template-columns: repeat(2, 1fr); /* Four equal columns */
    }
}

@media (max-width: 768px) {
	.ccard {
		justify-content: flex-start;
	}
    .footer {
        grid-template-columns: 1fr; /* Single column layout */
    }

}

/*----------- copyright --------------*/
.ccard {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:var(--bg3);
	padding:20px;
	padding-top:0;
}

/*----------- copyright --------------*/
/* Copyright section styling */
.copyright-section {
    display: flex;
    justify-content: space-between; /* Align content to the left and right */
    align-items: center; /* Center vertically */
    background-color:var(--bg1);
    color: white;
    padding: 10px 20px;
    padding-bottom: 48px;
    font-size: 0.9rem;
}

/* Left content styling */
.left-content {
    display: flex;
    flex-direction:column;
}

/* Right content styling */
.right-content {
    text-align: right;
}

/* Link styling */
.copyright-section a {
    color:white;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright-section a:hover {
    color:var(--bg-accent);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .copyright-section {
        flex-direction: column; /* Stack elements on smaller screens */
        text-align: center;
    }
    
    .left-content {
        margin-bott
	}
}