@charset "UTF-8";
/* Main CSS Document */

/*
	font-family: gastromond, serif;
	font-family: brandon-grotesque, Brandon Grotesque, sans-serif;
	Mint: #3AB0A5;
	Red: #DB4744;
	Navy: #1A2F54;
*/

/* BASIC STYLES */
body {
	margin: 0;
	padding: 0;
	color: #1A2F54;
	font-family: brandon-grotesque, Brandon Grotesque, sans-serif;
	font-size: 18px;
}
body *, body *:before, body *:after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-o-font-smoothing: antialiased;
	transition: all .4s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
	font-family: gastromond, serif;
	font-weight: 400;	
}
h1, h2 {
	margin: 0 0 .3em;
	color: #3AB0A5;
	font-size: 4em;
	line-height: 1.2em;
	text-align: center;
}
h3, h4, h5, h6 {
	margin: .5em 0 .3em;
	padding: 0;
	line-height: 1.5em;
}
h3 {
	color: #DB4744;
	font-size: 2.5em;
}
h4 {
	color: #3AB0A5;
	font-size: 2em;
}
h5 {
	color: #DB4744;
	font-size: 1.5em;
}
h6 {
	color: #3AB0A5;
	font-size: 1.25em;
}
p {
	margin: .75em 0 .5em;
	padding: 0;
	font-size: 1em;
	line-height: 1.65em;
	text-align: justify;
}
strong {
	font-weight: 700;
}
a {
	color: #3AB0A5;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #DB4744;
}
.button {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 1em 0;
	padding: .5em 1.25em;
	background: none;
	border: 2px solid #3AB0A5;
	border-radius: 2em;
	color: #3AB0A5;
	font-family: brandon-grotesque, Brandon Grotesque, sans-serif;
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}
.button:hover {
	color: #FFF;
}
.button:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #3AB0A5;
}
.button:hover:after {
	top: 0;
}
.button-submit {
	padding: 0;
}
input[type="submit"] {
	display: inline-block;
	margin: 0;
	padding: .5em 1.25em;
	background: none;
	border: none;
	color: #3AB0A5;
	font-family: brandon-grotesque, Brandon Grotesque, sans-serif;
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}
input[type="submit"]:hover {
	color: #FFF;
}
fieldset {
	padding: 0;
	border: none;
}
legend {
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
}
input[type="text"], input[type="email"], textarea {
	margin: .5em 0;
	padding: .5em .75em;
	background: #FFF;
	border: none;
	border-radius: .5em;
	font-family: brandon-grotesque, Brandon Grotesque, sans-serif;
	font-size: 1em;
}
input[type="text"]:hover, input[type="email"]:hover, textarea:hover {
	background: #D7EFED;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
	background: #B5E5E0;
}
input::-webkit-input-placeholder {
  color: #1A2F54;
}
input::-moz-placeholder {
  color: #1A2F54;
}
input:-ms-input-placeholder {
  color: #1A2F54;
}
input:-moz-placeholder {
  color: #1A2F54nk;
}
textarea::-webkit-input-placeholder {
  color: #1A2F54;
}
textarea::-moz-placeholder {
  color: #1A2F54;
}
textarea:-ms-input-placeholder {
  color: #1A2F54;
}
textarea:-moz-placeholder {
  color: #1A2F54nk;
}
.two-column {
	max-width: 55em;
	margin-left: auto;
	margin-right: auto;
	column-count: 2;
	column-gap: 2.5em;
	text-align: justify;
}
.align-center {
	text-align: center;
}
.align-center .button {
	margin: 1.5em 0 0;
}
.align-center .button:not(:last-of-type) {
	margin-right: 1em;
}
.narrow {
	max-width: 50em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
img {
	max-width: 100%;
}
iframe {
	width: 100%;
}
hr {
  margin: 2.5em 0 2em;
  border: none;
  border-bottom:1px solid rgba(26, 47, 84, .2);
}
@media screen and (max-width: 1000px) {
	h1, h2 {
		font-size: 3.5em;
	}
}
@media screen and (max-width: 750px) {
	h1, h2 {
		font-size: 3em;
	}
	h3 {
		font-size: 1.75em;
	}
	h4 {
		font-size: 1.5em;
	}
	h5 {
		font-size: 1.25em;
	}
	h6 {
		font-size: 1.15em;
	}
	.two-column {
		column-count: 1;
		text-align: left;
	}
	.narrow {
		width: 100%;
		text-align: justify;
	}
}
@media screen and (max-width: 500px) {
	h1, h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 1.5em;
	}
	h4 {
		font-size: 1.25em;
	}
	h5 {
		font-size: 1.15em;
	}
	h6 {
		font-size: 1em;
	}
	.button:nth-of-type(n) {
		width: 100%;
		margin: 1em 0 0;
	}
}

/* HEADER */
header {
	position: absolute;
	z-index: 999;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0;
	text-align: center;
}
.logo {
	margin: 0 0 .3em;
	padding: .75rem 1.25rem 1.5rem 3rem;
	background: #FFF;
	font-family: gastromond, serif;
	font-size: 2.5em;
	line-height: 1em;
}
.logo-kelly {
	color: #76D3C7;
}
.logo-chisum {
	color: #3AB0A5;
}
.logo:hover .logo-kelly {
	color: #3365A0;
}
.logo:hover .logo-chisum {
	color: #1A2F54;
}
.nav-toggle {
	display: none;
	opacity: 0;
	cursor: pointer;
}
.nav-toggle-top,
.nav-toggle-middle,
.nav-toggle-bottom {
	display: block;
	width: 3.3em;
	height: .45em;
	background: #1A2F54;
	border-radius: 4px;
}
.nav-toggle-middle {
	margin: .4em 0;
}
.nav-toggle:hover .nav-toggle-top,
.nav-toggle:hover .nav-toggle-middle,
.nav-toggle:hover .nav-toggle-bottom {
	background: #3AB0A5;
}
.nav-toggle-x .nav-toggle-top {
	margin-top: .75em;
	transform: rotate(45deg);
}
.nav-toggle-x .nav-toggle-middle {
	opacity: 0;
	margin: 0;
}
.nav-toggle-x .nav-toggle-bottom {
	margin-top: -.85em;
	transform: rotate(-45deg);
}
nav {
	z-index: 1;
	flex: 1 0 50%;
	width: 50%;
	height: 4.5em;
	padding: 1.55em 3em 1em 1.25em;
	background: #FFF;
}
.nav {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.nav li {
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	line-height: 1em;
}
.nav a {
	color: #1A2F54;
	line-height: 1em;
	font-weight: normal;
}
.nav a:hover {
	color: #DB4744;
}
.nav li:not(:last-of-type) a {
	margin-right: 1em;
	padding-right: 1em;
	border-right: 1px solid #3AB0A5;
}
.nav li:nth-of-type(even) a {
	border-color: #DB4744;
}
@media screen and (max-width: 1400px) {
	.logo {
		font-size: 2em;
	}
	nav {
		height: 4em;
	}
	.nav li {
		font-size: 1em;
	}
}
@media screen and (max-width: 1200px) {
	.logo {
		font-size: 1.5em;
	}
	nav {
		height: 3.5em;
		padding-top: 1.25em;
	}
	.nav li {
		font-size: .9em;
	}
}
@media screen and (max-width: 1100px) {
	header {
		position: relative;
		background: #FFF;
	}
	.logo {
		position: relative;
		z-index: 2;
		margin: 0;
		padding: .75rem 1.25rem .25rem;
		font-size: 2.5em;
	}
	.logo-chisum {
		margin-left: -.15em;
	}
	.logo-desktop {
		font-size: .01rem;
		opacity: 0;
	}
	nav {
		flex: 0 0 auto;
		width: auto;
		height: 4.5em;
		padding: 1.2em 1.5em;
	}
	.nav-show {
		padding: 0;
	}
	.nav-toggle {
		position: relative;
		z-index: 1;
		display: block;
		opacity: 1;
	}
	.nav-show .nav-toggle {
		padding: 1.2em 1.5em 2em;
		background: #FFF;
	}
	.nav {
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 0;
		height: 0;
		overflow: hidden;
		opacity: 0;
		background: #3AB0A5;
	}
	.nav-show .nav {
		opacity: 1;
		width: 100vw;
		height: 100vh;
		padding: 3em;
	}
	.nav li {
		width: 100%;
		margin: 0 0 1em;
		padding: 0 0 1em;
		border-bottom: 1px solid #FFF;
		font-size: 1em;
	}
	.nav li:last-of-type {
		margin: 0;
		padding: 0;
		border: none;
	}
	.nav li:nth-of-type(n) a {
		margin-right: 0;
		padding-right: 0;
		border-right: none;
		color: #FFF;
		font-size: 1.25em;
	}
	.nav li a:hover {
		color: #1A2F54;
	}
}
@media screen and (max-width: 600px) {
	.logo {
		padding: .75rem 1.25rem .25rem;
		font-size: 2em;
	}
	.nav-toggle {
		font-size: .875em;
	}
	nav {
		height: 3.75em;
		padding: .95em 1.4em;
	}
	.nav-show .nav {
		padding: 2em;
	}
	.nav li:nth-of-type(n) a {
		font-size: 1em;
	}
}

/* FIXED HEADER */
@media screen and (min-width: 1201px) {
	.header-fixed {
		position: fixed;
		padding: 0;
		background: none;
	}
	.header-fixed .logo {
		position: relative;
		z-index: 2;
		padding: .75rem 1.25rem .25rem;
		font-size: 2.5em;
	}
	.header-fixed .logo-chisum {
		margin-left: -.15em;
	}
	.header-fixed .logo-desktop {
		font-size: .01rem;
		opacity: 0;
	}
	.header-fixed nav {
		flex: 0 0 auto;
		width: auto;
		height: 4.5em;
		padding: 1.2em 1.5em;
	}
	.header-fixed .nav-show {
		padding: 0;
	}
	.header-fixed .nav-toggle {
		position: relative;
		z-index: 1;
		display: block;
		opacity: 1;
	}
	.header-fixed .nav-show .nav-toggle {
		padding: 1.2em 1.5em 2em;
		background: #FFF;
	}
	.header-fixed .nav {
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 0;
		height: 0;
		overflow: hidden;
		opacity: 0;
		background: #3AB0A5;
	}
	.header-fixed .nav-show .nav {
		opacity: 1;
		width: 100vw;
		height: 100vh;
	}
	.header-fixed .nav li {
		width: 18em;
		margin: 0 0 1.5em;
		padding: 0 0 1.5em;
		border-bottom: 1px solid #FFF;
	}
	.header-fixed .nav li:last-of-type {
		margin: 0;
		padding: 0;
		border: none;
	}
	.header-fixed .nav li a {
		margin-right: 0;
		padding-right: 0;
		border-right: none;
		color: #FFF;
		font-size: 1.25em;
	}
	.header-fixed .nav li a:hover {
		color: #1A2F54;
	}
}

/* CONTENT CONTAINERS */
.content {
	position: relative;
	z-index: 1;
}
.aqua {
	background: #D7EFED;
}
.content-i {
	width: 100%;
	max-width: 73.46em;
	margin: 0 auto;
	padding: 4.4em;
}
@media screen and (max-width: 1000px) {
	.content-i {
		padding: 3em;
	}
}
@media screen and (max-width: 500px) {
	.content-i {
		padding: 2em;
	}
}

/* FOOTER SOCIAL */
.footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	background: #1C1C38;
}
.footer-social p {
	margin: 0 1em .3em 0;
	color: #FFF;
	font-family: gastromond, serif;
	font-size: 1.25em;
}
.footer-social a {
	margin: 0 0 0 .75em;
}
.footer-social a:hover svg * {
	fill: #3AB0A5;
}
@media screen and (max-width: 700px) {
	.footer-social {
		flex-wrap: wrap;
	}
	.footer-social p {
		width: 100%;
		margin-right: 0;
		text-align: center;
	}
	.footer-social a:first-of-type {
		margin-left: 0;
	}
}

/* FOOTER CONTACT FORM */
.footer-contact {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #1A2F54;
}
.footer-contact-i {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 52em;
	margin: 0 auto;
	padding: 4.4em;
}
.footer-contact-i h2 {
	font-size: 3.3em;
}
.footer-contact-i form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 2em 0 0;
}
.footer-contact input[type='text'] {
	flex: 1 0 45%;
	width: 45%;
}
.footer-contact input[type=text]:first-child {
	margin-right: 1em;
}
.footer-contact textarea {
	flex: 0 0 100%;
	width: 100%;
}
.footer-woman-trenchcoat,
.footer-man,
.footer-woman-skirt {
	position: absolute;
	top: 50%;
}
.footer-woman-trenchcoat {
	left: 50%;
	margin-top: -12em;
	margin-left: -36em;
}
.footer-man {
	right: 50%;
	margin-top: -15em;
	margin-right: -32em;
}
.footer-woman-skirt {
	right: 50%;
	margin-top: -8em;
	margin-right: -41.5em;
}
@media screen and (max-width: 1250px) {
	.footer-woman-skirt {
		margin-top: -4em;
		margin-right: -33em;
	}
}
@media screen and (max-width: 1000px) {
	.footer-contact-i {
		padding: 3em 6em;
	}
	.footer-woman-trenchcoat {
		left: 0;
		margin-left: -7em;
	}
	.footer-man {
		right: 0;
		margin-right: -5em;
	}
	.footer-woman-skirt {
		right: 0;
		margin-right: -5em;
	}
}
@media screen and (max-width: 750px) {
	.footer-contact-i h2 {
		font-size: 3em;
	}
}
@media screen and (max-width: 650px) {
	.footer-contact svg {
		display: none;
	}
	.footer-contact-i {
		padding: 2em;
	}
}
@media screen and (max-width: 500px) {
	.footer-contact-i h2 {
		font-size: 2.25em;
	}
}

/* FOOTER COPYRIGHT */
.footer-copyright {
	/*display: flex;
	justify-content: center;
	align-items: center;*/
	padding: 1em;
	background: #1C1C38;
	color: #FFF;
}
.footer-copyright p {
	margin: 0;
	padding: 0;
	text-align: center;
}
/*.footer-copyright p:first-of-type:after {
	content: '|';
	margin: 0 1em;
}*/
@media screen and (max-width: 1200px) {
	.footer-copyright {
		display: block;
		padding: 2em 3em;
	}
	/*.footer-copyright p {
		text-align: center;
	}
	.footer-copyright p:first-of-type {
		margin-bottom: 1.25em;
		padding-bottom: 1.2em;
		border-bottom: 1px solid #76D3C7;
	}
	.footer-copyright p:first-of-type:after {
		display: none;
	}*/
}
@media screen and (max-width: 600px) {
	.footer-copyright {
		padding: 2em;
	}
	.footer-copyright p {
		font-size: .9em;
	}
}

/* HERO */
.hero {
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	padding-top: 3.5em;
	background: #1A2F54;
	color: #FFF;
}
.hero-i {
	text-align: center;
}
.hero h4 {
	margin-top: 0;
	color: #FFF;
}
.hero p {
	max-width: 47em;
	text-align: center;
}
.hero .button:hover {
	color: #1A2F54;
}
@media screen and (min-width: 1850px) and (min-height: 1100px) {
	.hero svg {
		transform: scale(1.5);
	}
}
@media screen and (max-width: 1100px), (max-height: 750px) {
	.hero {
		width: 100%;
		height: auto;
		padding: 0;
	}
	.hero-i {
		position: relative;
		z-index: 1;
		margin: 10em 9em;
		padding: 1em 2em;
		background: rgba(26, 47, 84, .8);
	}
	.hero p {
		text-align: justify;
	}
}
@media screen and (max-width: 900px) {
	.hero-i {
		margin: 6em 5em;
	}
	.hero svg {
		animation: none;
		transform: scale(.75);
	}
}
@media screen and (max-width: 650px) {
	.hero-i {
		margin: 8em 3em;
		padding: 0;
		background: none;
	}
}
@media screen and (max-width: 500px) {
	.hero-i {
		margin: 7em 2em 8em;
	}
	.hero svg {
		transform: scale(.6);
	}
}

/* TESTIMONIALS */
.testimonials-o {
	position: relative;
	overflow: hidden;
}
.testimonials-o h2 {
	position: relative;
	z-index: 1;
}
.testimonials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2.5em;
	color: #FFF;
}
.testimonials-quote {
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
	margin-bottom: 2.8em;
}
.testimonials-quote:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	height: 3.3em;
	width: 0;
	margin-top: -.5em;
	border-left: 2px solid #1A2F54;
}
.testimonials-quote-i {
	display: inline-block;
	height: 1.1em;
	margin: 0 auto;
	padding: .25em;
	background: #1A2F54;
	border-radius: 1.2rem;
	font-family: gastromond, serif;
	font-size: 5.8em;
	line-height: .8em;
}
.testimonials-i {
	flex: 1 0 20%;
	width: 20%;
	padding: 1em 2em 1.5em;
	background: #1A2F54;
	border-radius: 1.2em;
}
.testimonials-type {
	margin-top: 0;
	color: #3AB0A5;
}
.testimonials h6 {
	margin-bottom: 0;
}
.testimonials-2 .testimonials-i:nth-of-type(2) {
	position: relative;
}
.testimonials-2 .testimonials-i:nth-of-type(2):after {
	content: '';
	position: absolute;
	top: 0;
	right: -3.3em;
	width: 0;
	height: 50%;
	margin-right: -2px;
	border-right: 2px solid #1A2F54;
}
.testimonials-2 .testimonials-i:nth-of-type(3) {
	position: relative;
	margin: 0 0 0 6.6em;
}
.testimonials-2 .testimonials-i:nth-of-type(3):before {
	content: '';
	position: absolute;
	top: 50%;
	left: -6.6em;
	width: 6.6em;
	height: 0;
	border-bottom: 2px solid #1A2F54;
}
.testimonials-3 .testimonials-i:nth-of-type(3) {
	position: relative;
	margin: 0 3.3em;
	background: #3AB0A5;
}
.testimonials-3 .testimonials-i:nth-of-type(3):before,
.testimonials-3 .testimonials-i:nth-of-type(3):after {
	content: '';
	position: absolute;
	top: 50%;
	width: 3.3em;
	height: 0;
	border-bottom: 2px solid #1A2F54;
}
.testimonials-3 .testimonials-i:nth-of-type(3):before {
	left: -3.3em;
}
.testimonials-3 .testimonials-i:nth-of-type(3):after {
	right: -3.3em;
}
.testimonials-3 .testimonials-i:nth-of-type(3) h6,
.testimonials-3 .testimonials-i:nth-of-type(3) .testimonials-type {
	color: #1A2F54;
}
.testimonials-plants-left {
	position: absolute;
	left: 50%;
	top: -1em;
	width: 17.75em;
	height: 17.25em;
	margin-left: -38em;
}
.testimonials-plants-right {
	position: absolute;
	right: 50%;
	top: -3em;
	width: 19.25em;
	height: 19.25em;
	margin-right: -38em;
}
@media screen and (max-width: 1250px) {
	.testimonials-plants-left {
		left: 0;
		margin-left: -3em;
	}
	.testimonials-plants-right {
		right: 0;
		margin-right: -3em;
	}
}
@media screen and (max-width: 1200px) and (min-width: 901px) {
	.testimonials-3 .testimonials-quote:after {
		z-index: -1;
		height: 40em;
		border-left: 2px solid #1A2F54;
	}
	.testimonials-3 .testimonials-i {
		z-index: 1;
		flex: 1 0 40%;
		width: 40%;
	}
	.testimonials-3 .testimonials-i:nth-of-type(2) {
		background: #3AB0A5;
	}
	.testimonials-3 .testimonials-i:nth-of-type(2) h6,
	.testimonials-3 .testimonials-i:nth-of-type(2) .testimonials-type {
		color: #1A2F54;
	}
	.testimonials-3 .testimonials-i:nth-of-type(3) {
		margin-right: 0;
		margin-left: 6.6em;
	}
	.testimonials-3 .testimonials-i:nth-of-type(3):before {
		left: -6.6em;
		width: 6.6em;
	}
	.testimonials-3 .testimonials-i:nth-of-type(3):after {
		display: none;
	}
	.testimonials-3 .testimonials-i:last-of-type {
		flex: 0 0 45%;
		width: 45%;
		margin-top: 3.3em;
	}
}
@media screen and (max-width: 900px) {
	.testimonials .testimonials-i {
		flex: 0 0 100%;
		width: 100%;
	}
	.testimonials .testimonials-i:nth-of-type(2),
	.testimonials .testimonials-i:nth-of-type(4) {
		background: #3AB0A5;
	}
	.testimonials .testimonials-i:nth-of-type(2) h6,
	.testimonials .testimonials-i:nth-of-type(2) .testimonials-type,
	.testimonials .testimonials-i:nth-of-type(4) h6,
	.testimonials .testimonials-i:nth-of-type(4) .testimonials-type {
		color: #1A2F54;
	}
	.testimonials .testimonials-i:nth-of-type(3),
	.testimonials .testimonials-i:nth-of-type(4) {
		position: relative;
		margin: 3.3em 0 0;
	}
	.testimonials .testimonials-i:nth-of-type(3):before,
	.testimonials .testimonials-i:nth-of-type(4):before {
		content: '';
		position: absolute;
		top: -3.3em;
		left: 50%;
		width: 0;
		height: 3.3em;
		border-left: 2px solid #1A2F54;
		border-bottom: none;
	}
	.testimonials .testimonials-i:nth-of-type(3):after {
		display: none;
	}
	.testimonials .testimonials-i:nth-of-type(3) {
		background: #1A2F54;
	}
	.testimonials .testimonials-i:nth-of-type(3) h6,
	.testimonials .testimonials-i:nth-of-type(3) .testimonials-type {
		color: #3AB0A5;
	}
	.testimonials-plants-left,
	.testimonials-plants-right {
		font-size: .8em;
	}
}
@media screen and (max-width: 750px) {
	.testimonials-quote {
		margin-bottom: 1.5em;
	}
	.testimonials-quote:after {
		height: 2em;
	}
	.testimonials .testimonials-i:nth-of-type(3),
	.testimonials .testimonials-i:nth-of-type(4) {
		margin: 2em 0 0;
	}
	.testimonials .testimonials-i:nth-of-type(3):before,
	.testimonials .testimonials-i:nth-of-type(4):before {
		top: -2em;
		height: 2em;
	}
}
@media screen and (max-width: 600px) {
	.testimonials-plants-left {
		margin-left: -6em;
		font-size: .6em;
	}
	.testimonials-plants-right {
		margin-right: -6em;
		font-size: .6em;
	}
}