body{
	background-color: #ccc;
	font-size: 62.5%;
	color: #848498;
	position: relative;
	left: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

::-moz-selection { background: #8f509f; color: #fff;}
::selection { background: #8f509f; color: #fff; }

.table { display: table; width: 100%; height: 100%;}
.table_row { display: table-row; }
.table_cell { display: table-cell; vertical-align: top;}
.flex {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.left { float: left; }
.right { float: right; }
.align_right { text-align: right; }
.align_center { text-align: center; }
.no_mrgn { margin: 0; }
.hidden { display: none; }
hr { border-color: #f6f5f7; margin: 25px 0; }

/* FONT FORMAT */

body, select, input, textarea{
	font-family: 'Libre Baskerville', Georgia, serif;
}

h1, h2, h3, h5 {
	font-family: 'Rubik', Helvetica, Arial, sans-serif;
	color: #3b3e41;
}
h1 {
	font-size: 60px;
	line-height: 72px;
	font-weight: 700;
	color: #fff;
}
h2 {
	font-size: 48px;
	line-height: 60px;
	font-weight: 700;
}
h3 {
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: 30px;
}
h4 {
	font-family: 'Libre Baskerville', Georgia, serif;
	font-size: 18px;
	line-height: 34px;
	font-weight: 400;
	color: #3b3e41;
	margin-bottom: 24px;
}
h5 {
	margin-bottom: 10px;
	font-family: 'Rubik', Helvetica, Arial, sans-serif;
	color: #3b3e41;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

p {
	color: #565656;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 20px;
	font-weight: 400;
}
p:last-child {
	margin-bottom: 0;
}
p small {
	font-size: 12px;
}
a, a strong {
	text-decoration: none;
	transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
p a {
	color: #693294;
	position: relative;
	text-decoration: underline;
}
p a:hover {
	color: #951b81;
}

i:before {
	vertical-align: middle;
}

ul, ol {
	padding: 0 0 0 16px;
	margin-bottom: 20px;
}
ul li, ol li {
	color: #565656;
	font-size: 14px;
	font-weight: 300;
	margin: 0 0 15px 0;
	padding-left: 9px;
	line-height: 22px;
}

ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ol li {
	counter-increment: step-counter;
    position: relative;
    padding-left: 25px;
    font-weight: 300;
}
ol li:before {
	content: counter(step-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #565656;
}

/* Buttons & Icons */

button {
	cursor: pointer;
	border: none;
}
.btn {
	display: inline-block;
	background: #8f509f;
	font-family: 'Rubik', Helvetica, Arial, sans-serif;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1;
    text-decoration: none;
	text-transform: uppercase;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	padding: 15px 20px;
	transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.btn:hover {
	background: #662483;
    color: #fff;
}
.btn:focus {
	outline: none;
}

.icon {
	padding-left: 55px;
	position: relative;
	margin-bottom: 25px;
}
.icon h5 {
	margin-bottom: 5px;
}
.icon p {
	line-height: 20px;
}
.icon:before {
	position: absolute;
	left: 0;
	margin: auto;
	font-family: barnsfold;
	font-size: 32px;
	color: #723e9a;
}
.icon.email:before {
	content: 'e';
}
.icon.phone:before {
	content: 'h';
}
.icon.fax:before {
	content: 'f';
}
.icon.marker:before {
	content: 'g';
}

.circle_icon {
	padding-left: 80px;
	position: relative;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.circle_icon p {
	align-self: center;
}
.circle_icon img {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0; bottom: 0; left: 0;
	margin: auto;
}

/************
HEADER
************/

header {
	position: relative;
	z-index: 99;
	border-top: 3px solid #652d91;
	background: #fff;
}

#logo {
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px 50px 50px 50px;
    z-index: 1;
}
#logo:before {
	content: '';
	position: absolute;
	top: -3px; left: 0; right: 0;
	width: 100%;
	height: 3px;
	background: #8f509f;
}
#logo:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background: #fff;
}

nav {
	float: right;
	position: relative;
	z-index: 10;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}
nav ul li {
	font-family: 'Rubik', Helvetica, Arial, sans-serif;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}
nav ul li a {
	color: #3a214e;
	padding: 20px 15px;
	display: block;
}
nav ul li a:focus {
	outline: none;
}
nav ul li:not(.social) a:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: transparent;
	transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
nav ul li a:hover:after {
	background: #dfccef;
}
nav ul li.border {
	border-right: 1px solid #f0eef1;
	margin: 0;
}
nav ul li.border a {
	padding: 20px 15px;
}
nav ul li.login {
	border-left: 1px solid #f0eef1;
}
nav ul li.login i {
	color: #8f509f;
	font-size: 12px;
	position: relative;
    top: -3px;
}
nav ul li.login a {
	padding: 20px 15px;
}

/************
FOOTER
************/

footer {
	background: #fff;
}
footer .align_right {
	margin-top: 7px;
}
footer p {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 12px;
}

/************
STRUCTURE
************/

.gray_bg {
	background-color: #f4f3f5;
}
.double_border {
	border-top: 1px solid #fff;
	box-shadow: 0px -1px 0px #e3dfe6;
	-moz-box-shadow: 0px -1px 0px #e3dfe6;
	-webkit-box-shadow: 0px -1px 0px #e3dfe6;
}
.white_bg {
	background-color: #fff;
}
.shadow {
	position: relative;
    z-index: 1;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
}

#fern {
	background-image: url(../images/fern-bg.jpg);
	background-repeat: no-repeat;
	background-position: top right;
}

.container {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.padding {
	padding: 120px 0;
}
.padding_sm {
	padding: 40px 0;
}
.padding_right {
	padding: 120px 100px 120px 0;
}
.padding_left {
	padding: 120px 0 120px 100px;
}

.half {
	width: 50%;
}
.half:nth-child(2n+1) {
	border-right: 1px solid #f6f5f7;
}

.space_btm {
	padding-bottom: 80px !important;
}

.divider {
    position: relative;
    float: left;
    width: 100%;
    margin: 35px 0;
}
.divider:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #e3dfe6;
	position: absolute;
	z-index: -1;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	border-bottom: 1px solid #fff;
}
.divider h5 {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	position: relative;
	z-index: 1;
	background: #f4f3f5;
	padding: 0 30px 0 0;
}

.team_member {
	position: relative;
  width: 25%;
  float: left;
}
.team_member img {
	display: block;
    width: 100%;
}
.hover_overlay {
	opacity: 0;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: flex-end;
	position: absolute;
	z-index: 1;
	top: 0; right: 0; bottom: 0; left: 0;
	background: -moz-linear-gradient(45deg,  rgba(60,35,79,1) 0%, rgba(60,35,79,0.7) 50%, rgba(60,35,79,0.7) 100%);
	background: -webkit-linear-gradient(45deg,  rgba(60,35,79,1) 0%,rgba(60,35,79,0.7) 50%,rgba(60,35,79,0.7) 100%);
	background: linear-gradient(45deg,  rgba(60,35,79,1) 0%,rgba(60,35,79,0.7) 50%,rgba(60,35,79,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c234f', endColorstr='#b33c234f',GradientType=1 );
	padding: 30px;
	transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.hover_overlay p {
	color: #fff;
	line-height: 24px;
    position: relative;
    top: -20px;
   	transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.hover_overlay p small {
	display: block;
	font-size: 12px;
}

.team_member:hover .hover_overlay {
	opacity: 1;
}
.team_member:hover .hover_overlay p {
	top: 0;
}

ul#times {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul#times li {
	padding: 0;
	position: relative;
}
ul#times li span {
	background: #fff;
}
ul#times li span.list_left:after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0; right: 0; top: 50%;
	width: 100%;
	height: 1px;
	background: #f0eef1;
}
ul#times li span.list_left {
	padding-right: 15px;
}
ul#times li span.list_right {
    text-align: right;
    float: right;
    padding-left: 15px;
}

/************
FORMS
************/

input, textarea {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	width: 100%;
    padding: 12px;
	background: none;
	border: 1px solid #ebe8ed;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
   	transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
textarea {
	resize: none;
}
input:focus, textarea:focus {
	outline: none;
	border-color: #8f509f;
}
input[type="submit"] {
	cursor: pointer;
	border: none;
  width: auto;
}
label {
	display: block;
	margin-bottom: 10px;
	font-family: 'Rubik', Helvetica, Arial, sans-serif;
	color: #333;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
label span {
	color: #74797f;
}
.form_item {
	margin-bottom: 25px;
}
.form_item.error input, .form_item.error textarea {
  border: 1px solid #cc4e68;
  background: #fffafb;
}
.alert {
  display: inline-block;
  padding: 3px 10px;
	margin-bottom: 1rem;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.alert p {
  color: #ffffff;
}
.alert.alert-success {
	background: #5b9c68;
}
.alert.alert-danger {
	background: #cc4e68;
}

#map_section {
	position: relative;
}
#map {
	width: 100%;
	height: 400px;
}
#map_tab {
	position: absolute;
    z-index: 99;
    bottom: 100px; left: 100px;
	display: inline-block;
	background: #fff;
    border-radius: 40px;
    -moz-border-radius: 40px;
	-webkit-border-radius: 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.05);
    padding: 20px 35px 20px 75px;
}
#map_tab.icon {
	margin-bottom: 0;
}
#map_tab.icon:before {
	left: 25px;
}

/************
HERO
************/

#hero {
	background-color: #202415;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
#hero:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; right: 0; bottom: 0; left: 0;
	background: -moz-linear-gradient(left,  rgba(32,36,21,0.95) 0%, rgba(32,36,21,0.95) 15%, rgba(32,36,21,0) 75%, rgba(32,36,21,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(32,36,21,0.95) 0%,rgba(32,36,21,0.95) 15%,rgba(32,36,21,0) 75%,rgba(32,36,21,0) 100%);
	background: linear-gradient(to right,  rgba(32,36,21,0.95) 0%,rgba(32,36,21,0.95) 15%,rgba(32,36,21,0) 75%,rgba(32,36,21,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2202415', endColorstr='#00202415',GradientType=1 );
}
#hero .container {
	padding: 200px 0 125px 0;
	z-index: 10;
}
#hero h1 {
	margin-bottom: 30px;
}
#hero p {
	font-size: 18px;
	line-height: 34px;
	color: #fff;
}

#slider .slide:not(:first-child) {
	display: none;
}
#slider.slick-initialized .slick-slide {
	display: block !important;
}
#slider .slide:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; right: 0; bottom: 0; left: 0;
	background: -moz-linear-gradient(left,  rgba(32,36,21,0.95) 0%, rgba(32,36,21,0.95) 15%, rgba(32,36,21,0) 75%, rgba(32,36,21,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(32,36,21,0.95) 0%,rgba(32,36,21,0.95) 15%,rgba(32,36,21,0) 75%,rgba(32,36,21,0) 100%);
	background: linear-gradient(to right,  rgba(32,36,21,0.95) 0%,rgba(32,36,21,0.95) 15%,rgba(32,36,21,0) 75%,rgba(32,36,21,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2202415', endColorstr='#00202415',GradientType=1 );
}
#slider .slide {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.dots-holder .slick-dots {
	width: auto;
	max-width: none;
}
.slick-dots {
	width: 90%;
	max-width: 980px;
    position: absolute;
    right: 0; bottom: 50px; left: 0;
    padding: 0;
    margin: auto;
    list-style: none;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin-right: 10px;
	padding: 0;
	background: rgba(255,255,255,0.9);
	width: 10px;
	height: 10px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
}
.slick-dots li.slick-active {
	background: #8f509f;
}
.slick-dots li button {
    text-indent: -9999px;
    border: none;
    background: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}
.slick-dots li button:focus {
	outline: none;
}

.expandable {
	cursor: pointer;
    clear: both;
    background: #fff;
    padding: 20px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 1px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.expandable .expand_toggle {
	margin-bottom: 0;
	position: relative;
	padding-right: 25px;
}
.expandable .expand_toggle:after {
	font-family: barnsfold;
	content: 'j';
	font-size: 18px;
	font-weight: 400;
	position: absolute;
	top: 0;
	right: 0;

	transition: transform 0.5s;
	-o-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-webkit-transition: transform 0.5s;
}
.expandable .expand_toggle h3 {
	font-size: 18px;
	line-height: 24px;
    margin-bottom: 10px;
}
.expandable .expand_toggle h5 {
    color: #3b3e41;
    display: inline-block;
    background: #e4e4e4;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 0;
}
.expandable .expand_toggle.active:after {
	transform: rotate(-180deg);
}
.expandable p,
.expandable ul,
.expandable ol,
.expandable .hidden h4 {
	margin: 15px 0 0 0;
}
.expandable p {
	font-size: 14px;
}

.expandable .hidden {
	display: none;
	padding-top: 10px;
}

.info_box {
    padding: 20px;
    border-radius: 4px;
    background: #e4e4e4;
}

@media screen and (min-width: 1161px) {

	#mob_logo {
		display: none;
	}

}

@media screen and (min-width: 1025px) {
	nav h5 {
		display: none;
	}

	#toggle_nav {
		display: none;
	}
}

@media screen and (max-width: 1160px) {

	#logo {
		display: none;
	}
	#mob_logo {
		float: left;
		margin-top: 10px;
	}

}

@media screen and (max-width: 1024px) {
	body {
		position: relative;
		left: 0;
	   	transition: all 0.3s;
	    -o-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	    -moz-transition: all 0.3s;
	    -webkit-transition: all 0.3s;
	}
	body.active {
		left: -270px;
	}

	header {
		padding: 10px 0;
	}

	#mob_logo {
		margin-top: 0;
	}
	#toggle_nav {
		display: block;
		float: right;
		font-size: 0;
		margin-left: 40px;
		width: 30px;
		margin-top: 9px;
	}
	#toggle_nav .bar {
		display: block;
		width: 30px;
		height: 3px;
		background: #652d91;
	}
	#toggle_nav .bar.sm {
		display: inline-block;
		width: 4px;
	}
	#toggle_nav .bar.mid {
		display: inline-block;
		margin-top: 6px;
	    width: 22px;
	    margin-right: 4px;
	}
	#toggle_nav .bar.btm {
		margin-top: 6px;
	}

	nav {
		position: fixed;
		top: 0; right: -270px; bottom: 0;
		background: #2f1938;
		padding: 45px;
		width: 270px;
		height: 100%;
		overflow: scroll;
		transition: all 0.3s;
	    -o-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	    -moz-transition: all 0.3s;
	    -webkit-transition: all 0.3s;
	}
	nav.active {
		right: 0;
	}
	nav ul li, nav ul li.border {
		display: block;
		border-bottom: 1px solid #41274c;
		border-right: none;
		border-left: none;
	}
	nav ul li a, nav ul li.border a {
		padding: 20px 0;
		color: #fff;
		font-size: 14px;
	}
	nav ul li a:after {
		display: none !important;
	}
	nav ul li.social {
		display: inline-block;
		border-bottom: none !important;
	}
	nav ul li.social a {
	    background: #4f2a5f;
	    border-radius: 100%;
	    -moz-border-radius: 100%;
	    -webkit-border-radius: 100%;
	    padding: 0;
	    width: 35px;
	    height: 35px;
	    text-align: center;
	    line-height: 32px;
	    margin: 20px 10px 0 0;
	    font-size: 12px;
	}
	nav h5 {
		display: block;
		color: #724a84;
	}

	/* GENERAL STRUCTURE */

	.padding, .padding_sm {
		padding: 5% 0;
	}
	.padding_right, .padding_left {
		padding: 5% 0;
	}
	.space_btm {
		padding-bottom: 5% !important;
	}
	.table_cell {
		display: block;
	}
	.half {
		border: none !important;
		width: 100%;
	}
	.team_member {
		width: 33.3333%;
	}
	.hover_overlay {
		background: #3c234f;
		background: -moz-linear-gradient(45deg,  rgba(60,35,79,1) 0%, rgba(70,45,89,1) 100%);
		background: -webkit-linear-gradient(45deg,  rgba(60,35,79,1) 0%,rgba(70,45,89,1) 100%);
		background: linear-gradient(45deg,  rgba(60,35,79,1) 0%,rgba(70,45,89,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c234f', endColorstr='#462d59',GradientType=1 );
		position: relative;
		opacity: 1;
	    padding: 25px 10%;
	}
	.hover_overlay p {
		top: auto;
	}

	.circle_icon {
		margin-bottom: 25px;
	}

	/* HERO */

	#hero .container {
    	padding: 50px 0 100px 0;
	}
	.slick-dots {
		bottom: 25px;
	}
}

@media screen and (max-width: 1024px) and (min-width: 667px) {
	/* GENERAL STRUCTURE */

	.inner_half {
		float: left;
		width: 46%;
	}
	.inner_half:nth-of-type(odd) {
		margin-right: 8%;
	}
	.inner_half .space_btm {
		padding-bottom: 0 !important;
	}

	/* FORM */

	.form_item.tab_full {
		width: 100%;
		clear: both;
	}
	.form_item.tab_half {
		width: 49%;
		margin-left: 2%;
		float: left;
	}
	.form_item.tab_half:nth-of-type(2n+1) {
		margin-left: 0;
		clear: left;
	}
}

@media screen and (max-width: 768px) {
	/* GENERAL */

	#fern {
		background-size: 65%;
	}

	/* HERO */

	#hero br {
		display: none;
	}

	/* FONTS */

	h1 {
		font-size: 42px;
		line-height: 54px;
	}
	h2 {
	    font-size: 36px;
	    line-height: 48px;
	}
}

@media screen and (max-width: 667px){
	/* FONTS */

	h2 {
	    font-size: 24px;
	    line-height: 36px;
	}
	h3 {
    	font-size: 20px;
    	line-height: 32px;
    }
	h4 {
		font-size: 16px;
		line-height: 28px;
	}
	p, ul li, ol li {
		font-size: 13px;
		line-height: 25px;
	}

	/* GENERAL STRUCTURE */

	#map_tab {
		position: relative;
		left: 0; bottom: 0;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		display: block;
		border-top: 1px solid #ebe8ed;
	}

	/* FOOTER */

	footer .left, footer .right {
		float: none;
	}
	footer .right.align_right {
		text-align: left;
		margin-top: 20px;
	}
	footer .right p {
		margin: 0 15px 0 0;
	}
}

@media screen and (max-width: 568px) {
	#fern h3 {
		width: 80%;
	}
	.team_member {
		width: 50%;
	}
}

@media screen and (max-width: 480px) {
	.team_member {
		width: 100%;
	}
}
