@import url('http://fonts.googleapis.com/css?family=Pacifico|Open+Sans:300,400,600');

* {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

img {
	image-rendering: auto;
	image-rendering: crisp-edges;
}

a {
	text-decoration: none;
	color: inherit;
}

.link {
	font-size: 3.8em;
}

p {
	font-size: 2.5em;
	margin: 1em 0;
}

.description {
	margin: 1em auto 2em;
	font-weight: 300;
}

h1.description {
    margin: 1em auto 2em;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.textcontent {
	margin: .5em auto .5em;
	font-weight: 300;
}

.textheader {
	margin: .5em auto .5em;
	font-weight: 700;
	font-size: 3em;
}

body {
	width: 98%;
	min-width: 300px;
	max-width: 800px;
	margin: 1.5em auto;
	color: #333;
}

.page-header {
	text-align: center;
}

.page-logo {
	margin: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 0.5em 0.75em;
	margin-bottom: 0.5em;
	background: #fff;
	color: #000;
	border: 2px solid #000;
	display: inline-block;
}

h1 {
	font-family: 'Pacifico', cursive;
	font-weight: 400;
	font-size: 3em;
}

ul {
	list-style: none;
	padding: 0;
}

ul .inner {
	padding-left: 1em;
	/*overflow: hidden;*/
	display: none;
}

.innerVid {
	padding-right: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
}

ul li {
	margin: .5em 0;
}

ul li a.toggle {
	font-size: 3.5em;
	width: 100%;
	height: 166;
	display: block;
	background: rgba(0, 80, 158, 0.99);
	color: white;
	padding: .75em;
	border-radius: 0.15em;
	transition: background .3s ease;
}

ul li a.toggle:hover {
	font-size: 3.5em;
	background: rgba(0, 0, 0, 0.78);
}
li.inner-li{
	margin: 0;
    padding-left: 1.5rem;
	font-size: 1.5em;
	list-style: disc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

img.fit-image {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

/* Responsive Safety Guide Section */
.safety-guide {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.guide-list {
    margin: 0;
    padding-left: 1.5rem;
	font-size: 1.5em;
	list-style: disc;
}

.guide-list li {
    font-size: clamp(1.8rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.drawer-section{
    max-width:1100px;
    margin:auto;
    padding:3rem 1rem 4rem;
    background:#fff;
}

.drawer-section h2{
    margin:0;
    font-size:3rem;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    color:#0d43a3;
}

.drawer-section h3{
    margin:.2rem 0 2rem;
    font-size:2.5rem;
    line-height:1;
    font-weight:900;
    color:#0d43a3;
}

.drawer-section .drawer-alert{
    margin-bottom:2rem;
    max-width:900px;
    font-size:1.55rem;
    font-weight:700;
    line-height:1.35;
    color:#e00000;
}

.drawer-section .drawer-list{
    margin:0;
    padding-left:2rem;
	list-style: disc;
}

.drawer-section .drawer-list li{
    margin-bottom:.9rem;
    font-size:1.6rem;
    line-height:1.35;
    color:#111;
}

.drawer-section .drawer-list strong{
    font-weight:800;
}

.drawer-section .drawer-list li::marker{
    font-size:1.15rem;
}

.mobile-image img,
.mobile-image-wide img,
.extra-image img {
	width: 100%;
	height: auto;
	display: block;
}

.requirement {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	align-items: flex-start;
}

.req-number {
	font-size: 2rem;
	font-weight: 700;
	color: #666;
	flex-shrink: 0;
}

.requirement p {
	margin: 0;
	line-height: 1.5;
  font-size: 2em;
}

.req-body-with-image {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex: 1;
}

.req-body-with-image p {
	flex: 1;
	margin: 0;
}

.req-body-with-image .req-image {
	flex-shrink: 0;
	width: 200px;
}

.req-body-with-image .req-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 600px) {
	.req-body-with-image {
		flex-direction: column;
	}

	.req-body-with-image .req-image {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

.drawer-extra h4 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	margin-bottom: 15px;
}

.drawer-extra-text{
  font-size: 1.5em;
}

.drawer-extra-text p {
    font-size: 1.5em;
    margin: 1em 0;
}

.drawer-extra-text h5 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 0px;
}

.mobile-image-wide {
	max-width: 700px;
	margin: 0 auto;
}

.full-width {
	grid-column: 1 / -1;
}

/* Tablet */
@media (max-width: 992px) {

	.drawer-extra {
		grid-template-columns: 1fr;
	}

	.mobile-image,
	.extra-image {
		/*max-width: 350px;*/
		margin: 0 auto;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.requirement {
		flex-direction: column;
		gap: 5px;
	}

	.req-number {
		font-size: 1.5rem;
	}

	.drawer-extra ul {
		padding-left: 20px;
	}
}

/* Custom classes for PPE section */
.ppe-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    column-gap:3rem;
    align-items:start;
}

.ppe-text .guide-list{
    margin:0;
}

.ppe-text li{
    font-size:1.55rem;
    line-height:1.55;
    margin-bottom:1.25rem;
}

.ppe-text strong{
    font-weight:700;
}

.ppe-images{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.ppe-image{
    margin:0;
}

.ppe-image img{
    width:100%;
    display:block;
    height:auto;
}

/* original image layout match */

.hardhat{
    width:240px;
    margin-bottom:20px;
}

.earplugs{
    width:300px;
    margin-bottom:24px;
    margin-left:-40px;
}

.vest{
    width:330px;
}

@media (max-width:900px){

    .ppe-layout{
        grid-template-columns:1fr;
    }

    .ppe-images{
        margin-top:2rem;
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:1rem;
        align-items:end;
    }

    .hardhat,
    .earplugs,
    .vest{
        width:100%;
        margin:0;
    }

}

@media (max-width:600px){

    .ppe-images{
        grid-template-columns:1fr;
    }

}
