@charset "UTF-8";

/* ------- */
/* Imports */
/* ------- */

@import url("https://use.typekit.net/lkg7hlv.css");

/* -------- */
/* Defaults */
/* -------- */

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-size: 100%; padding: 0; margin: 0; }

.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

body {
	background: #FFF;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
img {width:100%;}
.clear {clear:both;}

a:link {
    color: inherit;
	text-decoration:none;
}
a:visited {
    color: inherit;
	text-decoration:none;
}
a:hover {
    color: inherit;
	text-decoration:none;
}

/* ---------- */
/* Animations */
/* ---------- */

.os-animation { 
    opacity: 0; 
} 
.os-animation.animated { 
    opacity: 1; 
}

/* ----- */
/* Fonts */
/* ----- */

.museo-light {
    font-family: museo-slab, serif;
    font-weight: 100;
    font-style: normal;
}
.museo-regular {
    font-family: museo-slab, serif;
    font-weight: 500;
    font-style: normal;
}
.light {
    font-family: museo-sans, sans-serif;
    font-weight: 300;
    font-style: normal;
}
.bold {
    font-family: museo-sans, sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* ------- */
/* Italics */
/* ------- */

.book.italics,
.bold.italics {
	font-style: italic;
}

/* ----------- */
/* Text Styles */
/* ----------- */

.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.centered {
    text-align: center;
}
.left-align {
    text-align: left;
}
.underline {
    text-decoration: underline;
}

/* ------- */
/* Colours */
/* ------- */

.white {
    color: #FFFFFF;
}
.black {
    color: #000000;
}
.purple {
    color: #352e58;
}
.green {
    color: #32d3a4;
}
.invis {
    color: transparent;
}

/* ----------- */
/* Backgrounds */
/* ----------- */

.white-bg {
    background: #FFFFFF;
    position: relative;
}
.grey-bg {
    background: #f8f8f8;
    position: relative;
}
.purple-bg {
    background: #352e58;
    position: relative;
}
.light-purple-bg {
    background: #e4edf2;
    position: relative;
}
.green-bg {
    background: #32d3a4;
    position: relative;
}
.light-green-bg {
    background: #ccf4e8;
    position: relative;
}

/* ------ */
/* Images */
/* ------ */

#home-bg {
    background: url('../gfx/banners/home.jpg') no-repeat;
    background-size: cover;
    background-position: center right;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
#ramsey-bg {
    background: url('../gfx/banners/ramsey.jpg') no-repeat;
    background-size: cover;
}
#footer-bg {
    background: url('../gfx/banners/footer.jpg') no-repeat;
    background-size: cover;
}
 
/* ---------------- */
/* Graphics / Icons */
/* ---------------- */

#icon-1 {
    background: url('../gfx/icons/icon-1.png') no-repeat;
    background-size: contain;
}
#icon-2 {
    background: url('../gfx/icons/icon-2.png') no-repeat;
    background-size: contain;
}
#icon-3 {
    background: url('../gfx/icons/icon-3.png') no-repeat;
    background-size: contain;
}
#icon-4 {
    background: url('../gfx/icons/icon-4.png') no-repeat;
    background-size: contain;
}

/* ------- */
/* Buttons */
/* ------- */

.btn,
a.btn {
    display: block;
    position: relative;
    background: #32d3a4;
    color: #352e58;
    font-size: 1.1em;
    line-height: normal;
    padding: 12px 30px 12px 30px;
    margin: 15px 0px 0px 0px;
    box-sizing: border-box;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
}
.btn:hover,
.btn:focus {
    transition: 0.2s all;
    background: #FFF;
}

/* ----------- */
/* Text Styles */
/* ----------- */

h1 {
	font-size: 3.5em;
	line-height: 1.2em;
	padding: 0px 0px 20px 0px;
    margin: 0;
}
h2 {
	font-size: 3em;
	line-height: 1.2em;
	padding: 0px 0px 20px 0px;
    margin: 0;
}
h3 {
	font-size: 2.8em;
	line-height: 1.6em;
	padding: 0px 0px 20px 0px;
    margin: 0;
}
h4 {
	font-size: 1.6em;
	line-height: 1.6em;
	padding: 0px 0px 20px 0px;
    margin: 0;
}
p {
	font-size: 1.2em;
	line-height: 1.5em;
	padding: 0px 0px 20px 0px;
	margin: 0;
}
p.small {
	font-size: 0.9em;
}
p a:link,
p a:visited,
.list li a:link,
.list li a:visited {
    color: inherit;
    text-decoration: underline;
}
p a:hover,
p a:focus,
.list li a:hover,
.list li a:focus {
    opacity: 0.8;
    transition: 0.2s all;
}

/* ---- */
/* Flex */
/* ---- */

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.flex-container.flex-single,
.flex-container.flex-single-space,
.flex-container.flex-double,
.flex-container.flex-double-space,
.flex-container.flex-tripple,
.flex-container.flex-tripple-space,
.flex-container.flex-quad,
.flex-container.flex-quad-space,
.flex-container.flex-footer,
.flex-container.flex-nav {
    justify-content: space-around;
}
.flex-single .flex-item {
    width: 100%;
}
.flex-single-space .flex-item {
    width: calc(100% - 50px);
    margin: 25px;
}
.flex-double .flex-item {
    width: 50%;
}
.flex-double-space .flex-item {
    width: calc(50% - 50px);
    margin: 25px;
}
.flex-tripple .flex-item {
    width: 33.3%;
}
.flex-tripple-space .flex-item {
    width: calc(33.3% - 50px);
    margin: 25px;
}
.flex-quad .flex-item {
    width: 25%;
}
.flex-quad-space .flex-item {
    width: calc(25% - 50px);
    margin: 25px;
}
.flex-quad-space .flex-item.flex-item-large {
    width: calc(50% - 50px);
    margin: 25px;
}
.flex-footer .flex-item {
    width: calc(25% - 50px);
    margin: 25px;
}

/* -------------- */
/* Flex Direction */
/* -------------- */

.flex-container .direction-forwards,
.flex-container .direction-backwards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.flex-container .direction-forwards {
    align-items: flex-start;
    flex-direction: row;
}
.flex-container .direction-backwards {
    align-items: flex-end;
    flex-direction: row-reverse;
}

/* --------- */
/* Flex Text */
/* --------- */

.flex-text-right {
    position: relative;
    padding: 0px 0px 0px 100px; 
}
.flex-text-left {
    position: relative;
    padding: 0px 100px 0px 0px; 
}

/* ---------- */
/* Navigation */
/* ---------- */

#main {
    position: relative;
	width: 1200px;
    text-align: right;
	margin: -30px auto 30px auto;
    padding: 0px 0px 0px 0px;
}
#main .nav-item,
#main a.nav-item {
    display: inline-block;
    padding: 10px;
    margin: 0px 0px 0px 20px;
    font-size: 1.2em;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    color: #352e58;
}
#main a.nav-item:hover,
#main a.nav-item:focus {
    transition: 0.2s all;
    border-bottom: 2px solid #352e58;
}

/* ----- */
/* Logos */
/* ----- */

.logo {
    position: absolute;
    z-index: 2;
    top: -10px;
	left: 0;
	width: 220px;
	height: 80px;
	background: url('../gfx/logos/logo-color.png') no-repeat;
	background-size: contain;
}
footer .logo {
    background: url('../gfx/logos/logo-white.png') no-repeat;
	background-size: contain;
}

/* -------- */
/* Sections */
/* -------- */

.wrapper {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 100px 0px 100px 0px;
}
.wrapper.wrapper-left {
    padding: 100px 0px 100px 15%; 
}
.wrapper.wrapper-right {
    padding: 100px 15% 100px 0px; 
}
.banner .wrapper {
    z-index: 2;
}
.wrapper .narrow {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ------ */
/* Banner */
/* ------ */

.banner {
    position: relative;
    width: 100%;
    padding: 80px 0px 0px 0px;
    margin: 0;
}
.banner .wrapper {
    position: relative;
    z-index: 2;
    padding: 150px 0px 200px 0px;
}
.banner .wrapper .card {
    max-width: 500px;
}
.banner .wrapper .card #headshot {
    width: 160px;
    height: 160px;
    background: url('../gfx/banners/cora.jpg');
    background-size: contain;
    box-sizing: border-box;
    border: 5px solid #32d3a4;
    border-radius: 50%;
    margin: 0px 0px 20px 0px;
}

/* ----------------- */
/* Accents & Spacers */
/* ----------------- */

.wrapper .accent {
    height: 2px;
    width: 100%;
    margin: 30px 0px 30px 0px;
}
.wrapper .spacer {
    height: 50px;
    width: 100%;
}
.wrapper .spacer.spacer-mini {
    height: 15px;
}
.wrapper .spacer.spacer-small {
    height: 25px;
}

/* ----- */
/* Cards */
/* ----- */

.wrapper .mega-card {
    padding: 60px 60px 0px 60px;
    border-radius: 40px;
    margin: -150px 0px 0px 0px;
}
.wrapper .card {
	position: relative;
    padding: 30px;
    border-radius: 15px;
    /* Shadow */
    -webkit-box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.05);
}
.wrapper .card.card-icon {
    padding: 100px 30px 30px 30px;
}
.wrapper .card.card-icon .icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
}
.wrapper .card.card-icon p {
    margin: 0;
    padding: 0;
}
.wrapper .card h4 {
	line-height: 1.2em;
}

/* ------ */
/* Footer */
/* ------ */

footer {
    box-sizing: border-box;
    border-bottom: 5px solid #32d3a4;
}
footer .logo {
    position: absolute;
    top: 80px;
    right: 0;
    left: auto;
}
footer .wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 0px 80px 0px;
}
footer .wrapper h1,
footer .wrapper p {
    max-width: 750px;
}
footer #ota {
    position: relative;
    padding: 0px 0px 0px 45px;
    margin: 5px 0px 0px 0px;
}
footer #ota::before {
	content: '';
	display: block;
	position: absolute;
	top: 3px;
	left: 0px;
	height: 15px;
	width: 30px;
	background: url('../gfx/logos/ota.png') no-repeat;
	background-size: contain;
}

/* ----------- */
/* Mobile Menu */
/* ----------- */

html, 
body, 
.container, 
.content-wrap {
	width: 100%;
}
.content-wrap-active {
	overflow-x: hidden;
	overflow-y: hidden;
	max-height: 100vh;
}
.menu-button {
	position: absolute;
	z-index: 1;
	padding: 0px;
	width: 45px;
	height: 45px;
    right: 0;
	top: 5px;
    border-radius: 50%;
    background: #FFF;
    /* Shadow */
    -webkit-box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 18px -6px rgba(0,0,0,0.2);
}
.menu-button::before {
	position: absolute;
	top: 0.9em;
	right: 0.7em;
	bottom: 0.9em;
	left: 0.7em;
	background: linear-gradient(#004a4d 20%, transparent 20%, transparent 40%, #004a4d 40%, #004a4d 60%, transparent 60%, transparent 80%, #004a4d 80%);
	content: '';
}
.menu-button:hover,
.menu-button:focus {
    transition: 0.2s all;
    background: #FFF;
}
.menu-active {
	left: 0px;
	z-index: 999;
	opacity: 1;
	visibility: visible;
	/* Animations */
	transform-origin: left;
	animation-name: menu-in;
	animation-direction: normal;
	animation-duration: 300ms;
}
.menu-nonactive {
	left: -1000px;
	z-index: -999;
	opacity: 0;
	visibility: hidden;
	/* Animations */
	transform-origin: left;
	animation-name: menu-out;
	animation-direction: normal;
	animation-duration: 100ms;
}
.menu-wrap {
	position: absolute;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	background: url('../gfx/banners/texture-left.png') #FFF no-repeat;
    background-position: center;
    background-size: cover;
}
.menu-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #32d3a4;
}
.menu-wrap .menu {
    position: relative;
    z-index: 2;
	list-style: none;
	padding: 130px 30px 30px 30px;
	margin: 0;
}
.menu-wrap .menu .logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 160px;
	height: 60px;
	background: url('../gfx/logos/logo-color.png') no-repeat;
	background-size: contain;
}
.menu-wrap .menu li {
    position: relative;
	display: block;
	width: 100%;
	font-size: 1em;
	color: #352e58;
	padding: 0px 0px 8px 10px;
	margin: 0px 0px 8px 0px;
    cursor: pointer;
}
.close-button {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 20px;
	top: 25px;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	color: transparent;
	background: transparent;
}
.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 20px;
	top: 14px;
	left: 50%;
	background: #352e58;
}
.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.close-button span {
    position: absolute;
    top: 50%;
    left: -85px;
    transform: translateY(-50%);
    color: #424643;
    letter-spacing: 1px;
}
@keyframes menu-in {
    0% {
        left: -1000px;
    }
    100% {
        left: 0px;
    }
}
@-webkit-keyframes menu-in {
	0% {
        left: -1000px;
    }
    100% {
        left: 0px;
    }	
}
@keyframes menu-out {
    0% {
        left: 0px;
    }
    100% {
        left: -1000px;
    }	
}
@-webkit-keyframes menu-out {
	0% {
        left: 0px
    }
    100% {
        left: -1000px;
    }	
}

/* ------------- */
/* Media Queries */
/* ------------- */

@media (max-width: 1600px) {

    /* Backgrounds */
    #home-bg {
    max-width: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    }

}

@media (max-width: 1400px) {
   
    /* Standards */
    .wrapper,
    #main {
    width: 80%;
    }
    /* Flex */
	.flex-quad .flex-item {
    width: 50%;
    }
	.flex-quad-space .flex-item {
    width: calc(50% - 50px);
    margin: 25px;
    }
    
}
@media (min-width: 1025px) {
	
	/* Remove */
	.menu-button,
    #headshot  {
	display: none;
	visibility: hidden;
	opacity: 0;
	}
	
}
@media (max-width: 1024px) {
   
    /* Text */
    .centered {
    text-align: left;
    }
    h1,
    h2 {
    font-size: 2.2em;
    }
    h3 {
    font-size: 1.8em;
    }
    h4 {
    font-size: 1.4em;
    }
    p,
    .btn {
    font-size: 1em;
    }
    .manual-break {
    display: none;
    }
    /* Backgrounds */
    #home-bg {
    background: url('../gfx/banners/mobile.jpg');
    background-size: cover;
    }
    /* Navigation */
	.menu-button {
	display: block;
	visibility: visible;
	opacity: 1;
	}
    #main {
    height: 60px;
    margin: -50px auto 30px auto;
    padding: 0px 0px 0px 0px;  
    }
    #main .hide {
    display: none;
    visibility: hidden;
    opacity: 0;    
    }
    .logo {
    top: 0;
    width: 160px;
    height: 60px;
    }
    /* Flex */
    .flex-double .flex-item,
	.flex-tripple .flex-item,
	.flex-quad .flex-item,
    .flex-footer .flex-item {
    width: 100%;
    }
    .flex-double-space .flex-item,
	.flex-tripple-space .flex-item,
	.flex-quad-space .flex-item,
    .flex-quad-space .flex-item.flex-item-large {
    width: 100%;
    margin: 20px 0px 20px 0px;
    }
    .flex-text-right,
    .flex-text-left {
    padding: 0px; 
    }
    .flex-photo {
    height: 300px;
    margin: 50px 0px 0px 0px;
    }
    /* Wrapper */
	.wrapper .narrow {
    max-width: none;
	}
    /* Cards */
    .wrapper .mega-card {
    padding: 60px 30px 0px 30px;
    border-radius: 40px;
    margin: -150px 0px 0px 0px;
    }
    .wrapper .card.card-icon .icon {
    right: auto;
    left: 30px;
    width: 50px;
    height: 50px;
    }
    /* Banner */
    .banner .wrapper {
    padding: 0px 0px 100px 0px;
    }
    .banner .wrapper .card {
    max-width: none;
    width: 100%;
    }
    #headshot {
    display: block;
    visibility: visible;
    opacity: 1;
    }
    /* Footer */
    footer .logo {
    right: auto;
    left: 0;
    }
    footer .wrapper {
    padding: 180px 0px 80px 0px;
    }
    
}
@media (max-width: 768px) {
    
    /* Buttons */
    .btn {
    width: 100%;
    }
    .btn.btn-group {
    margin: 20px 0px 0px 0px;
    }

}