/*
Theme Name: Second Mountain - 2023
Theme URI:http://www.goodlookinkids.com
Description:
Version:1.0
Author:Good Lookin Kids Inc.
Author URI:http://www.goodlookinkids.com
Tags:

*/

/* ========================================================================== *\
   TABLE OF CONTENTS
\* ==========================================================================

	1. RESET
	2. GENERAL TAGS
	3. STRUCTURE
	4. HOME PAGE STYLES
	5. PAGE AND SINGLE POST STYLES
		5.1 ABOUT
		5.4 PAGINATION
	6. GENERAL CLASSES
	7. FORM STYLES
	8. ALIGNMENT
	9. CAPTIONS
	10. GUTENBERG
	11. COLUMNS
*/

/* ========================================================================== *\
   1. RESET
\* ========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* Make HTML 5 elements display block-level for consistent styling */
main, article, section, aside, hgroup, nav, header, footer, figure, figcaption {
  display: block;
}

/* ========================================================================== *\
   2. GENERAL TAGS
\* ========================================================================== */

:root {
	--ocean: #3AACC9;
	--teal: #710200;
	--red: #8C0B0E;
	--coral: #E61621;
	--light-grey: #F9F9F9;
	--medium-grey: #B3B3B3;
	--dark-grey: #383838;
	--black: #000000;
	--white: #FFFFFF;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%; /* == 10px rem == */
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-size: 1.8rem;
	line-height: 150%;
	font-family: 'Public Sans', sans-serif;
	color: var(--dark-grey);
	background: url('images/background.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--light-grey);
}

p {
	padding-bottom: 2.4rem;
}

p.small {
	font-size: 1.4rem;
	line-height: 150%;
}

p.large {
	font-size: 2rem;
}

h1 {
	font-size: 5.6rem;
	line-height: 125%;
	font-weight: bold;
	padding-bottom: 2.4rem;
}

h1.small {
	font-size: 2.4rem;
	line-height: 110%;
}

h1.large {
	font-size: 7.2rem;
	line-height: 120%;
}

h2 {
	font-size: 3.2rem;
	line-height: 120%;
	font-weight: bold;
	padding-bottom: 2.4rem;
}

h3,
h2.small {
	font-size: 2.4rem;
	line-height: 120%;
	font-weight: bold;
	padding-bottom: 2.4rem;
}

h4 {
	font-size: 2rem;
	line-height: 100%;
	font-weight: bold;
	padding-bottom: 2.4rem;
}

h5 {
	font-size: 1.8rem;
	line-height: 100%;
	font-weight: bold;
	padding-bottom: 2.4rem;
}

a {
	color: var(--red);
	text-decoration: underline;
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

a:after,
a:before {
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

a:hover {
	color: var(--coral);
	text-decoration: none;
	outline: 0;
}

:focus {
	outline: 3px solid var(--ocean);
}

hr {

}

blockquote {

}

::selection {
	background: var(--teal);
	color: var(--white);
}

::-moz-selection {
	background: var(--teal);
	color: var(--white);
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ========================================================================== *\
   3. STRUCTURE
\* ========================================================================== */

.header {
	display: block;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 999;
	padding: 3.2rem 0;
}

.logo {
	display: block;
	width: 26rem;
}

.header .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .menu {
	display: block;
}

.header .menu ul {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 5.6rem;
}

.header .menu ul li {
	display: block;
	padding: 1.4rem 0;
}

.header .menu ul li a {
	color: var(--dark-grey);
	font-weight: bold;
	font-size: 1.6rem;
	text-decoration: none;
}

.header .menu ul li a:hover,
.header .menu ul li.current_page_item a {
	color: var(--red);
}

#wrapper,
.wrapper {
	overflow-x: hidden;
}

#wrapper:focus,
.wrapper:focus {
	outline: none;
}

.skip-to-content-link {
	display: block;
	text-align: center;
	font-weight: bold;
	padding: 10px 20px;
	background: #ffffff;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
	left: 10px;
	top: 10px;
	position: absolute;
	z-index: 999999;
	transform: translateY(-200%);
	transition: transform 0.3s;
}

.skip-to-content-link:focus {
	transform: translateY(0%);
}

.footer {
	background: var(--dark-grey);
	color: var(--white);
	padding: 8rem;
}

.footer .columns {
	height: 100%;
}

.footer .columns .col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer a {
	color: var(--white);
}

.footer a:hover {
	color: var(--coral);
}

.footer p {
	padding-bottom: 0.8rem;
}

.footerLogo {
	display: block;
	width: 220px;
}

.footerMenu {
	display: block;
}

.footerMenu ul {
	display: block;
	margin: 0 0 0 0;
}

.footerMenu ul li {
	display: block;
	margin-bottom: 1.6rem;
}

.footerMenu ul li a {
	display: block;
	font-size: 1.6rem;
	line-height: 125%;
	font-weight: normal;
	text-decoration: none;
}

.footer h2 {
	font-size: 1.6rem;
	line-height: 100%;
	padding-bottom: 1.6rem;
}

.footer input[type="text"],
.footer input[type="email"],
.footer input[type="submit"],
.footer button {
	height: 50px;
}

.footer input[type="submit"],
.footer button {
	font-size: 1.4rem;
}

.footer input[type="submit"]:after,
.footer button:after {
	display: none !important;
}

.footer .gform_wrapper form {
	display: flex !important;
	flex-flow: row wrap;
	gap: 1.6rem;
	max-width: 420px;
}

.footer .gform_wrapper form .gform_body {
	flex: 1;
}

.footer .gform_wrapper .gform_footer {
	padding: 0px !important;
	margin: 0px !important;
}

.social {
	display: flex;
	flex-direction: row;
	gap: 1.6rem;
	margin-bottom: 1.6rem;
}

.social li {
	display: block;
}

.social li a {
	display: block;
	width: 3.2rem;
	height: 3.2rem;
	overflow: hidden;
	text-indent: -999px;
	font-weight: normal;
}

.social li a:hover {
	transform: scale(1.1,1.1);
}

.social li a.ico-linked-in {
	background: url('images/ico-linkedin.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 3.2rem 3.2rem;
}

.social li a.ico-facebook {
	background: url('images/ico-facebook.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 3.2rem 3.2rem;
}

/* ===================================== *\
   3.1 MOBILE MENU BUTTON
\* ===================================== */

.c-hamburger {
	display: none;
	position: absolute;
	top: 2rem;
	right: 3.2rem;
	z-index: 1000;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

.c-hamburger:hover {
	background: transparent;
}

.c-hamburger:focus {
	outline: none;
}

.c-hamburger span {
	display: block;
	position: absolute;
	top: 6px;
	left: 0px;
	right: 0px;
	height: 4px;
	background: var(--black);
	border-radius: 2px;
}

.c-hamburger span::before,
.c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: var(--black);
	border-radius: 2px;
	content: "";
}

.c-hamburger span::before {
	top: -10px;
}

.c-hamburger span::after {
	bottom: -10px;
}

.c-hamburger--htx {
	background:transparent;
}

.c-hamburger--htx span {
	transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
	transition-property: top, transform;
}

.c-hamburger--htx span::after {
	transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
	background: transparent;
}

.c-hamburger--htx.is-active span {
	background: none !important;
}

.c-hamburger--htx.is-active span::before {
	top: 0;
	transform: rotate(45deg);
	background: var(--black);
}

.c-hamburger--htx.is-active span::after {
	bottom: 0;
	transform: rotate(-45deg);
	background: var(--black);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
	transition-delay: 0s, 0.3s;
}

/* ========================================================================== *\
   4. HOME PAGE STYLES
\* ========================================================================== */

body.home {
	position: relative;
	z-index: 1;
	background: none;
}

.hero.home {
    background:
        url('') bottom center / 1200px auto no-repeat,
		linear-gradient(0deg, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0) 100%);
	height: 100%;
	min-height: 81rem;
}

body.home .main {
	background: var(--white);
	padding-bottom: 0px;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	z-index: -1;
}

.hero.home h1,
.hero.home p {
	display: block;
	max-width: 72rem;
}

.callout {
	display: block;
	width: 100%;
	background: var(--white);
	padding: 10.4rem 0 4.8rem 0;
}

.callout img {
	display: block;
	margin: 0 auto;
	width: 80%;
}

/* ========================================================================== *\
   5. PAGE AND SINGLE POST STYLES
\* ========================================================================== */

.hero {
	display: block;
	padding: 22.4rem 0 7.2rem 0;
}

.hero.short {
	padding-bottom: 3.2rem;
}

.hero h1,
.hero p {
	max-width: 860px;
}

.hero .fullWidth h1,
.hero .fullWidth p {
	max-width: 100%;
}

.hero.alt h1,
.hero.alt p {
	max-width: 100%;
}

.main {
	padding-bottom: 8rem;
}

.main.alt {
	padding-bottom: 0px;
}

.main.fill {
	padding: 8rem 0 5.6rem 0;
	background: var(--white);
}

.main ul,
.main ol {
  margin: 0 auto 1.6rem 40px;
  list-style-position: outside;
}

.main .wp-block-column ul li,
.main .wp-block-column ol li {
  margin-left: 1em;
  font-size: 16px;
  line-height: 23px;
}

.main ul li,
.main ol li {
	margin-bottom: 0.8rem;
}

.main ul ul,
.main ul ol,
.main ol ul,
.main ol ol {
	margin-top: 10px !important;
	margin-left: 40px;
}

.main ul ol li {
	list-style-type: decimal;
}

.main ol ul li {
	list-style-type: disc;
}

.main ol ol li,
.main ol.alpha li {
	list-style-type: lower-alpha;
}

.main ul ul li {
	list-style-type: circle;
}

.main ul li {
	list-style-type: disc;
}

.main ol li {
	list-style-type: decimal;
}

.main .entry-content ul,
.main .entry-content ol {
	margin: 0 auto 2.4rem auto;
}

.highlights {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2.4rem;
	row-gap: 2.4rem;
}

.highlights .highlight {
	display: block;
}

.highlights .highlight p {
	display: block;
	padding: 0 0 0 4rem;
}

.highlights .highlight .title {
	display: flex;
	flex-direction: row;
	gap: 0.8rem;
	margin-bottom: 0.2rem;
}

.highlights .highlight .title a {
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: bold;
	text-transform: uppercase;
}

.highlights .highlight .title a:hover {
	color: var(--teal);
}

.highlights .highlight .title img {
	display: block;
	width: 3.2rem;
	margin: -0.4rem 0 0 0;
}

.highlights .highlight img {
	display: block;
	margin: 0 auto;
}

ul.posts {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	column-gap: 2.4rem;
	row-gap: 3.2rem;
	margin: 0 0 3.2rem 0 !important;
}

ul.posts.alt {
	grid-template-columns: repeat(2,1fr);
}

ul.posts li {
	display: block;
	margin: 0 !important;
}

ul.posts.featured li:first-child,
ul.posts.reverseFeatured li:nth-child(4) {
	grid-column: 1 / span 3;
}

ul.posts.featured li:first-child a {
	text-decoration: none;
}

ul.posts.featured li:first-child a:after {
	display: none;
}

ul.posts li a.btn.simple {
	font-size: 1.6rem;
	line-height: 100%;
	font-weight: bold;
	cursor: pointer;
	padding: 0.8rem 0;
}

ul.posts li a.btn.simple:after {
	width: 3.2rem;
	height: 3.2rem;
	display: block;
}

ul.posts li img {
	display: block;
	margin-bottom: 1.6rem;
    transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}

ul.posts li a:hover img {
	transform: scale(1.05,1.05);
}

ul.posts li a {
	font-size: 1.6rem;
	line-height: 125%;
	display: flex;
	flex-direction: row;
	gap: 0.8rem;
	font-weight: normal;
	text-decoration: none;
	color: var(--black);
}

ul.posts li a:hover {
	color: var(--coral);
}

.careers {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	column-gap: 2.4rem;
	row-gap: 2.4rem;
}

.careers.stack {
	grid-template-columns: repeat(1,1fr);
}

.careers .career {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 2.4rem 2.4rem 2.4rem 8rem;
	background: url('images/monogram.svg');
	background-position: left 2.4rem center;
	background-repeat: no-repeat;
	background-size: 4rem 4rem;
	background-color: var(--white);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
}

.careers .career .type {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark-grey);
}

.careers .career a {
	font-size: 1.6rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}

.careers .career a:hover {
	color: var(--teal);
}

.testimonial {
	display: block;
	padding: 4rem 10.2rem;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	background: var(--white);
}

.testimonial .columns {
	align-items: center;
}

.testimonial .one_fourth {
	text-align: center;
}

.testimonial .title {
	display: block;
	color: var(--teal);
	font-size: 2rem;
	line-height: 100%;
	font-weight: bold;
	margin-bottom: 3.2rem;
}

.testimonial blockquote {
	font-size: 1.8rem;
	line-break: 150%;
	position: relative;
	padding: 0 4rem;
	max-width: 720px;
}

.testimonial blockquote:before {
	content: "";
	display: block;
	width: 27px;
	height: 21px;
	background: url('images/quote-top.svg');
	background-repeat: no-repeat;
	background-size: 27px 21px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.testimonial blockquote:after {
	content: "";
	display: block;
	width: 27px;
	height: 21px;
	background: url('images/quote-bottom.svg');
	background-repeat: no-repeat;
	background-size: 27px 21px;
	position: absolute;
	bottom: 2.4rem;
	right: 0px;
}

.testimonial .photo {
	display: block;
	border-radius: 100%;
	width: 16rem;
	height: 16rem;
	margin: 0 auto 2.4rem auto;
}

.testimonial .photo img {
	display: block;
	border-radius: 100%;
	width: 16rem;
	height: 16rem;
}

.testimonial .position {
	display: block;
	font-size: 1.4rem;
	font-weight: normal;
}

.testimonial .name {
	display: block;
	font-weight: bold;
	font-size: 2rem;
}

.nextPage {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 5.6rem 10.4rem;
	align-items: center;
	gap: 10.4rem;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	background: var(--white);
}

.nextPage .left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.6rem;
}

.nextPage .left img {
	display: block;
	width: 7.2rem;
	height: 7.2rem;
}

.nextPage .left .thumbnail {
	width: 24rem;
	height: auto;
}

.nextPage .left .title {
	display: block;
	color: var(--red);
	font-size: 2.4rem;
	line-height: 140%;
	padding-bottom: 0;
}

.nextPage .left p {
	display: block;
	padding-bottom: 0px;
}

.nextPage .right {
	display: block;
}

.nextPage .right .btn {
	white-space: nowrap;
}

.nextPage .btn {
	margin-bottom: 0px;
}

ul.share {
	display: flex;
	flex-direction: row;
	gap: 1.2rem;
	margin: 0;
}

ul.share li {
	display: block;
	margin: 0 0 0 0;
}

ul.share li a {
	display: block;
}

ul.share li a:hover {
	transform: scale(1.1,1.1);
}

ul.share li a img {
	display: block;
	width: 3.2rem;
}

/* ====================================== *\
   5.1 ABOUT
\* ====================================== */

.founder {
	display: block;
	width: 100%;
	background: var(--white);
	padding: 6.4rem 10.4rem 5rem;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	margin-bottom: 4rem;
}

.founder .photo {
	display: block;
	border-radius: 100%;
}

.founder h3 {
	color: var(--teal);
	padding-bottom: 0.4rem;
}

.founder .position {
	display: block;
	padding-bottom: 2.4rem;
	font-weight: bold;
	font-size: 2rem;
}

/* ====================================== *\
   5.4 PAGINATION
\* ====================================== */

.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
    color: #fff;
    text-decoration:none;
}

.pagination li {
    display: inline;
}

.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
    background-color: #6FB7E9;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}

.pagination li a:hover,
.pagination li.active a {
    background-color: #3C8DC5;
}

/* ========================================================================== *\
   6. GENERAL CLASSES
\* ========================================================================== */

.container {
	display: block;
	width: 100%;
	padding: 12rem 0;
	background: var(--white);
}

.container.short {
	padding: 6.4rem 0;
}

.container.grey {
	background: var(--light-grey);
}

.container.contactCTA {
	color: var(--white);
	background: url('images/contact-cta-bg.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--black);
}

.container.contactCTA h2,
.container.contactCTA p {
	max-width: 34rem;
}

.subtitle {
	display: block;
	margin-bottom: 1.6rem;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 110%;
	color: var(--coral);
}

.blue {
	color: var(--teal);
}

.btn,
.wp-block-button__link,
input[type=submit],
input[type=button] {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.8rem;
	color: var(--white);
	border: 2px solid var(--red);
	background: var(--red);
	font-size: 1.6rem;
	line-height: 100%;
	font-weight: bold;
	cursor: pointer;
	padding: 0.8rem 3.2rem;
	border-radius: 0px;
	text-decoration: none;
	margin-bottom: 2.4rem;
	text-transform: uppercase;
	transition: .5s ease-in-out;
	font-family: 'Public Sans', sans-serif;
}

.wp-block-button__link {
	font-size: 1.4rem;
}

.btn:hover,
.wp-block-button__link:hover,
input[type=submit]:hover,
input[type=button]:hover  {
	background: var(--coral);
	border-color: var(--coral);
	color: var(--white);
}

.btn:after,
.wp-block-button__link:after,
input[type=submit]:after,
input[type=button]:after  {
	content: "";
	width: 3.2rem;
	height: 3.2rem;
	background: url('images/ico-right-arrow.svg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.btn:hover:after,
.wp-block-button__link:hover:after,
input[type=submit]:hover:after,
input[type=button]:hover:after  {
	transform: translateX(0.4rem);
}

.btn.small {
	font-size: 1.4rem;
}

.btn.small:after {
	width: 2.4rem;
	height: 2.4rem;
}

.btn.large {
	font-size: 2rem;
}

.btn.large:after {
	width: 4rem;
	height: 4rem;
}

.btn.simple {
	padding: 0.8rem 0;
	color: var(--red);
	border: none;
	background: transparent;
}

.btn.simple:hover {
	color: var(--coral);
	background: transparent;
}

.btn.simple:after,
.btn.ghost:after,
.ghost .wp-block-button__link:after{
	background: url('images/ico-right-arrow-red.svg');
}

.btn.simple:hover:after,
.btn.ghost:hover:after,
.ghost .wp-block-button__link:hover:after{
	background: url('images/ico-right-arrow-coral.svg');
}

.btn.ghost,
.ghost .wp-block-button__link {
	background: transparent;
	color: var(--red);
}

.btn.ghost:hover,
.ghost .wp-block-button__link:hover{
	background: transparent;
	color: var(--coral);
}

.btn.none {
	padding: 1.6rem 3.2rem;
}

.btn.none:after {
	display: none;
}

.clear {
    clear:both;
}

.center {
	text-align: center;
}

.center img {
	display: block;
	margin: 0 auto;
}

.clear.sm,
.wp-block-spacer.sm {
	height: 2rem !important;
}

.clear.md,
.wp-block-spacer.md {
	height: 4rem !important;
}

.clear.lg,
.wp-block-spacer.lg {
	height: 6rem !important;
}

.clear.xl,
.wp-block-spacer.xl {
	height: 8rem !important;
}

.middle {
	width:75%;
	transition:.5s ease;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
}

.content {
	display: block;
	width: 1000px;
	margin: 0px auto;
}

.content.wide {
	width: 1200px;
}

/* ========================================================================== *\
   7. FORM STYLES
\* ========================================================================== */

.gfield_required {
	color: var(--red) !important;
}

.gform_footer {
	display:  block !important;
	text-align: right !important;
}

.gform_footer input[type="submit"] {
	display: inline-flex;
}

input {
	-webkit-appearance: none;
	border-radius: 0;
}

label {
	color: var(--dark-grey) !important;
	font-size:  1.8rem !important;
	font-weight: regular;
	padding-bottom: 0.8rem;
}

.gform_footer {
	text-align: right;
	padding-top: 40px !important;
}

.gform_validation_errors h2 {
	padding-bottom: 0px;
}

.gform_fileupload_rules {
	color: #000000;
	font-style: italic;
}

.gform_wrapper .gfield_required {
	color: red !important;
}

.name_first label,
.name_last label,
.ginput_left label,
.ginput_right label {
	font-weight: lighter;
	font-size: 12px !important;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel] {
	padding: 1.4rem 1.6rem !important;
	margin: 0 0 5px 0;
	border-radius: 0px;
	background-color: var(--white);
	color: var(--dark-grey);
	display: block;
	font-size: 1.4rem !important;
	line-height: 100%;
	width: 100% !important;
	border: 1px solid var(--medium-grey);
	font-family: 'Public Sans', sans-serif;
}

textarea {
	padding: 1.4rem 1.6rem !important;
	margin: 0 0 5px 0;
	border-radius: 0px;
	background-color: var(--white);
	color: var(--dark-grey);
	display: block;
	font-size: 1.4rem;
	width: 100% !important;
	height: 140px;
	border: 1px solid var(--medium-grey);
	font-family: 'Public Sans', sans-serif;
}

select {
	display: block;
	width: 100% !important;
	height: 55px !important;
	box-sizing: border-box;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding: 0px 60px 0 20px !important;
   margin-bottom: 0px;
   border: 1px solid var(--medium-grey);
   border-radius: 0px !important;
   color: var(--dark-grey);
   opacity: 1;
   font-size: .16rem;
   cursor: pointer;
   -webkit-border-radius: 0px !important;
   background-image: url('images/select.svg');
   background-position: right 20px center;
   background-repeat: no-repeat;
   background-size: 18px 12px;
   background-color: #ffffff;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	cursor: pointer;
	text-transform: none !important;
}

input[type="checkbox"]:focus + label,
input[type="radio"]:focus + label {
	color: #000000 !important;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
	opacity: 1;
	top: 3px;
}

input:focus,
textarea:focus,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
select:focus {
	border-color: #000000;
}

input[type="file"] {
	border: 2px solid #111111;
	color: #111111;
	display: inline-block;
	padding: 20px;
	cursor: pointer;
	background: #ffffff;
}

input[type="checkbox"],
input[type="radio"] {
	opacity: 0;
	outline: none;
	z-index: 100;
	width: 27px;
	height: 27px;
	top: 0;
	left: 0;
	position: absolute;
	appearance: none;
	cursor: pointer;
}

.validation_message {
	color: red;
}

.inlineForm {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 750px;
}

.inlineForm.small {
	max-width:500px;
}

.inlineForm.large {
	min-width: 500px;
}

.inlineForm label {
	display: none !important;
}

.inlineForm .gform_wrapper,
.inlineForm .gform_footer {
	padding-bottom: 0px !important;
}

.inlineForm .validation_error {
	display: none !important;
}

.inlineForm .gfield_description.validation_message {
	position: absolute;
	bottom: -40px;
}

.inlineForm input[type="email"] {
	display: block !important;
	width: 65% !important;
	height: 50px;
	border-color: #ffffff;
}

.inlineForm input[type="submit"] {
	display: block !important;
	width: 42% !important;
	height: 50px;
	border-radius: 0;
	margin: 0px !important;
	background: #111111;
	color: #ffffff;
	border: none;
}

.inlineForm input[type="submit"]:hover {
	background: #000000;
	color: #000000;
}

input[type="text"].searchInput {
	background-color: #ffffff;
}

.hide_label label {
	display: none !important;
}

.gform_ajax_spinner {
	margin-left: 10px !important;
}

/* ========================================================================== *\
   8. ALIGNMENT
\* ========================================================================== */

.alignleft,
.alignright {
	max-width: 636px !important;	/* Let's work to make this !important unnecessary */
}

.alignleft img,
.alignright img,
.alignleft figcaption,
.alignright figcaption {
	max-width: 50%;
	width: 50%;
}

.alignleft figcaption {
	clear: left;
}

.alignright figcaption {
	clear: right;
}

.alignleft,
.alignleft img,
.alignleft figcaption {
  float: left;
  margin-right: 1.5em;
}

.alignright,
.alignright img,
.alignright figcaption {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================================== *\
   9. CAPTIONS
\* ========================================================================== */

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* ========================================================================== *\
   10. GUTENBERG
\* ========================================================================== */

.entry-content > * {
  margin: 0px auto;
  max-width: 1000px;
}

.noMarginBottom {
	margin: 36px auto 0px auto !important;
}

.noMarginTop {
	margin: 0px auto 36px auto !important;
}

.noMargin {
	margin: 0 auto;
}

.entry-content > .alignwide {
	margin: 2em auto;
	max-width: 1200px;
}

.entry-content .alignwide img {
	display: block;
	width: 100%;
}

.entry-content > .alignfull {
  margin: 2em 0;
  max-width: 100%;
}

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.3333333333%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.6666666667%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.2857142857%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.1111111111%;
}

.gallery-caption {
  display: block;
}

.wp-block-column .wp-block-image {
	margin: 0px 0px 20px 0px;
}

.wp-block-columns.space-between {
	justify-content: space-between !important;
}

.is-cropped .blocks-gallery-item img {
	width: auto !important;
	height: 400px !important;
	max-width: 1000% !important;
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.is-cropped .blocks-gallery-item figure {
	overflow: hidden;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
	.is-cropped .blocks-gallery-item img {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-o-object-fit: cover;
		object-fit: cover;
		height: 400px !important;
		width: 100% !important;
		max-width: 100% !important;
		position: unset !important;
		top: unset !important;
		left: unset !important;
		-webkit-transform: unset !important;
		transform: unset !important;
	}

	.is-cropped .blocks-gallery-item figure {
		overflow: unset !important;
	}
}

.entry-content ul,
.entry-content ol {
  margin: 1.5em auto;
  list-style-position: outside;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-table td, .wp-block-table th {
  padding: .5em;
}

.entry-content li {
  margin-left: 2.5em;
  margin-bottom: 6px;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
  margin: 0.8rem auto 0 auto !important;
  padding-left: 2.4rem;
  padding-bottom: 0px !important;
}

.entry-content ul ul li,
.entry-content ol ol li,
.entry-content ul ol li,
.entry-content ol ul li {
  margin-left: 0;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper, .wp-block-embed-vimeo > .wp-block-embed__wrapper, .wp-block-embed-youtube > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe, .wp-block-embed-vimeo > .wp-block-embed__wrapper > iframe, .wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }

  .entry-content > * {
    padding-left: 0px;
    padding-right: 0px;
  }

}

.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

/* ========================================================================== *\
   11. COLUMNS
\* ========================================================================== */

.columns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.columns .col {
	display: block;
}

.centerV {
	align-items: center;
}

.col.right {
	text-align: right;
}

.one_half {
	width:48%;
}

.one_third {
	width:30.66%;
}

.two_third {
	width:65.33%;
}

.one_fourth {
	width:22%;
}

.three_fourth{
	width:74%;
}

.one_fifth {
	width:16.8%;
}

.two_fifth{
	width:37.6%;
}

.three_fifth {
	width:58.4%;
}

.four_fifth {
	width:79.2%;
}

.one_sixth {
	width:13.33%;
}

.five_sixth {
	width:82.67%;
}