/* PICAchef microsite, based on the discover.escoffier.edu template. Plain CSS, no build step. */

/* Fonts (self-hosted on picachef.com) */
@font-face {
	font-family: 'Gotham Pro';
	src: url(../fonts/GothamPro.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url(../fonts/GothamPro-Medium.ttf) format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url(../fonts/GothamPro-Bold.ttf) format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Larken';
	src: url(../fonts/Larken-Variable.ttf) format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* Brand tokens */
:root {
	--color-white: #fff;
	--color-text: #000;
	--color-primary: #003057;        /* PICA navy */
	--color-primary-dark: #001d36;
	--color-accent: #f15a4f;         /* PICA coral */
	--color-accent-dark: #c9392f;
	--color-gold: #d3ba82;
	--color-cream: #f6f1e6;
	--color-gray: #f4f4f4;
	--font-heading: 'Gotham Pro', Arial, sans-serif;
	--font-heading-bold: 'Gotham Pro', Arial, sans-serif;
	--font-display: 'Larken', Georgia, serif;
	--font-body: 'Gotham Pro', Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	background: #fff;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}
h1, h2, h3, h4 { margin: 0; }
ul { margin: 0; padding: 0; }
img, svg, video { max-width: 100%; }
a { color: inherit; transition: background .25s ease, color .25s ease; }
p { color: #333; font-family: var(--font-body); font-weight: 400; margin: 0; }
sup { font-size: .7em; line-height: 0; }

/* Minimal grid (Bootstrap 4 subset used by the template) */
.container { margin: 0 auto; padding: 0 15px; width: 100%; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > * { padding: 0 15px; position: relative; width: 100%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.d-flex { display: flex; }
.d-none { display: none; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.label-hidden {
	clip: rect(0 0 0 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) {
	.container { max-width: 720px; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-md-1 { margin-left: 8.333333%; }
	.offset-md-4 { margin-left: 33.333333%; }
}
@media (min-width: 992px) {
	.container { max-width: 960px; }
	.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.offset-lg-0 { margin-left: 0; }
	.offset-lg-1 { margin-left: 8.333333%; }
	.offset-lg-6 { margin-left: 50%; }
}
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* Page wrapper */
.page-wrapper {
	box-shadow: 0 13px 18px rgba(0, 0, 0, .24);
	margin: auto;
	max-width: 1600px;
	overflow: clip;
	padding-top: 64px;
	width: 100%;
}
.page-wrapper .iti { display: block; position: relative; width: 100%; }
.page-wrapper .iti__tel-input.error,
.page-wrapper input.error { border-color: var(--color-accent); color: var(--color-accent); }
@media (min-width: 992px) { .page-wrapper { padding-top: 0; } }

/* Inputs */
select,
input[type="text"],
input[type="tel"],
input[type="email"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: var(--color-white);
	border: 2px solid var(--color-text);
	border-radius: 0;
	color: var(--color-text);
	font: 500 13px var(--font-heading);
	margin: 0 0 9px;
	overflow: hidden;
	padding: 11px 27px 11px 13px;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	z-index: 2;
}
select::placeholder,
input::placeholder { color: #999; font-size: 14px; letter-spacing: .5px; opacity: 1; text-transform: uppercase; }
select:focus, input:focus { outline: none; }
@media (min-width: 768px) {
	select, input[type="text"], input[type="tel"], input[type="email"] { font-size: 16px; margin: 0 0 12px; padding: 14px 21px; }
}

/* Section title bar */
.title {
	align-items: center;
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	font-size: 16px;
	justify-content: center;
	letter-spacing: 1.5px;
	line-height: 22px;
	padding: 19px 15px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	z-index: 12;
}
.title::before {
	background: var(--color-primary);
	bottom: 0;
	content: '';
	left: -1000px;
	position: absolute;
	right: -1000px;
	top: 0;
}
.title span { position: relative; z-index: 3; }
@media (min-width: 992px) {
	.title { font-size: 20px; line-height: 26px; }
	.title::before { display: none; }
}

/* Buttons */
.btn {
	align-items: center;
	background: var(--color-accent);
	border: none;
	border-radius: 0;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 1.5px;
	line-height: 19px;
	padding: 15px 10px;
	text-decoration: none;
	text-transform: uppercase;
}
.btn:focus, .btn:active { box-shadow: none; outline: none; }
.btn:hover { background: var(--color-accent-dark); color: var(--color-white); }
.btn[disabled] { cursor: default; opacity: .6; }
@media (min-width: 768px) { .btn { font-size: 15px; padding: 20px 10px; } }

/* Social */
.social { display: flex; }
.social a {
	align-items: center;
	border-radius: 50%;
	color: #262626;
	display: flex;
	height: 30px;
	justify-content: center;
	margin: 0 0 0 16px;
	position: relative;
	top: 0;
	transition: top .25s ease;
	width: 30px;
}
.social a:first-child { margin: 0; }
.social a:hover { top: -3px; }
.social a svg { height: 44px; width: 44px; }
@media (min-width: 992px) { .social a { height: 40px; margin: 0 0 0 10px; width: 40px; } }
@media (min-width: 1200px) { .social a { height: 44px; margin: 0 0 0 12px; width: 44px; } }

/* Select */
.select { background: var(--color-white); margin: 0 0 9px; position: relative; width: 100%; }
.select::before {
	background: url("../img/icon-arrow-select-less.svg") no-repeat;
	background-size: contain;
	content: '';
	height: 10px;
	position: absolute;
	right: 13px;
	top: 15px;
	width: 17px;
	z-index: 3;
}
.select select { background: none; margin: 0; }
.select select:invalid { color: #999; }
.select select.error { border-color: var(--color-accent); }
.select select option { color: var(--color-text); }
@media (min-width: 768px) { .select { margin: 0 0 12px; } .select::before { height: 14px; right: 22px; top: 23px; width: 20px; } }

/* Phone */
.phone { color: var(--color-text); font: 700 14px var(--font-heading); letter-spacing: .5px; text-transform: uppercase; }
.phone a { color: var(--color-accent); text-decoration: none; }
.phone a:hover { color: var(--color-accent-dark); }

/* Form */
.form {
	height: 100%;
	margin: 0 -15px;
	padding: 8px 15px 3px;
	position: relative;
	width: calc(100% + 30px);
	z-index: 10;
}
.form-fields { display: flex; flex-wrap: wrap; justify-content: space-between; position: relative; width: 100%; z-index: 12; }
.form-title { padding: 0 0 27px; }
.form-title div {
	color: var(--color-text);
	display: block;
	font: 700 28px/32px var(--font-heading);
	text-align: center;
	text-transform: uppercase;
}
.form-title p { color: #333; display: none; font: 400 15px/22px var(--font-body); margin: 0; }
.form .disclaimer { font: 400 11px/15px var(--font-body); margin-top: 1em; position: relative; }
.form .disclaimer a { color: #212529; text-decoration: underline; }
.form .disclaimer a:hover { text-decoration: none; }
.form #form { position: absolute; top: 0; }
.form-footer { align-items: center; display: flex; justify-content: space-between; padding: 2px 0 20px; width: 100%; }
.form-steps { height: auto; padding: 28px 15px 20px; }
.form-steps input[type=email],
.form-steps input[type=tel],
.form-steps input[type=text] { margin-bottom: 10px; padding: 10px 13px; }
.form-steps input::placeholder { font-size: 13px; }
.form-steps p { color: #000; font-size: 13px; line-height: 18px; margin: 0 0 13px; }
.form-steps p:last-child { margin-bottom: 0; }
.form-steps .select { margin: 0 0 10px; }
.form-steps .select::before { height: 15px; right: 18px; width: 15px; }
.form-steps .select select { color: #000; }
.form-steps .select select:invalid { color: #999; }
.form-steps .form-title { padding: 0 0 12px; }
.form-steps .btn { font-size: 15px; width: calc(50% - 9px); }
.form-message { padding: 20px 0; text-align: center; }
.form-message div { font: 700 24px/30px var(--font-heading); text-transform: uppercase; }
.form-message p { font: 400 15px/22px var(--font-body); margin-top: 10px; }
.form-message.error div { color: var(--color-accent); }

@media (min-width: 768px) {
	.form { margin: 0; max-width: 529px; padding: 34px 33px 13px; width: 100%; }
	.form-title div { font-size: 38px; line-height: 44px; }
	.form-title p { display: block; }
	.form-steps { max-width: 530px; padding: 36px 25px 30px; }
	.form-steps input[type=email],
	.form-steps input[type=tel],
	.form-steps input[type=text] { font-size: 16px; padding: 12px 18px; }
	.form-steps input.half { width: calc(50% - 5px); }
	.form-steps .form-title { padding: 0 0 44px; }
	.form-steps .btn { padding: 17px 10px; }
}
@media (min-width: 992px) {
	.form { padding: 54px 53px 33px; }
	.form-title div { font-size: 48px; line-height: 54px; text-align: left; }
	.form-steps { padding: 40px 25px 40px; }
	.form-steps input::placeholder { font-size: 14px; }
}

/* Header (desktop) */
.header {
	align-items: center;
	background: var(--color-white);
	display: none;
	padding: 10px 0 16px;
	position: relative;
	z-index: 20;
}
.header .container { align-items: center; display: flex; flex-direction: column; justify-content: space-between; }
.header .logo { padding: 0 0 16px; }
.header .logo img { display: block; height: auto; width: 240px; }
@media (min-width: 768px) {
	.header { height: 69px; padding: 0; }
	.header .container { flex-direction: row; }
	.header .logo { padding: 0; }
}
@media (min-width: 992px) { .header { display: flex; } }

/* Header (mobile, fixed) */
.header-fixed {
	align-items: center;
	background: var(--color-white);
	display: flex;
	flex-direction: column;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: top .25s ease;
	z-index: 101;
}
.header-fixed .container { align-items: center; display: flex; padding-bottom: 10px; padding-top: 10px; }
.header-fixed .logo img { display: block; height: auto; width: 130px; }
.header-fixed .phone { color: var(--color-accent); display: flex; margin-left: auto; margin-right: 15px; }
.header-fixed .phone svg { height: 16px; width: auto; }
.header-fixed .btn-scroll { display: flex; font-size: 11px; letter-spacing: 1px; padding: 12px 10px; white-space: nowrap; }
@media (min-width: 400px) { .header-fixed .phone svg { height: 24px; } }
@media (min-width: 575px) { .header-fixed .phone { margin-right: 30px; } }
@media (min-width: 768px) { .header-fixed .btn-scroll { font-size: 15px; } }
@media (min-width: 992px) { .header-fixed { display: none; } }

/* Hero / form screen */
.form-screen {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	z-index: 12;
}
.form-screen-title {
	background: rgba(0, 48, 87, .85);
	padding: 24px 0 26px;
	position: relative;
	z-index: 9;
}
.form-screen-title h1 {
	color: var(--color-white);
	font: 500 34px/40px var(--font-display);
	letter-spacing: .5px;
	margin: 0;
	text-transform: uppercase;
}
.form-screen-title-span {
	color: var(--color-gold);
	display: block;
	font: 700 15px/22px var(--font-heading);
	letter-spacing: .5px;
	padding: 10px 0 0;
	text-transform: none;
}
.form-screen-body { padding-top: 300px; position: relative; }
.form-screen-body > .container { position: relative; z-index: 9; }
.form-screen-bg {
	height: 640px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.form-screen-bg img { display: block; height: 100%; object-fit: cover; object-position: center top; width: 100%; }
.form-screen-bg::after {
	background: rgba(0, 48, 87, .2);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
@media (min-width: 575px) {
	.form-screen-body { padding-top: 0; }
	.form-screen-bg { bottom: 0; height: auto; }
}
@media (min-width: 768px) {
	.form-screen-title { padding: 32px 0 36px; }
	.form-screen-title h1 { font-size: 48px; line-height: 54px; }
	.form-screen-title-span { font-size: 19px; line-height: 28px; }
	.form-screen-body { padding: 40px 0; }
}
@media (min-width: 992px) {
	.form-screen-title { padding: 40px 0 48px; }
	.form-screen-title h1 { font-size: 56px; line-height: 64px; }
	.form-screen-title-span { font-size: 22px; line-height: 30px; padding-top: 14px; }
	.form-screen-body { display: flex; align-items: center; min-height: 640px; padding: 60px 0; }
	.form-screen-body > .container { flex: 1; }
}
@media (min-width: 1200px) {
	.form-screen-title h1 { font-size: 64px; line-height: 72px; }
	.form-screen-body { min-height: 700px; }
}

/* Bottom form screen */
.form-screen-bottom { background: url("../img/bg-bottom-vancouver.jpg") no-repeat center; background-size: cover; padding: 150px 0 163px; }
.form-screen-bottom .form { padding: 25px 11px 9px; }
.form-screen-bottom .form.form-steps { padding: 28px 15px 20px; }
@media (min-width: 768px) {
	.form-screen-bottom { padding: 60px 0; }
	.form-screen-bottom .form { padding: 34px 33px 13px; }
	.form-screen-bottom .form.form-steps { padding: 36px 25px 30px; }
}
@media (min-width: 992px) {
	.form-screen-bottom { padding: 90px 0; }
	.form-screen-bottom .form { padding: 54px 49px 34px; }
	.form-screen-bottom .form.form-steps { padding: 40px 25px 40px; }
}

/* Advantages */
.advantages { padding: 52px 26px 65px; position: relative; }
.advantage {
	align-items: center;
	background: var(--color-gray);
	display: flex;
	flex-direction: column;
	margin: 0 0 11px;
	min-height: 222px;
	padding: 10px 16px 16px;
	position: relative;
	text-align: center;
	z-index: 9;
}
.advantage-icon { align-items: center; color: var(--color-gold); display: flex; height: 88px; justify-content: center; padding: 12px 0 6px; }
.advantage-icon svg { display: block; height: 60px; width: 60px; }
.advantage h3 { color: var(--color-primary); font-size: 18px; font-weight: 700; letter-spacing: 1px; line-height: 26px; text-transform: uppercase; }
.advantage p { color: #353c4d; font: 400 14px/20px var(--font-body); margin: auto 0; padding-top: 8px; }
@media (min-width: 768px) {
	.advantages { padding: 52px 0 22px; }
	.advantage { margin: 0 0 30px; min-height: 240px; }
	.advantage-icon { height: 98px; padding: 0 0 10px; }
	.advantage h3 { font-size: 20px; line-height: 28px; }
}
@media (min-width: 992px) {
	.advantages-wrapper { margin: 0 0 30px; }
	.advantage { margin: 0; min-height: 100%; }
}

/* Programs grid */
.programs-grid { position: relative; z-index: 99; }
.programs-grid-wrapper {
	background: var(--color-white);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 36px 0 45px;
	position: relative;
}
.programs-grid-wrapper::before { background: var(--color-white); bottom: 0; content: ''; left: 0; position: absolute; right: 0; top: 0; z-index: 3; }
.programs-grid-wrapper::after {
	border-radius: 50%;
	box-shadow: 0 0 120px rgba(0, 0, 0, .2);
	content: '';
	height: 60px;
	left: 0;
	position: absolute;
	right: 0;
	top: calc(100% - 60px);
	z-index: 2;
}
.programs-grid-item {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 260px;
	margin: 0 0 20px;
	position: relative;
	transition: all .25s ease;
	width: 100%;
	z-index: 4;
}
.programs-grid-item > a { display: block; height: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 9; }
.programs-grid-item h3 {
	align-items: center;
	background: var(--color-white);
	bottom: 30px;
	color: var(--color-text);
	display: flex;
	font: 700 16px/24px var(--font-heading);
	height: 100px;
	letter-spacing: 1px;
	justify-content: center;
	left: 30px;
	margin: 0;
	padding: 15px 14px;
	position: absolute;
	right: 30px;
	text-align: center;
	text-transform: uppercase;
}
.programs-grid-item .programs-grid-item-link { color: #fff; display: inline; position: static; text-decoration: underline; }
.programs-grid-item .programs-grid-item-link:hover { text-decoration: none; }
@media (min-width: 380px) { .programs-grid-item { height: 350px; } }
@media (min-width: 768px) {
	.programs-grid-wrapper { flex-direction: row; }
	.programs-grid-item { margin: 0 20px 40px; width: calc(50% - 40px); }
	.programs-grid-item h3 { bottom: 70px; font-size: 17px; height: 130px; line-height: 26px; padding: 15px 16px; }
}
@media (min-width: 992px) {
	.programs-grid-wrapper { margin-bottom: 80px; padding: 80px 60px 60px; }
	.programs-grid-wrapper::after { box-shadow: 0 0 230px rgba(0, 0, 0, .2); height: 90px; top: calc(100% - 115px); }
	.programs-grid-item > a { bottom: 0; height: auto; }
	.programs-grid-item h3 { bottom: 50px; font-size: 18px; left: 50px; line-height: 28px; padding: 15px; right: 50px; }
}
@media (min-width: 1200px) {
	.programs-grid-item { height: 450px; }
	.programs-grid-item h3 { bottom: 70px; font-size: 20px; left: 75px; padding: 15px 20px; right: 75px; }
}

/* Student quote tile in the programs grid */
.programs-grid-quote {
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 0 20px;
	padding: 30px 28px;
	z-index: 4;
}
.programs-grid-quote::before {
	color: var(--color-gold);
	content: '\201C';
	display: block;
	font: 400 110px/.55 var(--font-display);
	margin: 0 0 22px;
}
.programs-grid-quote p { color: var(--color-white); font: 400 15px/24px var(--font-body); margin: 0; }
.programs-grid-quote cite { color: var(--color-gold); display: block; font: 700 13px var(--font-heading); font-style: normal; letter-spacing: 1.5px; margin: 18px 0 0; text-transform: uppercase; }
@media (min-width: 768px) { .programs-grid-quote { margin: 0 20px 40px; padding: 36px 34px; } }
@media (min-width: 1200px) { .programs-grid-quote { padding: 40px 48px; } .programs-grid-quote p { font-size: 16px; line-height: 26px; } }

/* Flip cards */
.flip { display: inline-block; position: relative; }
.flip .front, .flip .back {
	color: var(--color-white);
	display: flex;
	padding: 15px;
	transform: rotate3d(0, 1, 0, 0);
	transition-duration: .5s;
	transition-property: transform;
	width: 100%;
}
.flip .front { background-position: center; background-repeat: no-repeat; background-size: cover; height: 100%; transform: rotateY(0deg); }
.flip .back {
	align-items: center;
	background: var(--color-primary);
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 0;
	transition: all .25s ease;
	width: 100%;
}
.flip .back h3 { background: none; color: var(--color-white); font-size: 16px; height: auto; line-height: 22px; margin: 0 0 12px; padding: 0; position: static; }
.flip .front p, .flip .back p { color: var(--color-white); font-size: 13px; line-height: 19px; }
.flip:hover .front { transform: rotate3d(0, 1, 0, -90deg); }
.flip:hover .back { opacity: 1; }
@media (min-width: 768px) {
	.flip { margin-bottom: 0; }
	.flip .front, .flip .back { padding: 25px; }
	.flip .back { height: 306px; top: 22px; }
}
@media (min-width: 992px) {
	.flip { margin-bottom: 40px; }
	.flip .back { height: 100%; top: 0; }
	.flip .back h3 { font-size: 20px; line-height: 28px; }
	.flip .front p, .flip .back p { font-size: 15px; line-height: 22px; }
}

/* Employers */
.employers { overflow: hidden; position: relative; z-index: 13; }
.employers .title, .employers-logos { position: relative; z-index: 1; }
.employers .container { padding: 0; }
.employers-slider { margin: 0; }
.employers-logos { padding: 2px 15px 4px; position: relative; }
.employers-logo { align-items: center; display: flex; justify-content: center; margin: auto; padding-bottom: 42px; padding-top: 42px; }
.employers-logo img { display: block; height: auto; margin: auto; max-width: 170px; }
@media (min-width: 768px) {
	.employers { margin: 0 0 14px; }
	.employers .container { padding-left: 15px; padding-right: 15px; }
	.employers-slider { margin: 0 -15px; }
	.employers-logos { background: var(--color-white); padding: 2px 50px 4px; }
	.employers-logo img { max-width: calc(100% - 30px); }
}
@media (min-width: 992px) {
	.employers { margin: 0 0 84px; padding: 80px 0 0; }
}

/* Video */
.video { position: relative; }
.video .container { max-width: 100%; padding: 0; position: relative; z-index: 1; }
.video-wrapper { position: relative; z-index: 9; }
.video-wrapper iframe { aspect-ratio: 16 / 9; display: block; margin-bottom: -7px; position: relative; width: 100%; z-index: 12; }
.video-description { padding: 34px 30px 42px; position: relative; z-index: 12; }
.video-description p { color: #333; font: 400 16px/24px var(--font-body); margin: 0 0 18px; }
.video-description p:last-child { margin: 0; }
@media (min-width: 992px) {
	.video .container { max-width: 960px; padding-left: 15px; padding-right: 15px; }
	.video-description { padding: 47px 0 98px; }
}
@media (min-width: 1200px) { .video .container { max-width: 1140px; } }

/* Accreditations */
.accreditations { padding: 0 0 37px; position: relative; }
.accreditations .container { position: relative; z-index: 1; }
.accreditations-description { padding: 24px 0 22px; position: relative; z-index: 12; }
.accreditations-description p { color: #333; font: 400 16px/24px var(--font-body); margin: 0 0 18px; }
.accreditations-description p:last-child { margin: 0; }
.accreditations-logo { align-items: center; display: flex; padding: 16px 0; }
.accreditations-logo img { display: block; height: auto; margin: auto; max-width: 50%; }
@media (min-width: 768px) {
	.accreditations { padding: 0 0 126px; }
	.accreditations-logo { padding: 0; }
	.accreditations-logo img { max-width: 100%; }
}


/* Footer */
.footer { padding: 0 16px; }
.footer-main { padding: 57px 0 23px; }
.footer .logo { order: 1; padding-bottom: 28px; }
.footer .logo img { display: block; height: auto; width: 180px; }
.footer-link { order: 3; padding-bottom: 17px; }
.footer-link a { color: var(--color-text); font: 700 14px var(--font-heading); letter-spacing: .5px; text-decoration: none; text-transform: uppercase; }
.footer-link a:hover { color: var(--color-accent); }
.footer .phone { order: 2; padding-bottom: 28px; }
.footer .phone a { margin-left: 5px; }
.footer .social { order: 4; }
.footer .copy { padding: 0 0 58px; }
.footer .copy p { font: 400 12px/17px var(--font-body); margin: 0 0 28px; }
.footer .copy p:last-child { margin: 0; }
.footer .copy a { color: inherit; font-weight: normal; text-decoration: underline; }
@media (min-width: 768px) {
	.footer { padding: 0 0 10px; }
	.footer-main { padding: 20px 0; }
	.footer .logo { padding-bottom: 0; }
	.footer-link { order: 2; padding-bottom: 0; }
	.footer .phone { order: 3; padding-bottom: 0; }
	.footer .social { justify-content: center; padding-top: 17px; }
	.footer .copy { padding: 42px 0 68px; text-align: center; }
	.footer .copy p { font-size: 13px; line-height: 19px; margin: 0 0 16px; }
}
@media (min-width: 992px) {
	.footer .social { justify-content: flex-start; padding-top: 0; }
}

/* Thank-you page */
.thank-you-hero {
	background: url("../img/hero-chef-students.jpg") no-repeat center 30%;
	background-size: cover;
	padding: 49px 0 60px;
	position: relative;
}
.thank-you-hero::before {
	background: linear-gradient(270deg, rgba(0, 48, 87, .35) 0%, rgba(0, 29, 54, 1) 100%);
	bottom: 0;
	content: '';
	left: 0;
	opacity: .75;
	position: absolute;
	right: 0;
	top: 0;
}
.thank-you-hero .container { position: relative; z-index: 9; }
.thank-you-hero h1 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .5px;
	line-height: 42px;
	margin: 0 0 12px;
	max-width: 988px;
	text-transform: uppercase;
}
.thank-you-hero h2 {
	background: var(--color-white);
	color: var(--color-primary);
	font-family: var(--font-heading-bold);
	font-size: 18px;
	letter-spacing: .5px;
	line-height: 26px;
	margin: 0 0 24px;
	max-width: 868px;
	padding: 15px;
	text-transform: uppercase;
}
.thank-you-hero-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.thank-you-hero-nav a {
	align-items: center;
	background: var(--color-accent);
	color: var(--color-white);
	display: inline-flex;
	font-family: var(--font-heading-bold);
	font-size: 13px;
	height: 46px;
	letter-spacing: 1px;
	justify-content: center;
	text-decoration: none;
	text-transform: uppercase;
	width: calc(50% - 12px);
}
.thank-you-hero-nav a:hover { background: var(--color-accent-dark); }
.thank-you-hero-nav a svg { display: block; height: 25px; margin-right: 10px; width: 25px; }
.thank-you-body { padding: 40px 0 60px; }
.thank-you-body p { font: 400 16px/24px var(--font-body); margin: 0 0 16px; }
@media (min-width: 425px) {
	.thank-you-hero { padding: 49px 30px 60px; }
	.thank-you-hero-nav a { font-size: 15px; }
}
@media (min-width: 768px) {
	.thank-you-hero { padding: 100px 30px 60px; }
	.thank-you-hero h1 { font-size: 46px; line-height: 56px; }
	.thank-you-hero h2 { font-size: 24px; line-height: 32px; }
}
@media (min-width: 992px) {
	.thank-you-hero { padding: 80px 50px 120px; }
	.thank-you-hero h1 { font-size: 60px; line-height: 72px; margin: 0 0 24px; }
	.thank-you-hero h2 { font-size: 30px; line-height: 40px; padding: 19px; }
	.thank-you-hero-nav { flex-wrap: nowrap; }
	.thank-you-hero-nav a { font-size: 16px; height: 61px; width: 220px; }
	.thank-you-body { padding: 60px 0 90px; }
}

/* Back to top (mobile) */
.up {
	align-items: center;
	background: var(--color-primary);
	bottom: 20px;
	cursor: pointer;
	display: flex;
	height: 30px;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 20px;
	transition: opacity .25s ease;
	width: 30px;
	z-index: 99;
}
.up.current { opacity: 1; }
.up svg { height: 16px; transform: rotate(-90deg); width: 16px; }
@media (min-width: 992px) { .up { display: none; } }

/* intl-tel-input tweaks */
.iti__tel-input { padding-left: 52px !important; }

/* Form panel: cream card */
.form {
	background: var(--color-cream);
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}
.form-title div { color: var(--color-primary); }
.form-steps input[type=text],
.form-steps input[type=email],
.form-steps input[type=tel],
.form-steps .select select { border: 1px solid var(--color-gold); color: var(--color-primary); }
.form-steps .select { background: #fff; }
.form-steps .select select:invalid,
.form-steps input::placeholder { color: #8a7f6a; }
@media (max-width: 767px) {
	.form { border-radius: 0; box-shadow: none; }
}

/* Section background: washed-out texture behind the employers block, desktop only */
@media (min-width: 992px) {
	.employers { background: linear-gradient(rgba(255, 255, 255, .84), rgba(255, 255, 255, .84)), url("../img/texture-linen-greens.jpg") center / cover no-repeat; margin-bottom: 0; padding: 70px 0 60px; }
	.employers-logos { background: transparent; }
	.video { padding-top: 40px; }
}
