/* CSS Document */

/* Variables - Colors & Fonts
--------------------------------------------- */
  
  :root {

    --main-font: 'Open Sans Bold';
    --reg-font: 'Open Sans';
	--title-font: 'Roboto Slab', 'Open Sans';

    --style-main: #93ba9f;
    --style-sec: #000;
    --style-tri: #555755;
    --style-quad: #fff;
	--bg-secondary: #F5F5F5;

	--radius: 20px;
	--shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }

html, body {
	scroll-behavior: smooth;
}

.page-template-careers .site-inner .wrap {
	max-width: 100%!important;
	overflow: visible;
}

hr {
	height: 5px;
	border: 0px;
	background: var(--style-sec);
	border-radius: var(--radius);
	width: 80%;
	margin: 30px 0px;
}

.section {
	background: var(--style-quad);
}

.gray-bg {
	background: var(--bg-secondary)
}

/* Images as Background Images */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}

.pad {
	padding: 120px 0px;
}

.cr-wrap {
	max-width: 1500px;
	margin: 0 auto;
}


/* links */

.links-wrap {
	position: sticky;
	top: 10px;
	z-index: 500;
}

/* links btn */

.links-nav-btn {
	display: none!important;
}

.links-wrap {
	pointer-events: none;
}


.links {
	display: block;
	z-index: 90;
	background: var(--style-quad);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 10px;
}

.links-active::after {
	opacity: 1!important;
}

#links::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0,0,0,.5);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter:blur(5px);
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	transition: .4s;
	overflow: hidden;
}

.links {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
	overflow: hidden;
	width: 100%;
	pointer-events: auto!important;
}

.link {
	padding: 10px 20px;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: var(--style-quad);
	background: var(--style-sec);
	flex-grow: 1;
	border-radius: calc(var(--radius) / 2);
	transition: .4s;
}

.link:hover {
	color: var(--style-main);
	background: var(--style-sec)
}

.links-nav-btn {
	height: 80px;
	width: 80px;
	border-radius: var(--radius);
	z-index: 500;
	background: var(--style-quad);
	color: var(--style-sec)!important;
	font-size: 40px;
	cursor: pointer;
	pointer-events: auto!important;
	box-shadow: var(--shadow);
}

.links-nav-btn i {
	color: var(--style-sec);
	font-size: 50px;
	z-index: 5000;
	position: relative;
}


/* hero */
#hero {
	position: relative;
	margin: 20px;
	border-radius: var(--radius);
	background: var(--style-quad);
	box-shadow: var(--shadow);
	padding: 550px 20px 20px 20px;
}

#hero .octane-background {
	border-radius: var(--radius);
	overflow: hidden;
}

.hero-content {
	background: var(--style-quad);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 40px 20px;
	text-align: center;
	max-width: 1000px;
	position: relative;
	margin: 0 auto;
}

.section-title {
	color: var(--style-sec);
	font-family: Var(--title-font);
	font-weight: 900;
	font-size: 50px;
}

.hero-text p {
	margin: 0px;
	font-size: 18px;
	color: var(--style-sec);
}

.down-arrow {
	position: absolute;
	font-size: 50px;
	line-height: 50px;
	color: var(--style-main);
	background: var(--style-quad);
	background: linear-gradient(0deg, var(--bg-secondary) 0%, var(--style-quad) 100%);
	box-shadow: var(--shadow);
	border-radius: 100%;
	height: 80px;
	width: 80px;

	display: flex;
	justify-content: center;
	align-items: center;

	left: 50%;
	bottom: -60px;
	transform: scale(1) translatex(-50%);
	transition: .4s;
	transform-origin: left;
}

.down-arrow:hover {
	color: var(--style-sec);
	transform: scale(1.1) translatex(-50%);
}

.viewable {
	background: var(--style-main);
}

.viewable:hover {
	background: var(--style-main);
	color: var(--style-quad);
}



/* culture */

.section-subtitle {
	background: var(--style-main);
	width: fit-content;
	padding: 10px 20px;
	color: var(--style-quad);
	border-radius: var(--radius);
	font-size: 30px;
}

.culture-flex {
	display: flex;
	gap: 30px;
}

.cl-left {
	width: 40%;
}

.cl-right {
	width: 60%;
}

.cl-right {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	max-height: 400px;
	position: sticky;
	top: 100px;
}

.cl-right img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.cl-left p {
	font-size: 18px;
	color: var(--style-sec);
	margin: 0px;
}


/* values */

#values .section-title {
	text-align: center;
}

.values-intro p {
	text-align: center;
	margin: 0px;
	max-width: 800px;
	margin: auto;
	margin-bottom: 20px;
	color: var(--style-sec);
}

.values {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 600px;
	margin: auto;
}

.value {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 100px;
	background: var(--style-quad);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.value:nth-of-type(2) {
	top: 120px;
}

.value:nth-of-type(3) {
	top: 140px;
}

.value:nth-of-type(4) {
	top: 160px;
}

.value:nth-of-type(5) {
	top: 180px;
}


.value-left, .value-right {
	padding: 20px;
}

.value p {
	text-align: left;
	margin: 0px;
	color: var(--style-sec);
}

.value-left {
	background: var(--style-main);
	display: flex;
	align-items: center;
}

.value-title {
	font-size: 25px;
	font-weight: bold;
	font-family: var(--title-font);
	color: var(--style-quad);
	margin: 0px;
}

.value-right {
	background: var(--style-quad)
}

#values hr {
	margin-left: auto;
	margin-right: auto;
}


/* benefits */

.accordion-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 15px;
}

.accordion-list li {
	background: var(--style-main)!important;
	width: calc(50% - 8px);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.accord-title {
	color: var(--style-quad);
	font-weight: bold;
	font-size: 20px!important;
	display: flex!important;
	justify-content: space-between;
	align-items: center;
	width: 100%!important;
	padding: 15px!important;
	gap: 10px;
}

.accordion-list li .accord-title::after {
	content: "\2b"!important;
	font-family: "Font Awesome 6 Free";
	border: 0px!important;
	background: none!important;
	display: block;
	position: relative;
	top: initial;
	left: initial;
	margin: initial;
	font-weight: 900;
}

.accordion-list li.active .accord-title:after{
	content: "\f068"!important;
}

.panel {
	background: var(--style-quad)!important;
	color: var(--style-sec)!important;
}

.accordion-list li div.panel p {
	font-size: 18px;
}

#benefits p {
	color: var(--style-sec);
}


/* testimonials */

#testimonials .section-title, #testimonials {
	text-align: center;
}

.wpmtst-testimonial-inner p {
	background: var(--style-quad)!important;
	box-shadow: var(--shadow);
	padding: 20px!important;
	border-radius: var(--radius);
	margin-bottom: 20px!important;
	text-wrap: pretty!important;
}

.wpmtst-testimonial-inner p, #testimonials p {
	color: var(--style-sec);
	font-size: 18px;
}

.testimonial-name {
	font-weight: bold;
}

.testimonial-company {
	font-weight: bold;
	font-style: italic;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-content:after, .strong-view.wpmtst-modern .wpmtst-testimonial-content:before {
	background: var(--style-main)!important;
}

.wpmslider-next, .wpmslider-prev {
	background: var(--style-sec)!important;
	border-radius: var(--radius)!important;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-image img {
	border-radius: var(--radius)!important;
	box-shadow: var(--shadow);
}

#testimonials hr {
	margin-inline: auto;
}


/* giving */

.giving-flex {
	display: flex;
	gap: 30px;
}

.giving-flex::before, .giving-flex::after {
	content: none;
}

.giving-left {
	flex: 1 0 calc(60% - 15px);
}

.giving-right {
	flex: 1 0 calc(40% - 15px);
	position: relative;
}

.giving-right img {
	max-width: 300px;
	position: sticky;
	top: 100px;
	filter: drop-shadow(var(--shadow));
}

#giving .wpcp-single-item, #giving .wpcp-slide-image, #giving .wpcp-slide-image img {
	aspect-ratio: 4 / 3!important;
	object-fit: cover;
}

#giving .wpcp-single-item {
	box-shadow: var(--shadow);
	border-radius: var(--radius)!important;
}

#giving .swiper-wrapper,#giving  .wpcp-image-carousel {
	/* overflow: visible!important; */
}

#giving .wpcp-prev-button {
	left: 50%;
}

#giving .wpcp-next-button {
	left: 50.5%;
}

.giving-slider {
	position: relative;
}

.giving-slider::before, .giving-slider::after {
	content: "";
	display: block;
	height: 100%;
	width: 400px;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 50;
	background: linear-gradient(90deg, var(--style-quad) 0%, rgba(255,255,255,0) 100%);
}

.giving-slider::after {
	left: initial;
	right: 0;
	transform: rotate(180deg);
}

/* openings */

#openings {
	text-align: center;
}

#openings hr {
	margin-inline: auto;
}

.openings {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: auto;
}

.opening {
	flex: 1 0 31%;
}

.opening-image {
	aspect-ratio: 4 / 5;
	width: 100%;
	position: relative;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.opening img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .4s;
}

.opening:hover img {
	transform: scale(1.1);
}

.opening-title {
	margin-top: 10px;
	background: var(--style-main);
	font-size: 25px;
	font-weight: bold;
	color: var(--style-quad);
	padding: 10px 20px;
	border-radius: var(--radius);
	transition: .4s;
}

.opening:hover .opening-title {
	background: var(--style-sec);
}














/* media queries */

@media(max-width: 1920px) {
	#hero {
		padding: 450px 20px 20px 20px;
	}
}

@media(max-width: 1650px) {
	.cr-wrap {
		max-width: 1400px;
	}
}


@media(max-width: 1550px) {
	.cr-wrap {
		max-width: 1300px;
	}
}

@media(max-width: 1440px) {
	.cr-wrap {
		max-width: 1200px;
	}
}

@media(max-width: 1350px) {
	.cr-wrap {
		max-width: 1100px;
	}
}

@media(max-width: 1150px) {
	.cr-wrap {
		max-width: 900px;
	}

	.link {
		width: calc((100% / 3) - 10px)
	}

	/* culture */

	.cl-right, .giving-right img, .value {
		top: 160px;
	}
}

@media(max-width: 1024px) {
	.cr-wrap {
		max-width: 90%;
	}

	.pad {
		padding: 75px 0px;
	}

	hr {
		margin: 20px auto;
	}

	/* hero */

	#hero {
		padding: 350px 20px 20px 20px;
	}

	.section-subtitle {
		font-size: 25px;
	}

	.section-title {
		font-size: 40px;
	}

	/* culture */

	.culture-flex {
		flex-direction: column-reverse;
	}

	.cl-right {
		height: 300px;
		width: 100%;
		position: relative;
		top: initial;
	}

	.cl-left {
		width: 100%;
		text-align: center;
	}

	.section-subtitle {
		margin: auto;
		margin-bottom: 20px;
	}

	/* giving */

	.giving-flex {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.giving-right img {
		position: relative;
		top: initial;
	}

	.giving-slider::before, .giving-slider::after {
		width: 200px;
	}
	
}

@media(max-width: 768px) {
	.pad {
		padding: 40px 0px;
	}

	.section-title {
		text-align: center;
	}
	
	.links-nav-btn {
		display: flex!important;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 10px;
		right: 10px;
	}

	.links-wrap {
		position: relative;
	}

	#links .fa-xmark {
		display: none;
	}
	
	.links-active .fa-ellipsis {
		display: none;
	}

	.links-active .fa-xmark {
		display: block!important;
	}

	.links {
		position: fixed;
		right: 10px;
		top: 100px;
		transform: translatex(100vw);
		transition: .5s;
		max-width: 500px;
	}

	.links-active .links {
		transform: translatex(0px);
	}

	.link {
		width: calc((100% / 2) - 10px)
	}
	
	.cr-wrap {
		max-width: 85%;
	}

	/* hero */

	#hero {
		padding: 250px 20px 20px 20px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-text p, .cl-left p, .values-intro, .value p, .accordion-list li div.panel p, .wpmtst-testimonial-inner p, #testimonials p, #giving p, #openings p {
		font-size: 16px;
		line-height: 23px;
	}

	/* values */

	.value {
		flex-direction: column;
		top: 100px;
	}

	.value-right, .value-left {
		width: 100%;
	}

	.value-left {
		display: block;
	}
	
	.value-title {
		text-align: center;
	}

	.value p {
		text-align: center;
	}

	/* benefits */

	.accordion-list li {
		width: 100%;
	}

	#benefits p {
		font-size: 16px;
		text-align: center;
	}

	/* testimonials */

	.strong-view.wpmtst-modern .wpmtst-testimonial-inner {
		padding: 5px!important;
	}

	.wpmslider-controls-direction {
		display: none!important;
	}

	/* giving */

	#giving .wpcp-prev-button {
		left:49%;
	}
	
	#giving .wpcp-next-button {
		left: 51%;
	}

	.giving-slider {
		padding: 0px 15px;
	}

	.giving-slider::before, .giving-slider::after {
		display: none;
	}

	/* openings */

	.opening {
		flex: 0 0 47%;
		max-width: 300px;
		margin: auto;
	}

	.opening-image {
		aspect-ratio: 1 / 1;
	}

	.opening-title {
		font-size: 18px;
	}

}

@media(max-width: 600px) {
	.links {
		max-width: 300px;
	}
	
	.link {
		width: 100%;
		font-size: 16px;
	}

}

@media(max-width: 550px) {
	/* hero */

	#hero {
		margin: 0px;
		padding: 20px 20px 20px 20px;
		box-shadow: none;
	}

	#hero .octane-background {
		position: relative;
		margin-bottom: 10px;
		box-shadow: var(--shadow);
	}

	.section-subtitle {
		font-size: 20px;
	}

	.section-title {
		font-size: 35px;
		line-height: 35px;
	}

}

@media(max-width: 450px) {
	.down-arrow {
		font-size: 40px;
		line-height: 40px;
		height: 60px;
		width: 60px;
		bottom: -30px;
	}

	.opening {
		flex: 1 0 100%;
	}
}