/*
Theme Name: PM Theme
Theme URI: https://wordpress.org/themes/pm_theme/
Description: PM Theme boilerplate code
Version: 1
Tags: Multi-Column, Repsonsive, Bootstrap
*/  

/* --------------------------------------------------------------------- */
/* Variables                                                             */
/* --------------------------------------------------------------------- */
:root {
	/* Colors */
	--primary-clr: ;
	--primary-shade-clr: ;
	--secondary-clr: hsl(358, 85%, 52%);
	--secondary-dark: rgba(237, 28, 36, 50%);
	--tertiary-clr: hsl(0, 0%, 72%); /* #b8b8b8 */
	--tertiary-dark: hsl(0, 0%, 40%);
	--dropdown-header-clr: hsl(345, 6%, 13%);

	--black-clr: black;
	--white-clr: white;

	/* Font sizes */
	--font-xsmall: clamp(12px, 1.5vw, 14px);
	--font-small: clamp(14px, 1.5vw, 16px);
	--font-medium: clamp(16px, 1.5vw, 32px);
	--font-large: clamp(24px, 1.5vw, 48px);
	--font-xlarge: clamp(32px, 1.5vw, 64px);

	--font-14: 14px;
	--font-16: 16px;
	--font-18: 18px;
	--font-20: 20px;
	--font-24: 24px;
	--font-32: 32px;
	--font-36: 36px;
	--font-40: 40px;
	--font-60: 60px;
	--font-64: 64px;
	--font-80: 80px;

	--font-family-times: 'Times New Roman';

	/* Button hover colors */
	--primary-hover-clr: ;
	--secondary-hover-clr: ;
}

/* --------------------------------------------------------------------- */
/* Browser resets                                                        */
/* --------------------------------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

h3 {
	font-size: 20pt;
}
a {
	text-decoration: none;
}

/* --------------------------------------------------------------------- */
/* Utilities                                                             */
/* --------------------------------------------------------------------- */
/* Font families */
@font-face {
	font-family: 'Minion Pro';
	src: url(fonts/MinionPro-Regular.otf);
}

.minion-label--1 {
	margin-top: 1rem;
	font-size: 32px;
	color: var(--tertiary-clr);
	font-family: 'Minion Pro';
}

.minion-label--2 {
	margin: 1rem 0;
	font-size: 32px;
	color: var(--tertiary-clr);
	font-family: 'Minion Pro';
}

.minion-label--3 {
	margin: 1rem 0;
	font-size: 32px;
	color: var(--tertiary-dark);
	font-family: 'Minion Pro';
}

.primary-heading {
	font-family: '';
	font-size: var(--font-40);
	font-weight: bold;
	color: var(--secondary-clr);
}

.founder-heading {
	font-family: '';
	font-weight: 700;
	color: var(--secondary-clr);
}

.primary-heading--v2 {
	font-family: '';
	font-size: var(--font-40);
	font-weight: bold;
	color: var(--white-clr);
}

.secondary-heading {
	font-family: var(--font-family-times);
	font-weight: bold;
	font-size: var(--font-32);
	color: var(--white-clr);
}

.secondary-heading--v2 {
	font-family: var(--font-family-times);
	font-weight: bold;
	font-size: var(--font-32);
	color: var(--tertiary-dark);
}


/* 
Tertiaryy heading
gray, 40px
*/
.tertiary-heading {
	font-family: var(--font-family-times);
	font-weight: bold;
	font-size: var(--font-40);
	color: var(--tertiary-dark);
}

.tertiary-heading--large {
	font-family: var(--font-family-times);
	font-weight: bold;
	font-size: var(--font-80);
	color: var(--tertiary-clr);
}

.tertiary-heading--red {
	font-family: var(--font-family-times);
	font-weight: bold;
	font-size: var(--font-40);
	color: var(--secondary-clr);
}

.button-group {
	display: flex;
	justify-content: right;
	gap: 2rem;
}



/* Button styles */
.btn-theme--1 {
	padding: 0.4rem 0.6rem;
	color: var(--secondary-clr);
	/* width: 115px; */
	font-weight: bold;
	background-color: transparent;
	border: 1px solid var(--secondary-clr);
	border-radius: 8px;

	&:hover {
		text-decoration: underline;
		color: var(--white-clr);
		background-color: var(--secondary-clr);

	}
}



.btn-theme__inverted {
	padding: 0.4rem 0;
	color: var(--white-clr);
	width: 115px;
	font-weight: bold;
	background-color: var(--secondary-clr);
	border: none;
	border-radius: 8px;

	&:hover {
		text-decoration: underline;
		color: var(--secondary-clr);
		background-color: transparent;
		border: 1px solid var(--secondary-clr);
	}
}

.btn-theme--2 {
	color: var(--secondary-clr);
	background-color: transparent;
	font-size: var(--font-16);
	font-weight: 700;
	width: fit-content;
	border: none;
	padding: 0;

	&:hover {
		background-color: transparent;
		text-decoration: underline;
	}
}

.btn-theme--er {
	margin-left: auto;
	margin-right: 2rem;
	text-align: center;
	text-transform: uppercase;
	padding-inline: 1rem;
	color: white;
	background-color: var(--secondary-dark);
	border-radius: 10px;
	border: 2px solid var(--secondary-clr);

	&:hover {
		background-color: hsl(358, 77%, 60%);
		text-decoration: underline;
	}
}


.btn-theme--footer {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	padding-inline: 12px;
	color: white;
	background-color: var(--secondary-dark);
	border-radius: 10px;
	border: 2px solid var(--secondary-clr);

	&:hover {
		background-color: hsl(358, 77%, 60%);
	}
}

.paragraph-end-spacing {
	padding-right: 30px;
}

.divisions-carousel {
	position: relative;
}

.slick-arrow {
	position: absolute;
	top: initial;
	right: 0;
	bottom: -88px;
	height: 50px;
	width: 50px;
}

.slick-prev {
	left: initial;
	right: 66px;
}

.btm-brd {
	border-bottom: 4px solid var(--secondary-clr);
}

.text-red
{
	color: var(--secondary-clr);

}
/* --------------------------------------------------------------------- */
/* Header                                                                */
/* --------------------------------------------------------------------- */
.header-nav {
	font-family: 'Minion Pro';
	font-weight: bold;
	font-size: var(--font-32);
	gap: 0.2rem;
}

.header-nav li a {
	color: var(--white-clr);

	&:hover {
		color: var(--white-clr);
	}
}

.header-nav .nav-link:first-child {
	padding-top: 0;
}

.nav-heading {
	font-family: 'Minion Pro';
	font-weight: bold;
	font-size: var(--font-32);
	color: var(--white-clr);
}

.divisions-nav,
.galleries-nav {
	font-size: var(--font-24);
}

.divisions-nav a,
.galleries-nav a {
	&:hover {
		color: var(--tertiary-clr);
	}
}

.nav-item a {
	color: var(--tertiary-clr);
}

.nav-footer {
	font-family: 'Minion Pro';
	font-weight: bold;
	font-size: var(--font-20);
	color: var(--white-clr);

}


/* --------------------------------------------------------------------- */
/* Navbar                                                                */
/* --------------------------------------------------------------------- */
/* Custom toggler button */
.custom-navbar-toggler {
	position: relative;
	padding-inline: 10px;
	height: 42px;
	width: 42px;
	border: 1px solid white;
	background: transparent;
}

.custom-navbar-toggler-icon {
	content: '';
	margin-inline: auto;
	display: block;
	position: relative;
	height: 1px;
	width: 100%;
	background-color: white;
}

.custom-navbar-toggler-icon:before {
	content: '';
	margin-inline: auto;
	display: block;
	position: absolute;
	top: 10px;
	height: 100%;
	width: 100%;
	background-color: white;
}

.custom-navbar-toggler-icon:after {
	content: '';
	margin-inline: auto;
	display: block;
	position: absolute;
	top: -10px;
	height: 100%;
	width: 100%;
	background-color: white;
}

.navbar {
	background-color: var(--black-clr);
}

/* header {
	position: fixed;
	width: 100%;
	z-index: 10;
	top: 0;
} */

/* main {
	padding-top: 4rem;
} */

.navbar-collapse {
	background-color: var(--dropdown-header-clr);
	border: 1px solid var(--secondary-clr);
	position: absolute;
	top: 5rem;
	width: 100%;
	padding: 2rem 1rem;
	z-index: 10;
}

.logo-width {
	width: 50px;
}

.logo-caption-width {
	width: 160px;
}

.nav-column {
	text-align: center;
	margin-inline: auto;
	width: fit-content;
}

.navbar-brand-content {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.header-social-icons {
	margin-top: 2rem;
}

.fa-brands {
	font-size: 32px;
}

.theme-color {
	color: var(--secondary-clr);
}
/* --------------------------------------------------------------------- */
/* Front Page | PAGE                                                     */
/* --------------------------------------------------------------------- */
#fp__about-section {
	padding: 3rem 0;
	border-top: 8px solid var(--secondary-clr);
	border-bottom: 8px solid var(--secondary-clr);
}

#fp__equine-division {
	background-color: var(--black-clr);
}

.homepage-date {
	font-style: italic;
	color: var(--secondary-clr);
}

.picture-container {
	margin-inline: auto;
	width: fit-content;

	&:hover {
		text-decoration: underline;
		text-decoration-color: #b8b8b8;
		text-decoration-thickness: 1px;
	}
}

#homepage-image-galleries {
	background-color: var(--black-clr);
}

/* --------------------------------------------------------------------- */
/* Homepage | PAGE                                                       */
/* --------------------------------------------------------------------- */
#article__news,
#featured__article {
	padding: 1rem;
	border: 2px solid black;
	min-height: 350px;
}

#article__news {
	margin-bottom: 1rem;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 5%;
	padding-bottom: 5%;
}

.heading-overlay--1 {
	position: absolute;
	top: 4rem;
	right: 5rem;
	width: 40%;
}

.heading-container {
	position: relative;
}

.heading-overlay--2 {
	position: absolute;
	bottom: 0;
	font-family: '';
	font-size: 80px;
	color: var(--white-clr);
}

.content-overlay-right {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: end;
}

.content-overlay-left {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0rem;
}

.content-overlay-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.content-overlay {
	position: absolute;
	top: 2rem;
	left: 0;
	right: 0;
}

.rectangle {
	border: 2px solid var(--secondary-clr);
}

.ss__equine-division {
	background-color: var(--black-clr);
}

.bg-element::before {
	content: '';
	display: inline-block;
	height: 100%;
	width: 96.4%;
	background-color: var(--secondary-clr);

	position: absolute;
	top: 8px;

	border-top-left-radius: 150px;
	border-bottom-left-radius: 150px;
}


.znum {
	position: relative;
	z-index: 5;

	border-top-left-radius: 150px;
	border-bottom-left-radius: 150px;
}

#homepage-news {
	padding: 3rem 0;
}

#ag-division {
	padding-left: 3rem 0;
}

.homepage__article {
	display: flex;
	min-height: 320px;
	color: var(--black-clr);
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	border: 2px solid lightgray;
	text-align: left !important;
}

.flush--right {
	margin-left: auto;
}

.flush--left {
	margin-right: auto;
}
.division-subheading {
	font-family:'Times New Roman', Times, serif;
	font-size: var(--font-36);
	color: var(--secondary-clr);
	
	&:hover {
		text-decoration: underline;
		text-decoration-color: var(--secondary-clr);
		text-decoration-thickness: 1px;
		opacity: 100%;
	}
}


/* --------------------------------------------------------------------- */
/* Entries & Results | PAGE                                              */
/* --------------------------------------------------------------------- */
.iframe-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 800px;
	padding-top: 56.25%;
}

.iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------------- */
/* About | PAGE                                                          */
/* --------------------------------------------------------------------- */
#about-us-intro {
	padding: 2rem 0;
}

#about-page-florida {
	position: relative;
	padding: 3rem 0;
}

#about-page-divisions {
	padding: 3rem 0;
}

#about-page-divisions h2 {
	padding-bottom: 3rem;
}


/* --------------------------------------------------------------------- */
/* News | PAGE                                                           */
/* --------------------------------------------------------------------- */
#news__article {
	padding: 1rem;
	background-color: var(--white-clr);
	border: 2px solid var(--black-clr);
	box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
}

.news-background {
	background-color: #ebebeb;
}

.news__heading, .news__summary {
	color: var(--black-clr);
}

.news__summary {
	margin: 1rem 0;
}

.news__category {
	margin-bottom: 1rem;
	font-style: italic;
	color: var(--secondary-clr);
}

.news__link  {
	color: var(--secondary-clr);
	font-weight: 700;

&:hover {
	text-decoration: underline;
}
}

.news__date {
	color: var(--secondary-clr);
}

#news__section {
	padding: 2rem 0;
}

.bottom-info {
	display: flex;
	justify-content: space-between;
}

.tabs {
	margin: 2rem 0 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.tabs button {
	color: var(--tertiary-dark);
	border: none;
}

.tabs .active {
	padding: 6px 8px;
	color: var(--black-clr) !important;
	border: 1px solid var(--secondary-clr) !important;
}

.tab-content {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
}

.tab-button {
	background-color: transparent;
}

/* --------------------------------------------------------------------- */
/* Team | PAGE                                                           */
/* --------------------------------------------------------------------- */
#the-team {
	padding: 1.5rem 0;
}

.team-member-block {
	background-color: lightgray;
	position: relative;
	border-bottom: 2px solid var(--secondary-clr);
}

.team-member-block img {
	object-fit: cover;
}

.team-member-text {
	
	color: var(--white-clr);
	padding: .75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 0;

	font-family: 'Minion Pro';
}

.team-member-text a {
	color: var(--white-clr);
}

.team-member-info {
	justify-content: space-between;
	padding-top: 0;
	padding-bottom: 4;
}

#national-awards {
	/* height: 400px; */
	background-color: var(--black-clr);
}

.red-horizontal-rule {
	width: 100%;
	height: 2px;
	background-color: var(--secondary-clr);
}

.team-dept-label {
	font-family: var(--font-family-times);
	font-size: 24pt;
	font-weight: bold;
	line-height: 24pt;
}

.team-email {
	text-decoration: underline;
	font-style: italic;
}

/* --------------------------------------------------------------------- */
/* Racing Division | PAGE                                                */
/* --------------------------------------------------------------------- */
#rd-stakes-wins {
	padding: 4rem 0;
}

#national-awards {
	padding: 1.5rem 0;
}

.award-year-container {
	margin: 0.25rem 0;
	display: block;
}

.award-year {
	transform: translateY(0px);
}

.race-gallery-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.year-heading {
	font-family: '';
	font-size: var(--font-64);
	font-weight: bold;
	color: var(--secondary-clr);

}

#racing-gallery-section {
	padding: 3rem 0;
}

#accordionFlushExample1 .accordion-body p {
	column-count: 3;
}

#accordionFlushExample2 {
	margin: 2rem 0;
}

/********************/
/* Accordion styles */
.accordion-header {
	border-bottom: 1px solid var(--secondary-clr);
}

.accordion-flush--1 .accordion-button {
	font-weight: bold;
}

.accordion-button:focus {
	border: none;
	box-shadow: none;
}

.accordion-button:focus-visible {
	outline: 0;
	border: none;
}

.accordion-button:not(.collapsed) {
	background-color: var(--white-clr);
}

.accordion-body {
	border: none;
}

.accordion-item {
	border: 0;
}

/* National Awards */
.bold-white {
	/* text-wrap: nowrap; */
	font-weight: bold;
	color: var(--white-clr);
}

.bold-red {
	font-weight: bold;
	text-transform: uppercase;
	color: var(--secondary-clr);
}

.award-description {
	font-size: 14px;
	color: lightgray;
}

.trophy-carousel {
	max-width: 75%;
}

.grid-row--1 {
	grid-row-start: 1;
}

.grid-row--2 {
	grid-row-start: 2;
}

.awards {
	max-width: 700px;
}

.caption-text {
	font-size: 12px;
	text-align: center;
	color: var(--tertiary-clr);
	margin-top: 1rem;
	font-style: italic;
}

/* --------------------------------------------------------------------- */
/* Image galleries | PAGE                                                */
/* --------------------------------------------------------------------- */
#galleries {
	padding: 2rem 0;
}

.gallery-img {
	border: 2px solid var(--secondary-clr);;

&:hover {
		text-decoration: underline;
		text-decoration-color: #b8b8b8;
		text-decoration-thickness: 1px;
	}
}

.gallery-grid {
	column-count: 1;
}

.gallery-grid img {
	margin-bottom: 1rem;
}

/* .rw-gallery h1 {
	margin: 0 auto;
	width: fit-content;
} */

.bord-bottom {
	border-bottom: 2px solid var(--secondary-clr);
}

/* --------------------------------------------------------------------- */
/* Broodmare Division | PAGE                                             */
/* --------------------------------------------------------------------- */
#broodmare-division-main-content {
	padding-top: 2rem;
}

#broodmare-gallery-section {
	padding: 3rem 0;
}

.background-tree {
	right: 0;
	bottom: -1px;
}

.gallery-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.broodmare-division-heading {
	font-family:'Times New Roman', Times, serif;
	font-size: var(--font-36);
	color: var(--secondary-clr);
	
}

.position-title {
	font-family: 'Times New Roman', Times, serif;
	font-size: var(--font-24);
	font-weight: bold;
}

.associate {
	font-family: 'Times New Roman', Times, serif;
	font-size: var(--font-20);
}

.leader--1 a, .leader--2 a {
	color: var(--black-clr);
	text-decoration: underline;
	font-style: italic;
}

#broodmare-division--blockquote blockquote {
	font-family: 'Times New Roman', Times, serif;
	font-size: var(--font-24);
	text-align: center;
	line-height: 28px;
}

.figcaption {
	text-align: center;
}

.content-overlay-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------- */
/* Yearling Division | PAGE                                              */
/* --------------------------------------------------------------------- */
#yearling-division-main-content {
	padding: 2rem 0;
}

.flex-center {
	display: flex;
	align-items: center;
}

/* --------------------------------------------------------------------- */
/* Training Division | PAGE                                              */
/* --------------------------------------------------------------------- */
#training-division-main-content {
	position: relative;
	padding: 3rem 0;
}

.content-container {
	max-width: 90%;
}

.narrow-bar {
	margin: 0 auto;
	font-family: var(--font-family-times);
	background-color: var(--dropdown-header-clr);
	border: 2px solid var(--secondary-clr);
	text-align: center;
	color: var(--white-clr);
	width: 423px;
	
}

.narrow-bar h3 {
	font-size: var(--font-40);
	padding: 1rem;
}

.narrow-padding {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	letter-spacing: 0.1rem;
	color: #b8b8b8;
	text-transform: uppercase;
	font-size: var(--font-24);
	column-count: 1;
	padding: 1rem;
}

/* --------------------------------------------------------------------- */
/* Agriculture Division | PAGE                                           */
/* --------------------------------------------------------------------- */
#agriculture-division-main-content {
	padding: 1.75rem 0;
}

#cattle-section blockquote p {
	margin-bottom: 4rem;
}

#horticulture {
	padding: 1rem 0;
}

#farm-maintenance {
	padding-bottom: 3rem;
}

.margin-bottom {
	margin-bottom: 5rem;
}

.division-leaders {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.leader-box {
	height: 175px;
	display: flex;
	flex-direction: column
}

.martop {
	margin-top: auto;
}

.leader-box .red-heading {
	margin-bottom: auto;
}

.red-heading {
	font-size: var(--font-32);
	font-family: var(--font-family-times);
	color: var(--secondary-clr);
}

#agriculture-gallery-section {
	padding: 3rem 0;
}

.agriculture-gallery-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.exterior-link a {
	color: var(--secondary-clr); 
	font-size: 18pt;
	font-style: italic;

	&:hover {
		text-decoration: underline;
	}
}

/* --------------------------------------------------------------------- */
/* Contact | page                                                        */
/* --------------------------------------------------------------------- */
.contact-info {
	display: flex;
	justify-content: start;
	gap: 3rem;
}

#form-content {
	padding: 3rem 0;
}

.content-group {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4rem;
}

.content-group h2 {
	flex: 1 0 100%;
}

#name-field, #email-field,
#subject-field, #message-field, #phone-field {
	width: 100%;
}

#form-content label {
	display: block;
	width: 100%;
}

#form-content .wpcf7-submit {
	padding: 10px 0;
	width: 100%;
	color: var(--white-clr);
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid var(--black-clr);
	background-color: var(--secondary-clr);
}

.map {
	height: 394px;
	border: 2px solid var(--secondary-clr);
}

.map iframe {
	height: 100%;
	width: 100%;
}

.get-directions {
	color: var(--black-clr);
}

/* --------------------------------------------------------------------- */
/* Footer | partial                                                      */
/* --------------------------------------------------------------------- */
#footer {
	text-align: center;
	background-color: black;
}

#footer .footer-background {
	height: 680px;
	position: relative;
	object-fit: cover;

}

#footer .nav-link {
	padding: 4px 0;
	color: white;
	/* text-align: center; */
}

.footer-social-icons {
	display: flex;
	gap: 10px;
}

.footer-social-icons a {
	color: var(--white-clr);
}

.custom-hrule {
	width: 100%;
	margin-inline: auto;
	margin-bottom: 1rem;
	border: 1px solid var(--secondary-clr);
}

.erv2 {
	margin-top: 1rem;
	display: block;
	margin-inline: auto;
	padding: 0.3rem 0;
	text-transform: uppercase;
	width: 75%;
}

.custom-properties {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.custom-footer-tail {
	font-size: var(--font-14);
	display: none;
}

.flex-item--2 {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.copy-info {
	display: flex;
	gap: 2rem;
	color: var(--white-clr);
}

/* --------------------------------------------------------------------- */
/* Media queries                                                         */
/* --------------------------------------------------------------------- */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.gallery-grid {
		column-count: 2;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
	#footer {
		text-align: left;
	}

	#footer .footer-background {
		height: 418px;
	}

	#footer-divisions {
		display: block;
		column-count: 2;
	}

	.custom-col--1 ul {
		height: 100%;
		display: flex;
		justify-content: space-between;
	}

	.flex-section {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.flex-item--1 {
		width: fit-content;
		order: 1;
	}

	.flex-item--2 {
		justify-content: start;
	}

	.flex-item--2 img {
		width: 40% !important;
	}

	.footer-navs {
		margin-top: 1rem;
		display: flex;
		gap: 3rem;
	}

	.flex-item--1,
	.flex-item--2 {
		height: 100%;
	}

	.custom-footer-tail {
		display: block;
	}

	.shapes {
		border: 2px solid var(--secondary-clr);
		border-top-left-radius: 150px;
		border-top-right-radius: 150px;
	}

	.primary-heading {
		font-family: '';
		font-size: var(--font-80);
		font-weight: bold;
		color: var(--secondary-clr);
		
	}

	.primary-heading--v2 {
		font-family: '';
		font-size: var(--font-80);
		font-weight: bold;
		color: var(--white-clr);
	}

	.secondary-heading {
		font-size: var(--font-80);
	}

	/* .tertiary-heading {
		font-size: var(--font-60);
	} */

	#fp__equine-division h1 {
		font-family: '';
		font-weight: bold;
		font-size: var(--font-80);
	}

	.award-year-container {
		margin: 1rem 0;
		display: grid;
		grid-template-columns: 100px 1fr;
		/* grid-template-rows: 80px; */
	}

	.first-grid-row {
		grid-row: 1;
	}

	.second-grid-row {
		grid-row: 3;
	}
	
	.award-year {
		transform: translateY(-10px);
	}
	
	.red-horizontal-rule {
		grid-row: 1;
		grid-column: 2;
	}
	
	.year-text {
		margin-top: 0.25rem;
		grid-column: 2;
	}

	.heading-overlay--3 {
		position: absolute;
		top: 4rem;
		right: 0;
		left: 0;
	}

	.gallery-grid {
		column-count: 3;
	}

	.tab-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.narrow-bar {
		position: absolute !important;
		bottom: -3px;
	}

	.narrow-padding {
		font-size: var(--font-18);
	}

	.division-leaders {
		flex-direction: row;
		gap: 4rem;
	}

	header {
		position: fixed;
		width: 100%;
		z-index: 10;
		top: 0;
	}

	main {
		padding-top: 4rem;
	}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
	.gallery-grid {
		column-count: 4;
	}

	.tab-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	.content-wrapper--right {
		margin-left: auto;
		width: 80%;
	}

	.content-wrapper--left {
		margin-right: auto;
		width: 80%;
	}
}