/* BaseG */

:root {
	--brand-color: rgb(18, 39, 48);
	--brand-color-opacity: rgba(18, 39, 48, 0.2);
	--brand-color-opacity-dark: rgba(18, 39, 48, 0.9);
	--brand-color-opacity-mid: rgba(18, 39, 48, 0.6);
	--brand-accent-color: rgb(189, 147, 7);
	--brand-accent-color-light: rgba(189, 147, 7, 0.5);
	--brand-r2: rgb(138, 141, 151);
	--brand-r3: rgb(188, 188, 176);
	--brand-white-opacity: rgba(250, 250, 250, 0.4);
	--brand-white-opacity-dark: rgba(250, 250, 250, 0.8);
	--brand-white: rgb(250, 250, 250);
}

body {
    margin: 0 !important; /* reset */
}

.edit-link {
    display: none !important; /* remove */
}

/* TYPOGRAPHY */
h1 {
	color: var(--brand-white);
	text-transform: uppercase;
	font-size: 2.5rem;
	font-weight: 700;
    line-height: 110%;
	letter-spacing: 1px;
}
h2 {
	color: var(--brand-white);
	font-size: 1.6rem;
	font-weight: 100;
	letter-spacing: 1px;
	margin: 10px 0 0 0;
}
h3 {
	color: var(--brand-accent-color);
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 130%;
	margin: 0 0 30px 0;
}
h4 {
	color: var(--brand-color);
	letter-spacing: 0.75px;
}
h5 {
	color: var(--brand-accent-color);
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.75px;
	margin: 100px 0 30px 0;
}
h6 {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.75px;
}
p {
	color: var(--brand-white);
	font-weight: 100;
	letter-spacing: 0.5px;
}
a  {
	color: var(--brand-color);
	text-decoration: none;
}
a:hover {
	color: var(--brand-accent-color);
}
h2 span {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--brand-accent-color);
}
p span {
	font-weight: 500;
	color: var(--brand-accent-color);
}

@media screen and (max-width: 600px) {
	h2 {
		font-size: 1.5rem;
		line-height: 130%;
		margin: 20px 0 0 0;
	}
	h2 span {
		font-size: 1.3rem;
	}
	h3 {
		margin: 0 0 0 0;
	}
	p {
		font-size: 0.9rem;
	}
}

/* BACKGROUND EFFECT */
/* ALL Pages Repeat Pattern*/
.background-all,
.background-vision {
	position: relative;
    width: 100%;
    height: auto;
	background-image: url('');
	isolation: isolate;
}
/* Site Background Overlay*/
.site::after {
	content: '';
	position: absolute;	
    background-color: var(--brand-color);
    inset: 0; /* sets left right top bottom to 0 */
	z-index: -1;
}


/* HEADER - Flex Box */
.head-container {
	position: fixed;
	display: flex;
    width: 100%;
}

/* HEADER - Flex Box - Logo */
/* make nav dissapear on mouse scroll - added java script */
#header-logo {
	position: fixed;
	top: 0;
    background-color: transparent;
	width: 100%;
	height: 110px;
	transition: top 0.8s;
}
#header-logo img {
	margin: 25px 0 0 30px;
	max-width: 200px;
}

/* HEADER - Flex Box - Navigation */
#site-navigation ul {
	justify-content: flex-end;
	margin: 20px 30px;
    gap: 20px;
    list-style: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
	font-weight: 500;
}
@media screen and (max-width: 700px) {
    .head-container {
        flex-direction: column;
		align-items: center;
    }
	#header-logo img {
		margin: 22px 0 0 10%;
		max-width: 160px;
	}
}


/* Show Burger Menu in Landscape Orientation on Small Screens */
@media only screen 
	and (max-width: 700px) 
	and (orientation: landscape) {
	#site-navigation ul {
		display: none;
    }
	#analog-switch {
		display: block;
		position: fixed;
		top: 20px;
		right: 20px;
		cursor: pointer;
		z-index: 2;
	}
	#analog-switch img {
		max-width: 40px;
	}

}
/* Show Burger Menu in Portrait Orientation on Small Screens */
@media only screen 
	and (max-width: 700px) 
	and (orientation: portrait) {
		#site-navigation ul {
			display: none;
		}
		#analog-switch {
			display: block;
			position: fixed;
			top: 20px;
			right: 20px;
			cursor: pointer;
			z-index: 2;
		}
		#analog-switch img {
			max-width: 40px;
		}
}

/* BURGER MENU - Styles */
#analog-switch {
    display: none;
}

/* Show burger menu on small screens */
@media screen and (max-width: 700px) {
    #analog-switch {
        display: block;
    }
    .menu-toggle {
        display: none;
    }
}



/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color:  var(--brand-color-opacity-dark);
	display: none;
	z-index: 1;
}
.menu-overlay ul {
    list-style-type: none;
	text-transform: uppercase;
    margin: 150px 0 40px 50px;
}
.menu-overlay ul li {
    margin-bottom: 15px;
}
.menu-overlay ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}
.menu-overlay ul li a:hover {
    color: var(--brand-accent-color);
}
.menu-overlay .current_page_item a {
    color: var(--brand-accent-color);
}

/* NAVIGATION STYLE - Main Menu */
.nav-menu li a {
	color: var(--brand-accent-color);
}
.nav-menu li a:hover {
	color: var(--brand-accent-color-light);
}
.nav-menu .current_page_item a {
	color: var(--brand-white);
}


/* SMARTSLIDER - PAGE.php + header-slider.php */
.pods-smartslider-container,
.pods-smartslider-container .smart-slider,
.pods-smartslider-container .n2-ss-slide-background,
.pods-smartslider-container .n2-ss-slide {
	height: 100vh;
	width: 100vw;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.pods-smartslider-container .n2-ss-slide-background {
	background-size: cover;
	background-position: center;
}
.scroll-to-anchor {
    display: block;
    width: 150px;
    height: 40px;
    background: url('https://rheintrading.com/wp-content/uploads/2024/09/RT-Arrow-Thin-White.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translate(-50%);
    z-index: 10;
    cursor: pointer;
	transition: opacity 0.3s ease;
	opacity: 0.8;
}
.scroll-to-anchor:hover {
    opacity: 0.2;
}
html {
    scroll-behavior: smooth;
}
.entry-header-image {
	position: relative;
	top: -55vh;
    text-align: center;
	z-index: 1;
}
.entry-header-image h1 {
	font-size: 3.5em;
	font-weight: 800;
	margin: 0 8% 0 8%;
	color: var(--brand-white-opacity-dark);
}
@media screen and (max-width: 1200px) {
	.entry-header-image {
		top: -62vh;
	}
	.entry-header-image h1 {
		font-size: 3em;
	}
}
@media screen and (max-width: 600px) {
	.entry-header-image h1 {
		font-size: 2em;
		margin: 0 5% 0 5%;
	}
}
/* iPhone iPad PORTRAIT*/
@media only screen 	
	and (min-device-width: 200px) 
	and (max-device-width: 1200px) 
	and (orientation: portrait) {
		.scroll-to-anchor {
			bottom: 100px;
	}
}
/* iPhone iPad LANDSCAPE*/
@media only screen 	
	and (min-device-width: 200px) 
	and (max-device-width: 1200px) 
	and (orientation: landscape) {
		.entry-header-image h1 {
			font-size: 2em;
		}
		.scroll-to-anchor {
			bottom: 10px;
	}
}

/* Slide Image Overlay*/
.pods-smartslider-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        var(--brand-color) 0%, 
        var(--brand-color-opacity) 50%, 
        transparent 100%
    ), var(--brand-color-opacity);
    background-blend-mode: multiply;
    z-index: 1;
}


/* ALL SITE - Flex-Box Container */
#page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* ALL PAGES navigation absolute - Flex Items */
#masthead.mast-header {
	position: absolute;
	flex-grow: 1;
	height: 150px;
    z-index: 10;
}
/* Alternative Vision Front Page Masthead relative positioning - Flex Items */
#masthead {
	flex-grow: 1;
	height: 150px;
}
#content {
	flex-grow: 1;
	margin: 0 0 50px 0;
}
#content-center {
	flex-grow: 3;
	margin: 0 0;
}
#colophon {
	margin-top: auto;
}
@media screen and (max-width: 600px) {
	#colophon {
		margin-top: 40px;
	}
}

/* PAGES MAIN SECTION - Containers */

/* ALIGN LEFT - Column Flex-Box Container */
#main.left-column{
    display: flex;
	flex-direction: column;
	height: auto;
}

/* ALIGN CENTER - Center Flex-Box Container */
#main.central-column {
	flex-grow: 10;
	text-align: center;
	margin: 0;
}
@media screen and (max-width: 800px) {
	#main.central-column {
		flex-direction: column;
	}
}

/*  OTHER - Row Flex-Box Container */
#main.left-row {
    display: flex;
    flex-wrap: wrap;
}


/* _____PAGEs CONTENT POSITIONING & STYLE ______*/

/* FRONT-PAGE - Content */
/* Logo */ 
.front-logo {
	width: 50px;
	margin: 2% 0 0 90%;
}

/* ALL PAGES - About Us - Generic Content */
.text-container {
	margin: 50px 10% 50px 10%;
	text-align: left;
}
.text-container p {
	font-size: 1.2rem;
	font-weight: 200;
	color: var(--brand-white);
	line-height: 2rem;
	letter-spacing: 1px;
}
.text-container h1 {
	color: var(--brand-white);
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 700;
    line-height: 110%;
	letter-spacing: 1px;
	margin-bottom: 60px;
}
.section-heading::before {
	content: '-';
	display: block;
	color: var(--brand-accent-color);
	font-size: 4.5rem;
	line-height: 4rem;
	font-weight: 500;
}
.page-intro h2 {
	color: var(--brand-white-opacity);
	font-size: 2.3rem;
	margin: -100px 0 200px 0;
}


@media screen and (max-width: 1200px) {
	.text-container {
		margin: 50px 7% 50px 7%;
	}
}
@media screen and (max-width: 800px) {
	.text-container {
		margin: 10px 5% 10px 5%;
	}
	.text-container h1 {
		font-size: 2rem;
		letter-spacing: 0.75px;
	}
	.text-container p {
		font-size: 1rem;
		line-height: 1.6rem;
		letter-spacing: 0.75px;
	}
	.page-intro h2 {
		font-size: 1.6rem;
		line-height: 2.4rem;
		margin: -50px 0 100px 0;
	}
}
@media screen and (max-width: 600px) {
	.text-container {
		margin: 0 5% 0 5%;
	}
	.text-container h1 {
		font-size: 1.7rem;
	}
	.text-container h1::before {
		font-size: 4rem;
		line-height: 5rem;
		font-weight: 700;
	}
}

/* CALL TO ACTION - Sub Section */
.sub-section h2 {
	text-align: center;
	color: var(--brand-white-opacity);
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 1px;
	margin: 100px 85px 50px 85px;
}
@media screen and (max-width: 600px) {
	.sub-section h2 {
		font-size: 1.3rem;
		margin: 0 20px 40px 20px;
	}
}


/*____PODs CONTENT POSITIONING AND STYLING_____*/

/*ABOUT US - TRADING - PODs Content */
#what-we-do {
    display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.pod-trades-summary {
	align-content: flex-start;
	margin: 30px 0 0 0;
}
.pod-trades-summary:hover {
	opacity: 0.3;
	transition: 3ms;
}
#what-we-do .trade-photo {
	max-width: 200px;
	max-height: 150px;
	object-fit: cover;
    object-position: center center;
	border-top: 4px solid var(--brand-accent-color);
}
.trade-name-summary h2 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 110%;
	text-transform: uppercase;
	color: var(--brand-white);
}
@media screen and (max-width: 600px) {
	#what-we-do {
		flex-direction: column;
	}
	#what-we-do .trade-photo {
		max-width: 100%;
		max-height: 100%;
	}
	.trade-name-summary h2 {
		font-size: 1.2rem;
	}
}

/*TRADING - PODs Content */
.pod-trades {
	margin: 150px 0 100px 0;
}
.pod-trade-content {
	margin: 0 10% 0 10%;
}
.trade-photo {
	width: 100vw;
	max-height: 90vh;
	object-fit: cover;
    object-position: bottom center;
	border-top: 8px solid var(--brand-accent-color);
}
.trade-name h1 {
	margin: 80px 0 40px;
	position: relative;
    padding-left: 70px;
}
.trade-name::before {
	content: '';
    position: absolute;
    transform: translateY(-10%);
    display: block;
    width: 50px;
    height: 50px;
    background: url('https://rheintrading.com/wp-content/uploads/2024/06/RT-Logo-R-Block-Gold-CMYK-1.png') no-repeat center center;
    background-size: contain;
}
.product-quote p {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--brand-color);
	line-height: 2.2rem;
	letter-spacing: 1px;
	margin: 80px 5% 0 5%;
}
.product-quote p::before {
	content: '"';
	display: inline;
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--brand-accent-color);
}
.product-quote p::after {
	content: '"';
	display: inline;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1rem;
	vertical-align: sub;
	color: var(--brand-accent-color);
}

/* Ensure br line breaks */
.pod-contact-content p br {
	display: block;
	content: "";
	margin-bottom: 15px;
}
.trade-products {
	margin: -20px 15% 0 15%;
}
.trade-products ul {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 110%;
	text-transform: uppercase;
	list-style: none;
	text-align: center;
	padding-left: 0;
	margin-left: 0;
}
.trade-products li {
	background-color: var(--brand-accent-color-light);
	padding: 10px 0;
	margin-bottom: 20px;
}

/*  Trade Product Detail */
.pod-products {
	display: flex;
	margin: 0 0 30px 0;
}
.photo-wrap-product {
	align-content: flex-start;
	flex-shrink: 0;
    margin: 5px 40px 0 0;
    width: 350px;
}
.product-photo {
	width: 100%;
    height: auto;
	border-top: 4px solid var(--brand-accent-color);
}

/*  Trade Sub Category */
.trade-listed-details h5 {
	color: var(--brand-accent-color);
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.75px;
	margin-bottom: -50px;
}
.trade-listed-details p {
	color: var(--brand-color);
	font-weight: 500;
	font-size: 1.2rem;
}
.trade-listed-details br {
	display: block;
	content: "";
	margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
	.pod-trade-content {
		margin: 0 7% 0 7%;
	}
	.photo-wrap-product {
		width: 250px;
	}
}
@media screen and (max-width: 800px) {
	.pod-trades {
		margin: 110px 0 80px 0;
	}
	.trade-photo {
		max-height: 50vh;
	}
	.trade-name h1 {
		font-size: 2rem;
		margin: 60px 0 40px;
		position: relative;
		padding-left: 55px;
	}
	.trade-name::before {
		transform: translateY(-5%);
		width: 40px;
		height: 40px;
	}
	.pod-trade-content {
		margin: 0 4% 0 4%;
	}
	.pod-trade-content h5 {
		font-size: 1rem;
		letter-spacing: 0.75px;
		margin: 80px 0 30px 0;
	}
	.trade-products {
		margin: -20px 0 0 0;
	}
	.trade-products ul {
		font-size: 1.1rem;
	}
	.product-quote p {
		font-size: 1.1rem;
		line-height: 1.8rem;
		margin: 30px 5% 0 5%;
	}
	.product-quote p::before {
		font-size: 2.3rem;
	}
	.product-quote p::after {
		font-size: 2.3rem;
	}
}
@media screen and (max-width: 600px) {
	.pod-trades {
		margin: 60px 0 80px 0;
	}
	.pod-contact-content p br {
		display: block;
		content: "";
		margin-bottom: 10px;
	}
	.product-quote p {
		font-size: 1rem;
		line-height: 1.5rem;
		margin: 15px 5% 0 5%;
	}
	.product-quote p::before {
		font-size: 2.1rem;
	}
	.product-quote p::after {
		font-size: 2.1rem;
	}
	.pod-products {
		flex-direction: column;
		border-bottom: 0px solid var(--brand-accent-color);
		width: 90%;
	}
	.photo-wrap-product {
		margin: 0 0 40px 0;
		width: 100%;
	}
	.product-photo {
		margin: 0 0 -6px 0;
		width: 90%;
	}
}
@media screen and (max-width: 600px) {
    /* Ensure the paragraph text still preserves line breaks */
    .pod-contact-content p {
        white-space: pre-wrap;
		margin-bottom: 5px;
    }
}

/* TEAM - PODs Content */
/* Flex Box and Items */
.pod-contacts {
	display: flex;
	margin: 0 10% 50px 10%;
	align-items: flex-start;
}

/* Photo wrapper to keep image in proportional height */
.photo-wrap {
	align-self: flex-start;
	flex-shrink: 0;
    margin: 0 40px -6px 0;
    width: 350px;
}
.contact-photo {
	width: 55%;
    height: auto;
	mix-blend-mode: lighten;
	opacity: 0.9;
	border-bottom: 4px solid var(--brand-accent-color);
}
/* Contact text */
.pod-contact-content {
    padding: 0 35px 25px 0;
}

/*  Member Sub Category */
.contact-listed-details h3 {
    font-weight: 500;
    font-size: 1.1rem;
	text-transform: uppercase;
	margin: 0 0 -40px 0;
}
.contact-listed-details {
	color: var(--brand-color);
}
@media screen and (max-width: 1200px) {
	.photo-wrap {
		width: 250px;
	}
	.contact-photo {
		width: 70%;
	}
	.pod-contacts {
        margin: 50px 5% 0 5%;
	}
}
@media screen and (max-width: 800px) {
	.photo-wrap {
		width: 200px;
	}
	.contact-photo {
		width: 85%;
	}
}
@media screen and (max-width: 600px) {
	.pod-contacts {
		flex-direction: column;
		width: 90%;
		border-bottom: 0px solid var(--brand-accent-color);
	}
	.photo-wrap {
		margin: 0 0 0 0;
		width: 100%;
		border-bottom: 0px solid var(--brand-accent-color);
	}
	.contact-photo {
		margin: 0 0 -6px 0;
		width: 90%;
	}
}


/* LOCATION - PODs Content */
.page-content-flex-wrap {
	display: flex;
    flex-wrap: wrap;
}
.pod-locations {
	margin: 50px 0 0 10%;
	padding: 30px 40px 20px 40px;
    flex-basis: calc(50% - 15%);
}
/*  Name */
.pod-locations h2 {
	font-weight: 300;
	color: var(--brand-accent-color);
	margin: -10px 0 -10px 0;
}
/*  Contact */
.pod-locations a {
	font-weight: 100;
	color: var(--brand-white);
}
.pod-locations a:hover {
	color: var(--brand-accent-color);
}
/*  Opening Times */
.pod-locations h3 {
    font-weight: 500;
    font-size: 1.1rem;
	margin: 0 0 0 0;
}
/*  Lcation Sub Category */
.location-listed-details h3 {
	color: var(--brand-accent-color);
	text-transform: uppercase;
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.75px;
	margin-bottom: -40px;
}
.location-list-item p {
	color: var(--brand-color);
	font-weight: 300;
	font-size: 1rem;
}
@media screen and (max-width: 1200px) {
	.pod-locations {
        margin: 50px 0 0 5%;
        flex-basis: calc(50% - 7.5%);
	}
}
@media screen and (max-width: 800px) {
	.pod-locations {
        margin: 0 5% 20px 5%;
        flex-basis: 100%;
	}
}
@media screen and (max-width: 600px) {
    .page-content-flex-wrap {
        flex-direction: column;
    }
}

/* FOOTER ALL - Flexbox */
.site-footer {
    padding: 0 20px;
	height: 800px;
	background: url('https://rheintrading.com/wp-content/uploads/2024/08/Scrap-Ship-Extended-3000px-P433-scale-60.png') no-repeat center center;
    background-size: cover;
	display: flex;
	align-items: flex-end;
}
.site-info {
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-grow: 1;
    align-items: flex-end;
}
.footer-content-left {
	display: flex;
	flex-direction: column;
}
.footer-content-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: auto;
}
.footer-sidebar {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

/* footer items and links */
#site-navigation-footer {
	margin: 5px 0 10px 0;
}
#site-navigation-footer ul {
	display: flex;
	flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-size: 0.8rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
#colophon a { 
    color: var(--brand-white);
	text-decoration: none;
}
#colophon a:hover {
	color: var(--brand-accent-color);
}
.social-icon {
    margin: 5px 0 10px 0;
    width: 15%;
	height: auto;
}
.logo-link {
	width: 150px;
	margin: 0 0 16px 0;
}
.built-by p {
    color: var(--brand-white);
    font-size: 0.8rem;
	line-height: 110%;
	letter-spacing: -0.2px;
	font-weight: 400;
    margin: -20px 0 15px 0;
	text-align: center;
}
@media screen and (max-width: 2000px) {
	.site-footer {
		height: 650px;
	}
}
@media screen and (max-width: 1500px) {
	.site-footer {
		height: 500px;
	}
}
@media screen and (max-width: 1200px) {
	.site-footer {
		height: 400px;
	}
}
@media screen and (max-width: 1000px) {
	.site-footer {
		height: 350px;
	}
}
@media screen and (max-width: 600px) {
	.site-footer {
		padding: 0 10px 0 10px;
		height: 320px;
	}
	.site-info {
        flex-direction: column;
		align-items: center;
	}
	.footer-content-left {
		order: 1;
	}
	.footer-content-right {
		order: 2;
	}
	.footer-sidebar {
		order: 3;
	}
	#site-navigation-footer {
		margin: 0 0 0 0;
	}
	#site-navigation-footer ul {
		text-align: center;
		margin: 15px 0 15px 0;
	}
	.social-icon {
		margin: 0 40% 10px 40%;
		width: 20%;
	}
	.logo-link {
		margin: 30px 0 10px 0;
	}
	.built-by p {
		margin: 0px 0 15px 0;
	}
}

/* ----- WIDGETS ------- */

/* SIDEBAR - Submit and call Button */
.widget-area {
	display: inline-block;
	margin: 5px 20px 5px 20px;
}
.widget-button h4    {
	color: var(--brand-white);
}
.widget-button {
	padding: 8px 0 0 0;
	line-height: 0.3rem;
	min-width: 200px;
	text-decoration: none;
	text-align: center;
    border-bottom: 5px solid var(--brand-accent-color);
}
.widget-button:hover {
	transition: ease-in 0.15s;
	background-color: var(--brand-accent-color);
	color: var(--brand-color);
}
/* Buttons Layout*/
.widget-connect {
	text-align: center;
	margin: 0 10% 0 10%;
}
@media screen and (max-width: 600px) {
	.widget-connect {
        margin: 0 5% 0 5%;
	}
}


/* SIDEBAR - POD company Details */
.widget-area p {
    color: var(--brand-white);
	font-size: 0.7rem;
	margin: 0 5px 0 5px;
	font-weight: 300;
	text-align: center;
}
.widget-area p span {
	font-weight: 500;
}
@media screen and (max-width: 600px) {
	.widget-area p {
		margin: 0 0 -25px 0;
	}
}


/* SIDEBAR - Company Charter*/
.block-list.widget_block {
	margin-left: -20px;
}
.block-list ul {
    list-style-type: none;
	padding-left: 1.5em; 
	margin-left: 0px;
}
.block-list li {
	position: relative;
	color: var(--brand-white);
	font-weight: 300;
	font-size: 1rem;
	line-height: 150%;
	margin: 20px 0 20px 0;
}
.block-list li::before {
	content: '';
	position: absolute;
	left: -1.5em;
    top: 0.5em;
    width: 7px;
    height: 7px;
	background-color: var(--brand-accent-color);
}


@media screen and (max-width: 800px) {
	.block-list {
		margin-left: 0;
	}
	.block-list li {
		font-size: 0.8rem;
	}
}

/* PARALLAX SCROLL - Section*/
.parallax {
	height: 60vh;
	margin: 100px 0;
	background-attachment: fixed;
	background-size: cover;
}
/* Parallax Text Styling */
.parallax h1 {
	padding-top: 25vh;
	font-size: 3.2em;
	font-weight: 700;
	margin: 0 8% 0 8%;
	color: var(--brand-white);
    text-align: center;
}
/* Adjustments for Medium Screens */
@media screen and (max-width: 800px) {
	.parallax h1 {
		font-size: 2.5em;
		margin: 0 5% 0 5%;
	}
}

/* Parallax background images */
.parallax-1,
.parallax-2,
.parallax-3,
.parallax-4 {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* iPad and iPhone PORTRAIT */
@media only screen 
	and (min-device-width: 200px) 
	and (max-device-width: 1200px) 
	and (orientation: portrait) {
	.parallax-1,
	.parallax-2,
	.parallax-3,
	.parallax-4 {
		background-attachment: scroll;
	}
}

/* iPad and iPhone LANDSCAPE */
@media only screen 	
	and (min-device-width: 200px) 
	and (max-device-width: 1200px) 
	and (orientation: landscape) {
	.parallax-1,
	.parallax-2,
	.parallax-3,
	.parallax-4 {
		background-attachment: scroll;
	}
}

/* Small Mobile */
@media screen and (max-width: 600px) {
	.parallax-1,
	.parallax-2,
	.parallax-3,
	.parallax-4 {
		background-attachment: scroll;
	}
}