/* ======== RESPONSIVE CSS ========= */

/* ===================================================
		MIN WIDTH 
=================================================== */
@media screen and (min-width: 1300px) {}

@media screen and (min-width: 1441px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    top: unset;
    bottom: 0;
    transform: scale(0.7);
    transform-origin: bottom right;
  }
}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 1900px) {}

@media screen and (min-width: 2000px) {}

@media screen and (min-width: 2200px) {}

@media screen and (min-width: 2700px) {}

/* ------------------------------ 
	768px SMALL
------------------------------ */
@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }

  .show-mobile {
    display: none;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 750px;
    margin: 6.75rem auto;
  }
}

/* ===================================================
		MIN - MAX WIDTH 
=================================================== */
/* ------------------------------ 
	992px - 1199px LARGE
------------------------------ */
@media (min-width: 992px) and (max-width: 1199px) {
  .gfield_checkbox {
    columns: 1;
  }
}

/* ------------------------------ 
	768px - 991px MEDIUM
------------------------------ */
@media (min-width: 641px) and (max-width: 991px) {}

/* ===================================================
		MAX WIDTH 
=================================================== */
@media screen and (max-width: 1420px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.85) translateY(-50%);
    transform-origin: center right;
  }
}

@media screen and (max-width: 1399px) {
  .page-template-page-meet .images {
    height: 300px;
  }
}

@media screen and (max-width: 1300px) {
  h1 {
    font-size: 5em;
  }
}

@media screen and (max-width: 1365px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.75) translateY(-50%);
    transform-origin: center right;
  }
}

@media screen and (max-width: 1200px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    top: unset;
    bottom: 0;
    transform: scale(0.6);
    transform-origin: bottom right;
  }

  .page-template-page-lp .meet hr,
  .page-template-page-lp .fighting hr,
  .page-template-page-lp .future hr {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {}

@media screen and (max-width: 1150px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.5);
    transform-origin: bottom right;
    top: unset;
    bottom: 0;
  }
}

@media screen and (max-width: 1025px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.45);
  }
}

@media screen and (max-width: 991px) {

  .mobile-nav-button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-nav-button span {
    display: block;
    width: 100%;
    height: 5px;
    background: var(--blue);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    left: 0;
  }

  .mobile-nav-button span:nth-child(1) {
    top: 4px;
  }

  .mobile-nav-button span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-nav-button span:nth-child(3) {
    bottom: 4px;
  }

  .mobile-nav-button.active-nav span:nth-child(1) {
    top: 0;
    transform: rotate(45deg) translate(9px, 9px);
  }

  .mobile-nav-button.active-nav span:nth-child(2) {
    opacity: 0;
    transform: translate(-10px, -50%);
  }

  .mobile-nav-button.active-nav span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
    bottom: 0;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -201px;
    padding-top: 50px;
    background: var(--red);
    height: 100vh;
    border-left: 1px solid var(--blue);
    z-index: 99;
    transition: 0.25s all;
    display: block;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    width: 200px;
    margin-top: 40px;
    padding: 0;
    list-style: none;
  }

  .main-navigation li {
    float: none;
    border-bottom: 1px solid var(--blue);
    padding: 10px !important;
    width: 100%;
  }

  .main-navigation li,
  .main-navigation a {
    color: white !important;
    width: 200px;
    margin: 0;
  }

  .main-navigation a {
    padding: 10px 20px;
  }

  .main-navigation.active-main {
    right: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  }

  .menu-item:last-child a {
    margin-right: 10px;
  }

  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.35);
  }

  .page-template-page-meet .content p {
    padding: 72px 0;
  }

  .page-template-page-meet hr,
  .page-template-page-involved hr,
  .page-template-page-issues hr {
    width: 100%;
  }

  .page-template-page-meet .images {
    height: auto;
  }

  .page-template-page-meet .images>* {
    width: 100%;
  }

  .page-template-page-involved .gform_confirmation_message {
    height: auto;
    margin-bottom: 0;
  }

  .page-template-page-issues .content .row:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 870px) {
  .page-template-page-lp .splash [src*="1_hero"] {
    transform: scale(0.3);
  }
}

@media screen and (max-width: 767px) {
  .page-template-page-lp .splash {
    padding-bottom: 0;
  }

  .page-template-page-lp .splash [src*="1_hero"] {
    position: relative;
    transform: scale(1);
    width: 95%;
    height: auto;
    display: flex;
    margin: 30px 0 0 auto;
  }

  .gform_confirmation_message {
    height: auto;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .name_first {
    margin-bottom: 8px !important;
  }

  .name_last {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 600px) {

  /* Reset for Mobile Admin bar */
  body {
    position: initial;
  }
}

@media screen and (max-width: 576px) {
  .gform_wrapper {
    max-width: none;
  }

  .gfield_checkbox {
    columns: 1;
  }
}

@media screen and (max-width: 500px) {
  .page-template-page-issues h2 {
    font-size: 3.75em;
  }
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 4em;
  }

  .page-template-page-issues h2,
  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 1.75em;
  }
}

@media screen and (max-width: 400px) {}

@media screen and (max-width: 350px) {
  h1 {
    font-size: 3.25em;
  }

  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 300px) {
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.15em;
  }
}