/* =GENERAL
-------------------------------------------------------------- */
html {
	font-size: 62.5%;	/* used to set font sizes using rems 1.2rem = 12px */
}
body {
	color: #7a7a7a;
	font-size: 1.6rem;
	font-family: Arial;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
	color: #000;
	font-weight: 600;
}
.h1, h1 {
	font-size: 5.8rem;
}
.h2, h2 {
	font-size: 3.6rem;
}
.h3, h3 {
	font-size: 2.4rem;
}
.h4, h4, .h5, h5, .h6, h6 {
	font-size: 1.6rem;
}

p {
	margin-bottom: 1em;
	line-height: 1.8em;
}

a {
	color: #000;
}
a:hover {
	color: #7a7a7a;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}
img.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
img.alignright {
	float: right;
	margin-right: 20px;
	margin-bottom: 20px;
}
img.aligncenter {
	display: block;
	margin: 0 auto 20px;
}

.button {
	margin: 0 0 1em;
}
.button a {
	padding: 0 70px;
	display: inline-block;
	background-color: #fff;
	border: 3px solid #020101;
	color: #020101;
	text-decoration: none;
	font-size: 1.4rem;
	line-height: 4em;
	text-transform: uppercase;
	border-radius: 31px;
	transition: all .3s;
}
.button a:hover {
	background-color: #020101;
	color: #fff;
}

table {
	width: 100%;
	margin-bottom: 1em;
}
table td {
	padding: 3px;
	vertical-align: top;
	border: 1px solid rgba(155,155,155,0.5);
}

.container {
	max-width: 1350px;
}

/* =HEADER
-------------------------------------------------------------- */
#site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 98px;
	padding-top: 26px;
	padding-bottom: 26px;
	z-index: 10;
}
#site-header.trans-no,
body.single #site-header {
	background-color: #000;
}

#site-header a#logo-link {
	display: block;
	float: left;
	max-width: 110px;
	margin-top: 4px;
}
#site-header a#logo-link img {
	display: block;
	width: 100%;
	height: auto;
}

.header-nav > ul {
	padding: 0;
	margin: 0 auto;
	list-style: none;
}
.header-nav > ul > li {
	display: inline-block;
	position: relative;
	margin: 0 0 0 -4px;
}
.header-nav > ul > li > a {
	display: block;
	padding: 0 20px;
	color: #fff;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2.9em;
	text-decoration: none;
}

.header-nav li ul {
	position: absolute;
	display: none;
	width: 100%;
	top: 100%;
	left: -999em;
	z-index: 200;
	list-style: none;
	padding: 5px 0;
	margin: 0;
	background-color: #fff;
	text-align: left;
	box-shadow: 5px 10px 30px 0px rgb(0 0 0 / 6%);
}
.header-nav li:hover ul {
	display: block;
	left: 0;
}

.header-nav > ul > li.active > a,
body.single .header-nav > ul > li.current_page_parent > a,
.header-nav > ul > li:hover > a {
	border-bottom: 3px solid #fff;
}

.header-nav li ul a {
	display: block;
	padding: 5px 5px;
	color: #7a7a7a;
	text-align: center;
	font-weight: 600;
}
.header-nav li ul a:hover {
	color: #000
}

.header-nav > ul > li.button > a {
	margin-top: 7px;
	padding: 0 14px;
	background: #fff;
	color: #000;
	font-size: 1.3rem;
	line-height: 2.6em;
	border: none;
	border-radius: 17px;
	transition: all .3s;
	text-transform: none;
}
.header-nav > ul > li.button > a:hover {
	background: #000;
	color: #fff;
	border: none;
}

#secondary-nav > ul {
	text-align: right;
}

#mobile-nav-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
}
#mobile-nav-toggle a {
	display: block;
	padding: 0 15px;
	color: #fff;
	font-size: 30px;
	line-height: 46px;
	text-decoration: none;
	text-align: center;
}
#mobile-nav-toggle a:hover {
	color: #fff;
}

#mobile-nav {
	display: none;
	clear: both;
	padding-top: 26px;
	padding-bottom: 26px;
	margin-top: 26px;
	background: #000;
}
#mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
#mobile-nav ul ul {
	padding-left: 30px;
}
#mobile-nav ul li a {
	display: inline-block;
	padding: 0 5px;
	color: #fff;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	font-family: Arial;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2.9em;
	text-decoration: none;
}
#mobile-nav li.active > a,
body.single #mobile-nav li.current_page_parent > a,
#mobile-nav li a:hover {
	border-bottom: 3px solid #fff;
}


/* =CONTENT
-------------------------------------------------------------- */
main#content {
	margin: 0 auto;
	clear: both;
}
#site-header.trans-no + main#content,
body.single #site-header + main#content {
	margin-top: 98px;
}

/* post single */
article.post .container {
	max-width: 950px;
}
article.post header {
	padding-top: 100px;
	text-align: center;
}

article.post .cta-text {
	padding-top: 50px;
    padding-bottom: 50px;
}
article.post .cta-text p strong {
	color: #000;
	font-size: 1.8rem;
}
article.post .cta-text h2 {
	margin-top: 2em;
	font-size: 2.5rem;
}
article.post .cta-text h3 {
	margin-top: 2em;
	font-size: 2rem;
}

article.post footer {
	padding-top: 50px;
    padding-bottom: 50px;
	color: #000;
	border-top: 10px solid #f7f7f7;
}


.post-meta {
	color: #000;
	text-align: center;
	font-weight: 600;
}
.post-meta span {
	display: inline-block;
	padding-right: 3px;
	padding-left: 3px;
}
.post-avatar {
	height: 100px;
	width: 100px;
	border-radius: 50px;
	overflow: hidden;
}
.post-avatar img {
	content-fit: cover;
	content-position: center center;
}
.post-author-name {
	margin-bottom: 0;
	font-weight: 600;
}
.post-author-social {
	padding: 0;
	margin: 0;
	list-style: none;
}
.post-author-social li {
	display: inline-block;
	margin-right: 2px;
}
.post-author-social li a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	overflow: hidden;
	background: #000;
	color: #fff;
	line-height: 30px;
	text-align: center;
}
.post-author-social li a:before {
	font-family: "Font Awesome 5 Brands";
}
.post-author-social li.fb a:before {
	content: "\f09a";
}
.post-author-social li.tw a:before {
	content: "\f099";
}
.post-author-social li.in a:before {
	content: "\f16d";
}
.post-author-social li.li a:before {
	content: "\f08c";
}

#blog-listings-intro {
	text-align: center;
	margin-bottom: 50px;
}
.cta-blog-listings .post-back {
	text-align: center;
}


/* forms */
label {
	display: block;
	margin-bottom: 30px;
}
select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 0 10px;
	background: #fff;
	color: #7a7a7a;
	border: 2px solid #fff;
	border-radius: 10px!important;
	font-size: 2rem;
	line-height: 2.6em;
	text-align: left;
}
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	outline: none;
	border: 2px solid #000;
}
select {
	height: 56px;
}
textarea {
	height: 230px;
	padding: 10px;
	line-height: 1.5em;
	resize: none;
}
input[type="submit"] {
	padding: 0 70px;
	background-color: #fff;
	border: 3px solid #020101;
	color: #020101;
	text-decoration: none;
	font-size: 1.4rem;
	line-height: 4em;
	text-transform: uppercase;
	border-radius: 31px!important;
	transition: all .3s;
}

/* Jobs Embed */
#rec_job_listing_div {
	padding-top: 50px;
	padding-bottom: 50px;
}
#rec_job_listing_div .cw-rec-filter ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#rec_job_listing_div .cw-rec-filter input {
	margin-right: 10px;
}
#rec_job_listing_div .rec_job_listing_div_jobs .rec-grp-heading {
	padding: 1em 0 0.5em;
	margin: 1em 0 0.5em;
	border-top: 3px solid #f7f7f7;
}
#rec_job_listing_div .rec_job_listing_div_jobs .rec-group {
	padding-left: 30px;
}
#rec_job_listing_div .rec_job_listing_div_jobs h2 {
	font-size: 2.4rem;
}
#rec_job_listing_div .rec_job_listing_div_jobs ul {
	padding: 0;
	margin-bottom: 30px;
	list-style: none;
}
#rec_job_listing_div .rec_job_listing_div_jobs ul li {
	position: relative;
	padding-left: 30px;
}
#rec_job_listing_div .rec_job_listing_div_jobs ul li:before {
	height: 20px;
	width: 20px;
	position: absolute;
	top: 7px;
	left: 8px;
	font-size: 0.7rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f111";
}
#rec_job_listing_div .rec_job_listing_div_jobs .rec-job-title {
	padding: 0;
	margin-bottom: 0.5em;
	font-size: 2rem;
}
#rec_job_listing_div .rec_job_listing_div_jobs .rec-job-title:before {
	display: none;
}
#rec_job_listing_div .rec_job_listing_div_jobs .rec-job-title a:after {
	margin-left: 10px;
	font-size: 0.8em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f054";
}


/* =CONTENT BLOCKS
-------------------------------------------------------------- */

/* General */
.app-buttons:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	max-height:0;
}
.app-buttons a {
	display: inline-block;
	max-width: 40%;
	margin-right: 5%;
	margin-left: 5%;
	border: 1px solid #4d4d4d;
	border-radius: 8px;
}
.app-buttons a img {
	border-radius: 8px;
}

/* Text */
.cta-text {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #fff;
	text-align: center;
}
.cta-text + .cta-text {
	padding-top: 0;
}
.cta-text.cta-text-align-left {
	text-align: left;
}
.cta-text.cta-text-align-right {
	text-align: left;
}
.cta-text.cta-text-grey {
	background-color: #f7f7f7;
}

/* Hero */
.cta-hero {
	position: relative;
}
.cta-hero .cta-hero-img-wrapper {
	padding-bottom: 47.5%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.cta-hero .cta-hero-img-wrapper.cta-hero-img-wrapper-half {
	padding-bottom: 34%;
}
.cta-hero .cta-hero-content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.cta-hero .cta-hero-content h1 {
	color: #fff;
	line-height: 1em;
}
body.home .cta-hero .cta-hero-content h1 {
	font-size: 10rem;
	margin-bottom: 0.25em;
}
.cta-hero .cta-hero-content p {
	margin: 0;
	color: #fff;
	font-size: 2.2rem;
}
.cta-hero .cta-hero-content .hero-app-buttons {
	margin-top: 40px;
}
.cta-hero .cta-hero-content .hero-app-buttons a {
	display: inline-block;
	margin-right: 15px;
	border: 1px solid #4d4d4d;
	border-radius: 8px;
}
.cta-hero .cta-hero-content .hero-app-buttons a img {
	border-radius: 8px;
}

.cta-hero .cta-hero-content .button {
	margin-top: 40px;
}
.cta-hero .cta-hero-content .button a {
	border-color: #fff;
}
.cta-hero .cta-hero-content .button a:hover {
	border-color: #020101;
}

.cta-hero .cta-hero-scroll-link {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}
.cta-hero .cta-hero-scroll-link span {
	display: block;
	margin-top: 20px;
}
.cta-hero .cta-hero-scroll-link span:before {
	display: inline-block;
	height: 34px;
	width: 34px;
	border: 3px solid #fff;
	border-radius: 17px;
	line-height: 28px;
}

/* Icon Blocks */
.cta-icon-blocks {
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
}
.cta-icon-blocks p {
	font-weight: 600;
}
.cta-icon-blocks .cta-icon-blocks-intro {
	margin-bottom: 20px;
}
.cta-icon-blocks .cta-icon-blocks-icon {
	float: left;
	width: 20%;
	padding-right: 2%;
	padding-left: 2%;
}
.cta-icon-blocks .cta-icon-blocks-icon .icon {
	height: 150px;
}
.cta-icon-blocks .cta-icon-blocks-icon .icon img {
	width: 100%;
	height: 100%;
	object-fit: none;
	object-position: 50% 50%;
}
.cta-icon-blocks .cta-icon-blocks-icon h3 {
	min-height: 60px;
}

/* Logos */
.cta-logos {
	padding-top: 100px;
	padding-bottom: 50px;
	background-color: #f7f7f7;
	text-align: center;
}
.cta-logos p {
	font-weight: 600;
}
.cta-logos .cta-logos-intro {
	margin-bottom: 50px;
}
.cta-logos .cta-logos-images .cta-logos-image {
	display: inline-block;
	margin: 0 40px 50px;
}
.cta-logos .cta-logos-images .cta-logos-image img {
	transform: scale(0.2);
	transition: all .3s;
}
.cta-logos .cta-logos-images .cta-logos-image img.in-viewport {
	transform: scale(1);
}

/* Image & Text Halves */
.cta-image-text-halves.cta-image-text-halves-grey {
	background-color: #f7f7f7;
}
.cta-image-text-halves .container-fluid .col-12 {
	padding-right: 0;
	padding-left: 0;
}

.cta-image-text-halves .cta-image-text-halves-image {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.cta-image-text-halves .container .cta-image-text-halves-image {
	background-size: contain;
}

.cta-image-text-halves .cta-image-text-halves-text {
	padding: 120px 17%;
}
.cta-image-text-halves .container .cta-image-text-halves-text {
	padding: 80px 15px;
}
.cta-image-text-halves .cta-image-text-halves-text p {
	margin-bottom: 1.9em;
	color: #000;
	font-weight: 600;
}
.cta-image-text-halves .cta-image-text-halves-text ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.cta-image-text-halves .cta-image-text-halves-text ul li {
	position: relative;
	padding-left: 80px;
	margin-bottom: 1.9em;
	color: #000;
}
.cta-image-text-halves .cta-image-text-halves-text a {
	font-weight: 600;
}
.cta-image-text-halves .cta-image-text-halves-text strong {
	color: #000;
	font-weight: 600;
}
.cta-image-text-halves .cta-image-text-halves-text ul li:before {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 19px;
	color: #000;
	border: 2px solid #000;
	border-radius: 15px;
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 26px;
	text-align: center;
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote {
	padding: 20px;
	margin-top: 70px;
	background: #fff;
	border-radius: 0px 100px 0px 0px;
	box-shadow: 5px 10px 30px 0px rgb(0 0 0 / 6%);
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote blockquote {
	margin: 0;
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote blockquote p {
	margin-bottom: 1em;
	color: #000;
	font-weight: normal;
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote .quote-image {
	width: 60px;
	height: 60px;
	float: left;
	margin: 0 10px 0 0;
	border-radius: 50px;
	overflow: hidden;
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote .quote-image img {
	object-fit: cover;
}
.cta-image-text-halves .cta-image-text-halves-text figure.quote figcaption {
	padding-top: 15px;
	color: #000;
	font-style: normal;
}

/* Image & Text Over */
.cta-image-text-over {
	padding-top: 150px;
	padding-bottom: 150px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.cta-image-text-over .cta-image-text-over-text {
	padding: 100px 31%;
	background-color: rgba(255,255,255,0.5);
	color: #000;
	border-radius: 1000px;
	text-align: center;
}
.cta-image-text-over.cta-image-text-over-left .cta-image-text-over-text,
.cta-image-text-over.cta-image-text-over-right .cta-image-text-over-text {
	padding: 100px 12%;
}

/* Rounded Corner Block */
.cta-rounded-blocks {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #f7f7f7;
}
.cta-rounded-blocks .cta-rounded-blocks-intro {
	text-align: center;
}
.cta-rounded-blocks .cta-rounded-blocks-intro p {
	color: #000;
}
.cta-rounded-blocks .cta-rounded-blocks-text-wrapper {
	margin-right: 10%;
	margin-left: 10%;
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #fff;
	border-radius: 0px 100px 0px 0px;
	box-shadow: 5px 10px 30px 0px rgb(0 0 0 / 6%);
}
.cta-rounded-blocks .cta-rounded-blocks-text-1 {
	text-align: center;
}
.cta-rounded-blocks .cta-rounded-blocks-text p {
	font-weight: 600;
}
.cta-rounded-blocks .cta-rounded-blocks-text a {
	font-size: 1.4rem;
}

/* Staff Profiles */
.cta-staff-profiles {
	padding-top: 100px;
	padding-bottom: 80px;
	background-color: #f7f7f7;
}
.cta-staff-profiles .cta-staff-profiles-intro {
	margin-bottom: 80px;
	text-align: center;
}
.cta-staff-profiles .cta-staff-profiles-list {
	padding: 0;
	list-style: none;
}
.cta-staff-profiles .cta-staff-profile {
	margin-bottom: 30px;
	text-align: center;
}
.cta-staff-profiles .cta-staff-profile .cta-staff-image {
	width: 250px;
	height: 250px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
}
.cta-staff-profiles .cta-staff-profile .cta-staff-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.cta-staff-profiles .cta-staff-profile .cta-staff-text {
	padding: 0 13%;
}
.cta-staff-profiles .cta-staff-profile .cta-staff-text h4 {
	margin-bottom: 1em;
}

/* Contact Links */
.cta-contact-links {
	padding-top: 100px;
	padding-bottom: 80px;
	background-color: #f7f7f7;
	text-align: center;
}
.cta-contact-links .cta-contact-links-title h2 {
	margin-bottom: 0;
}
.cta-contact-links .cta-contact-links-icons {
	padding-top: 50px;
	padding-bottom: 50px;
}
.cta-contact-links .address,
.cta-contact-links .tel,
.cta-contact-links .email {
	display: inline-block;
	position: relative;
	padding-left: 70px;
	white-space: nowrap;
	color: #7a7a7a;
	line-height: 5em;
	text-align: left;
}
.cta-contact-links .address:before,
.cta-contact-links .tel:before,
.cta-contact-links .email:before {
	content: " ";
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-position: center center;
	background-repeat: no-repeat;
}

.cta-contact-links .address:before {
	background-image: url('../images/icon-map.svg');
}
.cta-contact-links .tel:before {
	background-image: url('../images/icon-phone.svg');
}
.cta-contact-links .email:before {
	background-image: url('../images/icon-envelope.svg');
}


/* Toggled Content */
.cta-toggled-content {
	padding-top: 100px;
	padding-bottom: 80px;
}
.cta-toggled-content .cta-toggled-content-title {
	text-align: center;
	margin-bottom: 50px;
}
.cta-toggled-content .cta-tc-list {
	padding: 0;
	list-style: none;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item {
	border: 2px solid #f7f7f7;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item + .cta-tc-list-item {
	border-top: none;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title {
	padding: 15px 10px 15px 80px;
	position: relative;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title:hover {
	cursor: pointer;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title:before {
	content: "\f078";
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	color: #000;
	border: 3px solid #000;
	border-radius: 50%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 3rem;
	line-height: 44px;
	text-align: center;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title.collapsed:before {
	content: "\f054";
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title h3 {
	margin: 0;
	line-height: 1.5em;
	font-size: 2.8rem;
}
.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-content {
	padding: 15px;
}

/* Blog Listings */
.cta-blog-listings {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #f7f7f7;
}
.cta-blog-listings .post-index {
	margin-bottom: 30px;
}
.cta-blog-listings .post-index .text-wrap {
	padding: 70px 110px;
	background-color: #fff;
	text-align: center;
}
.cta-blog-listings .post-index .text-wrap h2 {
	margin-bottom: 1em;
	font-size: 2.4rem;
}
.cta-blog-listings .post-index .text-wrap .read-more {
	margin-bottom: 0;
}
.cta-blog-listings .post-load-more,
.cta-blog-listings .post-index-none {
	text-align: center;
}

/* Blog Single */


/* =FOOTER
-------------------------------------------------------------- */
#wrapper-footer-upper {
	padding-top: 60px;
	padding-bottom: 20px;
	background: #CCD615;
	color: #fff;
	border-top: 20px solid #9b9b9b;
}

#wrapper-footer-upper .widget_nav_menu ul {
	padding: 0;
	margin-top: 30px;
	list-style: none;
}
#wrapper-footer-upper .widget_nav_menu ul li a {
	display: inline-block;
	padding: 0;
	color: #fff;
	border-bottom: 3px solid transparent;
	font-family: Arial;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.9em;
	text-decoration: none;
}
#wrapper-footer-upper .widget_nav_menu ul li a:hover,
#wrapper-footer-upper .widget_nav_menu ul li.active a {
	border-bottom: 3px solid #fff;
}

#wrapper-footer-upper h2 {
	margin-bottom: 0.25em;
	font-family: Arial;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.9em;
}

#footer-widget-2 {
	padding-top: 70px;
	text-align: right;
}
#footer-social {
	padding: 0;
	margin: 0;
	list-style: none;
}
#footer-social li {
	display: inline-block;
	margin-left: 2px;
}
#footer-social li a {
	display: block;
	transition: all .3s;
}
#footer-social li a:hover {
	color: #9b9b9b;
	text-decoration: none;
}
#footer-social li a i {
	display: block;
	width: 34px;
	height: 34px;
	font-size: 1.7rem;
	line-height: 34px;
	background-color: #fff;
	border-radius: 17px;
	text-align: center;
}

#wrapper-footer-lower {
	padding-top: 20px;
	padding-bottom: 20px;
	background: #000;
	color: #7a7a7a;
	text-align: center;
}
#wrapper-footer-lower ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#wrapper-footer-lower ul li {
	display: inline-block;
	margin: 0 10px;
}
#wrapper-footer-lower ul li a {
	padding: 0;
	color: #fff;
	font-family: Arial;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.9em;
	text-decoration: none;
}


/* =USEFUL
-------------------------------------------------------------- */
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	max-height:0;
}

.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* cookie bar */
#cookie-law-info-bar {
	transform-style: preserve-3d;
}
#cookie-law-info-bar:before {
	content: " ";
	width: 100vw;
	height: 100vh;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.8;
	transform: translateZ(-1px);
}

/* contact forms */
div.wpcf7-response-output {
	border: 0!important;
}
div.wpcf7 .ajax-loader {
	display: none!important;
}
span.wpcf7-not-valid-tip {
	padding: 0 10px;
	text-align: left;
}
div.wpcf7-response-output {
	margin: 0!important;
	padding: 0!important;
}
span.wpcf7-spinner {
	display: block;
	margin: 10px 0;
	left: 50%;
	transform: translateX(-50%);
}

/* placeholder colours, defined separately otherwise they're ignored by all browsers  */
::-webkit-input-placeholder { /* WebKit browsers */
	color: inherit;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: inherit;
	opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: inherit;
	opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: inherit;
}

/* prevent automatic styling of telephone numbers */
a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

/* prevent rounded corners on form inputs */
textarea,
input[type=text],
input[type=email],
input[type=image],
input[type=submit] {
	-webkit-appearance: none;
	-webkit-border-radius:0px;
}

/* work around mobile device auto-fitting where text is made too narrow on non responsive sites */
@media only screen and (max-device-width: 800px) {
   h1,h2,h3,h4,h5,h5,p,li,dt,dd {
       background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==); 
       background-repeat:repeat;
    }
}


/* =RESPONSIVE
-------------------------------------------------------------- */

@media (max-width: 1600px) {
	
	/* General */
	.h1, h1 {
		font-size: 5rem;
	}
	
	/* CTAs */
	
		/* Hero */
		body.home .cta-hero .cta-hero-content h1 {
			font-size: 6rem;
		}
		body.home .cta-hero .cta-hero-content h1 br {
			display: none;
		}
		.cta-hero .cta-hero-content p {
			font-size: 1.8rem;
		}
	
}
@media (max-width: 1300px) {
	
	/* CTAs */
	
		/* Hero */
		.cta-hero .cta-hero-img-wrapper {
			padding-bottom: 65%;
		}
		.cta-hero .cta-hero-content h1 br {
			display: none;
		}
		
		/* Blog Listings */
		.cta-blog-listings .post-index .text-wrap {
			padding: 50px 70px;
		}
		
}

@media (max-width: 1200px) {
	
	/* General */
	.h1, h1 {
		font-size: 4rem;
	}
	.h2, h2 {
		font-size: 3.4rem;
	}
	.h3, h3 {
		font-size: 2rem;
	}
	
	/* Post Single */
	article.post header {
		padding-top: 70px;
	}
	
	/* CTAs */
	
		/* Text */
		.cta-text {
			padding-top: 70px;
			padding-bottom: 70px;
		}
	
		/* Hero */
		body.home .cta-hero .cta-hero-content h1 {
			font-size: 5rem;
		}
		.cta-hero .cta-hero-content p {
			font-size: 1.7rem;
		}
		.cta-hero .cta-hero-content .button {
			margin-top: 20px;
		}
		
		/* Icon Blocks */
		.cta-icon-blocks {
			padding-top: 70px;
			padding-bottom: 70px;
		}
		
		/* Logos */
		.cta-logos {
			padding-top: 70px;
			padding-bottom: 20px;
		}
		.cta-logos .cta-logos-images .cta-logos-image img {
			max-height: 70px;
		}
		
		/* Image & Text Halves */
		.cta-image-text-halves .cta-image-text-halves-text {
			padding: 50px 7% 30px;
		}
		.cta-image-text-halves .container .cta-image-text-halves-text {
			padding: 50px 15px;
		}
		.cta-image-text-halves .cta-image-text-halves-text ul li {
			padding-left: 50px;
		}
		.cta-image-text-halves .cta-image-text-halves-text ul li:before {
			left: 10px;
		}
		
		/* Image & Text Over */
		.cta-image-text-over {
			padding-top: 100px;
			padding-bottom: 100px;
		}
		.cta-image-text-over .cta-image-text-over-text {
			padding: 50px 20%;
			background-color: rgba(255,255,255,0.7);
			border-radius: 100px;
		}
		.cta-image-text-over.cta-image-text-over-left .cta-image-text-over-text,
		.cta-image-text-over.cta-image-text-over-right .cta-image-text-over-text {
			padding: 50px 15%;
		}
		
		/* Rounded Corner Block */
		.cta-rounded-blocks {
			padding-top: 70px;
			padding-bottom: 70px;
		}
		
		/* Staff Profiles */
		.cta-staff-profiles {
			padding-top: 70px;
			padding-bottom: 70px;
		}
		.cta-staff-profiles .cta-staff-profiles-intro {
			margin-bottom: 50px;
		}
		
		/* Contact Links */
		.cta-contact-links {
			padding-top: 70px;
			padding-bottom: 50px;
		}
		
		/* Toggled Content */
		.cta-toggled-content {
			padding-top: 70px;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title {
			padding: 15px 10px 15px 60px;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title:before {
			width: 40px;
			height: 40px;
			font-size: 2.5rem;
			line-height: 34px;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title h3 {
			font-size: 2.4rem;
		}
		
		/* Blog Listings */
		.cta-blog-listings {
			padding-top: 70px;
			padding-bottom: 70px;
		}
		.cta-blog-listings .post-index .text-wrap {
			padding: 40px 30px;
		}
	
}

@media (max-width: 991px) {
	
	/* CTAs */
	
		/* Hero */
		.cta-hero .cta-hero-img-wrapper {
			padding-bottom: 75%;
		}
		
		/* Icon Blocks */
		.cta-icon-blocks-icons {
			text-align: center;
		}
		.cta-icon-blocks .cta-icon-blocks-icon {
			display: inline-block;
			float: none;
			width: 32%;
			vertical-align: top;
		}
		
		/* Image & Text Halves */
		.cta-image-text-halves .container .cta-image-text-halves-image {
			background-position: center 17%;
		}
		
		/* Rounded Corner Block */
		.cta-rounded-blocks .cta-rounded-blocks-text-wrapper {
			margin-right: 5%;
			margin-left: 5%;
			padding-top: 40px;
			padding-bottom: 20px;
			border-radius: 0px 50px 0px 0px;
		}
		
		/* Contact Links */
		.cta-contact-links .cta-contact-links-icons {
			padding-top: 30px;
			padding-bottom: 0;
		}
		.cta-contact-links .address,
		.cta-contact-links .tel,
		.cta-contact-links .email {
			width: 250px;
			margin-bottom: 4em;
			white-space: normal;
			line-height: 1.5em;
		}
		
}

@media (max-width: 767px) {
	
	/* header */
	.header-nav {
		display: none;
	}
	#mobile-nav-toggle {
		display: block;
	}
	
	/* Post Single */
	article.post header {
		padding-top: 40px;
	}
	
	/* CTAs */
	
		/* Text */
		.cta-text {
			padding-top: 40px;
			padding-bottom: 40px;
		}
		.cta-text .cta-text-col-2 {
			padding-top: 60px;
		}
		
		/* Hero */
		.cta-hero .cta-hero-img-wrapper {
			padding-bottom: 0;
			height: 300px;
		}
		.cta-hero .cta-hero-content {
			position: relative;
			top: auto;
			left: auto;
			right: auto;
			transform: none;
			padding-top: 30px;
			padding-bottom: 30px;
		}
		body.home .cta-hero .cta-hero-content {
			text-align: center;
		}
		
		.cta-hero .cta-hero-content .row {
			background: #fff;
		}
		.cta-hero .cta-hero-content h1,
		.cta-hero .cta-hero-content p {
			color: #000;
		}
		.cta-hero .cta-hero-content .button a {
			border-color: #000;
		}
		.cta-hero .cta-hero-content .hero-app-buttons {
			margin-top: 20px;
			text-align: center;
		}
		.cta-hero .cta-hero-content .hero-app-buttons a {
			max-width: 120px;
		}
		.cta-hero .cta-hero-scroll-link {
			display: block;
			position: relative;
			bottom: auto;
			left: auto;
			right: auto;
			transform: none;
			color: #000;
		}
		.cta-hero .cta-hero-scroll-link span:before {
			border: 3px solid #000;
		}
		
		/* Icon Blocks */
		.cta-icon-blocks {
			padding-top: 40px;
			padding-bottom: 40px;
		}
		.cta-icon-blocks .cta-icon-blocks-icon {
			width: 48%;
		}
		
		/* Logos */
		.cta-logos {
			padding-top: 40px;
			padding-bottom: 10px;
		}
		.cta-logos .cta-logos-images .cta-logos-image {
			margin: 0 30px 30px;
		}
		
		/* Image & Text Halves */
		.cta-image-text-halves .cta-image-text-halves-image {
			height: 0;
			padding-bottom: 100%;
		}
		.cta-image-text-halves .container .cta-image-text-halves-image {
			background-position: center center;
		}
		.cta-image-text-halves .container .cta-image-text-halves-text {
			padding: 0 15px 30px;
		}
		
		/* Image & Text Over */
		.cta-image-text-over {
			padding-top: 60px;
			padding-bottom: 60px;
		}
		
		/* Rounded Corner Block */
		.cta-rounded-blocks {
			padding-top: 40px;
			padding-bottom: 40px;
		}
		.cta-rounded-blocks .cta-rounded-blocks-text-2 {
			text-align: center;
		}
		
		/* Staff Profiles */
		.cta-staff-profiles {
			padding-top: 40px;
			padding-bottom: 40px;
		}
		.cta-staff-profiles .cta-staff-profiles-intro {
			margin-bottom: 20px;
		}
		
		/* Contact Links */
		.cta-contact-links {
			padding-top: 40px;
			padding-bottom: 20px;
		}
		
		/* Toggled Content */
		.cta-toggled-content {
			padding-top: 40px;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title {
			padding: 15px 10px 15px 50px;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title h3 {
			font-size: 2rem;
		}
		.cta-toggled-content .cta-tc-list .cta-tc-list-item .tc-title:before {
			width: 30px;
			height: 30px;
			border: 2px solid #000;
			font-size: 2rem;
			line-height: 26px;
		}
		
		/* Blog Listings */
		.cta-blog-listings {
			padding-top: 40px;
			padding-bottom: 40px;
		}
		.cta-blog-listings .post-index .text-wrap {
			padding: 30px 15px;
		}
		
}

@media (max-width: 576px) {
	
	/* CTAs */
	
		/* Icon Blocks */
		.cta-icon-blocks .cta-icon-blocks-icon {
			width: 100%;
		}
		.cta-icon-blocks .cta-icon-blocks-icon .icon {
			height: 100px;
		}
		.cta-icon-blocks .cta-icon-blocks-icon h3 {
			min-height: 0;
		}
	
	/* footer */
	#footer-widget-1 {
		text-align: center;
	}
	#footer-widget-2 {
		padding-top: 30px;
		text-align: center;
	}
}