/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-mma-fighters {
    padding: var(--sectionPadding);
    /* 150px - 200px */
    padding-top: clamp(9.375rem, 15vw, 12.5rem);
    /* 100px - 150px */
    padding-bottom: clamp(1.563rem, 2vw, 6.25rem);
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-mma-fighters .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1vw, 0.75rem);
    z-index: 10;
    position: relative;
  }
  #banner-mma-fighters .cs-int-title {
    font-size: clamp(3rem, 6vw, 4rem);
    color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px 0px #722f37, 4px 4px 0px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  }
  #banner-mma-fighters .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-mma-fighters .cs-link {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-decoration: none;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-mma-fighters .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-mma-fighters .cs-link:last-of-type::after {
    display: none;
  }
  #banner-mma-fighters .cs-link:after {
    /* chevron */
    content: '';
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/grey-chevron.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
  }
  #banner-mma-fighters .cs-link.cs-active {
    color: white;
  }
  #banner-mma-fighters .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(114, 47, 55, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cage" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 0 L 0 20 L 20 20 L 20 0 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/><path d="M 10 0 L 10 20 M 0 10 L 20 10" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cage)"/></svg>');
  }
  #banner-mma-fighters .cs-background:before {
    /* gradient overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
/*-- -------------------------- -->
<---       Fighter Journey     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-journey-1404 {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }
  #cs-journey-1404 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  #cs-journey-1404 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    margin: 0 auto 3rem auto;
  }
  #cs-journey-1404 .cs-content .cs-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1875rem;
    line-height: 1;
    color: #fff;
  }
  #cs-journey-1404 .cs-journey-paths {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  #cs-journey-1404 .cs-journey-path {
    background: rgba(114, 47, 55, 0.1);
    border: 0.125rem solid var(--secondary);
    padding: 2rem;
    position: relative;
    transform: skewX(-5deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.5rem;
  }
  #cs-journey-1404 .cs-journey-path:hover {
    transform: skewX(-5deg) scale(1.05);
    box-shadow: 0 0.625rem 1.875rem rgba(114, 47, 55, 0.3);
  }
  #cs-journey-1404 .cs-journey-path-content {
    transform: skewX(5deg);
    text-align: center;
  }
  #cs-journey-1404 .cs-path-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: #fff;
  }
  #cs-journey-1404 .cs-bold-highlight {
    position: relative;
    display: inline-block;
    font-weight: 900;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    text-shadow: 0.125rem 0.125rem 0px rgba(0, 0, 0, 0.3);
  }
  #cs-journey-1404 .cs-bold-highlight::before {
    content: '';
    position: absolute;
    top: -0.125rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.125rem;
    background: linear-gradient(45deg, transparent 30%, var(--secondary) 50%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    transform: skewX(-15deg);
  }
  #cs-journey-1404 .cs-bold-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--secondary), #fff, var(--secondary));
    z-index: -1;
  }
  #cs-journey-1404 .cs-journey-motto {
    margin: 3rem 0;
    text-align: center;
  }
  #cs-journey-1404 .cs-motto-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #fff;
  }
  #cs-journey-1404 .cs-motto-text:last-of-type {
    margin-bottom: 0;
  }
  #cs-journey-1404 .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cs-journey-1404 .cs-background .cs-pattern {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-journey-1404 .cs-journey-paths {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #cs-journey-1404 .cs-path-title {
    font-size: 1.75rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-journey-1404 .cs-journey-paths {
    grid-template-columns: repeat(4, 1fr);
  }
  #cs-journey-1404 .cs-motto-text {
    font-size: 2rem;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-1234 {
    padding: var(--sectionPadding);
    background-color: white;
  }
  #gallery-1234 .cs-container {
    width: 100%;
    /* changes to 100% at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-1234 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-1234 .cs-title {
    color: black;
    size: 3rem;
    text-transform: uppercase;
    font-weight: 900;
  }
  #gallery-1234 .cs-gallery {
    width: 100%;
    /* changes to flexbox at tablet */
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    /* 16px 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #gallery-1234 .cs-flex {
    /* breaks children from the parent. They are no longer considered children of the cs-flex and can now be flexed with the other images as part of the cs-gallery flexbox */
    display: contents;
  }
  #gallery-1234 .cs-picture {
    width: 100%;
    height: 69vw;
    /* changes at tablet */
    max-height: 18.75rem;
    display: block;
    position: relative;
  }
  #gallery-1234 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-1234 .cs-container {
    max-width: 100%;
  }
  #gallery-1234 .cs-gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #gallery-1234 .cs-flex,
  #gallery-1234 .cs-row {
    width: 20%;
  }
  #gallery-1234 .cs-flex {
    /* 375px - 680px */
    height: clamp(23.4375rem, 50vw, 42.5rem);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #gallery-1234 .cs-picture {
    max-height: 100%;
  }
  #gallery-1234 .cs-picture1 {
    height: 62%;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #gallery-1234 .cs-picture2 {
    height: 100%;
  }
  #gallery-1234 .cs-row {
    height: 40vw;
    max-height: 32.5rem;
  }
}
/*-- -------------------------- -->
<---        Video Section       -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-video-1406 {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
  }
  #cs-video-1406 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    text-align: center;
  }
  #cs-video-1406 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    margin: 0 auto 3rem auto;
  }
  #cs-video-1406 .cs-content .cs-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: #fff;
  }
  #cs-video-1406 .cs-content .cs-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #f0f0f0;
  }
  #cs-video-1406 .cs-video-embed {
    max-width: 50rem;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 0.9375rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
  }
  #cs-video-1406 .cs-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
    color: #ccc;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
  }
}
/*-- -------------------------- -->
<---      Training Programs     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-programs-1407 {
    padding: var(--sectionPadding);
    background: white;
  }
  #cs-programs-1407 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #cs-programs-1407 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    margin: 0 auto 3rem auto;
  }
  #cs-programs-1407 .cs-programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  #cs-programs-1407 .cs-program-card {
    background: white;
    border: 0.1875rem solid var(--secondary);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #cs-programs-1407 .cs-program-card::before {
    content: '';
    position: absolute;
    top: -0.125rem;
    left: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    background: var(--secondary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #cs-programs-1407 .cs-program-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: var(--headerColor);
  }
  #cs-programs-1407 .cs-text {
    margin-bottom: 1rem;
  }
  #cs-programs-1407 .cs-ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #cs-programs-1407 .cs-ul .cs-li {
    color: var(--bodyTextColor);
    line-height: 1.5em;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
  }
  #cs-programs-1407 .cs-ul .cs-li:before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }
  #cs-programs-1407 .cs-ul .cs-li:last-of-type {
    margin-bottom: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-programs-1407 .cs-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-programs-1407 .cs-programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
