@charset "utf-8";

:root {
  --main-color: #ba0e12;
  --alt1-color: #890b0e;
  --alt2-color: #D24141;
  --alt3-color: #EB7E1C;
  --text-color: #000000;
}

body,
html {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  height: 100%;
  margin: 0;
}

/* Start Universal Styles */
a {
  color: var(--main-color);
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--alt1-color);
  text-decoration: none;
}

a:focus,
a:active,
a:hover {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

.h1 {
  font-size: 48px;
}

.h2 {
  font-size: 34px;
}

.h3 {
  font-size: 28px;
  font-weight: 600;
}

.h4 {
  font-size: 22px;
  font-weight: 600;
}

.h5 {
  font-size: 18px;
}

.h6 {
  font-size: 14px;
}

.btn {
  padding: 10px 30px;
  min-width: 200px;
  text-transform: uppercase;
  /*font-weight: 600;*/
  transition: 0.3s ease-in-out;
  border-radius: 50px;
}

.btn-main {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.btn-main:hover {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}

.btn-alt1 {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}

.btn-alt1:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.btn-alt2 {
  color: #fff;
  background-color: var(--alt2-color);
  border-color: var(--alt2-color);
}

.btn-alt2:hover {
  color: #fff;
  background-color: var(--alt1-color);
  border-color: var(--alt1-color);
}

.btn-alt3 {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn-alt3:hover {
  color: var(--main-color);
  background-color: transparent;
  border-color: var(--main-color);
}

.btn-fill {
  background: transparent;
  border: none;
  padding: 1em 1.5em 1em 0;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: 0.5s ease;
  cursor: pointer;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
}

.btn-fill::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--main-color);
  transition: 0.5s ease;
  z-index: 2;
}

.btn-fill:hover {
  color: #1e1e2b;
  padding-left: 1.5em;
  transition-delay: 0.5s;
}

.btn-fill:hover::before {
  width: 100%;
}

.btn-fill::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: var(--main-color);
  transition: 0.4s ease;
  z-index: -1;
}

.btn-fill:hover::after {
  height: 100%;
  transition-delay: 0.4s;
}

.pad-top-x {
  margin-top: 0;
}

.pad-top-1x {
  margin-top: 1em;
}

.pad-top-2x {
  margin-top: 2em;
}

.pad-top-3x {
  margin-top: 3em;
}

.pad-top-4x {
  margin-top: 4em;
}

.pad-top_5x {
  margin-top: .5em;
}

.pad-bottom-x {
  margin-bottom: 0;
}

.pad-bottom-1x {
  margin-bottom: 1em;
}

.pad-bottom-2x {
  margin-bottom: 2em;
}

.pad-bottom-3x {
  margin-bottom: 3em;
}

.pad-bottom-4x {
  margin-bottom: 4em;
}

.pad-bottom_5x {
  margin-bottom: .5em;
}

.pad-vert-x {
  padding-top: 0;
  padding-bottom: 0;
}

.pad-vert-1x {
  padding-top: 1em;
  padding-bottom: 1em;
}

.pad-vert-2x {
  padding-top: 2em;
  padding-bottom: 2em;
}

.pad-vert-3x {
  padding-top: 3em;
  padding-bottom: 3em;
}

.pad-vert-4x {
  padding-top: 4em;
  padding-bottom: 4em;
}

.pad-vert_5x {
  padding-top: .5em;
  padding-bottom: .5em;
}

.margin-top-x {
  margin-top: 0;
}

.margin-top-1x {
  margin-top: 1em;
}

.margin-top-2x {
  margin-top: 2em;
}

.margin-top-3x {
  margin-top: 3em;
}

.margin-top-4x {
  margin-top: 4em;
}

.margin-top_5x {
  margin-top: .5em;
}

.margin-bottom-x {
  margin-bottom: 0;
}

.margin-bottom-1x {
  margin-bottom: 1em;
}

.margin-bottom-2x {
  margin-bottom: 2em;
}

.margin-bottom-3x {
  margin-bottom: 3em;
}

.margin-bottom-4x {
  margin-bottom: 4em;
}

.margin-bottom_5x {
  margin-bottom: .5em;
}

.margin-vert-x {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-vert-1x {
  margin-top: 1em;
  margin-bottom: 1em;
}

.margin-vert-2x {
  margin-top: 2em;
  margin-bottom: 2em;
}

.margin-vert-3x {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-vert-4x {
  margin-top: 4em;
  margin-bottom: 4em;
}

.margin-vert_5x {
  margin-top: .5em;
  margin-bottom: .5em;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.blue {
  color: var(--main-color);
}

.flex-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.flex-item {
  width: 48%;
}

.flex-item-4 {
    width: 33.3%;
}

.img-style {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-boarder {
  border-radius: 30px;
}

.subpage-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 130px;
    color: #fff;
    text-align: center;
}
.subpage-hero h1 {
    font-weight: 600;
}
.larger {
  font-size: 1.6em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* End Universal Styles */

/* Start Hero Styles */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("../images/football-backgrnd.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo-img {
  width: min(220px, 55vw);
}

.hero-content {
  max-width: 950px;
  padding: 25px 15px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 900;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  width: 44px;
  height: 44px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.social a:hover {
  color: var(--main-color);
  border-color: #fff;
}
/* End Social Media Icon Styles */


@media (max-width: 1199px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {}