@charset "UTF-8";
/*!
Theme Name: The Refinery
Theme URI: http://underscores.me/
Author: Savage
Author URI: http://savage.ly
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: the-refinery-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

The Refinery is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url(keen-slider.min.css);
@font-face {
	font-family: 'SF-Pro-Rounded-Black';
	src: url("public/fonts/SF-Pro-Rounded-Black.otf") format("opentype");
	font-weight: 900;
	font-style: normal;
}

.header-component .hc-title {
	font-family: 'SF-Pro-Rounded-Black', sans-serif;
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'SF-Pro-Rounded-Bold';
	src: url("public/fonts/SF-Pro-Rounded-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	overflow-x: hidden;
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

main {
	margin-top: 83px;
}

@media screen and (min-width: 576px) {
	main {
		margin-top: 0;
	}
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
	text-decoration: none;
	outline: none;
}

a:visited {
	color: #800080;
}

a:hover, a:focus, a:active {
	color: #191970;
}

a:focus {
	outline: 0;
}

a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.page-template-discipline .header,
.page-template-who-we-are .header {
	position: relative;
	background-image: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (min-width: 576px) {
	.page-template-discipline .header,
	.page-template-who-we-are .header {
		background-image: url("public/header-bg.jpg");
	}
}

.page-template-discipline main.discipline,
.page-template-who-we-are main.discipline {
	margin-top: 0;
}

.header {
	width: 100%;
	display: flex;
	padding-left: clamp(20px, 3.125vw, 50px);
	padding-right: clamp(20px, 1.875vw, 30px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #212c59;
}

.header.headroom {
	transition: transform 400ms ease-in-out;
}

.header.headroom--pinned {
	transform: translateY(0%);
}

@media screen and (min-width: 576px) {
	.header.headroom--unpinned {
		transform: translateY(-100%);
	}
}

@media screen and (min-width: 576px) {
	.header {
		background-color: transparent;
		z-index: 98;
	}
}

.header .h-logo {
	padding-top: clamp(20px, 2.054vw, 38px);
	padding-bottom: clamp(20px, 1.837vw, 34px);
	z-index: 100;
	display: block;
}

@media screen and (min-width: 450px) {
	.header .h-logo {
		display: flex;
	}
}

.header .h-logo span {
	font-family: 'Montserrat', sans-serif;
	align-items: center;
	color: #ff025b;
	font-size: clamp(21.65px, 3vw, 55.5px);
	letter-spacing: 0.56px;
	text-transform: lowercase;
	padding-left: clamp(13.65px, 1.891vw, 35px);
	margin-left: clamp(12.87px, 1.783vw, 33px);
	position: relative;
	display: none;
	padding-top: 10px;
}

@media screen and (min-width: 450px) {
	.header .h-logo span {
		padding-top: 0;
	}
}

.header .h-logo span.active {
	display: flex;
}

.header .h-logo span.blue {
	color: #B2C7DB;
}

.header .h-logo span:before {
	content: '';
	height: clamp(32px, 4.54vw, 84px);
	width: clamp(1px, 0.1621vw, 3px);
	background-color: #ff025b;
	position: absolute;
	left: 0;
	z-index: 100;
}

.header .h-logo img {
	width: clamp(212px, 25vw, 400px);
	max-height: 112px;
	object-fit: fill;
}

.header .h-logo img.desktop {
	display: none;
}

@media screen and (min-width: 576px) {
	.header .h-logo img.desktop {
		display: block;
	}
}

.header .h-logo img.mobile {
	display: block;
}

@media screen and (min-width: 576px) {
	.header .h-logo img.mobile {
		display: none;
	}
}

.h-toggle {
	top: clamp(26px, 2.054vw, 38px);
	right: clamp(20px, 1.621vw, 30px);
	width: clamp(32.3px, 4.1vw, 45px);
	height: clamp(28.05px, 3.567vw, 38px);
	position: fixed;
	margin-left: auto;
	z-index: 103;
	cursor: pointer;
}

.h-toggle.headroom {
	transition: transform 400ms ease-in-out;
}

.h-toggle.headroom--pinned {
	transform: translateY(0%);
}

@media screen and (min-width: 576px) {
	.h-toggle.headroom--unpinned:not(.active) {
		transform: translateY(-175%);
	}
}

.h-toggle.active .h-line:nth-child(1) {
	transform: rotate(-45deg);
	top: 42%;
	left: 0;
	position: absolute;
}

.h-toggle.active .h-line:nth-child(2) {
	opacity: 0;
}

.h-toggle.active .h-line:nth-child(3) {
	transform: rotate(45deg);
	top: 42%;
	left: 0;
	position: absolute;
}

.h-toggle .h-line {
	height: clamp(4.25px, 0.625vw, 6px);
	width: 100%;
	position: absolute;
	transition: all 300ms ease;
	background: #fff;
}

.h-toggle .h-line:nth-child(1) {
	top: 0;
}

.h-toggle .h-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.h-toggle .h-line:nth-child(3) {
	bottom: 0;
}

.footer {
	background-color: #F8F6EB;
	padding: 30px 0;
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
}

.footer .f-logo {
	cursor: pointer;
	width: 54px;
	height: 54px;
}

.contact-us {
	background-color: #364C5B;
	padding-top: clamp(20px, 1.667vw, 30px);
	padding-bottom: clamp(34px, 3.75vw, 60px);
	padding-left: clamp(20px, 5vw, 80px);
	padding-right: clamp(20px, 5vw, 80px);
	background-image: url("public/contact-bg.jpg");
	background-position: left;
	background-size: cover;
}

.contact-us .cu-container {
	max-width: 1510px;
	width: 100%;
	margin: 0 auto;
}

.contact-us .cu-container .cu-title {
	font-size: clamp(30px, 2.875vw, 36px);
	color: #B2C6DB;
	margin: 0;
	font-weight: 300;
	font-family: 'Montserrat';
}

.contact-us .cu-container .cu-columns {
	font-family: 'Montserrat';
	display: flex;
	justify-content: space-between;
	margin-top: clamp(24px, 2.75vw, 44px);
	flex-direction: column;
	font-size: clamp(14px, 1.44vw, 18px);
}

@media screen and (min-width: 992px) {
	.contact-us .cu-container .cu-columns {
		flex-direction: row;
	}
}

.contact-us .cu-container .cu-columns .cu-column:not(:first-child) {
	margin-top: 20px;
}

@media screen and (min-width: 992px) {
	.contact-us .cu-container .cu-columns .cu-column {
		margin-top: 0;
	}
	.contact-us .cu-container .cu-columns .cu-column:not(:first-child) {
		margin-top: 0;
	}
}

.contact-us .cu-container .cu-columns .cu-column .cu-label {
	font-weight: bold;
	color: #B2C6DB;
}

.contact-us .cu-container .cu-columns .cu-column .cu-content {
	color: white;
}

.contact-us .cu-container .cu-columns .cu-column .cu-content a {
	color: white;
}

.contact-us .cu-container .cu-columns .cu-column.cu-content {
	display: block;
	color: white;
}

@media screen and (min-width: 480px) {
	.contact-us .cu-container .cu-columns .cu-column.cu-content {
		display: none;
	}
}

.contact-us .cu-container .cu-columns .cu-column.cu-content p {
	margin: 0;
}

.contact-us .cu-container .cu-columns .cu-column.cu-content b {
	color: #B2C6DB;
}

.contact-us .cu-container .cu-columns .cu-column.cu-content a {
	color: white;
	font-weight: bolder;
	text-decoration: underline;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.navigation {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: -1;
}

.navigation.active {
	z-index: 99;
}

.navigation.active .n-box {
	transform: translateX(0);
}

.navigation.active .n-overlay {
	z-index: 100;
	opacity: 0.5;
}

.navigation .n-box {
	background-color: black;
	position: absolute;
	top: 0;
	right: 0;
	max-width: 578px;
	width: 100%;
	z-index: 101;
	padding-bottom: 61px;
	padding-left: clamp(30px, 4.68vw, 75px);
	transform: translateX(101%);
	transition: all 300ms ease;
	padding-top: 100px;
}

.navigation .n-box.blue, .navigation .n-box.pink {
	padding-top: 140px;
}

@media screen and (min-width: 450px) {
	.navigation .n-box.blue, .navigation .n-box.pink {
		padding-top: 100px;
	}
}

@media screen and (min-width: 992px) {
	.navigation .n-box.blue, .navigation .n-box.pink {
		padding-top: 51px;
	}
}

@media screen and (min-width: 992px) {
	.navigation .n-box {
		padding-top: 51px;
	}
}

.navigation .n-box .n-item {
	font-family: 'Montserrat', sans-serif;
	display: block;
	font-size: clamp(30px, 3.47vw, 35px);
	line-height: 1.38;
	letter-spacing: 0.56px;
	color: #b2c6db;
}

.navigation .n-box .n-item.deco {
	border-left: 3px solid #ff025b;
	padding-left: clamp(20px, 2.68vw, 32px);
}

.navigation .n-overlay {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: -2;
	background-color: #000;
	opacity: 0;
	transition: all 300ms ease;
	cursor: pointer;
}

.projects-grid {
	display: flex;
	flex-wrap: wrap;
	background-color: #f8f6ea;
}

.projects-grid .pg-item {
	position: relative;
	flex-basis: 50%;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 1;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	.projects-grid .pg-item {
		flex-basis: 25%;
	}
}

.projects-grid .pg-item:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.projects-grid .pg-item .pg-image {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.projects-grid .pg-item .pg-image-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom right, transparent, rgba(177, 84, 141, 0.7));
	opacity: 0;
	transition: 500ms all ease;
}

.projects-grid .pg-item:hover .chiclet {
	opacity: 1;
}

.projects-grid .pg-item:hover .pg-image-overlay {
	opacity: 1;
}

.projects-grid .pg-carousel {
	flex-basis: 100%;
	position: relative;
	z-index: 104;
}

.projects-grid .pg-carousel.desktop {
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	flex-basis: 0;
}

@media screen and (min-width: 576px) {
	.projects-grid .pg-carousel.desktop {
		visibility: visible;
		opacity: 1;
		z-index: 104;
		flex-basis: 100%;
	}
}

.projects-grid .pg-carousel.mobile {
	visibility: visible;
	opacity: 1;
	z-index: 104;
	flex-basis: 100%;
}

@media screen and (min-width: 576px) {
	.projects-grid .pg-carousel.mobile {
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		flex-basis: 0;
	}
}

.projects-grid .pg-carousel.active:before {
	padding-top: 125%;
}

@media screen and (min-width: 576px) {
	.projects-grid .pg-carousel.active:before {
		padding-top: 56.25%;
	}
}

.projects-grid .pg-carousel.active .slider-nav-left, .projects-grid .pg-carousel.active .slider-nav-right {
	display: block;
}

.projects-grid .pg-carousel.active .pg-close {
	opacity: 1;
	z-index: 2;
	display: block;
}

.projects-grid .pg-carousel:before {
	content: '';
	display: block;
	padding-top: 0;
	transition: all 500ms ease;
}

.projects-grid .pg-carousel .pg-close {
	position: absolute;
	top: clamp(20px, 1.875vw, 30px);
	right: clamp(20px, 1.875vw, 30px);
	height: clamp(32px, 3.75vw, 38px);
	width: clamp(38.4px, 4.5vw, 45px);
	cursor: pointer;
	z-index: 0;
	display: none;
	opacity: 0;
	transition: all 500ms ease;
}

.projects-grid .pg-carousel .pg-close img {
	width: 100%;
	height: 100%;
}

.projects-grid .pg-carousel .pgc-container {
	height: 100%;
	width: 100%;
	z-index: 1;
	position: absolute;
	top: 0;
}

.projects-grid .pg-carousel .pgc-container .pgc-image {
	height: 100%;
	width: 100%;
}

.projects-grid .pg-carousel .pgc-container .pgc-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.projects-grid .pg-carousel .pgc-container .pgc-video-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: -1;
}

.projects-grid .pg-carousel .slider-nav-left, .projects-grid .pg-carousel .slider-nav-right {
	position: absolute;
	top: 50%;
	height: clamp(60px, 6.81vw, 81px);
	max-width: 36px;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 2;
	display: none;
}

.projects-grid .pg-carousel .slider-nav-left img, .projects-grid .pg-carousel .slider-nav-right img {
	height: 100%;
}

.projects-grid .pg-carousel .slider-nav-left.slider-nav-left, .projects-grid .pg-carousel .slider-nav-right.slider-nav-left {
	left: 20px;
}

.projects-grid .pg-carousel .slider-nav-left.slider-nav-left img, .projects-grid .pg-carousel .slider-nav-right.slider-nav-left img {
	transform: rotate(180deg);
}

.projects-grid .pg-carousel .slider-nav-left.slider-nav-right, .projects-grid .pg-carousel .slider-nav-right.slider-nav-right {
	right: 20px;
}

.chiclet {
	position: absolute;
	font-weight: 300;
	color: #f8f6e9;
	display: flex;
	font-size: clamp(22px, 2.625vw, 36px);
	min-width: clamp(140px, 15.31vw, 245px);
	padding-left: clamp(18px, 1.81vw, 29px);
	padding-right: clamp(18px, 1.81vw, 29px);
	padding-top: 0;
	padding-bottom: 0;
	bottom: 0;
	right: 0;
	align-items: center;
	color: #f8f6e9;
	background: linear-gradient(to left, #44235B, #C90457);
	border-top-left-radius: clamp(12px, 1.32vw, 25px);
	opacity: 0;
	transition: all 500ms ease;
	text-transform: uppercase;
	line-height: 49px;
}

.chiclet.active {
	opacity: 1;
}

.chiclet.small {
	line-height: 1.5;
	font-size: 18px;
	min-width: 140px;
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 2px;
	padding-bottom: 2px;
	border-top-left-radius: 12px;
}

.chiclet.small.top {
	border-top-left-radius: 0;
	border-bottom-right-radius: 12px;
}

.chiclet.top {
	top: 0;
	left: 0;
	bottom: auto;
	right: auto;
	border-top-left-radius: 0;
	border-bottom-right-radius: clamp(12px, 1.32vw, 25px);
}

@media screen and (orientation: portrait) and (max-width: 576px) {
	.hero-image .orientation-overlay.active {
		display: none;
	}
}

.orientation-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.6);
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	display: none;
}

@media screen and (orientation: portrait) and (max-width: 576px) {
	.orientation-overlay.active {
		display: flex;
	}
}

.header-component {
	background-size: cover;
	height: clamp(280px, 33.8vw, 296px);
	display: flex;
	align-items: center;
	padding-left: clamp(20px, 6.875vw, 110px);
	padding-right: clamp(20px, 6.875vw, 110px);
}

.header-component.banner-top {
	background-image: url("public/careers/RefWebsite_WhoWeAre_TopBanners_1920x300_01_Top.png");
}

.header-component.banner-mid {
	background-image: url("public/careers/RefWebsite_WhoWeAre_TopBanners_1920x300_02_Mid.png");
}

.header-component.banner-bottom {
	background-image: url("public/careers/RefWebsite_WhoWeAre_TopBanners_1920x300_03_Bottom.png");
}

.header-component .hc-title {
	font-size: 50px;
	color: #0f1b2e;
	margin: 0;
}

.content-component {
	padding-left: 20px;
	padding-right: 20px;
	background-color: #F9F6EA;
}

.content-component .cc-container {
	max-width: 1418px;
	margin: 0 auto;
	padding-top: clamp(60px, 6.25vw, 100px);
	padding-bottom: clamp(65px, 6.875vw, 110px);
}

.content-component .cc-container h2 {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: clamp(36px, 3.75vw, 40px);
	line-height: 1;
	color: #000000;
	margin: 0;
	margin-bottom: clamp(40px, 4.06vw, 65px);
}

.content-component .cc-container h2:not(:first-child) {
	margin-top: clamp(50px, 5vw, 80px);
}

.content-component .cc-container p {
	font-family: 'Montserrat';
	font-size: clamp(20px, 2.25vw, 24px);
	color: #000000;
	margin: 0;
	line-height: 1.23;
}

.content-component .cc-container p a {
	color: #ff025b;
	font-weight: bolder;
}

.content-component .cc-container ul, .content-component .cc-container ol {
	font-family: 'Montserrat';
	font-size: clamp(20px, 2.25vw, 24px);
	color: #000000;
	margin: 0;
	line-height: 1.23;
	padding-bottom: clamp(24px, 2.5vw, 40px);
	padding-left: clamp(50px, 7.25vw, 116px);
	margin-top: clamp(30px, 3.125vw, 50px);
}

.content-component .cc-container ul {
	list-style: none;
	position: relative;
}

.content-component .cc-container ul li {
	position: relative;
	margin-bottom: 30px;
}

.content-component .cc-container ul li:last-child {
	margin-bottom: 0;
}

.content-component .cc-container ul li:before {
	left: -40px;
	position: absolute;
	content: "•";
	padding-right: 5px;
	line-height: clamp(32px, 2.75vw, 38px);
	font-size: 400%;
	color: #ff025b;
	top: -10px;
}

@media screen and (min-width: 576px) {
	.content-component .cc-container ul li:before {
		left: -40px;
	}
}

@media screen and (min-width: 768px) {
	.content-component .cc-container ul li:before {
		left: -50px;
	}
}

@media screen and (min-width: 992px) {
	.content-component .cc-container ul li:before {
		left: -78px;
	}
}

.image-group-component .igc-container {
	display: flex;
	flex-wrap: wrap;
}

.image-group-component .igc-container .igc-image {
	width: 50%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	display: none;
}

.image-group-component .igc-container .igc-image:nth-child(-n+6) {
	display: block;
}

@media screen and (min-width: 576px) {
	.image-group-component .igc-container .igc-image {
		width: 25%;
	}
	.image-group-component .igc-container .igc-image:nth-child(-n+8) {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.image-group-component .igc-container .igc-image {
		width: 20%;
	}
	.image-group-component .igc-container .igc-image:nth-child(-n+10) {
		display: block;
	}
}

.careers-component .cac-container {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 4px;
	background-color: #b1c6db;
}

@media screen and (min-width: 576px) {
	.careers-component .cac-container {
		grid-template-columns: 1fr 1fr;
		grid-gap: 6px;
	}
}

@media screen and (min-width: 768px) {
	.careers-component .cac-container {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-gap: 8px;
	}
}

@media screen and (min-width: 992px) {
	.careers-component .cac-container {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}
}

.careers-component .cac-container .cac-item {
	display: block;
}

.careers-component .cac-container .cac-item .cac-image {
	background-color: #f9f6ea;
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.careers-component .cac-container .cac-item .cac-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.careers-component .cac-container .cac-item .cac-text {
	background-color: #353d61;
	color: #f9f6ea;
	min-height: 104px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.careers-component .cac-container .cac-item .cac-text .cac-title {
	font-family: 'Montserrat';
	font-size: clamp(18px, 1.75vw, 24px);
	line-height: 1;
	text-align: center;
}

.careers-component .cac-container .cac-item .cac-text .cac-subtitle {
	font-family: 'Montserrat';
	font-size: 16px;
	line-height: 1;
	margin-top: 12px;
	text-align: center;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Pages
--------------------------------------------- */
.home .hero {
	width: 100%;
	position: relative;
	aspect-ratio: 4/5;
}

@media screen and (min-width: 576px) {
	.home .hero {
		aspect-ratio: 16/9;
	}
}

.home .hero .hero-container {
	height: 100%;
	width: 100%;
}

.home .hero .hero-container .hero-image {
	height: 100%;
	width: 100%;
	min-width: 99vw;
}

.home .hero .hero-container .hero-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.home .hero .hero-container .hero-image img.desktop {
	display: none;
}

@media screen and (min-width: 576px) {
	.home .hero .hero-container .hero-image img.desktop {
		display: block;
	}
}

.home .hero .hero-container .hero-image img.mobile {
	display: block;
}

@media screen and (min-width: 576px) {
	.home .hero .hero-container .hero-image img.mobile {
		display: none;
	}
}

.home .hero .hero-container .hero-image iframe.desktop {
	display: none;
}

@media screen and (min-width: 576px) {
	.home .hero .hero-container .hero-image iframe.desktop {
		display: block;
	}
}

.home .hero .hero-container .hero-image iframe.mobile {
	display: block;
}

@media screen and (min-width: 576px) {
	.home .hero .hero-container .hero-image iframe.mobile {
		display: none;
	}
}

.home .hero .hero-container .hero-image .hero-video-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: -1;
}

.home .hero .hero-nav-left, .home .hero .hero-nav-right {
	position: absolute;
	top: 50%;
	height: clamp(60px, 6.81vw, 94px);
	max-width: 36px;
	width: 100%;
	cursor: pointer;
	transform: translateY(-50%);
}

.home .hero .hero-nav-left img, .home .hero .hero-nav-right img {
	height: 100%;
}

.home .hero .hero-nav-left {
	left: 20px;
}

.home .hero .hero-nav-left img {
	transform: rotate(180deg);
}

.home .hero .hero-nav-right {
	right: 20px;
}

.home .home-we-are {
	background-color: #00192F;
	padding-top: 78px;
	padding-bottom: 78px;
	padding-left: clamp(20px, 5vw, 80px);
	padding-right: clamp(20px, 5vw, 80px);
}

.home .home-we-are .hwa-container {
	display: flex;
	max-width: 1428px;
	margin-left: auto;
	margin-right: auto;
	flex-direction: column;
}

@media screen and (min-width: 576px) {
	.home .home-we-are .hwa-container {
		flex-direction: row;
	}
}

.home .home-we-are .hwa-container .hwa-left {
	width: 215px;
}

.home .home-we-are .hwa-container .hwa-left img {
	width: 215px;
	height: auto;
}

.home .home-we-are .hwa-container .hwa-right {
	margin-top: 20px;
}

@media screen and (min-width: 576px) {
	.home .home-we-are .hwa-container .hwa-right {
		margin-top: 0;
		width: calc(100% - 215px);
		padding-left: 70px;
	}
}

.home .home-we-are .hwa-container .hwa-right h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: #ff025b;
	margin: 0;
	line-height: 1;
	margin-bottom: 10px;
}

.home .home-we-are .hwa-container .hwa-right h2.desktop {
	display: none;
}

@media screen and (min-width: 940px) {
	.home .home-we-are .hwa-container .hwa-right h2.desktop {
		display: block;
	}
	.home .home-we-are .hwa-container .hwa-right h2.mobile {
		display: none;
	}
}

.home .home-we-are .hwa-container .hwa-right p {
	font-family: 'Montserrat';
	font-size: clamp(20px, 2.25vw, 28px);
	color: #000000;
	margin: 0;
	line-height: 1.23;
	color: #B2C7DC;
}

.home .home-our-process {
	background-color: #FAF6EB;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: clamp(20px, 5vw, 80px);
	padding-right: clamp(20px, 5vw, 80px);
}

.home .home-our-process .hop-container {
	max-width: 1428px;
	margin-left: auto;
	margin-right: auto;
	font-family: 'Montserrat';
	font-size: clamp(20px, 2.25vw, 28px);
	color: #000000;
	line-height: 1.23;
}

.home .home-our-process .hop-container h2 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 50px;
	color: #00192F;
	margin: 0;
	margin-bottom: 60px;
}

.home .home-our-process .hop-container h2 span {
	color: #ff025b;
}

.home .home-our-process .hop-container .hop-social {
	display: flex;
	margin-bottom: 60px;
	align-items: center;
}

.home .home-our-process .hop-container .hop-social a {
	width: 52px;
	height: 52px;
	display: block;
	margin-left: 35px;
}

.home .home-our-process .hop-container .hop-social a img {
	object-fit: cover;
}

.home .home-our-process .hop-container .hop-content p {
	margin: 0;
}

.home .home-our-process .hop-container .hop-content a {
	color: #ff025b;
	font-weight: bold;
}

.discipline {
	background-color: #B2C7DC;
}

.who-we-are-page {
	background-color: #B2C7DC;
}

/*# sourceMappingURL=style.css.map */