@font-face {
    font-family: 'perfectlyNineties';
    src: url('https://app.greenrope.com/users/myteam49926/Media8.otf') format('opentype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'perfectlyNineties', 'Times New Roman', Times, serif, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: lowercase;
}
#body-container {
    scrollbar-width: none;
    height: calc(100vh - 120px);
}
h1 {
    text-align: center;
}
h2 {
    margin: 0;
    font-size: 3.5em;
}
a {
    color: black;
    text-decoration: none;
}
.container {
    width: 100%;
    height: calc(100vh - 120px);
    overflow-y: scroll;
    scrollbar-width: none;
}
#main-container {
    height: calc(100vh - 120px);
    width: 100vw;
}
.row-subheader {
    font-size: 35px;
}
.center-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.small-column-content {
    height: min-content !important;
}
.single-line {
    margin: 35px auto;
}
.page-footer {
    padding-bottom: 100px;
}
#main-container #homepageContentTable, #main-container > br:first-of-type, #main-container > table {
    display: none;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* BORDERS */
.border {
    border: 1px solid #e4e4e497;
    border-radius: 25px;
}
.border-bottom {
    border-bottom: 1px solid #e4e4e497;
}
.box-shadow {
    box-shadow: 6px 6px 10px 0 #00000014;
}
.box-shadow-hover {
    transition: box-shadow .5s ease-out;
}
.box-shadow-hover:hover {
    box-shadow: 6px 6px 10px 0 #00000014;
}
.border-right {
    border-right: 1px solid #e4e4e497;
}
.border-left {
    border-left: 1px solid #e4e4e497;
}
.border-top {
    border-top: 1px solid #e4e4e497;
}
.border-bottom {
    border-bottom: 1px solid #e4e4e497;
}

/* IFRAME */
.iframe-container {
    width: 100%;
    height: 100%;
    margin: auto;
}
.iframe {
    height: 510px;
    margin: auto;
    width: 900px;  
}
#theCageVideo > iframe {
    height: 550px;
    margin: auto;
    width: 1040px;
}


/* SECTION */
.section-title {
    font-size: 55px;
    font-weight: 900;
}
.section-subtitle {
    font-size: clamp(15px,2vw,30px);
}
.section-break {
    display: flex;
    margin: auto;
    width: 100vw;
    align-items: center;
    justify-content: space-around;
    height: 100px;
}
.section-spacer {
    margin: 50px auto;
}
.section-header {
    margin: auto;
    width: 100vw; 
}
.section-footer {
    width: 100vw;
}
.header-content {
    max-width: 850px;
}

/* Gaps */
.gap-large {
    gap: 100px;
}
.gap-medium {
    gap: 50px;
}
.gap-small {
    gap:25px;
}

/* Width */
.width-max-content {
    width: max-content;
}
.width-min-content {
    width: min-content;
}
.width-large {
    width: 100%;
}
.width-medium {
    width: 75%;
}
.width-small {
    width: 50%;
}
.width-extra-small {
    width: 20%;
}

/* HEIGHT */
.height-max-content {
    height: max-content;
}
.height-min-content {
    height: min-content;
}
.height-auto {
    height: auto;
}
.height-large {
    height: 500px;
}
.height-medium {
    height: 300px;
}
.height-small {
    height: 100px;
}
.height-extra-small {
    height: 40px;
}

/* Padding */
.padding-large {
    padding: 100px;
}
.padding-medium {
    padding: 50px;
}
.padding-small {
    padding: 25px;
}
.padding-extra-small {
    padding: 15px;
}
.padding-top-bottom-large {
    padding-top: 50px;
    padding-bottom: 50px;
}
.padding-top-bottom-medium {
    padding-top: 25px;
    padding-bottom: 25px;
}
.padding-top-bottom-small {
    padding-top: 10px;
    padding-bottom: 10px;  
}

/* Margin */
.margin-large {
    margin: 75px;
}
.margin-medium {
    margin: 50px;
}
.margin-small {
    margin: 25px;
}
.margin-extra-small {
    margin: 10px;
}
.margin-remove {
    margin: 0;
}
.margin-top-bottom-large {
    margin-top: 75px;
    margin-bottom: 75px;
}
.margin-top-bottom-medium {
    margin-top: 50px;
    margin-bottom: 50px;
}
.margin-top-bottom-small {
    margin-top: 25px;
    margin-bottom: 25px;
}
.margin-top-bottom-extra-small {
    margin-top: 10px;
    margin-bottom: 10px;
}
.margin-sides-large {
    margin-right: 75px;
    margin-left: 75px;
}
.margin-sides-medium {
    margin-right: 50px;
    margin-left: 50px;       
}
.margin-sides-small {
    margin-right: 25px;
    margin-left: 25px;        
}
.margin-sides-extra-small {
    margin-right: 10px;
    margin-left: 10px;        
}

/* Flex sizes */
.flex-large {
    display: flex;
    flex: 0 0 100%;
}
.flex-medium {
    display: flex;
    flex: 0 0 50%;
}
.flex-small {
    display: flex;
    flex: 0 0 35%;
}
.flex-extra-small {
    display: flex;
    flex: 0 0 25%;
}
.flex-three-column {
    display: flex;
    flex: 0 0 33.33%;
}
.flex-four-column {
    display: flex;
    flex: 0 0 15%;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-column-reverse {
    display: flex;
    flex-direction: column-reverse;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.flex-start {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.flex-start-align {
    display: flex;
    align-items: flex-start;
}
.flex-start-justify {
    display: flex;
    justify-content: flex-start;    
}
.flex-stretch {
    display: flex;
    align-items: stretch;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-no-wrap {
    display: flex;
    flex-wrap: nowrap;
}
.flex-space-between {
    display: flex;
    justify-content: space-between;
}
.flex-space-around {
    display: flex;
    justify-content: space-around;
}

/* Font size */
.font-size-large {
    font-size: 3em;
}
.font-size-medium {
    font-size: 2em;
}
.font-size-small {
    font-size: 1.2em;
}
.font-size-extra-small {
    font-size: 0.9em;
}
.list-style-none {
    list-style: none;
}
.list-style-circle {
    list-style: circle;
}

.plus-sign, .arrow-sign {
    font-size: 55px;
    margin: 0 25px;
    display: flex;
    align-items: center;
}
.bubble {
    background-color: white;
}
.bubble-hover {
    transition: padding 0.5s ease-in;
}
.bubble-hover:hover {
    padding: 80px !important;
}

/* Text alignemnt */
.center-text {
    text-align: center;
}
.alignment-justify {
    text-align: justify;
}
.alignment-center {
    text-align: center;
}
.alignment-left {
    text-align: left;
}
.alignment-right {
    text-align: right;
}

/* Text style */
.grey-text {
    color: #3f3f3f;
}
.white-text {
    color: white;
}
.bold {
    font-weight: 900;
}

/* background color */
.grey-background {
    background-color: #f5f5f5;
}
.black-background {
    background-color: black;
}

/* HEADER */
#header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    position: relative;
    transition: box-shadow 0.5s ease-in;
}
#header-container.scrolled {
    box-shadow: -5px 9px 20px #dedede3b;
}
#header-left, #header-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 120px;
}
#header-left {
    left: 0;
}
#homepage-button {
    position: absolute;
    left: 50;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}
#header-right {
    right: 0;
}
#header-container a, #menu-button p {
    font-size: 1.2em;
}

/* BUTTONS */
/* Menu Button */
#menu-button p, #menu-items li, #footer li {
    cursor: pointer;
    text-align: right;
}
#menu-button {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    width: 100%;
    right: 50;
}
/* Main Button */
.main-button {
    background-color: white;
    transition: background-color .7s ease-in-out, font-weight .7s ease-in-out, color .7s ease-in-out;
}
.main-button-size {
    width: 200px;
    height: 60px;
}
.main-button:hover {
    background: black;
    color: white;
    font-weight: 900;
}

/* Menus */
#menu-items {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 1rem 50px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-16px);
    box-shadow: 5px 9px 10px #dedede3b;
    transition: opacity 1s ease, transform 1s ease, box-shadow 1s ease;
}
#menu-items.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 15;
    transform: translateY(0);
}
#menu-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }
#menu-items li {
    margin: 0.75rem 0;
}
#menu-items a {
    text-decoration: none;
    color: #000;
}
#menu-items a:hover {
    text-decoration: underline !important;
}

/* Carousel */
#carouselContainer {
    width: 100%;
    margin-top: 100px;
}
.carouselContent {
    font-size: .9em;
    width: 100%;
    text-align: center;
    line-height: 1.7;
    margin: 10px;
    border: 1px solid #e4e4e497;
    border-radius: 15px;
    height: fit-content;
    padding: 45px 15px;
}
.carouselContent:hover {
    box-shadow: 0 3px 10px 0px #b3b3b345;
}
.carouselInner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: auto;}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

#testimonial {
    padding: 25px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}


/* ATHLETE DEVELOPMENT */
.item-title {
    font-size: 1.7em;
}
/* Package Card */
.package-cost p {
    font-size: 1.7em;
}
.package-frequency {
    width: 100%;
    max-width: max-content;
    padding: 0 15px;
    height: 40px;
    display: flex;
    justify-content: center;
}
.circle-container {
    width: 55px;
    height: 55px;
    background: black;
    border-radius: 50px;
}

/* PASSWORD / MEMBER LOGIN PAGE */
#passwordEntryLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    width: 90%;
    margin: auto;
    height: 70vh;
}
#passwordEntryLine input:not(#loginPassword) {
    transition: background-color .7s ease-in-out, color .7s ease-in-out;
}
#passwordEntryLine input:hover:not(#loginPassword) {
    background: black !important;
    color: white !important;
    font-weight: 900 !important;
}
#passwordProtectionLine {
    display: none;
}
#passwordEntryLine span, #passwordEntryLine input {
    padding: 12px !important;
    margin: 10px 0 !important;
    color: #000 !important;
    text-transform: lowercase;
    font-style: normal;
    font-size: 1em;
    font-weight: 500 !important;
}
#passwordEntryLine input {
    width: 100%;
    max-width: 250px;
    border-radius: 25px !important;
    font-family: 'perfectlyNineties', 'Times New Roman', Times, serif, sans-serif !important;
    border: 1px solid #e4e4e497 !important;
    background-color: white !important;
}
#passwordEntryLine input:focus {
    box-shadow: 6px 6px 10px 0 #00000014;
}

/* Media Query > Height */
@media only screen and (max-height: 1500px) {
#videoContainer {
    width: 90%;
}
}

@media only screen and (max-width: 2500px) {
    .iframe {
        height: 400px;
        margin: auto;
        width: 820px;  
    }
}

@media only screen and (max-width: 1980px) {
    .mobile-flex-extra-small {
        display: flex;
        flex: 0 0 20%;
    }
}


/* Media Query > Width */
@media only screen and (max-width: 1380px) {
    .iframe {
        height: 310px;
        margin: auto;
        width: 550px;     
    }
    #theCageVideo > iframe {
        height: 520px;
        margin: auto;
        width: 1200px;
    }

    /* LAPTOP */
    .laptop-display-none {
        display: none;
    }
    .laptop-font-size-large {
        font-size: 2.5em;
    }
    .laptop-font-size-medium {
        font-size: 1.7em;
    }
    .laptop-font-size-small {
        font-size: 1.5em;
    }
    .laptop-font-size-extra-small {
        font-size: 0.8em;
    }
    .laptop-alignment-justify {
        text-align: justify;
    }
    .laptop-alignment-center {
        text-align: center;
    }
    .laptop-alignment-left {
        text-align: left;
    }
    .laptop-alignment-right {
        text-align: right;
    }
    .laptop-width-large {
        width: 100%;
    }
    .laptop-width-medium {
        width: 80%;
    }
    .laptop-width-small {
        width: 40%;
    }
    .laptop-flex-start {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .laptop-flex-start-align {
        display: flex;
        align-items: flex-start;
    }
    .laptop-flex-start-justify {
        display: flex;
        justify-content: flex-start;    
    }
    .laptop-font-size-large {
        font-size: 2em;
    }
    .laptop-font-size-medium {
        font-size: 1.5em;
    }
    .laptop-font-size-small {
        font-size: 1.2em;
    }
    .laptop-alignment-justify {
        text-align: justify;
    }
    .laptop-width-large {
        width: 100%;
    }
    .laptop-width-medium {
        width: 80%;
    }
    .laptop-width-small {
        width: 40%;
    }
    .laptop-flex-large {
        display: flex;
        flex: 0 0 80%;
    }
    .laptop-flex-medium {
        display: flex;
        flex: 0 0 50%;
    }
    .laptop-flex-small {
        display: flex;
        flex: 0 0 40%;
    }
    .laptop-flex-extra-small {
        display: flex;
        flex: 0 0 30%;
    }
    .laptop-flex-three-column {
        display: flex;
        flex: 0 0 33.33%;
    }
    .laptop-flex-four-column {
        display: flex;
        flex: 0 0 10%;
    }
    .laptop-padding-remove {
        padding: unset;
    }
    .laptop-padding {
        padding: 40px 0;
    }
    .laptop-padding-all-sides {
        padding: 25px;
    }
    .laptop-padding-large {
        padding: 100px;
    }
    .laptop-padding-medium {
        padding: 50px;
    }
    .laptop-padding-small {
        padding: 25px;
    }
    .laptop-padding-top-bottom-large {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .laptop-padding-top-bottom-medium {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .laptop-padding-top-bottom-small {
        padding-top: 10px;
        padding-bottom: 10px;  
    }
    .laptop-margin-auto {
        margin: auto;
    }
    .laptop-margin-remove {
        margin: 0;
    }
    .laptop-margin-top-bottom-large {
        margin-top: 75px;
        margin-bottom: 75px;
    }
    .laptop-margin-top-bottom-medium {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .laptop-margin-top-bottom-small {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .laptop-margin-top-bottom-extra-small {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .laptop-margin-sides-large {
        margin-right: 75px;
        margin-left: 75px;
    }
    .laptop-margin-sides-medium {
        margin-right: 50px;
        margin-left: 50px;       
    }
    .laptop-margin-sides-small {
        margin-right: 25px;
        margin-left: 25px;        
    }
    .laptop-margin-sides-extra-small {
        margin-right: 10px;
        margin-left: 10px;        
    }
    .laptop-h4-margin {
        margin: 0 0 30px;
    }
    .laptop-flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
    }
    .laptop-center-text {
        text-align: center;
    }
    .laptop-section-spacer {
        margin: 25px auto;
    }
    .laptop-gap {
        gap: 0;
    }
    .laptop-max-content {
        width: 100%;
    }
    .laptop-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
    .laptop-flex-stretch {
        display: flex;
    }
    .laptop-height-auto {
        height: auto;
    }
    .laptop-border-remove {
        border: none;
    }
    .laptop-border-right {
        border-right: 1px solid #e4e4e497;
    }
    .laptop-border-left {
        border-left: 1px solid #e4e4e497;
    }
    .laptop-border-top {
        border-top: 1px solid #e4e4e497;
    }
    .laptop-border-bottom {
        border-bottom: 1px solid #e4e4e497;
    }
    .row-one.column-one.four-row-border, .row-one.column-two.four-row-border, .row-one.column-three.four-row-border {
        border: none;
    }
    .row-one.column-one.four-row-border, .row-one.column-two.four-row-border, .row-one.column-three.four-row-border {
        border: none;
        border-bottom: 1px solid black;
    }


}
/* LAPTOP / SMALL SCREENS */
@media only screen and (max-width: 1250px) {
    h2 {
        font-size: 2em;
    }
    .iframe {
        height: 310px;
        margin: auto;
        width: 550px; 
    }
    #theCageVideo > iframe {
        height: 370px;
        margin: auto;
        width: 730px;
    }
    .small-screen-font-size-large {
        font-size: 1.1em;
    }
    .small-screen-font-size-medium {
        font-size: 1em;
    }
    .small-screen-font-size-small {
        font-size: 0.9em;
    }
    .small-screen-font-size-extra-small {
        font-size: 0.8em;
    }
}
/* TABLETS / SMALL SCREENS */
@media only screen and (max-width: 1080px) {
    #header-left {
        z-index: 25;
    }
    #main-container {
        z-index: 10;
    }
    body:has(.is-open) {
        overflow: hidden;
    }
    #menu-items {
        z-index: -1;
        width: 100vw;
        height: calc(100vh - 120px);
        top: 100%;
        padding-bottom: 0;
        padding-top: 0;
        background-color: white;
        box-shadow: none;
    }
    #menu-items li {
        cursor: default;
    }
    #menu-items a {
        cursor: pointer;
    }
    #carouselContainer {
        margin-top: auto;
    }
    .single-line-mobile {
        font-size: 1.5em;
    }
    .tablet-display-none {
        display: none;
    }
    .tablet-width-large {
        width: 100%;
    }
    .tablet-width-medium {
        width: 80%;
    }
    .tablet-width-small {
        width: 40%;
    }
    .tablet-flex-start {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .tablet-flex-start-align {
        display: flex;
        align-items: flex-start;
    }
    .tablet-flex-start-justify {
        display: flex;
        justify-content: flex-start;    
    }
    .tablet-font-size-large {
        font-size: 2em;
    }
    .tablet-font-size-medium {
        font-size: 1.5em;
    }
    .tablet-font-size-small {
        font-size: 1.2em;
    }
    .tablet-font-size-extra-small {
        font-size: 0.8em;
    }
    .tablet-alignment-justify {
        text-align: justify;
    }
    .tablet-alignment-center {
        text-align: center;
    }
    .tablet-alignment-left {
        text-align: left;
    }
    .tablet-alignment-right {
        text-align: right;
    }
    .tablet-width-large {
        width: 100%;
    }
    .tablet-width-medium {
        width: 80%;
    }
    .tablet-width-small {
        width: 40%;
    }
    .tablet-flex-large {
        display: flex;
        flex: 0 0 80%;
    }
    .tablet-flex-medium {
        display: flex;
        flex: 0 0 50%;
    }
    .tablet-flex-small {
        display: flex;
        flex: 0 0 40%;
    }
    .tablet-flex-extra-smal {
        display: flex;
        flex: 0 0 30%;
    }
    .tablet-flex-three-column {
        display: flex;
        flex: 0 0 33.33%;
    }
    .tablet-flex-four-column {
        display: flex;
        flex: 0 0 10%;
    }
    .tablet-padding-remove {
        padding: unset;
    }
    .tablet-padding {
        padding: 40px 0;
    }
    .tablet-padding-all-sides {
        padding: 25px;
    }
    .tablet-padding-large {
        padding: 100px;
    }
    .tablet-padding-medium {
        padding: 50px;
    }
    .tablet-padding-small {
        padding: 25px;
    }
    .tablet-padding-top-bottom-large {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .tablet-padding-top-bottom-medium {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .tablet-padding-top-bottom-small {
        padding-top: 10px;
        padding-bottom: 10px;  
    }
    .tablet-margin-auto {
        margin: auto;
    }
    .tablet-margin-remove {
        margin: 0;
    }
    .tablet-margin-sides-large {
        margin-right: 75px;
        margin-left: 75px;
    }
    .tablet-margin-sides-medium {
        margin-right: 50px;
        margin-left: 50px;       
    }
    .tablet-margin-sides-small {
        margin-right: 25px;
        margin-left: 25px;        
    }
    .tablet-margin-sides-extra-small {
        margin-right: 10px;
        margin-left: 10px;        
    }
    .tablet-margin-top-bottom-large {
        margin-top: 75px;
        margin-bottom: 75px;
    }
    .tablet-margin-top-bottom-medium {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .tablet-margin-top-bottom-small {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .tablet-margin-top-bottom-extra-small {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .tablet-h4-margin {
        margin: 0 0 30px;
    }
    .tablet-flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
    }
    .tablet-center-text {
        text-align: center;
    }
    .tablet-section-spacer {
        margin: 25px auto;
    }
    .tablet-gap {
        gap: 0;
    }
    .tablet-max-content {
        width: 100%;
    }
    .tablet-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
    .tablet-flex-stretch {
        display: flex;
    }
    .tablet-height-auto {
        height: auto;
    }
    .tablet-border-remove {
        border: none;
    }
    .tablet-border-right {
        border-right: 1px solid #e4e4e497;
    }
    .tablet-border-left {
        border-left: 1px solid #e4e4e497;
    }
    .tablet-border-top {
        border-top: 1px solid #e4e4e497;
    }
    .tablet-border-bottom {
        border-bottom: 1px solid #e4e4e497;
    }


}
/* MOBILE+ */
@media only screen and (max-width: 961px) {  
    #body-container {
        height: auto;
    }
    .container {
        justify-content: flex-start;
        height: calc(100vh - 80px);
    }
    #header-container {
        background-color: white;
        height: 80px;
    }
    #header-left, #header-right {
        height: 80px;
    }
    #menu-items {
        height: calc(100vh - 80px);
    }
    .carouselItem {
        flex-direction: column;
        touch-action: pan-y;
    }
    .carouselContent {
        width: auto;
    }
    #passwordEntryLine {
        justify-content: flex-start;
    }
    #passwordEntryLine input {
        width: 80%;
        max-width: none;
    }
    .section-title {
        font-size: 35px;
    }
    .mobile-display-none {
        display: none;
    }
    .mobile-width-large {
        width: 100%;
    }
    .mobile-width-medium {
        width: 80%;
    }
    .mobile-width-small {
        width: 40%;
    }
    .mobile-flex-start {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .mobile-flex-start-align {
        display: flex;
        align-items: flex-start;
    }
    .mobile-flex-start-justify {
        display: flex;
        justify-content: flex-start;    
    }
    .mobile-font-size-large {
        font-size: 2em;
    }
    .mobile-font-size-medium {
        font-size: 1.3em;
    }
    .mobile-font-size-small {
        font-size: 1.1em;
    }
    .mobile-font-size-extra-small {
        font-size: 0.8em;
    }
    .mobile-alignment-justify {
        text-align: justify;
    }
    .mobile-alignment-center {
        text-align: center;
    }
    .mobile-alignment-left {
        text-align: left;
    }
    .mobile-alignment-right {
        text-align: right;
    }
    .mobile-width-large {
        width: 100%;
    }
    .mobile-width-medium {
        width: 80%;
    }
    .mobile-width-small {
        width: 40%;
    }
    .mobile-flex-large {
        display: flex;
        flex: 0 0 80%;
    }
    .mobile-flex-medium {
        display: flex;
        flex: 0 0 50%;
    }
    .mobile-flex-small {
        display: flex;
        flex: 0 0 40%;
    }
    .mobile-flex-extra-small {
        display: flex;
        flex: 0 0 30%;
    }
    .mobile-flex-three-column {
        display: flex;
        flex: 0 0 33.33%;
    }
    .mobile-flex-four-column {
        display: flex;
        flex: 0 0 10%;
    }
    .mobile-padding-remove {
        padding: unset;
    }
    .mobile-padding {
        padding: 40px 0;
    }
    .mobile-padding-all-sides {
        padding: 25px;
    }
    .mobile-padding-large {
        padding: 100px;
    }
    .mobile-padding-medium {
        padding: 50px;
    }
    .mobile-padding-small {
        padding: 25px;
    }
    .mobile-padding-top-bottom-large {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .mobile-padding-top-bottom-medium {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .mobile-padding-top-bottom-small {
        padding-top: 10px;
        padding-bottom: 10px;  
    }
    .mobile-margin-sides-large {
        margin-right: 75px;
        margin-left: 75px;
    }
    .mobile-margin-sides-medium {
        margin-right: 50px;
        margin-left: 50px;       
    }
    .mobile-margin-sides-small {
        margin-right: 25px;
        margin-left: 25px;        
    }
    .mobile-margin-sides-extra-small {
        margin-right: 10px;
        margin-left: 10px;        
    }
    .mobile-margin-auto {
        margin: auto;
    }
    .mobile-margin-remove {
        margin: 0;
    }
    .mobile-margin-top-bottom-large {
        margin-top: 75px;
        margin-bottom: 75px;
    }
    .mobile-margin-top-bottom-medium {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .mobile-margin-top-bottom-small {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .mobile-margin-top-bottom-extra-small {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mobile-h4-margin {
        margin: 0 0 30px;
    }
    .mobile-flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
    }
    .mobile-center-text {
        text-align: center;
    }
    .mobile-section-spacer {
        margin: 25px auto;
    }
    .mobile-gap {
        gap: 0;
    }
    .mobile-max-content {
        width: 100%;
    }
    .mobile-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
    .mobile-flex-stretch {
        display: flex;
    }
    .mobile-height-auto {
        height: auto;
    }
    .mobile-border-remove {
        border: none;
    }
    .mobile-border-right {
        border-right: 1px solid #e4e4e497;
    }
    .mobile-border-left {
        border-left: 1px solid #e4e4e497;
    }
    .mobile-border-top {
        border-top: 1px solid #e4e4e497;
    }
    .mobile-border-bottom {
        border-bottom: 1px solid #e4e4e497;
    }
    #theCageVideo > iframe {
        height: 330px;
        margin: auto;
        width: 730px;
    }
}
@media only screen and (max-width: 768px) {
    /* body {
        height: 90vh;
    } */
    h1 {
        font-size: 20px;
    }
    .small-mobile-font-size-large {
        font-size: 1.5em;
    }
    .small-mobile-font-size-medium {
        font-size: 1.1em;
    }
    .small-mobile-font-size-small {
        font-size: 0.9em;
    }
    .small-mobile-font-size-extra-small {
        font-size: 0.7em;
    }
    .small-mobile-display-none {
        display: none;
    }
    .small-mobile-width-large {
        width: 100%;
    }
    .small-mobile-width-medium {
        width: 80%;
    }
    .small-mobile-width-small {
        width: 40%;
    }
    .small-mobile-flex-start {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .small-mobile-flex-start-align {
        display: flex;
        align-items: flex-start;
    }
    .small-mobile-flex-start-justify {
        display: flex;
        justify-content: flex-start;    
    }
    .small-mobile-font-size-large {
        font-size: 2em;
    }
    .small-mobile-font-size-medium {
        font-size: 1.3em;
    }
    .small-mobile-font-size-small {
        font-size: 1.1em;
    }
    .small-mobile-font-size-extra-small {
        font-size: 0.8em;
    }
    .small-mobile-alignment-justify {
        text-align: justify;
    }
    .small-mobile-alignment-center {
        text-align: center;
    }
    .small-mobile-alignment-left {
        text-align: left;
    }
    .small-mobile-alignment-right {
        text-align: right;
    }
    .small-mobile-width-large {
        width: 100%;
    }
    .small-mobile-width-medium {
        width: 80%;
    }
    .small-mobile-width-small {
        width: 40%;
    }
    .small-mobile-flex-large {
        display: flex;
        flex: 0 0 80%;
    }
    .small-mobile-flex-medium {
        display: flex;
        flex: 0 0 50%;
    }
    .small-mobile-flex-small {
        display: flex;
        flex: 0 0 40%;
    }
    .small-mobile-flex-extra-small {
        display: flex;
        flex: 0 0 30%;
    }
    .small-mobile-flex-three-column {
        display: flex;
        flex: 0 0 33.33%;
    }
    .small-mobile-flex-four-column {
        display: flex;
        flex: 0 0 10%;
    }
    .small-mobile-padding-remove {
        padding: unset;
    }
    .small-mobile-padding {
        padding: 40px 0;
    }
    .small-mobile-padding-all-sides {
        padding: 25px;
    }
    .small-mobile-padding-large {
        padding: 100px;
    }
    .small-mobile-padding-medium {
        padding: 50px;
    }
    .small-mobile-padding-small {
        padding: 25px;
    }
    .small-mobile-padding-top-bottom-large {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .small-mobile-padding-top-bottom-medium {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .small-mobile-padding-top-bottom-small {
        padding-top: 10px;
        padding-bottom: 10px;  
    }
    .small-mobile-margin-sides-large {
        margin-right: 75px;
        margin-left: 75px;
    }
    .small-mobile-margin-sides-medium {
        margin-right: 50px;
        margin-left: 50px;       
    }
    .small-mobile-margin-sides-small {
        margin-right: 25px;
        margin-left: 25px;        
    }
    .small-mobile-margin-sides-extra-small {
        margin-right: 10px;
        margin-left: 10px;        
    }
    .small-mobile-margin-auto {
        margin: auto;
    }
    .small-mobile-margin-remove {
        margin: 0;
    }
    .small-mobile-margin-top-bottom-large {
        margin-top: 75px;
        margin-bottom: 75px;
    }
    .small-mobile-margin-top-bottom-medium {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .small-mobile-margin-top-bottom-small {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .small-mobile-margin-top-bottom-extra-small {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .small-mobile-h4-margin {
        margin: 0 0 30px;
    }
    .small-mobile-flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
    }
    .small-mobile-center-text {
        text-align: center;
    }
    .small-mobile-section-spacer {
        margin: 25px auto;
    }
    .small-mobile-gap {
        gap: 0;
    }
    .small-mobile-max-content {
        width: 100%;
    }
    .small-mobile-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
    .small-mobile-flex-stretch {
        display: flex;
    }
    .small-mobile-height-auto {
        height: auto;
    }
    .small-mobile-border-remove {
        border: none;
    }
    .small-mobile-border-right {
        border-right: 1px solid #e4e4e497;
    }
    .small-mobile-border-left {
        border-left: 1px solid #e4e4e497;
    }
    .small-mobile-border-top {
        border-top: 1px solid #e4e4e497;
    }
    .small-mobile-border-bottom {
        border-bottom: 1px solid #e4e4e497;
    }  
}
@media only screen and (max-width: 640px) {
    .row-one.column-one.four-row-border, .row-one.column-two.four-row-border, .row-one.column-three.four-row-border {
        border: none;
        border-bottom: 1px solid #b7b7b7;
    }
    #theCageVideo > iframe {
        height: 210px;
        width: 100%;
        margin: auto;
    }
}