/*
ALL CSS FOR WEBSITE IS STORED HERE. ALL IS ORGANIZZED ALPHABETICALLY.
RESPONSIVE CHANGES MIGHT BE STORED IN A SEPARTE css FILE AT A LATER DATE
*/
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
 

/*  
A                                
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$$$$$$$ |
$$  __$$ |
$$ |  $$ |
$$ |  $$ |
\__|  \__|
 */



 
a:hover {
    background-color: transparent;
    text-decoration: underline; /* Optional: keep underline */
}



 /* Buttons */
a.button {
  /* display: inline-block; */
  background-color: #2077BD;
  color: white !important;
  font-size: 1.8rem;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  border: 0.2em solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.2em 0 black;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.25rem;
  
  /* box-shadow:
    0 0 10px #2077BD,
    inset 0 0 5px #fff; */
  transition: all 0.5s;
  margin-bottom: 2rem;
}

a.button:hover {
  background: #40a3f5;
  /* transform: translate(-0.1em, -0.1em); */
  box-shadow: 0.3em 0.3em 0 black;
  transform: scale(1.5);
  text-shadow: 0.075em 0.09em 0 black;
}

a.CardButton {
  /* display: inline-block; */
  background-color: #2077BD;
  display: inline;
  color: white !important;
  font-size: rem;
  position: relative;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  border: 0.2em solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.2em 0 black;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2rem 4rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 2rem;
  /* box-shadow:
    0 0 10px #2077BD,
    inset 0 0 5px #fff; */
  transition: all 0.3s;
  margin-bottom: 2rem;
}

a.CardButton:hover {
  /* background: #40a3f5; */
  background: #ff0033;
  /* transform: translate(-0.1em, -0.1em); */
  box-shadow: 0.3em 0.3em 0 black;
  text-shadow: 0.075em 0.09em 0 black;
  transform: scale(1.5);
}

/* a.button:hover {
  background-color: #2077BD;
  box-shadow:
    0 0 15px #2077BD,
    inset 0 0 8px #fff;
}                                                                 */
 


/*    
B                 
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$\ |
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
\_______/ 
 */
                    
/* Base body styles */
body {
  margin: 0;
  min-height: 100vh;
  background: url('assets/Plain BG.png') no-repeat center center fixed;
  background-size: cover;
  background-color: #222;
  color: #fff;
  font-family: 'roc-grotesk', sans-serif !important; /* force no cursive fallback */
  line-height: 1.6;
  /* text-transform: uppercase; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  overflow-x: hidden;
}

   

/*   
C                   
 $$$$$$\  
$$  __$$\ 
$$ /  \__|
$$ |      
$$ |      
$$ |  $$\ 
\$$$$$$  |
 \______/ 
 */
                     
 
.card {
  position: static;
  display: center;
  aspect-ratio: 3.75 / 2.5;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 20px;
  background: #EEF9FE;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  /* height: 50px;
  width: 200px; */
}

.card_title {
  font-size: 7rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}



/* .card_title::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 66%;
  height: 5px;
  text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0);
  background-color: red;
  box-shadow: 1em 1em 0 rgb(255, 255, 255);
  transform: translateX(-100%);
  transition: transform 0.3s;
} */

.parent:hover .card_title {
  transform: translateX();
  color: #0E2849;
  text-shadow: 0.0125em 0.05em 0 red;
}

.parentAlt:hover .card_title {
  transform: translateX();
  color: #0E2849;
  text-shadow: 0.02em 0.06em 0 red;
}

.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.25rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}



.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.15rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}


/* .card span.card-text,
.card .icon-group {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.card .icon-group {
  gap: 15px;
  opacity: 0;
  z-index: 1;
}

.card .social-link svg {
  height: 25px;
  fill: whitesmoke;
  text-shadow: 1px 1px rgba(31, 74, 121, 0.7);
}

.card .social-link {
  transition: transform 0.2s ease;
}

.card .social-link:hover {
  animation: bounce_613 0.4s linear;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }
  60% {
    transform: scale(0.8);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.card:hover .card-text {
  opacity: 0;
}

.card:hover .icon-group {
  opacity: 1;
} */


/* Class for backdrop behind other stuff */
.content-block {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
}   
 
/* Contact info vertical stack */
.contact-info p {
  margin: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  max-width: 800px;
  width: 100%;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
  text-align: left;
}


                     
/*    
D                  
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$$$$$$  |
\_______/ 
 */




/* 
E
 $$$$$$$$\ 
$$  _____|
$$ |      
$$$$$\    
$$  __|   
$$ |      
$$$$$$$$\ 
\________| 
*/




/* 
F
$$$$$$$$\ 
$$  _____|
$$ |      
$$$$$\    
$$  __|   
$$ |      
$$ |      
\__|      
 */

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #0E2849;
  justify-content: center;
  border-top:5px solid #2077BD;
  color: lightgrey;
  font-family: 'roc-grotesk-extrawide', sans-serif !important;
  font-size: 0.90rem;
  width: 100vw;
  box-sizing: border-box;
  /* position: sticky; */
  bottom: 0;
}


.footer-logo {
    height: 100px;
    width: 100px;
    /* margin-bottom: px; */
    display: inline;
}


.footer-sub-content-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    display: block;
    font-weight: bold;
    align-items: center;
    font-size: 1.75rem;
    font-family: 'roc-grotesk-wide', sans-serif !important;
    /* margin-bottom: 5px; */
    color: var(--background-color-6);
}

.footer-description, .footer-email {
    width: 100% !important;
    text-align: left !important;
    margin: 5px 0 !important;
    font-size: 1rem !important;
}

.footer-social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: lightgray;
    letter-spacing: 50%;
    font-size: 1.75rem;
    transition: color 0.3s ease;
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    /* padding-right: 3%; */
    box-shadow: none !important;
}

.footer-solid {
    grid-column: span 2;
    width: 100%;
    margin: 20px 0;
}

.footer-bottom {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* margin-top: 20px; */
    /* padding-left: 7%; */
    /* padding-bottom: 1%; */
}
/* 
footer {
    background-color: #0c162c;
    padding: 40px 10%;
    color: var(--grey-2);
    margin-top: 60px;
} */



/* 
G
  $$$$$$\  
$$  __$$\ 
$$ /  \__|
$$ |$$$$\ 
$$ |\_$$ |
$$ |  $$ |
\$$$$$$  |
 \______/  
 */
 
 


/* 
H          
$$\   $$\ 
$$ |  $$ |
$$ |  $$ |
$$$$$$$$ |
$$  __$$ |
$$ |  $$ |
$$ |  $$ |
\__|  \__| 
*/

/* Header styles */
header {
  text-align: center;
  margin: 2rem 0 3rem 0;
  max-width: 900px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-family: 'roc-grotesk', sans-serif !important; /* swapped Staatliches with Anton to prevent cursive */
  font-size: 3.5rem;
  color: #ff0033;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  margin-bottom: 0.5rem;
}

header .cta {
  font-family: 'roc-grotesk', sans-serif !important;
  font-size: 1.5rem;
  color: #fff;
  text-shadow:
    -1px -1px 0 #ff0033,
     1px -1px 0 #ff0033,
    -1px  1px 0 #ff0033,
     1px  1px 0 #ff0033;
  margin-bottom: 1.5rem;
}




.hero-section {
    /* Add top margin/padding equal to the navbar's height */
    margin-top: 5%;
    margin-bottom: 2%;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/trumpmuskgay.png");
  width: 100vw;
  height: auto;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

.hero-title {
  font-size: 7.5rem;
  font-family: 'roc-grotesk-extrawide', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EEF9FE;
  text-align: left;
  margin-top: 7%;
  text-shadow: 0.075em 0.09em 0 black;
  /* text-shadow:
    -5px -5px 0 #000000,
     23px -5px 0 black,
    -5px  5px 0 black,
     23px  2px 0 rgb(0, 0, 0); */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}

.hero-subtitle {
  font-size: 2rem;
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: white;
  text-align: center;
  margin-top: 1rem;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  text-transform: uppercase;
}

.hero-title {
  position: real;
  z-index: 2; /* or higher */
}

.hero {
  padding-top: 60px;
}


/*  
I         
$$$$$$\ 
\_$$  _|
  $$ |  
  $$ |  
  $$ |  
  $$ |  
$$$$$$\ 
\______| 
*/

.impactcontainer {
    align-items: center;
    /* width: calc(100% - 10%); */
    width: 100vw;
    height: fit-content;
    vertical-align: top;
    padding: 19% 6% 0% 3%;
    outline: none;
    /* border-top: solid black; */
    /* border-bottom:solid black; */
    position: relative;
    overflow: hidden;
    background-color: rgba(14, 40, 73, 0.8);
    border-bottom:5px solid #2077BD;
    z-index: 1;

}
.impact-background-image {
    position: absolute;
    margin: 0;
    border:0;
    inset: 0;
    width: 100.5%;
    height: 100.75%;
    object-fit: cover;
    background: url('assets/WeWillNotComply.jpg') center fixed;
    background-size: cover;
    background-blend-mode: multiply;
    background-color: rgba(14, 40, 73, 0.8);
    
    
    /* z-index: 1; */
}

img{
  border:0;
  outline: none;
}


/* 
J
   $$$$$\ 
   \__$$ |
      $$ |
      $$ |
$$\   $$ |
$$ |  $$ |
\$$$$$$  |
 \______/ 
*/

.join_card {
  width: 100%;
  /* aspect-ratio: 3.75 / 2.5; */
  /* display: flex; */
  justify-content: center;
  padding: 2px 20px 80px 20px;
  background: url(assets/NoElonNoHand2.png) center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 6px solid #000;
  border-radius: 0.4em;
  box-shadow: 12px 12px 0 #000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.join_card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 17px 17px 0 #000;
}

.join_card__title {
  font-size: 8.25rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  /* font-weight: 700; */
  font-style: normal;
  padding-top: 3%;
  color: #000;
  text-shadow: 0.03em 0.03em 0 rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1;
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
}

.join_card__title::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 66%;
  height: 5px;
  background-color: red;
  box-shadow: 1em 1em 0 rgb(255, 255, 255);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.join_card:hover .join_card__title::after {
  transform: translateX(0);
}

.join_card__content {
  padding-top: 2%;
  padding-right: 2%;
  position: relative;
  font-size: 1.25rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}

.join_card__content.strong {
  font-weight: 700;
}

.join_card__button {
  border: 3px solid #000;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  left: 20%;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  width: 50%;
  height: 100%;
}

.join_card__button::before {
  content: "Sure?";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-color: #5ad641;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.join_card__button:hover::before {
  transform: translateY(0);
}



/* 
K
$$\   $$\ 
$$ | $$  |
$$ |$$  / 
$$$$$  /  
$$  $$<   
$$ |\$$\  
$$ | \$$\ 
\__|  \__|
 */




/* 
L
$$\       
$$ |      
$$ |      
$$ |      
$$ |      
$$ |      
$$$$$$$$\ 
\________|
*/




/* 
M
$$\      $$\ 
$$$\    $$$ |
$$$$\  $$$$ |
$$\$$\$$ $$ |
$$ \$$$  $$ |
$$ |\$  /$$ |
$$ | \_/ $$ |
\__|     \__|
*/


.marquee {
  padding-top: 2%;
  padding-bottom: 1.25%;
  overflow: hidden;
  /* hide the scrolling overflow */
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.marquee_header {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 14s linear infinite;
}

.marquee__group {
  display: flex;
}

.marquee__group span {
  margin: 0 1.5rem;
  white-space: nowrap;
  background: #0B0D16;
  color: #EEF9FE;
  padding: 4px 16px 4px 12px;
  border-radius: 6px;
  font-family: "roc-grotesk-extrawide", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-style: normal;
  font-size: 1.7rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* 
N
$$\   $$\ 
$$$\  $$ |
$$$$\ $$ |
$$ $$\$$ |
$$ \$$$$ |
$$ |\$$$ |
$$ | \$$ |
\__|  \__|
*/

/* Navigation styles */
nav.main-nav {
  /* background: linear-gradient(to bottom,  rgb(11, 13, 22,0.3) 0%, rgba(0, 0, 0, 0) 100%); */
  /* background-color: #0E2849; */
  padding: 0.75rem 0;
  /* text-align: Right; */
  /* border-top: 3px solid red; */
  /* border-bottom: 3px solid #0B0D16; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

nav.main-nav ul {
  list-style: none;
  padding-right: 30px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black; */
  transition: color 0.3s ease;
}

nav.main-nav a:hover {
  color: #40a3f5;
  text-shadow: 0.075em 0.09em 0 black;
    /* text-shadow:
    -2px -2px 0 black,
     7px -2px 0 black,
    -2px  2px 0 black,
     7px  1px 0 black; */
}

nav {
  position: relative;
  align-items: center;
  justify-content: space-between;
  display: flex;
  /* padding: 10px, 30px; */
  z-index: 1;
}



.navbarimg {
    position: static;
    height: calc(10.5vh - 20px);
    /* padding: 10px; */
    padding-left: 30px;
    /* left: 3.5%; */
    /* z-index: 15; */
}

.navbar-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.navbar-logo {
    height: 200px;
    margin-bottom: 15px;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
}     

.navbar-scrolled{
  background-color: #0E2849;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); */
  border-bottom: #2077BD;
}

/*  
O         
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
 $$$$$$  |
 \______/ 
*/

/* Overlay container for content */
.overlay {
  max-width: 900px;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}



/* 
P
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
$$  ____/ 
$$ |      
$$ |      
\__|      
*/

.parent {
    display: grid;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 2%;
    /* flex-direction: column; */
    grid-template-columns: 1fr 1fr;
    
    align-items: start;
    /* gap: 20px; */
}

/* ParentAlt is just the same as Parent, but Parent has its columns
reversed in mobile  */
.parentAlt {
    display: grid;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 2%;
    /* flex-direction: column; */
    grid-template-columns: 1fr 1fr;
    
    align-items: start;
    /* gap: 20px; */
}

.parentJoinCard {
    display: grid;
    /* padding-left: 7%; */
    /* padding-right: 7%; */
    padding-bottom: 2%;
    grid-template-columns: 1.65fr 1fr;
    align-items: start;
    /* gap: 20px; */
}



.parent-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}


.parent-right {
    display: flex;
    justify-content: flex-end;
}

.parentFooter {
    display: grid;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 0.5%;
    /* flex-direction: column; */
    grid-template-columns: 1fr 1fr;
    
    align-items: start;
}

/* .parent-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
} */

/* 
Q
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$ |  $$ |
$$ |  $$ |
$$ $$\$$ |
\$$$$$$ / 
 \___$$$\ 
     \___| 
*/
 



/* 
R
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
$$  __$$< 
$$ |  $$ |
$$ |  $$ |
\__|  \__| 
*/
   



/*
S           
 $$$$$$\  
$$  __$$\ 
$$ /  \__|
\$$$$$$\  
 \____$$\ 
$$\   $$ |
\$$$$$$  |
 \______/ 
*/

/* Section headings - red with white outline */
section h2 {
  color: #ff0033;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 2rem;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  margin-bottom: 1rem;
  text-align: center;
}

/* Paragraphs with black transparent backdrop and centered text */
section p {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
}

/* Source list inside paragraphs fix */
section p ul {
  list-style: inside disc;
  padding-left: 1rem;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  background: none;
  display: block;
}

section p ul li a {
  color: #ff0033;
  text-decoration: underline;
}

section p ul li a:hover {
  color: #ff6699;
}

.social-text {
      display: flex;
    justify-content: center;
    font-size: 1.25rem;
    font-family: 'roc-grotesk-wide', sans-serif !important;
    padding-left: 3%;
}

.socialcontainer {
    display: flex;
    letter-spacing: 2%;
    word-spacing: 2%;
    justify-content: center;
    margin-top: 1%;
    font-size: 2rem;
    margin-bottom: 1%;
}

.small-break {
line-height: 80%;
}

strong { font-weight: bold; }


/*  
T                   
$$$$$$$$\ 
\__$$  __|
   $$ |   
   $$ |   
   $$ |   
   $$ |   
   $$ |   
   \__|    
*/




/*    
U       
$$\   $$\ 
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
\$$$$$$  |
 \______/ 
 */




/*           
$$\    $$\ 
$$ |   $$ |
$$ |   $$ |
\$$\  $$  |
 \$$\$$  / 
  \$$$  /  
   \$  /   
    \_/    
*/




/* 
W
$$\      $$\ 
$$ | $\  $$ |
$$ |$$$\ $$ |
$$ $$ $$\$$ |
$$$$  _$$$$ |
$$$  / \$$$ |
$$  /   \$$ |
\__/     \__| 
*/


 



/* 
X             
$$\   $$\ 
$$ |  $$ |
\$$\ $$  |
 \$$$$  / 
 $$  $$<  
$$  /\$$\ 
$$ /  $$ |
\__|  \__|
*/
 



/* 
Y
$$\     $$\ 
\$$\   $$  |
 \$$\ $$  / 
  \$$$$  /  
   \$$  /   
    $$ |    
    $$ |    
    \__|     
*/
  



/* 
Z
$$$$$$$$\ 
\____$$  |
    $$  / 
   $$  /  
  $$  /   
 $$  /    
$$$$$$$$\ 
\________| 
*/
          
 /* 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
   __  __  ____  ____ _____ _      ______       __      _______ ________          __
 |  \/  |/ __ \|  _ \_   _| |    |  ____|      \ \    / /_   _|  ____\ \        / /
 | \  / | |  | | |_) || | | |    | |__          \ \  / /  | | | |__   \ \  /\  / / 
 | |\/| | |  | |  _ < | | | |    |  __|          \ \/ /   | | |  __|   \ \/  \/ /  
 | |  | | |__| | |_) || |_| |____| |____          \  /   _| |_| |____   \  /\  /   
 |_|  |_|\____/|____/_____|______|______|          \/   |_____|______|   \/  \/    

 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/
/* Small window */
@media (max-width: 1670px) {
  .card_title {
  font-size: 5rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* tablet view */
}

@media (max-width:1200px){
  .card_title {
  font-size: 7rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.5rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}

  .parent {
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 5%;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 30%;
    align-items: start;
    /* gap: 20px; */
}

.parentAlt {
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 5%;
    flex-direction: column;
    /* grid-template-columns: 1fr 1fr; */
    align-items: start;
    /* gap: 20px; */
}
}

@media (max-width:1000px){

.hero-title {
  font-size: 6rem;
  font-family: 'roc-grotesk-extrawide', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EEF9FE;
  text-align: left;
  margin-top: 7%;
  text-shadow: 0.075em 0.09em 0 black;
  /* text-shadow:
    -5px -5px 0 #000000,
     23px -5px 0 black,
    -5px  5px 0 black,
     23px  2px 0 rgb(0, 0, 0); */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}
}

@media (max-width:925px){

.hero-title {
  font-size: 5rem;
  font-family: 'roc-grotesk-extrawide', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EEF9FE;
  text-align: left;
  margin-top: 7%;
  text-shadow: 0.075em 0.09em 0 black;
  /* text-shadow:
    -5px -5px 0 #000000,
     23px -5px 0 black,
    -5px  5px 0 black,
     23px  2px 0 rgb(0, 0, 0); */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}

  .card_title {
  font-size: 7rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.25rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}
}

@media (max-width:800px){

.hero-title {
  font-size: 4rem;
  font-family: 'roc-grotesk-extrawide', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EEF9FE;
  text-align: left;
  margin-top: 7%;
  text-shadow: 0.075em 0.09em 0 black;
  /* text-shadow:
    -5px -5px 0 #000000,
     23px -5px 0 black,
    -5px  5px 0 black,
     23px  2px 0 rgb(0, 0, 0); */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}

  .card_title {
  font-size: 7rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.25rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}

.card_title {
  font-size: 5rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 5%;
  padding-left: 3%;
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card_content {
  padding-top: 4%;
  padding-bottom: 1%;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  /* padding-left: 4%; */
  padding-bottom: 5%;
  font-size: 1.15rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}
}

/* mobile adjustments */
@media (max-width: 650px) {
  /*  
A                                
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$$$$$$$ |
$$  __$$ |
$$ |  $$ |
$$ |  $$ |
\__|  \__|
 */



 
a:hover {
    background-color: transparent;
    text-decoration: underline; /* Optional: keep underline */
}



 /* Buttons */
a.button {
  /* display: inline-block; */
  background-color: #2077BD;
  color: white !important;
  font-size: 1rem;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  border: 0.2em solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.2em 0 black;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* padding: 0.75rem 1.5rem; */
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  
  /* box-shadow:
    0 0 10px #2077BD,
    inset 0 0 5px #fff; */
  transition: all 0.5s;
  margin-bottom: 2rem;
}

a.button:hover {
  background: #40a3f5;
  /* transform: translate(-0.1em, -0.1em); */
  box-shadow: 0.3em 0.3em 0 black;
  transform: scale(1.5);
  text-shadow: 0.075em 0.09em 0 black;
}

a.CardButton {
  /* display: inline-block; */
  background-color: #2077BD;
  display: inline;
  color: white !important;
  font-size: 0.9rem;
  position: relative;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  border: 0.2em solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.2em 0 black;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  /* box-shadow:
    0 0 10px #2077BD,
    inset 0 0 5px #fff; */
  transition: all 0.3s;
  margin-bottom: 2rem;
}

a.CardButton:hover {
  /* background: #40a3f5; */
  background: #ff0033;
  /* transform: translate(-0.1em, -0.1em); */
  box-shadow: 0.3em 0.3em 0 black;
  text-shadow: 0.075em 0.09em 0 black;
  transform: scale(1.5);
}

/* a.button:hover {
  background-color: #2077BD;
  box-shadow:
    0 0 15px #2077BD,
    inset 0 0 8px #fff;
}                                                                 */
 


/*    
B                 
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$\ |
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
\_______/ 
 */
                    
/* Base body styles */
body {
  margin: 0;
  /* min-height: 100vh; */
  background: url('assets/Plain BG.png') no-repeat center center fixed;
  background-size: cover;
  background-color: #222;
  color: #fff;
  font-family: 'roc-grotesk', sans-serif !important; /* force no cursive fallback */
  line-height: 1.6;
  /* text-transform: uppercase; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  /* overflow-x: hidden; */
}

   

/*   
C                   
 $$$$$$\  
$$  __$$\ 
$$ /  \__|
$$ |      
$$ |      
$$ |  $$\ 
\$$$$$$  |
 \______/ 
 */
                     
 
.card {
  position: static;
  display: center;
  aspect-ratio: 3.75 / 3.5;
  width: 100%;
  /* height: 100%; */
  align-items: center;
  padding-bottom: 5%;
  justify-content: center;
  /* padding: 20px 20px 20px 20px; */
  background: #EEF9FE;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* overflow: hidden; */
  /* height: 50px;
  width: 200px; */
}

.card.long {
  position: static;
  display: center;
  aspect-ratio: 3.75 / 5;
  width: 100%;
  /* height: 100%; */
  align-items: center;
  padding-bottom: 5%;
  justify-content: center;
  /* padding: 20px 20px 20px 20px; */
  background: #EEF9FE;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* overflow: hidden; */
  /* height: 50px;
  width: 200px; */
}

.card_title {
  text-align: center;
  font-size: 2.75rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-right: 4%;
  padding-top: 5%;
  /* padding-left: 1%; */
  line-height: 80%;
  color: #0E2849;
  /* text-shadow: 0.05em 0.05em 0 rgb(255, 0, 0); */
  text-transform: uppercase;
  /* line-height: 1; */
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  /* overflow: hidden; */
  transition: all 0.3s ease;
}


.parent:hover .card_title {
  transform: translateX();
  color: #0E2849;
  text-shadow: 0.02em 0.06em 0 red;
}

.parentAlt:hover .card_title {
  transform: translateX();
  color: #0E2849;
  text-shadow: 0.02em 0.06em 0 red;
}

.card_content {
  padding-top: 4%;
  position: relative;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 5%;
  font-size: 0.8rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}



/* Class for backdrop behind other stuff */
.content-block {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
}   
 
/* Contact info vertical stack */
.contact-info p {
  margin: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  max-width: 800px;
  width: 100%;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
  text-align: left;
}


                     
/*    
D                  
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
$$$$$$$  |
\_______/ 
 */




/* 
E
 $$$$$$$$\ 
$$  _____|
$$ |      
$$$$$\    
$$  __|   
$$ |      
$$$$$$$$\ 
\________| 
*/




/* 
F
$$$$$$$$\ 
$$  _____|
$$ |      
$$$$$\    
$$  __|   
$$ |      
$$ |      
\__|      
 */

/* Footer */
footer {
  text-align: center;
  /* padding: 1rem 0; */
  background-color: #0E2849;
  justify-content: center;
  border-top:5px solid #2077BD;
  color: lightgrey;
  font-family: 'roc-grotesk-extrawide', sans-serif !important;
  font-size: 0.90rem;
  width: 100vw;
  box-sizing: border-box;
  /* position: sticky; */
  bottom: 0;
}


.footer-logo {
    height: 75px;
    width: 75px;
    margin-bottom: 15px;
    display: inline;
}


.footer-sub-content-social {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.footer-title {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'roc-grotesk-wide', sans-serif !important;
    margin-bottom: 5px;
    color: var(--background-color-6);
}

.footer-description, .footer-email {
    width: 100% !important;
    text-align: left !important;
    margin: 5px 0 !important;
    font-size: 1rem !important;
}

.footer-social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: lightgray;
    letter-spacing: 2%;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    /* padding-right: 3%; */
    box-shadow: none !important;
}

.footer-solid {
    grid-column: span 2;
    width: 100%;
    margin: 20px 0;
}

.footer-bottom {
  font-size: 0.475rem;
  text-align: center;
  justify-content: center;
}
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 20px; */
    /* padding-left: 7%;
    padding-bottom: 1%; */ */

/* 
footer {
    background-color: #0c162c;
    padding: 40px 10%;
    color: var(--grey-2);
    margin-top: 60px;
} */



/* 
G
  $$$$$$\  
$$  __$$\ 
$$ /  \__|
$$ |$$$$\ 
$$ |\_$$ |
$$ |  $$ |
\$$$$$$  |
 \______/  
 */
 
 


/* 
H          
$$\   $$\ 
$$ |  $$ |
$$ |  $$ |
$$$$$$$$ |
$$  __$$ |
$$ |  $$ |
$$ |  $$ |
\__|  \__| 
*/

/* Header styles */
header {
  text-align: center;
  margin: 2rem 0 3rem 0;
  max-width: 900px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-family: 'roc-grotesk', sans-serif !important; /* swapped Staatliches with Anton to prevent cursive */
  font-size: 3.5rem;
  color: #ff0033;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  margin-bottom: 0.5rem;
}

header .cta {
  font-family: 'roc-grotesk', sans-serif !important;
  font-size: 1.5rem;
  color: #fff;
  text-shadow:
    -1px -1px 0 #ff0033,
     1px -1px 0 #ff0033,
    -1px  1px 0 #ff0033,
     1px  1px 0 #ff0033;
  margin-bottom: 1.5rem;
}




.hero-section {
    /* Add top margin/padding equal to the navbar's height */
    margin-top: 5%;
    margin-bottom: 2%;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/trumpmuskgay.png");
  width: 100vw;
  height: auto;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

.hero-title {
  font-size: 2.4rem;
  font-family: 'roc-grotesk-extrawide', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EEF9FE;
  text-align: left;
  padding-left: 10px;
  margin-top: 7%;
  text-shadow: 0.075em 0.09em 0 black;
  /* text-shadow:
    -5px -5px 0 #000000,
     23px -5px 0 black,
    -5px  5px 0 black,
     23px  2px 0 rgb(0, 0, 0); */
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}

.hero-subtitle {
  font-size: 2rem;
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 900;
  font-style: normal;
  color: white;
  text-align: center;
  margin-top: 1rem;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  text-transform: uppercase;
}

.hero-title {
  position: real;
  z-index: 2; /* or higher */
}

.hero {
  padding-top: 60px;
}


/*  
I         
$$$$$$\ 
\_$$  _|
  $$ |  
  $$ |  
  $$ |  
  $$ |  
$$$$$$\ 
\______| 
*/

.impactcontainer {
    align-items: center;
    /* width: calc(100% - 10%); */
    width: 100vw;
    height: fit-content;
    vertical-align: top;
    padding: 50% 6% 1.252% 3%;
    outline: none;
    /* border-top: solid black; */
    /* border-bottom:solid black; */
    position: relative;
    overflow: hidden;
    background-color: rgba(14, 40, 73, 0.8);
    border-bottom:5px solid #2077BD;
    z-index: 1;

}
.impact-background-image {
    /* position: absolute; */
    margin: 0;
    border:0;
    inset: 0;
    width: 100%;
    height: 100.75%;
    /* object-fit: contain; */
    /* object-position: right center; */
    background: url('assets/WeWillNotComply.jpg') 35%;
    background-position-y: 50%;
    /* background-attachment: fixed; */
    background-size: cover;
    background-blend-mode: multiply;
    background-color: rgba(14, 40, 73, 0.8);
    
    
    /* z-index: 1; */
}

img{
  border:0;
  outline: none;
}


/* 
J
   $$$$$\ 
   \__$$ |
      $$ |
      $$ |
$$\   $$ |
$$ |  $$ |
\$$$$$$  |
 \______/ 
*/

.join_card {
  width: 100%;
  /* height: ; */
  aspect-ratio: 3.75 / 3.6;
  /* display: flex; */
  justify-content: center;
  padding: 2px 20px 0px 20px;
  background: url(assets/NoElonNoHand2.png) center top;
  background-size: cover;
  background-repeat: no-repeat;
  border: 6px solid #000;
  border-radius: 0.4em;
  box-shadow: 12px 12px 0 #000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.join_card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 17px 17px 0 #000;
}

.join_card__title {
  font-size: 4.25rem;
  font-family: "roc-grotesk-compressed", sans-serif;
  /* font-weight: 00; */
  font-style: normal;
  padding-top: 3%;
  padding-bottom: 2%;
  color: #000;
  text-shadow: 0.03em 0.03em 0 rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1;
  /* margin-bottom: 15px; */
  display: block;
  position: relative;
  overflow: hidden;
}

.join_card__title::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 75%;
  height: 5px;
  background-color: red;
  box-shadow: 1em 1em 0 rgb(255, 255, 255);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.join_card:hover .join_card__title::after {
  transform: translateX(0);
}

.join_card__content {
  padding-top: 2%;
  padding-bottom: 2%;
  position: relative;
  font-size: 0.8rem;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 200;
  line-height: 1.4;
  text-shadow: 0.07em 0.07em 0 rgb(255, 255, 255);
  color: #000;
  margin-bottom: 7%;
}

/* .join_card__button {
  border: 3px solid #000;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  left: 20%;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  width: 50%;
  height: 100%;
}

.join_card__button::before {
  content: "Sure?";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-color: #5ad641;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.join_card__button:hover::before {
  transform: translateY(0);
} */



/* 
K
$$\   $$\ 
$$ | $$  |
$$ |$$  / 
$$$$$  /  
$$  $$<   
$$ |\$$\  
$$ | \$$\ 
\__|  \__|
 */




/* 
L
$$\       
$$ |      
$$ |      
$$ |      
$$ |      
$$ |      
$$$$$$$$\ 
\________|
*/




/* 
M
$$\      $$\ 
$$$\    $$$ |
$$$$\  $$$$ |
$$\$$\$$ $$ |
$$ \$$$  $$ |
$$ |\$  /$$ |
$$ | \_/ $$ |
\__|     \__|
*/


.marquee {
  padding-top: 3%;
  padding-bottom: 2%;
  overflow: hidden;
  /* hide the scrolling overflow */
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.marquee_header {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 14s linear infinite;
}

.marquee__group {
  display: flex;
}

.marquee__group span {
  margin: 0 1.5rem;
  white-space: nowrap;
  background: #0B0D16;
  color: #EEF9FE;
  padding: 4px 16px 4px 12px;
  border-radius: 6px;
  font-family: "roc-grotesk-extrawide", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-style: normal;
  font-size: 1.7rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* 
N
$$\   $$\ 
$$$\  $$ |
$$$$\ $$ |
$$ $$\$$ |
$$ \$$$$ |
$$ |\$$$ |
$$ | \$$ |
\__|  \__|
*/

/* Navigation styles */
nav.main-nav {
  /* background: linear-gradient(to bottom,  rgb(11, 13, 22,0.3) 0%, rgba(0, 0, 0, 0) 100%); */
  /* background-color: #0E2849; */
  padding: 0.75rem 0;
  /* text-align: Right; */
  /* border-top: 3px solid red; */
  /* border-bottom: 3px solid #0B0D16; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

nav.main-nav ul {
  list-style: none;
  padding-right: 30px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

nav.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'roc-grotesk-wide', sans-serif;
  font-weight: 700;
  font-style: normal;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black; */
  transition: color 0.3s ease;
}

nav.main-nav a:hover {
  color: #40a3f5;
  text-shadow: 0.075em 0.09em 0 black;
    /* text-shadow:
    -2px -2px 0 black,
     7px -2px 0 black,
    -2px  2px 0 black,
     7px  1px 0 black; */
}

nav {
  position: relative;
  align-items: center;
  justify-content: space-between;
  display: flex;
  /* padding: 10px, 30px; */
  z-index: 1;
}



.navbarimg {
    position: static;
    height: calc(10.5vh - 20px);
    /* padding: 10px; */
    padding-left: 30px;
    /* left: 3.5%; */
    /* z-index: 15; */
}

.navbar-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.navbar-logo {
    height: 200px;
    margin-bottom: 15px;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
}     

.navbar-scrolled{
  background-color: #0E2849;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); */
  border-bottom: #2077BD;
}

/*  
O         
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$ |  $$ |
$$ |  $$ |
$$ |  $$ |
 $$$$$$  |
 \______/ 
*/

/* Overlay container for content */
.overlay {
  max-width: 900px;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}



/* 
P
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
$$  ____/ 
$$ |      
$$ |      
\__|      
*/

.parent {
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 5%;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 30%;
    align-items: start;
    /* gap: 20px; */
}

.parentAlt {
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 5%;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    /* gap: 20px; */
}

.parentJoinCard {
    display: grid;
    /* padding-left: 7%; */
    /* padding-right: 7%; */
    padding-bottom: 2%;
    grid-template-columns: 1fr 30%;
    align-items: start;
    /* gap: 20px; */
}

.parent-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}


.parent-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.parentFooter {
    display: grid;
    padding-left: 6%;
    padding-right: 2%;
    padding-bottom: 2%;
    /* flex-direction: column; */
    grid-template-columns: 1fr 1fr;
    align-items: start;
    /* gap: 20px; */
}

/* 
Q
 $$$$$$\  
$$  __$$\ 
$$ /  $$ |
$$ |  $$ |
$$ |  $$ |
$$ $$\$$ |
\$$$$$$ / 
 \___$$$\ 
     \___| 
*/
 



/* 
R
$$$$$$$\  
$$  __$$\ 
$$ |  $$ |
$$$$$$$  |
$$  __$$< 
$$ |  $$ |
$$ |  $$ |
\__|  \__| 
*/
   



/*
S           
 $$$$$$\  
$$  __$$\ 
$$ /  \__|
\$$$$$$\  
 \____$$\ 
$$\   $$ |
\$$$$$$  |
 \______/ 
*/

/* Section headings - red with white outline */
section h2 {
  color: #ff0033;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 2rem;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  margin-bottom: 1rem;
  text-align: center;
}

/* Paragraphs with black transparent backdrop and centered text */
section p {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: 'Roc Grotesk', sans-serif !important;
  font-size: 1.1rem;
}

/* Source list inside paragraphs fix */
section p ul {
  list-style: inside disc;
  padding-left: 1rem;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  background: none;
  display: block;
}

section p ul li a {
  color: #ff0033;
  text-decoration: underline;
}

section p ul li a:hover {
  color: #ff6699;
}

.social-text {
      display: flex;
    justify-content: center;
    font-size: 1.25rem;
    font-family: 'roc-grotesk-wide', sans-serif !important;
    padding-left: 3%;
}

.socialcontainer {
    display: flex;
    letter-spacing: 2%;
    word-spacing: 2%;
    justify-content: center;
    margin-top: 1%;
    font-size: 2rem;
    margin-bottom: 1%;
}

.small-break {
line-height: 80%;
}


}
