@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
	--tudor_black: #000100;
	--tudor_black_tint: #7f807f;
	--tudor_black_light: #e5e5e5;
	--carbon_steel: #101820;
	--drift_dust: #d7c9bb;
	--tudor_red: #d7272f;
	--tudor_dark_red: #8b181b;
	--tudor_light_red: #f04b53;
	--steelforge_blue: #1a3668;
	--steelforge_dark_blue: #0e1b33;
	--steelforge_light_blue: #7da1d4;
	--dusk_purple: #8e499a;
	--dusk_dark_purple: #461d4d;
	--dusk_light_purple: #c188bc;
}
html, body {
	height: 100%;
	margin: 0;
	background: none;
}
body {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 400;
	font-size: 16px;
	background-color: #fff;
	color: var(--tudor_black);
	line-height: 1.5;
	position: relative;
	margin: 0;
	box-sizing: border-box;
}
h1 {
	font-size: 2.625rem;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 600;
	color: var(--tudor_black);
}
p {
	margin-top: 0;
	margin-bottom: 0.75rem;
	margin-block-start: 0.75rem;
	margin-block-end: 0.75rem;
	line-height: 1.5;
}
a {
  color: var(--tudor_red);
  text-decoration: none;
}
a:hover {
	color: var(--tudor_dark_red);
}
hr {
	margin: 1rem 0;
	color: inherit;
	border: 0;
	border-top: var(--bs-border-width) solid var(--tudor_black);
	opacity: 0.25;
}

/***************************
	UNIVERSAL PADDING
***************************/
.ptb {
	padding: 80px 0;
}
.pt {
	padding-top: 80px;
}
.pb {
	padding-bottom: 80px;
}
@media (max-width: 991.98px) {
	.ptb {
		padding: 40px 0;
	}
	.pt {
		padding-top: 40px;
	}
	.pb {
		padding-bottom: 40px;
	}
}

/***************************
	BUTTONS
***************************/
.btn {
	font-weight: 400;
	padding: 0.5rem 1.75rem;
	border-radius: 30px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.btn:focus,.btn:active {
	outline: none !important;
	box-shadow: none;
}
.btn-primary {
	color: #fff;
	background-color: var(--tudor_red);
	border-color: var(--tudor_red);
}
.btn-primary:hover,
.btn-primary:focus {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
}
/***************************
	ACCORDION
***************************/
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  color: var(--tudor_black);
  text-align: left;
  background-color: #fff;
  border-bottom: 1px solid var(--tudor_black);
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--tudor_black);
  box-shadow: 0;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc2225'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.accordion-item {
  background-color: transparent;
  border: 0;
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/***************************
	MAIN NAV
***************************/
nav {
	z-index: 10000;
	padding: 1rem 0!important;
}
nav .nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color .05s ease-in-out,background-color .05s ease-in-out,border-color .05s ease-in-out;
	padding: 0.75rem 0;
	padding-right: 2rem !important;
}
nav .nav-link:last-child {
	padding-right: 0;
}
nav .nav-link:hover {
	color: red;
}
nav .nav-item:hover > .nav-link,
nav .nav-item:hover > .sub-menu {
	color: var(--tudor_red);
}
nav .nav-item .is-active,
nav .nav-item .nav-link:focus,
nav .nav-item .nav-link:active {
  color: var(--tudor_red) !important;
}
nav .dropdown-menu {
	position: absolute;
	z-index: 1000;
	display: none;
	padding: 0;
	margin: 0;
	font-size: 1rem;
	color: #fff;
	text-align: left;
	list-style: none;
	background-color: #fff;
	border: none;
	border-radius: 0;
	width: auto;
	white-space: nowrap;
}
nav .dropdown-menu .nav-link {
  font-size: 1rem;
	text-transform: none;
	padding: 0.5rem 1rem !important;
	color: var(--tudor_black);
}
nav .dropdown-menu .nav-link:hover {
	color: var(--tudor_red);
}
nav .nav-pills .nav-link.active,
nav .nav-pills .show > .nav-link {
  color: var(--tudor_red);
  background-color: transparent;
}
nav ul {
 margin-block-start:0;
}
nav ul li:not(:last-child) {
	margin-bottom: 0rem;
}
nav .dropdown-menu .nav-item {
	width: 100%;
	display: block;
}
nav .navbar-toggler {
	padding: 1rem;
  line-height: 1;
	background-color: transparent;
  border: 0;
  border-radius: 0;
  transition: var(--bs-navbar-toggler-transition);
}
.nav > li:last-child a {
  padding-right: 0 !important;
}
.navbar-toggler img {
	width: 24px;
}
/***** MOBILE NAVIGATION *****/
.offcanvas-start {
	top: 0;
	left: 0;
	border-right: 0;
	transform: translateX(-100%);
	background-color: var(--tudor_black);
}
.offcanvas .btn {
	padding: 1rem;
	font-size: 2rem;
  line-height: 1;
	background-color: var(--tudor_red);
  border: 0;
  border-radius: 0;
  transition: var(--bs-navbar-toggler-transition);
}
.offcanvas .btn img {
	width: 24px;
}
.offcanvas .btn:hover,
.offcanvas .btn:focus {
	background-color: var(--tudor_red);
}
.offcanvas .nav-link {
  display: block;
  font-size: 2rem;
	text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
	padding: 1rem !important;
}
.offcanvas .nav-link:hover {
	background-color: transparent;
	color: var(--tudor_red);
}
.offcanvas .nav-item:hover > .nav-link {
	background-color: transparent;
	color: var(--tudor_red);
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline: none;
	box-shadow: none;
}
@media (min-width: 992px) { 
	.dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 991.98px) {
  .main-nav {
		padding: 1rem 0;
  }
	.main-nav {
		background: rgba(0, 1, 0, 1);
	}
	.btn-menu-lg {
		display: none;
	}
	.btn-menu-sm {
		display: block;
	}
	.main-nav ul li:last-child {
		padding-right: 2rem;
	}
	.navigation-btns {
		display: none;
	}
}

/***************************
	BREADCRUMBS
***************************/
.breadcrumb {
	margin-bottom: 0;
	font-size: 0.8rem;
	color: var(--tudor_black);
	background-color: transparent;
	padding: 0.5rem 0;
}
.breadcrumb .breadcrumb__list {
	margin: 0;
	list-style-type: none;
}
.breadcrumb a {
	color: var(--tudor_black_tint);
	text-decoration: none;
	transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out;
}
.breadcrumb a:hover {
	color: var(--tudor_red);
}
.breadcrumb-item + .breadcrumb-item::before {
	float: left;
	content: "/";
	color: var(--tudor_black_tint);
}
@media (max-width: 991.98px) {
	.breadcrumb {
		display: none;
	}
}

/***************************
	HERO CAROUSEL
***************************/
.hero {
  height: 100vh;
  background-color: var(--tudor_black);
  color: #fff;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}
.hero .carousel-item {
  position: relative;
  height: 100vh;
}
.hero .carousel-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero .carousel-overlay {
  position: absolute;
  inset: 0;
	background: linear-gradient(180deg, rgba(0, 1, 0, 1) 0%, rgba(0, 1, 0, 0) 100%);
  z-index: 1;
}
.hero .carousel-caption {
	margin: 0;
	padding: 0;
	left: auto;
	right: auto;
	bottom: auto;
	text-align: left;
	position: relative;
	z-index: 2;
}
.hero .carousel-caption .this_is_pebroke {
	height: 80px;
}
.hero .carousel-caption h5,
.hero .carousel-caption p {
	color: #fff;
	line-height: 1.5;
}
.hero .carousel-caption h1 {
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 3rem;
}
@media (max-width: 991.98px) {
	.hero .carousel-caption .this_is_pebroke {
		width: 80%;
		height: auto;
	}
	.hero .carousel-caption p {
		display: none;
	}
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.25rem; 
  transform: translateX(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 9999px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
.scroll-indicator:hover {
	transform: translateX(-50%) translateY(-2px);
	background: rgba(0,0,0,.35);
	border-color: rgba(255,255,255,.8);
}
.scroll-indicator:active { 
	transform: translateX(-50%) translateY(0);
}
.scroll-indicator svg {
	animation: scroll-bounce 1.2s infinite;
}
@keyframes scroll-bounce {
	0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
/* Hide the indicator once the hero is mostly out of view */
#homeCarousel.hero.out-of-view .scroll-indicator{
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .scroll-indicator svg { animation: none; }
  .scroll-indicator { transition: none; }
}
/***************************
	PAGE TITLE
***************************/
.page-title {
  background-color: var(--tudor_black);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 500px;
}
.page-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-title .overlay {
  position: absolute;
  inset: 0;
	background: linear-gradient(180deg, rgba(0, 1, 0, 1) 0%, rgba(0, 1, 0, 0) 100%);
  z-index: 1;
}
.page-title h1 {
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
	.page-title {
		height: 400px;
	}
}

/***************************
	HOME PAGE
***************************/
/**** INTERGRATED MINING CAMPUS ****/
.intergrated-campus-home .item {
  min-height: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.intergrated-campus-home .item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 1s ease-in-out;
}
.intergrated-campus-home .item:hover img {
  transform: scale(1.05);
}
.intergrated-campus-home .item-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,2,0,1) 10%, rgba(0,1,0,0) 50%);
  z-index: 1;
}
.intergrated-campus-home .item-content {
  position: relative;
  z-index: 2;
  color: #fff;
	text-align: center;
}
.intergrated-campus-home .item-content h4 {
	color: #fff;
	transition: color 1s ease-in-out;
}
.intergrated-campus-home .item:hover h4 {
	color: var(--tudor_red);
}
.intergrated-campus-home p {
	margin: 0;
}
.intergrated-campus-home .icon {
	height: 60px;
}
@media (max-width: 991.98px) {
	.intergrated-campus-home .item {
    min-height: 320px;
  }
	.intergrated-campus-home .intergrated-campus-text {
		text-align: center;
	}
	.intergrated-campus-home .item-content p {
		padding-bottom: 2rem;
	}
}
/**** RECENT NEWS ****/
.recent-news-index {
	background-color: var(--tudor_black);
  background-image: url('../assets/svg/rose.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
}
.recent-news-index h2 {
	color: #fff;
}
.recent-news-index .media-home a {
	text-decoration: none;
}
.recent-news-index .media-home .card {
	border: none;
	top: 0;
	text-decoration: none;
	border-radius: 1rem;
	background-color: #fff;
}
.recent-news-index .media-home .card .card-img {
  overflow: hidden;
  height: 250px;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.recent-news-index .media-home .card .card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}
.recent-news-index .media-home .card:hover img {
  transform: scale(1.05);
}
.recent-news-index .media-home .card:hover .btn-primary {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
}
.recent-news-index .media-home .card .card-body {
	padding: 2rem 2rem 0 2rem;
	background-color: transparent;
}
.recent-news-index .media-home .card .card-body h4 {
	color: var(--tudor_black);
}
.recent-news-index .media-home .card:hover .card-body h4 {
	color: var(--tudor_red);
}
.recent-news-index .media-home .card .card-body p.card-text {
	color: var(--tudor_black_tint);
}
.recent-news-index .media-home .card .card-body p.date {
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
	text-transform: uppercase;
	margin:0;
}
.recent-news-index .media-home .card .card-footer {
	padding: 0 2rem 2rem 2rem;
	background-color: transparent;
	border: 0;
}
/**** ABOUT PEMBROKE ****/
.about-pembroke-home {
  background-image: url('../assets/images/shaping-the-future-of-steelmaking-coal.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  height: 800px;
  color: #fff;
}
.about-pembroke-home .about-pembroke-home-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.about-pembroke-home .story-card {
  background-color: #fff;
  color: var(--tudor_black);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0,1,0,0.5);
}
.about-pembroke-home .story-card .content {
  padding: 3rem;
}
.about-pembroke-home-image {
  display: none;
}
@media (max-width: 991.98px) {
	.intergrated-campus-home .intergrated-campus-home-text {
		text-align: center;
	}
  .about-pembroke-home {
    background-image: none;
    height: auto;
  }
  .about-pembroke-home .story-card {
    box-shadow: none;
    border-radius: 0;
  }
	.about-pembroke-home .story-card .content {
	  padding: 2rem 0 0;
		text-align: center;
	}
  .about-pembroke-home-image {
    display: block;
    width: 100%;
    height: 320px;
    background-image: url('../assets/images/shaping-the-future-of-steelmaking-coal.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
		border-radius: 1rem;
  }
}

/***************************
	MEDIA
***************************/
/* INDEX PAGE */
.media-index .btn-selected {
	background-color: var(--tudor_red);
	border: 1px solid var(--tudor_red);
	color: #fff;
}
.media-index .btn-not-selected {
	background-color: #fff;
	color: var(--tudor_black_light);
	border: 1px solid var(--tudor_black_light);
}
.media-index .btn-not-selected:hover,
.media-index .btn-not-selected:focus {
	background-color: var(--tudor_red);
	border: 1px solid var(--tudor_red);
	color: #fff;
}
.media-index a {
	text-decoration: none;
}
.media-index .card {
	border: none;
	top: 0;
	text-decoration: none;
  border-radius: 1rem;
	box-shadow: 5px 5px 20px 0px rgba(0,1,0,0.1);
	-webkit-box-shadow: 5px 5px 20px 0px rgba(0,1,0,0.1);
	-moz-box-shadow: 5px 5px 20px 0px rgba(0,1,0,0.1);
	background-color: transparent !important;
}
.media-index .card .card-img {
  overflow: hidden;
  height: 300px;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.media-index .card .card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}
.media-index .card:hover img {
  transform: scale(1.05);
}
.media-index .card .badge {
	display: inline-block;
	padding: 5px 12px;
	font-size: 0.8rem;
	font-weight: normal;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: var(--bs-badge-border-radius);
}
.media-index .card .text-bg-primary {
	color: #fff !important;
	background-color: var(--dusk_purple) !important;
}
.media-index .card:hover .btn-primary {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
}
.media-index .card .card-body {
	padding: 2rem 2rem 0 2rem;
	background-color: transparent;
}
.media-index .card .card-body h4 {
	color: var(--tudor_black);
	transition: color 1s ease-in-out;
}
.media-index .card:hover .card-body h4 {
	color: var(--tudor_red);
}
.media-index .card .card-body p.card-text {
	color: var(--tudor_black_tint);
}
.media-index .card .card-body p.date {
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
	text-transform: uppercase;
}
.media-index .card .card-footer {
	padding: 0 2rem 2rem 2rem;
	background-color: transparent;
	border: 0;
}
nav.pager {
	display: none!important;
}
/* SHOW PAGE */
.media-show-header h1 {
	color: var(--tudor_black);
}
.media-show-header p.date {
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
	text-transform: uppercase;
}
.media-show-header .badge {
	display: inline-block;
	padding: 5px 12px;
	font-size: 0.8rem;
	font-weight: normal;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: var(--bs-badge-border-radius);
}
.media-show-header  .text-bg-primary {
	color: #fff !important;
	background-color: var(--dusk_purple) !important;
}
.media-field-image img {
  width: 100%;
  height: auto;
	border-radius: 1rem;
}
.media-field-image .caption {
	margin-top: 0.5rem;
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
}
.media-show figure {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
}
.media-show p {
	line-height: 1.65;
}
.media-show picture img {
  width: 100%;
  height: auto;
	margin-top: 1rem;
	border-radius: 1rem;
}
.media-show figcaption {
	margin-top: 0.5rem;
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
	margin-bottom: 1rem;
}
.media-show .yt {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
	margin-bottom: 1rem;
}
.media-show .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* SHOW OTHER MEDIA */
.media-show-other {
	background-image:
	  url('../assets/svg/rose_dark_purple.svg'),
	  linear-gradient(145deg, rgba(70,29,77,1) 35%, rgba(215,39,47,1) 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed;
  position: relative;
}
.media-show-other h2 {
	color: #fff;
}
.media-show-other .media-other a {
	text-decoration: none;
}
.media-show-other .media-other .card {
	border: none;
	top: 0;
	text-decoration: none;
	border-radius: 1rem;
	background-color: #fff;
}
.media-show-other .media-other .card .card-img {
  overflow: hidden;
  height: 250px;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.media-show-other .media-other .card .card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}
.media-show-other .media-other .card:hover img {
  transform: scale(1.05);
}
.media-show-other .media-other .card:hover .btn-primary {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
}
.media-show-other .media-other .card .card-body {
	padding: 2rem 2rem 0 2rem;
	background-color: transparent;
}
.media-show-other .media-other .card .card-body h4 {
	color: var(--tudor_black);
}
.media-show-other .media-other .card:hover .card-body h4 {
	color: var(--tudor_red);
}
.media-show-other .media-other .card .card-body p.card-text {
	color: var(--tudor_black_tint);
}
.media-show-other .media-other .card .card-body p.date {
	color: var(--tudor_black_tint);
	font-size: 0.8rem;
	text-transform: uppercase;
	margin:0;
}
.media-show-other .media-other .card .card-footer {
	padding: 0 2rem 2rem 2rem;
	background-color: transparent;
	border: 0;
}
@media (max-width: 991.98px) {
	.media-show-header {
		text-align: center;
	}
	.media-show-header h1 {
		font-size: 2rem;
	}
}
/***************************
	EXECUTIVES
***************************/
.executive-index a {
	text-decoration: none;
}
.executive-index .card {
	border: 0;
	top: 0;
	text-decoration: none;
	border-radius: 0;
}
.executive-index .card img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	transition: all 0.5s ease;
}
.executive-index .card:hover img {
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
	filter: grayscale(0%);
}
.executive-index .img-thumbnail {
	padding: 0;
	background-color: none;
	border: 0;
	border-radius: 0;
	max-width: 100%;
	height: auto;
}
.executive-index .text h4,
.executive-index .text p {
	color: #fff;
	margin: 0;
	transition: all 0.5s ease;
}
.executive-index .card:hover h4 {
	color: var(--tudor_red);
}
.executive-index .text {
	padding: 1rem;
	background-color: var(--tudor_black);
	text-align: center;
}

/***************************
	OLIVE DOWNS
***************************/
.world-class-steelmaking img {
	height: 80px;
	margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
	.world-class-steelmaking .row-cols-lg-7 > * {
		flex: 0 0 auto;
		width: calc(100% / 7);
	}
}
/**** MAP ****/
.olive-downs-map {
  position: relative;
  background-color: #e1e1e1;
}
.olive-downs-map .content-text {
	padding: 80px 0;
	color: var(--tudor_black);
	z-index: 2;
}
.olive-downs-map .content-text .row:not(:last-child) {
	border-bottom: 1px solid #fff;
	margin-bottom: 1rem;
}
.olive-downs-map .content-text h4 {
	color: var(--tudor_black);
}
.olive-downs-map .content-text img {
	height: 60px;
}
.olive-downs-map .map-image {
	background-image: url('../assets/odm/odc-map.svg'); 
	background-size: cover;
	background-position: center;
	min-height: 900px;
}
@media (max-width: 991.98px) {
	.olive-downs-map .map-image {
		min-height: 500px;
	}
}
/**** Highlights ****/
.olive-downs-highlights {
	background-color: var(--tudor_black);
  background-image: url('../assets/svg/rose.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
}
.olive-downs-highlights h2 {
	color: #fff;
}
.olive-downs-highlights .content {
	background-color: #fff;
	border-radius: 1rem;
	padding: 2rem;
	transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
.olive-downs-highlights .content:hover {
	background-color: var(--dusk_purple);
}
.olive-downs-highlights .content h5,
.olive-downs-highlights .content p {
	transition: color 0.5s ease-in-out;
}
.olive-downs-highlights .content:hover h5,
.olive-downs-highlights .content:hover p {
	color: #fff;
}
/**** Benefits to the Region ****/
.odc-region-benefits img {
	width: 32px;
}
.odc-region-benefits #imageCarousel{
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
}
.odc-region-benefits #imageCarousel .carousel-inner,
.odc-region-benefits #imageCarousel .carousel-item{
  height: 100%;
}
.odc-region-benefits #imageCarousel .carousel-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/**** Value Chain ****/
.odm-value-chain .item {
  min-height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.odm-value-chain .item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 1s ease-in-out;
}
.odm-value-chain .item:hover img {
  transform: scale(1.05);
}
.odm-value-chain .item-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,2,0,1) 10%, rgba(0,1,0,0) 50%);
  z-index: 1;
}
.odm-value-chain .item-content {
  position: relative;
  z-index: 2;
  color: #fff;
	text-align: center;
}
.odm-value-chain .item-content h4 {
	color: #fff;
}
.odm-value-chain p {
	margin: 0;
	transition: color 1s ease-in-out;
}
.odm-value-chain .item:hover p {
	color: var(--tudor_red);
}
/**** Olive Downs Carousel ****/
#oliveDownsCarousel {
  height: 800px;
  background-color: var(--tudor_red);
  color: #fff;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#oliveDownsCarousel .carousel,
#oliveDownsCarousel .carousel-inner,
#oliveDownsCarousel .carousel-item {
  height: 100%;
}
#oliveDownsCarousel .carousel-item {
  position: relative;
  height: 800px;
}
#oliveDownsCarousel .carousel-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#oliveDownsCarousel .carousel-overlay {
  position: absolute;
  inset: 0;
	background: linear-gradient(90deg, rgba(0, 1, 0, 1) 0%, rgba(0, 1, 0, 0) 100%);
  z-index: 1;
}
#oliveDownsCarousel h4 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #fff;
}
#oliveDownsCarousel p {
	color: #fff;
	margin-bottom: 0;
}
#oliveDownsCarousel .carousel-caption {
	margin: 0;
	padding: 0;
	left: auto;
	right: auto;
	bottom: auto;
	text-align: left;
	position: relative;
	z-index: 2;
}
.odc-overview table {
	border-color: var(--tudor_black_tint);
}
.odc-overview table tbody tr td:first-child {
	font-weight: bold;
	background-color: var(--tudor_black_light);
}
@media (max-width: 991.98px) {
	.olive-downs-map .content-text {
		padding: 40px 0;
	}
	.olive-downs-map {
		height: 100%;
	}
	.olive-downs-map .content-img--sm {
		display: block;
	  background-position: center;
	}
	.odc-region-benefits .odc-region-benefits-text {
		text-align: center;
	}
	.odc-region-benefits #imageCarousel{
	  height: 320px;
	}
	#oliveDownsCarousel,
	#oliveDownsCarousel .carousel-item {
	  height: 600px;
	}
}

/***************************
	ABOUT
***************************/
.our-story-section img {
	height: 80px;
}
.our-story-section #imageCarousel {
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
}
.our-story-section #imageCarousel .carousel-inner,
.our-story-section #imageCarousel .carousel-item {
  height: 100%;
}
.our-story-section #imageCarousel .carousel-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-our-commitment {
	background-color: var(--tudor_black);
  background-image: url('../assets/svg/rose.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
}
.about-our-commitment h2,
.about-our-commitment h5,
.about-our-commitment p{
	color: #fff;
}
.about-our-commitment .our-commitment-icon {
	height: 80px;
}
.about-our-aspirations img {
	height: 80px;
}
.about-page-odc {
  background-image: url('../assets/about/about-odc.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
	height: 800px;
  color: #fff;
}
.about-page-odc .about-page-odc-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.about-page-odc .story-card {
  background-color: #fff;
  color: var(--tudor_black);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0,1,0,0.5);
}
.about-page-odc .story-card .content {
	padding: 3rem;
}
.about-page-odc-image {
	display: none;
}
@media (max-width: 991.98px) {
  .our-story-section #imageCarousel {
		height: 320px;
		min-height: 0;
   }
	 .our-story-section .our-story-text {
		 text-align: center;
	 }
	.about-page-odc {
    background-image: none;
    height: auto;
	}
  .about-page-odc .story-card {
    box-shadow: none;
    border-radius: 0;
  }
	.about-page-odc .story-card .content {
	  padding: 2rem 0 40px 0;
		text-align: center;
	}
	.about-page-odc-image {
		display: block;
		width: 100%;
		height: 300px;
	  background-image: url('../assets/images/about-odc.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
		border-radius: 1rem;
	}
}

/***************************
	COMMUNITY HUB
***************************/
.community-hub .card {
	position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: none;
  border-radius: 0;
}
.community-hub .card-img-overlay {
	background: linear-gradient(0deg,rgba(0, 1, 0, 1) 0%, rgba(0, 1, 0, 0) 100%);
  color: #fff;
	border-radius: 1rem;
}
.community-hub .card-title {
  color: #fff;
  font-weight: bold;
}
.community-hub p.date-text {
  color: #fff;
	margin: 0;
	font-size: .8rem;
}
.community-hub .card-img {
  overflow: hidden;
	border-radius: 1rem;
}
.community-hub .card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
	transition: transform 1s ease-in-out;
}
.community-hub .card:hover img {
  transform: scale(1.05);
}
.community-hub .card h4 {
  transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.community-hub .card:hover h4 {
	color: var(--tudor_red);
}
.community-hub .row.community-hub {
  align-items: stretch;
}
/* Right column stacking */
.community-hub .col-lg-4.d-flex.flex-column > .card {
  min-height: 200px;
}
.community-hub .col-lg-4.d-flex.flex-column > .card:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* Left main card height adjustment */
.community-hub .col-lg-8 .card {
  min-height: 400px;
}
.community-hub .col-lg-8 h4 {
	font-size: 1.75rem;
}
.community-hub .col-lg-8 p.date-text {
	font-size: 1rem;
}
.community-hub .col-lg-4 h4 {
	font-size: 1.05rem;
}
.community-hub .col-lg-8 .card .content  {
	padding: 1rem;
}
.community-hub .col-lg-4 .card .content {
	padding: 0.5rem;
}
/**** About Community Section ****/		
.about-community-section .icon {
	height: 80px;
}
.about-community-section #imageCarousel {
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
}
.about-community-section #imageCarousel .carousel-inner,
.about-community-section #imageCarousel .carousel-item {
  height: 100%;
}
.about-community-section #imageCarousel .carousel-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/**** Community Partnership Fund ****/
.community-partnership-fund {
  background-image: url('../assets/community/community-expo-3.webp');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  height: 800px;
  color: #fff;
}
.community-partnership-fund .community-partnership-fund-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.community-partnership-fund .story-card {
  background-color: #fff;
  color: var(--tudor_black);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0,1,0,0.5);
}
.community-partnership-fund .story-card .content {
  padding: 3rem;
}
.community-partnership-fund-image {
  display: none;
}
/**** Community SIMP ****/
.community-simp-section {
	background-image:
	  url('../assets/svg/rose_dark_purple.svg'),
	  linear-gradient(145deg, rgba(70,29,77,1) 35%, rgba(215,39,47,1) 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed;
  position: relative;
}
.community-simp-section h2,
.community-simp-section p {
	color: #fff;
}
.community-simp-section ul {
	color: #fff;
}
.community-simp-section .imagery img {
	height: 400px;
	width: 100%;
	object-fit: cover;
	border-radius: 1rem;
}
.community-simp-section .tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.community-simp-section .tick-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}
.community-simp-section .tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; 
  width: 24px;
  height: 24px;
  background: url('../assets/icons/tick-w.svg') no-repeat center center;
  background-size: contain;
}
/**** Community Feedback and Engagement ****/
.community-feedback-section img {
	width: 100%;
	object-fit: cover;
	border-radius: 1rem;
}
@media (max-width: 991.98px) {
	.about-community-section .about-community-text {
		text-align: center;
	}
	.about-community-section #imageCarousel {
		height: 320px;
		min-height: 0;
	}
	/**** Community Partnership Fund ****/
  .community-partnership-fund {
    background-image: none;
    height: auto;
  }
  .community-partnership-fund .story-card {
    box-shadow: none;
    border-radius: 0;
  }
	.community-partnership-fund .story-card .content {
	  padding: 2rem 0 0;
		text-align: center;
	}
	.community-partnership-fund {
		background-color: var(--tudor_black);
	  background-image: url('../assets/svg/rose.svg'); 
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  position: relative;
		background-attachment: fixed;
	}
	.community-partnership-fund .story-card {
	  background-color: transparent;
	  color: #fff;
	  border-radius: 0.5rem;
	  box-shadow: 0 0.5rem 2rem rgba(0,1,0,0.5);
	}
	.community-partnership-fund .story-card h2 {
		color: #fff;
	}
  .community-partnership-fund-image {
    display: block;
    width: 100%;
    height: 300px;
		background-image: url('../assets/community/community-expo-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
		border-radius: 1rem;
  }
	.community-hub .col-lg-8 .card {
	  min-height: 200px;
		margin-bottom: 1rem;
	}
	.community-hub .col-lg-4 .card:not(:last-child) {
		margin-bottom: 1rem;
	}
	.community-feedback-section .secondary-image {
		display: none;
	}
	/**** Community SIMP ****/
	.community-simp-section h2 {
		text-align: center;
	}
	.community-simp-section .imagery img {
		height: 250px;
	}
}

/***************************
	SUSTAINABILITY
***************************/
.sustainability-community-section h6,
.sustainability-corporate-social-section h6,
.sustainability-environment-section h6,
.sustainability-health-safety-section h6,
.sustainability-icon-initiative-section h6,
.sustainability-indigenous-communities-section h6,
.sustainability-land-management-section h6 {
	line-height: 1.5;
}
.sustainability-community-section img,
.sustainability-corporate-social-section img,
.sustainability-environment-section img,
.sustainability-health-safety-section img,
.sustainability-icon-initiative-section img,
.sustainability-indigenous-communities-section img,
.sustainability-land-management-section img {
	height: 300px;
	width: 100%;
	object-fit: cover;
	border-radius: 1rem;
}
hr.sustainability {
	margin: 2rem 0;
	border-color: var(--drift_dust);
}
@media (max-width: 991.98px) {
	.sustainability-community-section,
	.sustainability-corporate-social-section,
	.sustainability-environment-section,
	.sustainability-health-safety-section,
	.sustainability-icon-initiative-section,
	.sustainability-indigenous-communities-section,
	.sustainability-land-management-section {
		text-align: center;
	}
}

/***************************
	ICON INITIATIVE
***************************/
.icon-initiative-intro h6 {
	margin-bottom: 0.25rem;
}
.icon-initiative-intro p.text {
	margin: 0;
}
.icon-initiative-intro .icon {
	height: 70px;
}
.icon-initiative-intro #imageCarousel {
  height: 430px;
  border-radius: 1rem;
  overflow: hidden;
}
.icon-initiative-intro #imageCarousel .carousel-inner,
.icon-initiative-intro #imageCarousel .carousel-item {
  height: 100%;
}
.icon-initiative-intro #imageCarousel .carousel-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-initiative-video {
	background-color: var(--tudor_black);
  background-image: url('../assets/svg/rose.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
}
.icon-initiative-approach .icon {
	height: 80px;
	margin-bottom: 0.75rem;
}
@media (max-width: 991.98px) {
	.icon-initiative-intro .icon-initiative-text {
		text-align: center;
	}
	.icon-initiative-intro #imageCarousel {
	  height: 320px;
	}
}

/***************************
	ENVIRONMENT
***************************/
.environment-page .downloads h4 {
	color: var(--tudor_black);
}
.environment-page .table {
  vertical-align: middle;
  border-color: var(--tudor_black_tint);
	background-color: transparent;
	margin: 0;
}
.environment-page .environment-table {
	border-color: var(--tudor_black_light);
}
.environment-page .environment-table thead tr.sub-section th {
	background-color: var(--tudor_black);
	color: #fff;
}
.environment-page .environment-table thead tr.heading th {
	background-color: var(--tudor_black_light);
	color: var(--tudor_black);
}
.environment-page .environment-table > tbody td {
	color: var(--tudor_black);
	background-color: transparent;
}
.environment-page .environment-table tbody td,
.environment-page .environment-table thead th {
	padding: 0.75rem 1rem;
}

/***************************
	MINING LEASE NOTICES
***************************/
.mining-lease-notices .accordion-button {
	padding: 1rem 0;
}
.accordion-button:not(.collapsed) {
	padding: 1rem;
	border: 0;
}
.mining-lease-notices .accordion-body {
	padding: 1rem 0;
}
.mining-lease-notices .accordion-body table td {
	padding: 0.5rem 0;
}

/***************************
	CONTACT
***************************/
.contact-details {
	background-color: var(--tudor_black);
  background-image: url('../assets/svg/grid.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
	background-attachment: fixed;
}
.contact-details .contact-information {
	padding: 2rem;
	color: #fff;
	background-color: var(--tudor_red);
	border-radius: 1rem;
}
.contact-details .contact-information h4 {
	color: #fff;
}
.contact-details .contact-information a {
	text-decoration: none;
	color: #fff;
}
.contact-details .contact-information a:hover {
	color: var(--tudor_black);
}
.contact-details .map {
	height: 500px;
	padding: 2rem 0;
}
.contact-opportunities .more-enquiries a {
	text-decoration: none;
}
.contact-opportunities .more-enquiries .contact-enquiry {
	height: 200px;
	overflow: hidden;
	position: relative;
  display: flex;
	align-items: center; 
}
.contact-opportunities .more-enquiries .contact-enquiry > img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: transform 1s ease-in-out;
}
.contact-opportunities .more-enquiries .contact-enquiry.top > img {
 	object-position: top right;
}
.contact-opportunities .more-enquiries .contact-enquiry:hover > img {
  transform: scale(1.025);
}
.contact-opportunities .more-enquiries .contact-enquiry .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,1,0,1), transparent);
  z-index: 1;
}
.contact-opportunities .more-enquiries .contact-enquiry .content {
	position: relative;
	z-index: 2;
	text-align: left;
	margin: 0;
	padding: 2rem;
}
.contact-opportunities .more-enquiries .contact-enquiry .content h4 {
	color: #fff;
	margin: 0;
}
.contact-opportunities .more-enquiries .contact-enquiry:hover .content h4 {
	color: var(--tudor_red);
	margin: 0;
}

@media (max-width: 991.98px) {
	.contact-details .contact-information {
		background-color: transparent;
		padding: 40px 0 0 0;
		text-align: center;
	}
	.contact-details .contact-information a:hover {
		color: var(--tudor_red);
	}
	.contact-details .map {
		height: auto;
		width: 100%;
	}
}

/***************************
	FOOTER
***************************/
.primary-footer {
	background-color: var(--tudor_black);
	color: #fff;
	padding: 40px 0;
}
.primary-footer .our-services-ft ul,
.primary-footer .about-us-ft ul {
	margin-block-start: 0;
}
.primary-footer p {
	margin: 0;
	color: #fff;
}
.primary-footer h4 {
	font-size: 1.25rem;
	margin: 0;
	color: #fff;
}
.primary-footer .nav-link {
	font-size: 1;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  transition: color .5s ease-in-out,background-color .5s ease-in-out,border-color .5s ease-in-out;
	padding: 0.5rem 0 0;
}
.primary-footer p a {
	color: #fff;
	text-decoration: none;
}
.primary-footer p a:hover {
	color: var(--tudor_red);
}
.primary-footer li:last-child .nav-link {
  padding-right: 0 !important;
}
.primary-footer .nav-link:hover {
	color: var(--tudor_red);
}
.primary-footer .socials i {
  font-size: 1.5rem;
	margin-right: 0.5rem;
	color: #fff;
	transition: color .5s ease-in-out,background-color .5s ease-in-out,border-color .5s ease-in-out;
}
.primary-footer .socials i:hover {
	color: var(--tudor_red);
}
.primary-footer .acknowledgement {
	display: block;
	margin-top: 1.25rem;
}
.primary-footer .acknowledgement img {
	float: left;
	padding-right: 0.5rem;
}
.primary-footer .acknowledgement h6 {
	font-size: 0.8rem;
	font-weight: bold;
	color: #fff;
}
.primary-footer .acknowledgement p {
	font-size: 0.8rem;
	color: #fff;
	margin: 0;
}
.primary-footer .company-footer,
.primary-footer .olive-downs-footer {
	text-align: right;
}
.primary-footer .socials {
	text-align: right;
	padding: 0;
}
.primary-footer .socials li {
	display: inline;
	list-style-type: none;
	font-size: 1.5rem;
	margin-block-start: 0;
	margin-block-end: 0;
}
.primary-footer .socials li {
	padding-left: 0.25rem;
}
.primary-footer .socials li i {
	color: #fff;
}
.primary-footer .socials li i:hover {
	color: var(--tudor_red);
}
/* SECONDARY FOOTER */
.secondary-footer {
	color: #fff;
	background-color: var(--tudor_black);
	font-size: 0.8rem;
	padding: 20px 0;
	bottom: 0;
	width: 100%;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.secondary-footer ul.nav {
	margin-block-start: 0;
}
.secondary-footer .nav-link {
	font-size: 0.8rem;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  transition: color .5s ease-in-out,background-color .5s ease-in-out,border-color .5s ease-in-out;
	padding: 0 0.5rem;
}
.secondary-footer .nav-link:hover {
  color: var(--tudor_red);
}
.secondary-footer li:last-child .nav-link {
  padding-right: 0 !important;
}
@media (max-width: 991.98px) {
	.primary-footer,
	.secondary-footer {
		text-align: center;
	}
	.alt-footer-menu {
		display: none;
	}
}

/***************************
	INVESTORS PAGE
***************************/
.investor-user {
	background-color: var(--drift_dust);
	padding: 1rem 0;
}
.investors .table {
  vertical-align: middle;
  border-color: var(--tudor_black);
	text-align: center;
}
.investors .table > thead th {
  vertical-align: middle;
	background-color: var(--drift_dust);
}
.investors .table > tbody {
	vertical-align: middle;
}
.investors .investor-contact-details {
	padding: 2rem;
	background-color: var(--tudor_black);
	color: #fff;
}
.investors .investor-contact-details h4 {
	color: #fff;
}
.investors .investor-contact-details a {
	text-decoration: none;
	color: #fff;
}
.investors .investor-contact-details a:hover {
	color: var(--tudor_red);
}
/***************************
	LOGIN PAGE
***************************/
.login-page .form-submit {
	margin-top: 1rem;
  background-color: var(--tudor_red);
  border-color: var(--tudor_red);
	color: #fff;
	margin-top: 2rem;
	margin-bottom: 0 !important;
}
.login-page .form-submit:hover,
.login-page .form-submit:focus {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
}

/***************************
	ERROR PAGES
***************************/
.page-403-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0,2,0,1) 0%, rgba(0,0,0,0) 100%),
							url('../assets/error/403.webp') no-repeat bottom center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.page-403 {
  text-align: center;
  color: inherit;
}
.page-403 h1,
.page-403 h4,
.page-403 p {
	color: #fff;
}
.page-404-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0,2,0,1) 0%, rgba(0,0,0,0) 100%),
							url('../assets/error/404.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.page-404 {
  text-align: center;
  color: inherit;
}
.page-404 h1,
.page-404 h4,
.page-404 p {
	color: #fff;
}
.page-503-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0,2,0,1) 0%, rgba(0,0,0,0) 100%),
							url('../assets/error/503.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.page-503 {
  text-align: center;
  color: inherit;
}
.page-503 h1,
.page-503 h4,
.page-503 p {
	color: #fff;
}
.maintenance-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0,1,0,1) 0%, rgba(0,1,0,0) 100%),
							url('../assets/error/maintenance-page.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.maintenance-page {
  text-align: center;
  color: inherit;
}
.maintenance-page h1,
.maintenance-page p {
	color: #fff;
}

/***************************
	NEWSLETTER
***************************/
.newsletter form {
	margin: 0 !important;
}
.newsletter #mc_embed_signup {
	background: none;
	clear: left;
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	width: 100%;
}
#mc_embed_signup .mc-field-group {
clear: left;
position: relative;
width: 96%;
padding-bottom: 1% !important;
min-height: 50px;
display: grid;
}
.newsletter #mc_embed_signup .button {
	color: #fff;
	background-color: var(--tudor_red);
	border-color: var(--tudor_red);
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	margin-top: 1rem;
	border-radius: 30px;
  padding: 0.75rem 1.5rem;
	line-height: 1;
	height: auto;
}
.newsletter #mc_embed_signup .button:hover,
.newsletter #mc_embed_signup .button:focus {
	color: #fff;
	background-color: var(--tudor_dark_red);
	border-color: var(--tudor_dark_red);
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 400;
	font-size: 1rem;
}
.newsletter #mc_embed_signup .asterisk {
	color: var(--tudor_red);
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
	margin: 2px 0 0 0!important;
	font-size: 12px!important;
	color: var(--tudor_red)!important;
}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
	border: 1px solid var(--tudor_red)!important;
}
#mc_embed_signup #mc-embedded-subscribe-form
  :is(input[type="email"], input[type="text"], input[type="number"], select, textarea) {
  	border: 1px solid var(--tudor_black_light) !important;
		border-radius: 0;
  }
#mc_embed_signup #mc-embedded-subscribe-form
  :is(input[type="email"], input[type="text"], input[type="number"], select, textarea):focus {
  border: 1px solid var(--tudor_black) !important;
  outline: none !important;
  box-shadow: none !important;
}
#mc_embed_signup #mce-success-response {
	color: var(--steelforge_blue)!important;
}
#mc_embed_signup div#mce-responses {
	float: left;
	top: -1.4em;
	padding: 0!important;
	overflow: hidden;
	width: 100% !important;
	margin: 0% !important;
	clear: both;
}
#mc_embed_signup div.response {
	margin: 0!important;
	padding: 1em .5em .5em 0;
	font-weight: bold;
	float: left;
	top: -1.5em;
	z-index: 1;
	width: 100%!important;
}
/**** Newsletter Partial ****/
.newsletter_partial {
	background:
		url('../assets/svg/rose.svg'),
		linear-gradient(145deg, rgba(0,1,0,1) 35%, rgba(69,69,69,1) 100%);
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
	  position: relative;
}
.newsletter_partial h4,
.newsletter_partial p {
	color: #fff;
}
@media (max-width: 991.98px) {
	.newsletter_partial {
		text-align: center;
	}
}

/***************************
	COGNITO FORMS
***************************/
.cog-abuse,
.cog-branding {
	display: none!important;
}
.cog-content {
	font-family: 'Source Sans 3', sans-serif !important;
	font-size: 1rem !important;
	color: var(--tudor_black)!important;
	line-height: 1.5!important;
}
h2.cog-section__heading {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: bold !important;
	margin-bottom: 2rem !important;
}
.cog-page-progress--bar a::before, .cog-page-progress--bar a::before {
	background: var(--tudor_red) !important;
	color: var(--tudor_red) !important;
	text-decoration: none !important;
}
.cog-page-progress__page .cog-page-progress__page-title {
	font-family: 'Source Sans 3', sans-serif !important;
	font-size: 0.8 !important;
	color: var(--tudor_black_light)!important;
	text-decoration: none !important;
}
.cog-page-progress__page.is-active .cog-page-progress__page-title {
	color: var(--tudor_red) !important;
	text-decoration: none !important;
}
.cog-page-progress--bar a:focus span {
    border-bottom: none !important;
}
.cog-form .cog-label {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: bold !important;
	font-size: 1rem !important;
	color: var(--tudor_black)!important;
	padding: 0 !important;
}
.cog-form .el-radio__label,
.cog-form .el-checkbox__label {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	color: var(--tudor_black)!important;
}
.cog-form textarea,
.cog-form input {
	background-color: #fff!important;
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	border-color: var(--tudor_black_light)!important;
}
.cog-form textarea {
	min-height: 10rem !important;
}
.cog-cognito--styled .el-input__inner:focus, 
.cog-cognito--styled .el-input__inner.is-focus, 
.cog-cognito--styled .el-input__inner.StripeElement--focus, html .cog-cognito--styled .el-input__inner.c-square-input--focus, html .cog-cognito--styled .el-textarea__inner:focus, html .cog-cognito--styled .el-textarea__inner.is-focus, html .cog-cognito--styled .el-textarea__inner.StripeElement--focus, html .cog-cognito--styled .el-textarea__inner.c-square-input--focus, :root:root:root:root:root .cog-cognito--styled .el-input__inner:focus, :root:root:root:root:root .cog-cognito--styled .el-input__inner.is-focus, :root:root:root:root:root .cog-cognito--styled .el-input__inner.StripeElement--focus, :root:root:root:root:root .cog-cognito--styled .el-input__inner.c-square-input--focus, :root:root:root:root:root .cog-cognito--styled .el-textarea__inner:focus, :root:root:root:root:root .cog-cognito--styled .el-textarea__inner.is-focus, :root:root:root:root:root .cog-cognito--styled .el-textarea__inner.StripeElement--focus, :root:root:root:root:root .cog-cognito--styled .el-textarea__inner.c-square-input--focus {
	border-color: var(--tudor_black) !important;
	box-shadow: none !important;
}
.cog-form .cog-asterisk {
	color: var(--tudor_red) !important;
}
.cog-form input::placeholder {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	color: var(--tudor_black_tint)!important;
}
.cog-cognito--styled .el-radio__inner {
	display: inline-block;
	position: relative;
	width: 2.2em;
	height: 2.2em;
	background-color: #fff !important;
	border: calc(var(--input__border-width) * 2) solid var(--tudor_black_tint)!important;
	box-shadow: var(--input__box-shadow);
	vertical-align: text-top;
	transform: scale(var(--checkable__scale)) scale(0.5);
	transform-origin: 50% 50%;
}
.cog-button--primary {
	background-color: var(--tudor_red)!important;
	border-color: var(--tudor_red)!important;
	padding: 0.5rem 2rem!important;
	border-radius: 5rem!important;
	margin-top: 0 !important;
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
}
.cog-button--primary:hover {
	background-color: var(--tudor_dark_red)!important;
	border-color: var(--tudor_dark_red)!important;
}
.cog-button--secondary {
	background-color: #fff!important;
	border-color: var(--tudor_red)!important;
	padding: 0.5rem 2rem !important;
	border-radius: 5rem !important;
	margin-top: 0 !important;
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
}
.cog-button--secondary:hover {
	background-color: var(--tudor_red)!important;
	border-color: var(--tudor_red)!important;
}
.cog-button--secondary .cog-button__icon,
.cog-button--secondary .cog-button__text {
	color: var(--tudor_red)!important;
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
}
.cog-button--secondary:hover .cog-button__icon,
.cog-button--secondary:hover .cog-button__text {
	color: #fff!important;
}
.cog-cognito--styled .cog-button--secondary:hover, .cog-cognito--styled .cog-button--secondary:hover {
	box-shadow: 0;
}
.cog-error-message, :root:root:root:root:root .cog-error-message {
	background: var(--tudor_red) !important;
	padding: calc(var(--gutter) / 2)!important;
	color: #fff !important;
	font-size: 1rem !important;
	font-family: 'Source Sans 3', sans-serif !important;
}
.cog-upload:not(.is-read-only), :root:root:root:root:root .cog-upload:not(.is-read-only) {
    border: none!important;
    padding: 0!important;
}
.cog-upload__drag-text {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	color: var(--tudor_black)!important;
}
.el-select-dropdown__item {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	color: var(--tudor_black)!important;
}
.cog-helptext {
	font-family: 'Source Sans 3', sans-serif !important;
	font-weight: normal !important;
	font-size: 1rem !important;
	color: var(--tudor_black_tint)!important;
}