/*
* Phy Health (2025) Styles
*/


/* Table of Contents

- Font Declarations
- Base Styles
- Bootstrap Modifications
- Page Wrapper Styles
- Colour Declarations
- Heading Styles
- Typography
- Form Styles
- Link Styles
- Mobile Menu
- Header
- Footer
- CARD STYLES
- MODULE STYLES
- PAGE-SPECIFIC STYLES

*/


/* Font Declarations */

/* Bastardo V2 */

@font-face {
    font-family: 'Bastardo V2';
    src: url('fonts/BastardoV2-Regular.eot');
    src: url('fonts/BastardoV2-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/BastardoV2-Regular.woff2') format('woff2'),
        url('fonts/BastardoV2-Regular.woff') format('woff'),
        url('fonts/BastardoV2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bastardo V2';
    src: url('fonts/BastardoV2-SemiBold.eot');
    src: url('fonts/BastardoV2-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/BastardoV2-SemiBold.woff2') format('woff2'),
        url('fonts/BastardoV2-SemiBold.woff') format('woff'),
        url('fonts/BastardoV2-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* Base Styles */

html {
	position: relative;
	min-height: 100%;
	scroll-padding-top: 76px;
}
body {
	font-family: 'Bastardo V2', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
	color: #1d1d1b;
	letter-spacing: 0;
	background-color: #fff;
  
    text-rendering: optimizeLegibility;     /* emphasizes in legibility over rendering speed */    
    -webkit-font-smoothing: antialiased;    /* apply font anti-aliasing */    
    -moz-osx-font-smoothing: grayscale;     /* optimize font rendering */

    -moz-font-feature-settings:"kern" 1;    /* turn on kerning, highly recomened */ 
    -ms-font-feature-settings:"kern" 1;     /* turn on kerning, highly recomened */ 
    -o-font-feature-settings:"kern" 1;      /* turn on kerning, highly recomened */
    -webkit-font-feature-settings:"kern" 1; /* turn on kerning, highly recomened */
    font-feature-settings:"kern" 1;         /* turn on kerning, highly recomened */
    font-kerning: normal;                   /* turn on kerning, highly recomened */

    font-feature-settings: "liga" on;      /* ligatures: on or off */
    font-feature-settings: "dlig" off;      /* discretionary-ligatures: on or off */
    font-feature-settings: "tnum" off;      /* tabular figures: on or off */        
    font-feature-settings: "onum" off;      /* old-style-figures: on or off */
    font-feature-settings: "ss01" off;      /* alternate glyphs (stylistic Set): on or off */
}
p:last-child {
	margin-bottom: 0;
}
p + p {
	margin-top: 1.2em;
}
strong {
	font-weight: 500;
}
a,
a:visited,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: inherit;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast !important;
    }
}

/* Unset for Safari 11+ */
@media not all and (min-resolution:.001dpcm) {
	@supports (-webkit-appearance:none) and (stroke-color:transparent) {
        img {
            image-rendering: unset !important;
        }
    }
}

@media (min-width: 992px) {
	html {
	    scroll-padding-top: 126px;
    }
	body {
		font-size: 20px;
		line-height: 24px;
	}
}


/* Bootstrap Modifications */

.container {
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 576px) {
	.container {
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.container {
		padding-left: 25px;
		padding-right: 25px;
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.container {
		padding-left: 40px;
		padding-right: 40px;
		width: 100%;
		max-width: 1440px;
	}
}


/* Page Wrapper Styles */

.page-wrapper {
	padding-top: 65px;
	min-height: calc(100vh - 408px);
}

@media (min-width: 768px) {
    .page-wrapper {
		min-height: calc(100vh - 400px);
    }
}

@media (min-width: 992px) {
    .page-wrapper {
		padding-top: 80px;
		min-height: calc(100vh - 378px);
    }
}


/* Colour Declarations */

.text-slategrey {
	color: #768080;
}
.text-slategreen {
	color: #72836e;
}
.text-coolgreen {
	color: #94a98e;
}
.text-sunburstorange {
	color: #fe4b00;
}
.text-lightgrey {
	color: #e1e5e1;
}
.text-darkgrey {
	color: #1d1d1b;
}

.bckgnd-black {
	color: #fff;
	background: #000;
}
.bckgnd-slategrey {
	background: #768080;
}
.bckgnd-slategreen {
	background: #72836e;
}
.bckgnd-coolgreen {
	background: #94a98e;
}
.bckgnd-sunburstorange {
	background: #fe4b00;
}
.bckgnd-lightgrey {
	background: #e1e5e1;
}
.bckgnd-darkgrey {
	background: #1d1d1b;
}


/* Heading Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
}
h1 {
	font-size: 35px;
	line-height: 33px;
}
h2.small {
	font-size: 22px;
	line-height: 24px;
}
h2.standard,
h3.standard {
	font-size: 35px;
	line-height: 33px;
}

@media (min-width: 768px) {
	h1 {
		font-size: 50px;
		line-height: 48px;
	}
	h2.small {
		font-size: 30px;
		line-height: 30px;
	}
	h2.standard,
	h3.standard {
		font-size: 40px;
		line-height: 38px;
	}
}


/* Typography */

.text-large,
.text-large > * {
	margin: 0;
	font-size: 35px;
	line-height: 33px;
	font-weight: 600;
}
.text-large h1 + p,
.text-large p + p {
	margin-top: .5em;
}
.text-large a {
	text-decoration: underline;
	transition: color .4s ease;
}
.text-large a:hover {
	color: #fff;
}

@media (min-width: 768px) {
	.text-large,
	.text-large > * {
		font-size: 50px;
		line-height: 48px;
	}
}


/* Form Styles */

form fieldset input,
form fieldset textarea {
	padding: 10px;
	width: 100%;
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
	background: #d9d9d9;
	border: 0;
	border-radius: 0;
}
form fieldset input:focus,
form fieldset textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 1);
    outline: 0;
}
form fieldset input {
	height: 55px;
}
form fieldset label {
	margin-top: 10px;
	font-weight: 600;
	width: 100%;
}
form fieldset label + input,
form fieldset label + textarea {
	margin-top: 15px;
}
form input[type=submit] {
	display: inline-block;
	margin-top: 25px;
	padding: 13px 20px 11px;
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	color: #1d1d1b !important;
	background: transparent;
	border: 1px solid #1d1d1b;
	border-radius: 24px;
	transition: background .3s ease, color .5s ease;
}
form input[type=submit]:hover {
	color: #fe4b00 !important;
	background: #1d1d1b;
}

@media (min-width: 768px) {
	form fieldset input,
	form fieldset textarea {
		padding: 15px;
	}
	form fieldset input {
		height: 65px;
	}
	form input[type=submit] {
		font-size: 22px;
		line-height: 22px;
	}
}
 

/* Link Styles */

.lozenge-black,
.lozenge-white,
.lozenge-orange {
	display: inline-block;
	padding: 13px 20px 11px;
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	background: transparent;
	border: 0;
	border-radius: 24px;
	transition: background .3s ease, color .5s ease;
}
p + .lozenge-black,
p + .lozenge-white,
p + .lozenge-orange {
	margin-top: 10px;
}
.lozenge-black {
	color: #1d1d1b !important;
	border: 1px solid #1d1d1b;
}
.lozenge-black:hover {
	color: #fff !important;
	background: #1d1d1b;
}
.bckgnd-sunburstorange .lozenge-black:hover {
	color: #fe4b00 !important;
}
.lozenge-white {
	color: #fff !important;
	border: 1px solid #fff;
}
.lozenge-white:hover {
	background: #fff;
}
header .lozenge-white:hover,
.bckgnd-sunburstorange .lozenge-white:hover {
	color: #fe4b00 !important;
}
.lozenge-orange {
	color: #fe4b00 !important;
	border: 1px solid #fe4b00;
}
.lozenge-orange:hover {
	color: #1d1d1b !important;
	background: #fe4b00;
}
.bckgnd-lightgrey .lozenge-orange:hover {
	color: #e1e5e1 !important;
}

@media (min-width: 992px) {
	.lozenge-black,
	.lozenge-white,
	.lozenge-orange {
		font-size: 22px;
		line-height: 22px;
	}
	p + .lozenge-black,
	p + .lozenge-white,
	p + .lozenge-orange {
		margin-top: 25px;
	}
}


/* Mobile Menu */

#mobile-menu {
	display: none;
	position: fixed;
	top: 65px;
	left: 0;
	z-index: 2000;
	width: 100%;
	height: calc(100vh - 65px);
}
#mobile-menu.mobile-menu-open {
	display: block;
}
#mobile-menu #mobile-menu-wrapper {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px 80px 20px;
	top: 0;
	left: 0;
	z-index: 3000;
	width: 100%;
	height: 100%;
	background-color: #fe4b00;
}
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul li {
	margin-bottom: 15px;
	text-align: center;
}
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul li,
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul li a {
	font-weight: 700;
	font-size: 35px;
	line-height: 35px;
	color: #e1e5e1;
}
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul li a {
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 4px;
	transition: color .4s ease;
}
#mobile-menu #mobile-menu-wrapper #mobile-navigation ul li a:hover {
	color: #fff;
}
#mobile-menu #mobile-menu-wrapper #mobile-copyright {
	position: absolute;
	bottom: 60px;
	width: 100%;
	text-align: center;
}
#mobile-menu #mobile-menu-wrapper #mobile-copyright,
#mobile-menu #mobile-menu-wrapper #mobile-copyright p {
	font-size: 15px;
	line-height: 15px;
	color: #e1e5e1;
}

@media (min-width: 992px) {
    #mobile-menu {
	    display: none !important;
    }
}


/* Header */

header,
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	background-color: #fe4b00;
}
header,
.header,
header #header-wrapper {
	height: 65px;
}
header,
.header,
header #header-wrapper {
	margin: 0;
	padding: 0;
	width: 100%;
}
header #header-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header #header-wrapper #mobile-toggle,
header #header-wrapper #mobile-demo {
	position: absolute;
	display: block;
}
header #header-wrapper #mobile-toggle {
	padding: 0;
	left: 0;
	width: 22px;
	height: 16px;
	background-color: transparent;
	border: 0;
}
header #header-wrapper #mobile-toggle span {
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background-color: #fff;
}
header #header-wrapper #mobile-toggle #mobile-toggle-top,
header #header-wrapper #mobile-toggle #mobile-toggle-bottom {
	opacity: 1;
	transition: opacity .3s ease;
}
header #header-wrapper #mobile-toggle.toggle-open #mobile-toggle-top,
header #header-wrapper #mobile-toggle.toggle-open #mobile-toggle-bottom {
	opacity: 0;
}
header #header-wrapper #mobile-toggle #mobile-toggle-top {
	top: 0;
}
header #header-wrapper #mobile-toggle #mobile-toggle-mid-left,
header #header-wrapper #mobile-toggle #mobile-toggle-mid-right {
	top: 7px;
	transition: transform .3s ease;
}
header #header-wrapper #mobile-toggle.toggle-open #mobile-toggle-mid-left {
	transform: rotate(45deg);
}
header #header-wrapper #mobile-toggle.toggle-open #mobile-toggle-mid-right {
	transform: rotate(-45deg);
}
header #header-wrapper #mobile-toggle #mobile-toggle-bottom {
	bottom: 0;
}
header #header-wrapper #header-logo {
	color: #fff;
}
header #header-wrapper #header-logo,
header #header-wrapper #header-logo img {
	width: 70px;
	max-width: 70px;
	height: auto;
}
header #header-wrapper #header-navigation-left,
header #header-wrapper #header-navigation-right {
	display: none;
}
header #header-wrapper #mobile-demo {
	right: 0;
}

@media (max-width: 991px) {
	header #header-wrapper #header-logo {
		position: absolute;
		left: calc(50% - 40px);
	}
}

@media (min-width: 992px) {
    header #header-wrapper #mobile-toggle,
	header #header-wrapper #mobile-demo {
	    display: none;
    }
	header #header-wrapper #header-logo,
	header #header-wrapper #header-logo img {
		width: 80px;
		max-width: 80px;
	}
	header,
    .header,
    header #header-wrapper,
	header #header-wrapper #header-navigation,
	header #header-wrapper #header-navigation ul,
	header #header-wrapper #header-navigation ul li {
		height: 80px;
	}
    header #header-wrapper #header-navigation-left,
	header #header-wrapper #header-navigation-right {
	    display: block;
		width: 40%;
    }
    header #header-wrapper #header-navigation-left {
		text-align: left;
    }
	header #header-wrapper #header-navigation-right {
		text-align: right;
	}
	header #header-wrapper #header-navigation-left ul,
	header #header-wrapper #header-navigation-right ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	header #header-wrapper #header-navigation-left ul li,
	header #header-wrapper #header-navigation-right ul li {
		margin: 0;
		padding: 0;
	    font-family: 'Bastardo V2', sans-serif;
	    font-weight: 600;
	    font-size: 20px;
	    line-height: 20px;
		color: #1d1d1b;
		transition: color .4s ease;
	}
	header #header-wrapper #header-navigation-left ul li {
		margin-right: 25px;
	}
	header #header-wrapper #header-navigation-right ul li {
		margin-left: 2vw;
	}
	header #header-wrapper #header-navigation-left ul li:hover {
		color: #fff;
	}
	header #header-wrapper #header-navigation-left ul li,
	header #header-wrapper #header-navigation-left ul li a {
		display: inline-block;
	}
}


/* Footer */

footer {
	position: relative;
	padding-top: 40px;
	padding-bottom: 20px;
	font-size: 18px;
	line-height: 22px;
	color: #808080;
	background: #1d1d1b;
}
footer .footer-top {
	margin-bottom: 60px;
}
footer .footer-top,
footer .footer-mobile {
	display: grid;
 	grid-column-gap: 25px;
	grid-template-columns: repeat(2, 1fr);
}
footer .footer-top > * {
	min-width: 0;
}
footer .footer-top .footer-top-logo,
footer .footer-top .footer-top-logo img {
	width: 75px;
	max-width: 75px;
	height: auto;
}
footer .footer-top .footer-top-menuA,
footer .footer-top .footer-top-menuB {
	display: none;
}
footer .footer-top ul,
footer .footer-mobile ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer .footer-top ul li,
footer .footer-mobile ul li {
	margin-bottom: 10px;
}
footer .footer-top ul li a {
	transition: color .4s ease;
}
footer .footer-top ul li a:hover {
	color: #fff;
}
footer .footer-mobile {
	margin-bottom: 90px;
}
footer .footer-mobile ul li,
footer .footer-mobile ul li a {
	font-size: 22px;
	line-height: 22px;
	color: #fff;
}
footer .footer-mobile ul li a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}
footer .footer-bottom {
}

@media (max-width: 767px) {
	footer .footer-bottom {
		font-size: 16px;
		line-height: 19px;
		color: #fff;
	}
}

@media (min-width: 768px) {
	footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	footer .footer-top {
	    grid-template-columns: 4fr 1fr 1fr 2fr;
		margin-bottom: 180px;
    }
	footer .footer-top .footer-top-logo,
	footer .footer-top .footer-top-logo img {
		width: 90px;
		max-width: 90px;
	}
	footer .footer-top .footer-top-menuA,
	footer .footer-top .footer-top-menuB {
		display: block;
	}
	footer .footer-top .footer-top-contact {
		text-align: right;
	}
	footer .footer-mobile {
		display: none;
	}
}

@media (min-width: 992px) {
	footer .footer-top {
	    grid-template-columns: 7fr 1fr 1fr 2fr;
    }
    footer .footer-bottom .footer-bottom-copyright,
	footer .footer-bottom .footer-bottom-disclaimer {
		display: inline-block;
	}
	footer .footer-bottom .footer-bottom-copyright {
		margin-right: 30px;
	}
}

@media (min-width: 1200px) {
	footer .footer-top {
	    grid-template-columns: 9fr 1fr 1fr 2fr;
    }
}


/*(SHARED) CARD STYLES */

/* Shared Card Styles */

.process-card,
.advisor-card,
.overview-card {
	position: relative;
}
.process-card h3,
.overview-card h3,
.advisor-card h3 {
	font-weight: 600;
	font-size: 30px;
}
.process-card h3,
.overview-card h3 {
	line-height: 30px;
}
.process-card p,
.overview-card p {
	margin-bottom: 0;
}

/* Process Card */

.process-card {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	margin-bottom: 25px;
	padding: 20px;
	width: 100%;
	line-height: 22px;
	color: #1d1d1b;
	background: transparent;
	border: 1px solid #fe4b00;
	border-radius: 20px;
}
#product-process .process-card {
	color: #fff;
	background: #1d1d1b;
	border: 0;
}
.process-card h3 {
	margin-bottom: 10px;
	color: #fe4b00;
}
.process-card .image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	width: 100%;
	aspect-ratio: 1 / 1.18;
	background: #000;
	border-radius: 20px;
	overflow: hidden;
}
#product-process .process-card .image-wrapper {
	aspect-ratio: 1 / 0.8;
}
.process-card .image-wrapper img {
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	.process-card {
		font-size: 16px;
		line-height: 19px;
	}
	.process-card h3 {
		font-size: 22px;
		line-height: 22px;
	}
}

@media (min-width: 768px) {
	.process-card {
		height: 100%;
		gap: 15px;
	}
	.process-card .image-wrapper {
		margin-top: 0;
	}
}


/* Advisor Card */

.advisor-card {
	padding-top: 30px;
	padding-bottom: 45px;
	border-top: 1px solid #000;
}
.advisor-card h3 {
	margin-bottom: 40px;
}
.advisor-card .image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: #000;
	overflow: hidden;
}
.advisor-card .image-wrapper img {
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	.advisor-card {
		font-size: 16px;
		line-height: 19px;
		text-align: center;
	}
	.advisor-card h3 {
		font-size: 22px;
		line-height: 22px;
	}
	.advisor-card .image-wrapper {
		margin: 0 auto;
		margin-bottom: 15px;
	}
}

@media (min-width: 768px) {
	.advisor-card {
		display: grid;
    	grid-column-gap: 0;
	    grid-template-columns: repeat(2, 1fr);
		padding-top: 15px;
		padding-bottom: 30px;
	}
	.advisor-card h3 {
		margin-bottom: 10px;
		line-height: 32px;
	}
	.advisor-card > * {
		min-width: 0;
	}
	.advisor-card .image-wrapper {
		width: 210px;
		height: 210px;
	}
}


/* Overview Card */

.overview-card {
	margin-bottom: 25px;
	padding: 20px 20px 20px;
	width: 100%;
	height: calc(100% - 20px);
	color: #000;
	background: #fff;
	border: 0;
	border-radius: 20px;
}
.overview-card h3 {
	margin-bottom: 10px;
	font-size: 22px;
	line-height: 22px;
}

@media (max-width: 767px) {
	.overview-card,
	.overview-card p {
		font-size: 16px;
		line-height: 19px;
	}
}

@media (min-width: 768px) {
	.overview-card {
		padding: 25px 20px 40px;
		height: calc(100% - 25px);
	}
	.overview-card h3 {
		margin-bottom: 15px;
		font-size: 30px;
		line-height: 30px;
	}
}


/* (SHARED) MODULE STYLES */

/* Hero */

.module-hero {
	display: flex;
	align-items: center;
	height: calc(100vh - 65px);
	max-height: 600px;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.module-hero h1 + p {
	margin-top: 25px;
}
.module-hero p + a {
    margin-top: 10px;
}

@media (min-width: 768px) {
	.module-hero {
		height: calc(100vh - 80px);
		max-height: 1000px;
		font-size: 25px;
		line-height: 28px;
	}
}

/* CTA */

.module-cta {
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.module-cta,
.module-cta p {
	font-weight: 600;
	font-size: 35px;
	line-height: 33px;
	color: #fff;
}

@media (max-width: 767px) {
	.module-cta p {
		margin-bottom: 15px;
	}
}

@media (min-width: 768px) {
	.module-cta {
		padding-top: 180px;
		padding-bottom: 160px;
	}
	.module-cta,
	.module-cta p {
		font-size: 70px;
		line-height: 66px;
	}
	.module-cta p {
		margin-bottom: 10px;
	}
}

/* Product (Features) */

.module-product {
	position: relative;
	padding: 40px 20px 50px;
	border-radius: 40px;
}
.module-product + .module-product {
	margin-top: 25px;
}
.module-product.bckgnd-darkgrey {
	color: #fff;
	background: #1d1d1b;
}
.module-product.bckgnd-lightgrey {
	color: #1d1d1b;
	background: #e1e5e1;
}
.module-product .product-name {
	margin-bottom: 30px;
}
.module-product .product-body .product-description {
	padding-bottom: 45px;
}
.module-product .product-body .product-description .text-wrapper {
	color: #fe4b00;
}
.module-product .product-body .product-description .text-wrapper p + p {
	margin-top: -5px;
}
.module-product .feature-series {
	margin: 0;
	margin-top: -5px;
	padding: 0;
	list-style: none;
}
.module-product .feature-series dt {
	padding-top: 10px;
}
.module-product.bckgnd-darkgrey .feature-series dt {
	border-top: 1px solid #fff;
}
.module-product.bckgnd-lightgrey .feature-series dt {
	border-top: 1px solid #1d1d1b;
}
.module-product .feature-series dd {
	margin-bottom: 25px;
}
.module-product .feature-series dd:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.module-product .feature-series {
		font-size: 16px;
		line-height: 19px;
	}
	.module-product .product-cta a {
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.module-product {
		padding: 55px 25px 100px;
	}
	.module-product .product-name {
		margin-bottom: 50px;
	}
    .module-product .product-body {
	    display: grid;
	    grid-column-gap: 0;
	    grid-template-columns: repeat(2, 1fr);
    }
	.module-product .product-body > * {
		min-width: 0;
	}
    .module-product .product-body .product-description {
		padding-right: 25px;
		padding-bottom: 80px;
	}
	.module-product .product-body .product-description .text-wrapper {
		max-width: 410px;
	}
	.module-product .product-cta {
		position: absolute;
		left: 25px;
		bottom: 35px;
	}
}


/* PAGE-SPECIFIC STYLES */

/* Homepage */

#home-hero ul,
#home-clients .clients-series ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#home-hero ul {
	margin-top: 40px;
}
#home-hero ul li {
	display: inline-block;
	margin-right: 5px;
}
#home-hero ul li:last-child {
	margin-right: 0;
}
#home-hero ul li,
#home-hero ul li img {
	height: 46px;
	max-height: 46px;
	width: auto;
}
#home-hero,
#home-enterprise {
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#home-process {
	padding-top: 40px;
	padding-bottom: 25px;
}
#home-process .process-header,
#home-advisors .advisors-header {
	margin-bottom: 40px;
}
#home-process .process-header h2 {
	margin-bottom: 20px;
}
#home-process .process-header .text-wrapper-right {
	font-weight: 600;
	color: #fe4b00;
}
#home-posture,
#home-clients {
	text-align: center;
}
#home-posture {
	padding-top: 35px;
	padding-bottom: 55px;
}
#home-posture .posture-header,
#home-enterprise .text-wrapper h2 {
	margin-bottom: 25px;
}
#home-posture .text-wrapper {
	margin-top: 20px;
	padding-left: 5%;
	padding-right: 5%;
}
#home-advisors .advisors-series ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#home-enterprise {
	padding-top: 25px;
}
#home-enterprise .enterprise-header {
	display: flex;
	justify-content: end;
	margin-bottom: 30px;
}
#home-advisors {
	padding-top: 75px;
	padding-bottom: 55px;
}
#home-overview {
	padding-top: 50px;
	padding-bottom: 25px;
}
#home-overview .overview-header {
	margin-bottom: 20px;
}
#home-clients {
	padding-top: 55px;
	padding-bottom: 65px;
}
#home-clients .clients-header {
	margin-bottom: 15px;
}
#home-clients .clients-series ul li {
	display: inline-block;
	width: 100%;
}
#home-clients .clients-series ul li .image-wrapper {
	margin-bottom: -20px;
}
#home-clients .clients-series ul li .image-wrapper,
#home-clients .clients-series ul li .image-wrapper img {
	width: auto;
	height: 95px;
}

@media (min-width: 576px) {
    #home-overview .overview-series {
	    display: grid;
	    grid-column-gap: 25px;
	    grid-template-columns: repeat(2, 1fr);
    }
	#home-overview .overview-series > * {
		min-width: 0;
	}
	#home-clients .clients-series ul li {
		width: 45%;
	}
	#home-clients .clients-series ul li .image-wrapper,
	#home-clients .clients-series ul li .image-wrapper img {
		height: 100px;
	}
}

@media (max-width: 767px) {
	#home-advisors .advisors-header h2 {
		margin-bottom: 20px;
	}
	#home-posture {
		font-size: 16px;
		line-height: 19px;
	}
	#home-enterprise {
		padding-bottom: 90px;
	}
}

@media (min-width: 768px) {
	#home-process,
	#home-posture,
	#home-advisors {
		padding-bottom: 100px;
	}
	#home-process,
	#home-clients {
		padding-top: 80px;
	}
	#home-process .process-header,
	#home-process .process-series,
	#home-advisors .advisors-header,
	#home-process .process-header,
	#home-process .process-series {
		display: grid;
	}
	#home-process .process-header > *,
	#home-process .process-series > *,
	#home-advisors .advisors-header > *,
	#home-process .process-header > *,
	#home-process .process-series > * {
		min-width: 0;
	}
	#home-process .process-header,
	#home-process .process-series,
	#home-process .process-header,
	#home-process .process-series {
    	grid-column-gap: 25px;
	}
	#home-process .process-header {
		grid-template-columns: 2fr 1fr;
		margin-bottom: 125px;
	}
	#home-process .process-header .text-wrapper-right {
		padding-left: 8px;
	}
	#home-process .process-series,
	#home-overview .overview-series {
	    grid-template-columns: repeat(3, 1fr);
	}
	#home-posture,
	#home-advisors,
	#home-overview {
		padding-top: 70px;
	}
	#home-posture .posture-header,
	#home-enterprise .enterprise-header {
		margin-bottom: 75px;
	}
	#home-posture .text-wrapper {
		margin-top: 70px;
		padding-left: 15%;
		padding-right: 15%;
	}
	#home-advisors .advisors-header {
    	grid-column-gap: 0;
	    grid-template-columns: repeat(2, 1fr);
	}
	#home-advisors .advisors-header,
	#home-enterprise .text-wrapper h2 {
		margin-bottom: 35px;
	}
	#home-advisors .advisors-header.text-wrapper-left {
		padding-right: 25px;		
	}
	#home-enterprise {
		padding-top: 60px;
		font-size: 30px;
		line-height: 32px;
	}
	#home-enterprise .text-wrapper {
		width: 50%;
		height: 560px;
	}
	#home-overview {
		padding-bottom: 80px;
	}
	#home-overview .overview-header {
		margin-bottom: 60px;
	}
	#home-clients {
		padding-bottom: 50px;
	}
	#home-clients .clients-header {
		margin-bottom: 15px;
	}
	#home-clients .clients-series ul li {
		width: 30%;
	}
}

@media (min-width: 992px) {
	#home-process .process-header .text-wrapper-right {
		font-size: 30px;
		line-height: 28px;
	}
	#home-posture .text-wrapper {
		padding-left: 20%;
		padding-right: 20%;
	}
	#home-clients .clients-series ul li {
		width: 19%;
	}
	#home-clients .clients-series ul li .image-wrapper,
	#home-clients .clients-series ul li .image-wrapper img {
		height: 80px;
	}
}

@media (min-width: 1200px) {
	#home-posture .text-wrapper {
		padding-left: 25%;
		padding-right: 25%;
	}
	#home-clients .clients-series ul li .image-wrapper,
	#home-clients .clients-series ul li .image-wrapper img {
		height: 100px;
	}
}

/* Product */

#product-process {
	padding-top: 40px;
	padding-bottom: 25px;
}
#product-process .process-header,
#product-product .product-header {
	margin-bottom: 40px;
}
#product-product {
	padding-top: 75px;
	padding-bottom: 50px;
}

@media (min-width: 768px) {
	#product-process {
		padding-top: 80px;
	}
	#product-process,
	#product-product {
		padding-bottom: 120px;
	}
	#product-process .process-header {
		margin-bottom: 30px;
	}
	#product-process .process-series {
		display: grid;
    	grid-column-gap: 25px;
	    grid-template-columns: repeat(3, 1fr);
	}
	#product-process .process-series > * {
		min-width: 0;
	}
	#product-product {
		padding-top: 100px;
	}
	#product-product .product-header {
		margin-bottom: 50px;
	}
}

/* About */

#about-body {
	padding-top: 40px;
	padding-bottom: 75px;
}
#about-body .text-wrapper-top,
#about-body .text-wrapper-middle,
#about-body .text-wrapper-bottom {
	font-weight: 600;
}
#about-body .text-wrapper-top p:last-child,
#about-body .text-wrapper-middle p:last-child,
#about-body .text-wrapper-bottom p:last-child {
	margin-bottom: 0;
}
#about-body .text-wrapper-top p + p,
#about-body .text-wrapper-middle p + p,
#about-body .text-wrapper-bottom p + p {
	margin-top: .9em;
}
#about-body .text-wrapper-middle,
#about-body .text-wrapper-bottom {
	color: #fe4b00;
}
#about-body .text-wrapper-top {
	margin-bottom: 25px;
}
#about-body .text-wrapper-middle {
	margin-bottom: 40px;
}
#about-body .text-wrapper-bottom {
	margin-top: 40px;
}
#about-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#about-body ul li {
	margin-bottom: 35px;
	padding-top: 15px;
	border-top: 1px solid #1d1d1b;
}
#about-body ul li:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	#about-body ul li {
		font-size: 16px;
		line-height: 19px;
	}
	#about-body ul li h2 {
		margin-bottom: 20px;
	}
}

@media (min-width: 768px) {
	#about-body {
		padding-top: 60px;
		padding-bottom: 120px;
	}
	#about-body .text-wrapper-top,
	#about-body .text-wrapper-middle,
	#about-body .text-wrapper-bottom {
		font-weight: 400;
		font-size: 40px;
		line-height: 43px;
	}
	#about-body .text-wrapper-middle,
	#about-body .text-wrapper-bottom {
		padding-left: 32%;
	}
	#about-body .text-wrapper-top {
		margin-bottom: 100px;
		width: 60%;
	}
	#about-body .text-wrapper-middle {
		margin-bottom: 80px;
	}
	#about-body ul li {
		display: grid;
    	grid-column-gap: 0;
	    grid-template-columns: repeat(2, 1fr);
	}
	#about-body ul li > * {
		min-width: 0;
	}
	#about-body ul li .text-wrapper-left {
		padding-right: 25px;
	}
	#about-body .text-wrapper-bottom {
		margin-top: 80px;
	}
}

/* Contact */

#wrapper-contact {
	padding-top: 140px;
	padding-bottom: 70px;
}

@media (max-width: 767px) {
	#wrapper-contact .text-wrapper {
		margin-bottom: 30px;
	}
}

@media (min-width: 768px) {
	#wrapper-contact {
		padding-top: 220px;
		padding-bottom: 120px;
	}
	#wrapper-contact .text-wrapper {
		max-width: 1000px;
	}
}

/* Generic */

#wrapper-generic {
	padding-top: 140px;
}
#wrapper-generic .content-body {	
	padding-bottom: 70px;
}
#wrapper-generic a {
	color: #fe4b00;
	text-decoration: underline;
}
#wrapper-generic h1,
#wrapper-generic .generic-heading {
	margin-bottom: 20px;
}
#wrapper-generic .generic-notice,
#wrapper-generic .generic-heading,
#wrapper-generic .generic-text {
	max-width: 1000px;
}
#wrapper-generic .generic-notice {
	margin-bottom: 50px;
}
#wrapper-generic .generic-notice.notice-nogap {
	margin-bottom: 20px;
}
#wrapper-generic .generic-text + .generic-notice {
	margin-top: 20px;
}
#wrapper-generic .generic-heading h2 {
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
	color: #fe4b00;
}
#wrapper-generic .generic-text + .generic-heading {
	margin-top: 45px;
}
#wrapper-generic .generic-text p {
	margin-bottom: 0;
}
#wrapper-generic .generic-text p + p,
#wrapper-generic .generic-text p + ul,
#wrapper-generic .generic-text p + ol,
#wrapper-generic .generic-text p + dl {
	margin-top: .75em;
}
#wrapper-generic .generic-text ul li {
	margin-bottom: .5em;
    list-style-type: none;
    position: relative;    /* It's needed for setting position to absolute in the next rule. */
}
#wrapper-generic .generic-text ul li::before {
    content: '\2022';
    position: absolute;
    left: -0.8em;          /* Adjust this value so that it appears where you want. */
    font-size: 1.1em;      /* Adjust this value so that it appears what size you want. */
}

@media (max-width: 767px) {
	#wrapper-generic .generic-notice,
	#wrapper-generic .generic-text > * {
		font-size: 16px;
		line-height: 19px;
	}
}

@media (min-width: 768px) {
	#wrapper-generic {
		padding-top: 220px;
	}
	#wrapper-generic .content-body {
		padding-bottom: 120px;
	}
	#wrapper-generic h1,
	#wrapper-generic .generic-heading {
		margin-bottom: 40px;
	}
	#wrapper-generic .generic-notice {
		margin-bottom: 100px;
	}
	#wrapper-generic .generic-heading h2 {
		font-weight: 400;
		font-size: 40px;
		line-height: 43px;
	}
	#wrapper-generic .generic-text + .generic-heading {
		margin-top: 75px;
	}
	#wrapper-generic .generic-text p + p,
	#wrapper-generic .generic-text p + ul,
	#wrapper-generic .generic-text p + ol,
	#wrapper-generic .generic-text p + dl {
		margin-top: .45em;
	}
}
	