html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}
p {
	margin: .5em 0 0 0;
}
p:first-of-type {
	margin: 0;
}
body {
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
	background-image: url("../images/bg.jpg");
	background-size: 100%;
	background-repeat: repeat-y;
}
a, button {
	transition-delay: 0;
	transition-timing-function: ease-in-out;
	transition-property: all;
	transition-duration: 200ms;
}
h3 {
	color: #1E489A;
	font-size: 2em;
}
header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
}
header .top {
	background: #08235F;
	padding: 0em 2em 0em 2em;
}
header .top > div {
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .bottom {
	border-top: 8px solid #009BA0;
	text-align: right;
	width: 100%;
}
#btn-login {
	display: inline-block;
	background-color: #009BA0;
	border-bottom-left-radius: 6px;
	padding: 0.7em 2em;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
}
header nav a, header nav .selected {
	display: inline-block;
	color: #fff;
	margin-left: 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	padding: 2em 2em 1em 2em;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
header nav a:hover, header nav .selected {
	background-color: #009BA0;
}

.shadow{
	box-shadow: 3px 10px 10px 0 rgba(0,0,0,0.2);
}

button, a.btn {
	display: inline-block;
	border-radius: 6px;
	border: none;
	padding: 1em 2em;
	min-width: 200px;
	background: white;
	color: #1E489A;
	font-weight: bold;
	text-decoration: none;
}

button:hover, a.btn:hover, button.blue:hover, a.btn.blue:hover  {
	background-color: #009BA0;	
	color:white;
}
button:hover img, a.btn:hover img{
		filter: grayscale() brightness(100);
}

button.blue, a.btn.blue {
	background-color: #1E489A;
	color: white;
}



.fv {
	display: flex;
	flex-direction: column;
}
.fh {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
}
#partners .fh > * {
	width: 33%;
	text-align: center;
}
.content-column {
	margin: auto;
	max-width: 1200px;
	padding: 0 40px;
}
.hero {
	background: #f4f4f4;
	padding: 0 2rem;
	height: 900px;
	position: relative;
	overflow: hidden;
}
.hero h1 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1rem;
	width: 100%;
	background-color: rgba(0, 155, 160, 0.80);
	color: white;
	font-weight: 400;
	position: absolute;
	bottom: 1em;
	left: 0;
	right: 0;
	margin: auto;
	padding: .5em 1em;
}
.hero .hero-content {
	margin-bottom: 1rem;
	width: 100%;
	background-color: rgba(0, 155, 160, 0.80);
	color: white;
	font-weight: 400;
	position: absolute;
	bottom: 1em;
	left: 0;
	right: 0;
	margin: auto;
	padding: 2em 4em;
}
.hero h4 {
	margin-top: 0;
}
section, footer {
	position: relative;
	margin: 40px 0;
	margin-top: 0;
	background-color: rgba(255, 255, 255, 0);
	overflow: hidden;
	min-height: 100px;
	padding: 0 40px;
}
footer {
	padding-bottom: 0;
	margin-bottom: 0;
}
.copywrite {
	display: block;
	padding: 1em;
}
.white {
	color: #fff !important;
}
h4 {
	font-size: 1.3em;
}
.feature h4 {
	text-align: center
}
section h2 {
	color: #1E489A;
	margin-bottom: 1rem;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: flex-start;
	text-transform: uppercase;
	font-size: 2em;
	margin-top: 0;
	padding-top: 0;
}
section h2 > span {
	display: block;
	content: "";
	width: auto;
	left: 0px;
	right: 0;
	position: relative;
	margin-right: auto;
}
h2 > .side-line {
	margin-left: 1em;
	flex-grow: 1;
	vertical-align: middle;
	height: 1px;
	background-color: #1E489A;
	align-self: center;
}
.white > .side-line {
	background-color: white;
}
.front{
	position: relative;
	margin: auto;
	max-width: 1600px;
}
section > .front, footer > .front {
	position: relative;
	margin: auto;
	height: 100%;
	width: 100%;
	max-width: 1600px;
	padding: 40px 0;
	z-index: 10;
	qoverflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
section > .back {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	z-index: 0;
	padding: 0;
}
.top-gradient {
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(8, 35, 95, .8) 0%, rgba(8, 35, 95, 0) 100%);
}
.bottom-gradient {
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(8, 35, 95, 0) 0%, rgba(8, 35, 95, 0.8) 100%);
}
.bg-img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	object-fit: cover;
	object-position: 50% 50%;
}
.fill-img {
	object-fit: cover;
}
section > .bg-img {
	max-width: none;
	qwidth: 100%;
	qheight: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: -40px;
	right: -40px;
	margin-left: -40px;
	margin-right: -40px;
	bottom: 0px;
	z-index: 0;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}
.feature {
	background: #e9f0f7;
	padding: 2rem;
	border-radius: 8px;
	color: white;
}
.feature:first-child {
	background-color: #87BD40;
}
.feature:nth-child(2) {
	background-color: #5FAD77;
}
.feature:nth-child(3) {
	background-color: #009BA0;
}
.feature:nth-child(4) {
	background-color: #0D71A0;
}
.feature h4 {
	text-transform: uppercase;
}
.feature > img {
	width: 50%;
	display: block;
	margin: 4em auto;
}
.feature hr {
	width: 33%;
	border-color: white;
	border-width: 1px;
	border-style: solid;
	margin-bottom: 1.5em;
}
footer {
	background-color: #08235F;
	background-image: url("../images/bg-globe.svg");
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: 30% 30%;
	color: #fff;
	text-align: center;
	padding: 0;
	margin: 0;
}
footer .copywrite {
	background-color: #009BA0;
	color: #fff;
	text-align: center;
	padding: 1em .5em;
}
#footer-logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 3em 0;
}
#about {
	height: 700px;
}
#about .img-container {
	position: absolute;
	height: 600px;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 0;
}
#about > * {
	z-index: 10;
}
#about .bg-img {
	object-position: 100% 70%;
}
.light-overlay {
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
#about .caption {
	font-size: 100%;
	padding: 2em;
	margin: 2em;
	position: absolute;
	width: 50%;
	z-index: 10;
}
.dark-overlay {
	background-color: rgba(8, 35, 95, 0.80);
	color: white;
}
.skew {
	margin: 0 2em;
	padding: 2em;
	transform: skewX(-15deg);
}
.skew > * {
	transform: skewX(15deg);
}
#what-we-do {
	height: 600px;
}
#what-we-do .caption {
	margin: 0 -100% 0 0;
	padding: 4em 105% 4em 4em;
	position: absolute;
	left: 60%;
	bottom: 0;
	font-size: 100%;
}
#container-btn-ripe {
	align-self: flex-end;
}
#btn-ripe {
	width: 230px;
	margin: 4em;
	align-content: flex-end;
	align-items: center;
	align-self: flex-end;
	text-align: left;
	border-radius: 12px;
}
#btn-ripe > *:first-child {}
#btn-ripe > *:nth-child(2) {
	font-weight: 400;
	font-size: 3em;
}
#btn-contact {
	display: flex;
	max-width: 220px;
	align-items: center;
	vertical-align: baseline;
	align-content: center;
}
#btn-contact > *:first-child {
	margin-right: 1em;
}
#cap-interactive {
	display: flex;
	flex-direction: row;
	overflow: hidden;
    position: relative;	
}
#cap-interactive .cap-tabs-container {
	min-width: 40%;
}
#cap-interactive .cap-content-container {
	background-color: white;
	padding: 20px;
    position: relative;
    right: 0;
    bottom: 0;
    top: 0;
	width:100%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}
#cap-interactive .cap-content-container p {
	width: 30%;
	position: absolute;
	z-index: 10;
	margin: 2em;
	padding: 2em;
	text-align: left;
}
#cap-interactive .cap-content {
	display: none;
}
#cap-interactive .cap-content.selected {
    display: inline-block;
    /* height: 100%; */
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 20px;
    top: 20px;
}
#cap-interactive .cap-tabs-container > ul {
	display: flex;
	flex-direction: column;
	height: 100%;
	list-style: none;
	padding: 0 0 0 0;
	margin: 0;
}
#cap-interactive > .cap-tabs-container > ul > li {
	padding: 0;
	margin: 0;
}
#cap-interactive > .cap-tabs-container > ul > li a.selected {}
#cap-interactive > .cap-tabs-container > ul > li a {
	display: flex;
	flex-direction: row;
	background-clip: padding-box;
	padding: 2em;
	background-color: rgba(10, 102, 133, 1.00);
	border-style: solid;
	border-width: 0;
	border-left-width: 20px;
	border-left-color: rgba(10, 102, 133, 0);
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
}
#cap-interactive > .cap-tabs-container > ul > li a > * {
	align-self: center;
}
#cap-interactive > .cap-tabs-container > ul > li a.selected {
	background-color: white;
	border-left-color: white;
	color: rgba(8, 35, 95, 1.00);
}
#cap-interactive > .cap-tabs-container > ul > li a img {
	filter: grayscale() brightness(100);
	margin-right: 2em;
}
#cap-interactive > .cap-tabs-container > ul > li a.selected img {
	filter: brightness(100%);
}