html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Prompt", serif;
  scroll-behavior: smooth;
}

::selection {
  color: var(--neutral100);
  background: var(--primary);
}
  
::-moz-selection {
  color: var(--neutral100);
  background: var(--primary);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  color: var(--neutral100);
  background-color: #161413;
}

img {
  pointer-events: none;
  user-select: none;
}

a{
  text-decoration: none;
  color: var(--neutral100);
}

:root {
  --primary: #fd7209;
  --secondary: #fe3900;

  --neutral800: #e54501;
  --neutral700: #ff5e1a;
  --neutral600: #fe7b43;
  --neutral500: #ff976a;
  --neutral400: #ffb393;
  --neutral300: #ffd1bd;
  --neutral200: #ffece4;
  --neutral100: #ffffff;

  --accentRed: #e44444;
  --borderColor: #4e4541;

  --pageSize: 100vh;

  --pointsGradient: linear-gradient(
    90deg,
    var(--secondary),
    var(--primary)
  );

}

hr{
  border-radius: 1px;
  margin-block: 30px;
}

/* ----- THEME BUBBLES ----- */

.themeBubble{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

.themeBubble img {
  position: relative;
  height: 100vw;
  width: 100vw;
  opacity: 1;
}

.themeBubbleFILL img{
  height: var(--pageSize);
  width: 100vw;
  object-fit: cover;
}

.themeBubble:nth-child(2){
  top: 160%;
  left: 0;
}

main .themeBubble{
  left: 0;
  right: 0;
  top: auto;
  bottom: -5%;
  z-index: -10;
}

.underConstruction{
  color: var(--neutral100);
  font-weight: 500;
  font-size: 20px;
}

/* ----- HEADER ----- */

header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65vw;
  padding-bottom: 20px;
  margin-top: 30px;
}

header img{
  width: 60px;
  height: 60px;
}

header div{
  display: flex;
  gap: 10px;
}

header div a{
  display: flex;
  gap: 7px;
  align-items: center;
  padding-block: 5px;
  padding-inline: 15px;
  border-radius: 25px;
  transition: all .2s ease-in-out;
}
header div a:hover{
  background-color: var(--neutral100);
  color: var(--neutral600);
}

header div a:nth-child(1) svg{
  width: 24px;
}
header div a svg{
  width: 20px;
}

header div a svg path{
  fill: var(--neutral100);
  transition: all .2s ease-in-out;
}
header div a:hover svg path{
  fill: var(--neutral600);
}

#mobileMenuButton{
  display: none;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  background-color: transparent;
  border: none;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

#mobileMenuButton span{
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--neutral100);
  transition: all .2s ease-in-out;
}
#mobileMenuButton span:nth-last-child(1){
  width: 60%;
}

#mobileMenuButton.on span:nth-child(1){
  transform: rotate(45deg) translate(7px, 3px);
}
#mobileMenuButton.on span:nth-child(2){
  transform: rotate(-45deg) translate(2px, 3px);
}
#mobileMenuButton.on span:nth-child(3){
  transform: rotate(-45deg) translateY(-7px);
  opacity: 0;
}

/* ----- MAIN ----- */

main{
  position: relative;
  padding-top: 25px;
  display: flex;
  width: 100vw;
  min-height: 57vh;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}

.staffMain{
  width: 65vw;
}

.inviteMain{
  gap: 10px !important;
  overflow: visible;
}

.inviteMain h3{
  text-align: left;
}

.inviteMain > div{
  position: relative;
}

.inviteMain div span{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 20px;
  height: 35px;
  width: 35px;
  border-radius: 5px;
  background-color: rgba(22, 20, 19, 0.4);
  border: 1px solid var(--borderColor);
  pointer-events: none;
}

.inviteMain div span svg{
  width: 19px;
  height: 19px;
  margin-bottom: 2px;
}

.inviteMain div span svg path{
  fill: white;
}

.inviteMain input{
  margin-bottom: 10px;
}

.inviteMain .downloadButtons{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 60px;
  gap: 20px;
}

.inviteMain .downloadButtons a{
  flex-shrink: 0;
  width: fit-content;
  height: 100%;
  transition: all .15s ease-in-out;
}

@media screen and (max-width: 450px) {
  .inviteMain{
    padding-top: 0px;
  }
  .inviteMain .downloadButtons{
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  .inviteMain .downloadButtons a{
    width: 60%;
    height: auto;
    transition: all .15s ease-in-out;
  }
}

.inviteMain .downloadButtons a:hover{
  transform: scale(1.05);
}

.inviteMain .downloadButtons a img{
  height: 100%;
}

.ppMain{
  gap: 30px;
  width: 65vw;
  text-align: left;
  margin-bottom: 60px;
}
.ppMain *{
  width: 100%;
}
.ppMain h1{
  margin-bottom: -25px;
  color: var(--primary);
  font-size: 2.25em;
}
.ppMain h2{
  margin-bottom: -25px;
}
.ppMain p{
  padding-left: 25px;
}
.ppMain > p:nth-child(1){
  padding-left: 0px;
}

.lcMain{
  overflow: visible;
  gap: 20px;
}

.lcMain h1{
  margin-bottom: 0px;
}

.lcMain img{
  max-width: 350px;
  aspect-ratio: 3.5 / 1;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid var(--borderColor);
  transition: all .2s ease-in-out;
}

.lcMain a:hover img{
  transform: scale(1.05);
}

.lcMain a{
  width: fit-content;
}

.emailField{
  color: var(--primary);
}
.emailField:hover{
  text-decoration: underline;
}

.ppMain section{
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}

.lcMain section{
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.headline{
  width: 65vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headline > img{
  height: 650px;
}

.whiteTitle{
  font-size: 50px;
  line-height: 50px;
  color: var(--neutral100);
  font-weight: 200;
}

.gradiantTitle{
  font-size: 80px;
  line-height: 80px;
  color: var(--neutral100);
  font-weight: 600;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headline p a{
  font-weight: 600;
  text-decoration: underline;
  transition: all .15s ease-in-out;
}
.headline p a:hover{
  color: var(--primary);
}

.headline div{
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.headline div div{
  gap: 15px;
}

.headline .downloadButtons{
  display: flex;
  flex-direction: row;
}

.headline .downloadButtons a{
  width: fit-content;
  height: 50px;
  transition: all .15s ease-in-out;
}

.headline .downloadButtons a:hover{
  transform: scale(1.05);
}

.headline .downloadButtons a img{
  height: 100%;
}

.sidewaysArticle{
  display: flex;
  gap: 10px;
  flex-direction: column;
  rotate: 2.5deg;
  margin-top: 100px;
}
.sidewaysArticle > div{
  background: linear-gradient(-90deg, var(--secondary), var(--primary));
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 100px;
  height: 620px;
  position: relative;
}
.sidewaysArticle > div .details{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.sidewaysArticle div:last-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:40px;
  height: 100%;
}

.sidewaysArticle .scrollingText{
  font-size: 46px;
  line-height: 46px;
  font-weight: 400;
  opacity: .5;
  text-transform: uppercase;
  color: var(--secondary);
  z-index: 1;
  height: 50px;
}

.title{
  font-size: 54px;
  line-height: 54px;
  color: var(--neutral100);
  font-weight: 600;
  z-index: 2;
}

.description{
  font-size: 34px;
  line-height: 34px;
  color: var(--neutral100);
  font-weight: 200;
  z-index: 2;
}

.sidewaysArticle img{
  z-index: 2;
  margin-top: 170px;
  height: 700px;
}

.scrollingText{
  display: flex;
  overflow: hidden;
  gap: 400px;
  user-select: none;
}

.scrollingText span{
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-right: -350px;
  pointer-events: none;
  animation: textScroll 45s linear infinite;
}
.scrollingTextSpeed2 span{
  animation: textScroll 35s .2s linear infinite;
}

.scrollingTextSpeed2 span{
  color: var(--primary);
}

.scrollingText p{
  transform: translateX(0);
}

@keyframes textScroll {
  to{
    transform: translateX(calc(-100% - 50px));
  }
}

.groupArticle{
  width: 65vw;
  margin-top: 200px;
  margin-bottom: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.groupArticle > div{
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  height: 420px;
  border-radius: 40px;
  padding-inline: 80px;
  position: relative;
}

.gradientDiv{
  width: 35%;
  flex-grow: 1;
  flex-shrink: 0;
}

.gradientDiv::before{
  content: "";
  top: -1px;
  left: -1px;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  position: absolute;
  background: linear-gradient(165deg, rgb(255, 255, 255), transparent 50%);
  border-radius: 40px;
  z-index: -1;
}

.groupArticle div div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:40px;
  height: 100%;
  margin-bottom: 100px;
}

.groupArticle h4{
  font-size: 50px;
  line-height: 55px;
  color: var(--neutral100);
  font-weight: 600;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
  margin-right: 40px;
  margin-bottom: 20px;
}

.groupArticle img{
  height: 650px;
}

.rangArticle h4{
  text-align: left;
  margin-left: 40px;
}

.articleNotifs img{
  height: 100% !important;
  transform: none !important;
}

.articleNotifs > div{
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(253, 114, 8, 0.1));
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  width: 65vw;
  align-items: center;
  justify-content: space-between;
  height: 420px;
  border-radius: 40px;
  padding-inline: 80px;
  padding: 50px;
  position: relative;
}

.articleNotifs h4{
  text-align: left;
  margin-left: 40px;
}

.articleNotifs div div{
  margin-bottom: 0px;
  width: 100%;
}

.articleNotifs h1{
  text-align: right;
}
.articleNotifs h2{
  text-align: right;
}

.themeArticle{
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 75px;
  margin-bottom: 100px;
}

.themeGlow{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(253, 115, 9, 0.6), rgba(40, 135, 129), rgba(253, 115, 9, 0.6));
  z-index: -10;
  filter: blur(300px);
}

.themeArticle h4{
  font-size: 50px;
  line-height: 55px;
  color: var(--neutral100);
  font-weight: 600;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  width: 65vw;
  margin-bottom: 10px;
}
.themeArticle > div{
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  margin-top: 30px;
}

.themeArticle div div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  transform: translateX(50%);
  animation: themeScroll 40s linear infinite;
}

.themeArticle img{
  height: 45vw;
}

@keyframes themeScroll {
  to{
    transform: translateX(calc(-50% - 50px));
  }
}
@keyframes themeScroll30 {
  to{
    transform: translateX(calc(-50% - 30px));
  }
}

/* CONTACT */

.contact{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact h1 i{
  padding-inline: 7.5px;
  font-size: 25px;
}

.contact h1{
  font-size: 30px;
  font-weight: 200;
  margin: 0px;
  margin-bottom: 25px;
}

.contact .formWrapper{
  position: relative;
  background: linear-gradient(90deg, rgba(148, 148, 148, 0.2), rgba(194, 127, 76, 0.2));
  border: 1px solid var(--borderColor);
  border-radius: 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 50px;
  padding-bottom: 75px;
  margin-bottom: 75px;
}

.contact .formWrapper form{
  width: 90%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.formWrapper h2{
  color: var(--primary);
  margin-bottom: 25px;
}

.classicInput{
  font-size: 17px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
  background-color: rgba(22, 20, 19, 0.4);
  border: 1px solid var(--borderColor);
  color: var(--neutral100);
}

.classicTextA{
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 250px;
  border-radius: 10px;
  border: none;
  background-color: rgba(22, 20, 19, 0.4);
  border: 1px solid var(--borderColor);
  font-size: 17px;
  color: var(--neutral100);
  padding: 10px;
  margin-top: 10px;
  font-family: 'Barlow', sans-serif !important;
}

.classicSubmit{
  background: var(--pointsGradient);
  color: var(--neutral100);
  border: none;
  border-radius: 25px;
  font-size: 17px;
  padding-block: 10px;
  padding-inline: 45px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 25px;
  outline: 2px solid transparent;
  transition: all .2s linear;
}

.classicSubmit:hover{
  outline: 2px solid white;
}

/* ----- FOOTER ----- */

footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  border-top: 1px solid white;
  overflow: hidden;
  position: relative;
}
.footerTheme{
  width: 100%;
  height: 100%;
}

.footerTheme span{
  position: absolute;
  height: 150vh;
  aspect-ratio: 1/1;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(750px);
  top: -20%;
  right: -30%;
  opacity: 0.6;
  z-index: -1;
}

.footerTheme img{
  position: absolute;
  right: 0%;
  top: -100%;
  width: 105%;
  z-index: -1;
}

.upperDiv{
  width: 65vw;
  display: flex;
  justify-content: space-between;
  padding-block: 50px;
}
.linkAndLogoHolder{
  display: flex;
  align-items: center;
  gap: 20px;
}

.linkAndLogoHolder img{
  width: 90px;
  height: 90px;
}

.linkAndLogoHolder div{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.linkAndLogoHolder div a{
  display: flex;
  align-items: center;
  gap: 10px;
}

.contactBtn{
  background: linear-gradient(-90deg, var(--secondary), var(--primary));
  color: white;
  border-radius: 50px;
  position: relative;
  border: none;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  height: 45px;
}

.contactBtn::before{
  width: 200px;
  height: 47px;
  content: "";
  top: -1px;
  left: -1px;
  position: absolute;
  background: linear-gradient(165deg, rgb(255, 255, 255), transparent 50%);
  border-radius: 50px;
  z-index: -1;
}

.linkAndLogoHolder .backToTop{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  border: none;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: linear-gradient(-90deg, var(--secondary), var(--primary));
  position: relative;
}

.linkAndLogoHolder .backToTop::before{
  height: 47px;
  width: 47px;
  border-radius: 50%;
  content: "";
  top: -1px;
  left: -1px;
  position: absolute;
  background: linear-gradient(140deg, rgb(255, 255, 255), transparent 50%);
  z-index: -1;
}

.linkAndLogoHolder a{
  transition: all .15s ease-in-out;
  outline: 2px solid transparent;
}

.linkAndLogoHolder:nth-child(1) a:hover{
  color: #d6cdc1;
}
.linkAndLogoHolder a svg path{
  transition: all .2s ease-in-out;
}
.linkAndLogoHolder:nth-child(1) a:hover svg path{
  fill: #d6cdc1;
}

.linkAndLogoHolder:nth-child(2) a:hover{
  outline: 2px solid var(--neutral100);
  background-size: 300%;
  background-position: right;
}

.downDiv{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 65vw;
  border-top: 1px solid var(--neutral100);
  padding-block: 25px;
}

.gradiantText{
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--neutral100);
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.whiteText{
  color: var(--neutral100);
  font-weight: 200;
  font-size: 16px;
  line-height: 16px;
}

.footerLinkHolder{
  display: flex;
  align-items: center;
  gap: 17px;
}

.footerLinkHolder a{
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  transition: all .2s ease-in-out;
}
.footerLinkHolder a:hover{
  transform: scale(1.1);
  filter: invert(0.9);
}

.footerLinkHolder a svg{
  width: 40px;
  height: 40px;
}

/*Staff*/
.staffHolder{
  width: 100%;
  position: relative;
  margin-block: 100px;
  display: flex;
  justify-content: space-between;
  padding-inline: 5vw;
  padding-bottom: 30px;
}

.staffGradientDiv{
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  width: 100%;
  height: 150px;
  position: absolute;
  left: 0px;
  top: 0px;
  padding-inline: 60px;
  z-index: -1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: 2px solid rgb(255, 255, 255); 
}
.staffGradientDiv1{
  display: none;
  top: 500px;
  border-radius: 0px;
}
.staffGradientDiv2{
  display: none;
  top: 1000px;
  border-radius: 0px;
}
.staffColorDiv{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(253, 114, 8, 0.1)); 
  z-index: -2; 
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-inline: 1px solid rgba(255, 255, 255, 0.5);
}
.staffCard{ 
  width: 250px;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staffCard img{
  height: 100%;
  aspect-ratio: 1/1;
  filter: drop-shadow(2px 2px 10px black);
  margin-top: 5px;
}
.staffPfpHolder{
  width: 300px;
  height: 250px;
  margin-top: -102px;
  overflow-y: hidden;
  overflow-x: visible;
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.staffInfo{
  margin-top: 30px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staffCard h3{
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  line-height: 15px;
}

.staffCard h4{
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  line-height: 12px;
}

.staffCard span{
  height: 1px;
  width: 80%;
  background-color: white;
}

.staffSocials{
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.staffSocials a{
  height: 30px;
  aspect-ratio: 1/1;
  transition: all .15s ease-in-out;
}
.staffSocials a:hover{
  filter: invert(0.9);
  transform: scale(1.1);
}

/* ----- MEDIA QUERIES ----- */

@media screen and (max-width: 1620px) {
  /* -- HEADER -- */
  header{
    width: 75vw;
  }
  /* -- MAIN -- */
  .staffMain{
    width: 75vw;
  }
  .ppMain{
    width: 75vw;
  }
  .headline{
    width: 75vw;
  }
  .groupArticle{
    width: 75vw;
  }
  .articleNotifs > div{
    width: 75vw;
  }
  .themeArticle h4{
    width: 75vw;
  }
  /* -- FOOTER -- */
  .upperDiv{
    width: 75vw;
  }
  .downDiv{
    width: 75vw;
  }
}

@media screen and (max-width: 1430px) {
  .themeBubble:nth-child(2){
    top: 140%;
    left: 0;
  }
  /* -- HEADER -- */
  header{
    width: 90vw;
  }
  /* -- MAIN -- */
  .staffMain{
    width: 90vw;
  }
  .ppMain{
    width: 90vw;
  }
  .headline{
    width: 90vw;
  }
  .sidewaysArticle > div{
    gap: 75px;
    height: 520px;
  }
  .sidewaysArticle .scrollingText{
    font-size: 40px;
    line-height: 40px;
    height: 45px;
  }
  .title{
    font-size: 45px;
    line-height: 48px;
  }
  .description{
    font-size: 26px;
    line-height: 26px;
  }
  .sidewaysArticle img{
    height: 600px;
  }
  .groupArticle{
    width: 90vw;
  }
  .articleNotifs > div{
    width: 90vw;
  }
  .themeArticle h4{
    width: 90vw;
  }
  /* -- FOOTER -- */
  .upperDiv{
    width: 90vw;
  }
  .downDiv{
    width: 90vw;
  }
}

@media screen and (max-width: 1175px) {
  .themeBubble:nth-child(2){
    top: 100%;
    left: 0;
  }
  header{
    width: 85vw;
  }
  /* -- MAIN -- */
  .staffMain{
    width: 85vw;
  }
  .staffHolder{
    padding-inline: 3vw;
  }
  .staffPfpHolder{
    width: 250px;
    height: 225px;
  }
  .staffGradientDiv{
    height: 125px;
  }
  .ppMain{
    width: 85vw;
  }
  .headline{
    width: 85vw;
  }
  .headline div{
    gap: 25px;
  }
  .headline img{
    height: 500px;
  }
  .whiteTitle{
    font-size: 35px;
    line-height: 35px;
  }
  .gradiantTitle{
    font-size: 60px;
    line-height: 60px;
  }
  .headline a{
    width: 260px;
    height: 65px;
    font-size: 16px;
  }
  .headline a::before{
    width: 262px;
    height: 67px;
  }
  .sidewaysArticle > div{
    gap:40px;
    height: 450px;
  }
  .sidewaysArticle div:last-child{
    gap: 25px;
  }
  .sidewaysArticle .scrollingText{
    font-size: 35px;
    line-height: 35px;
    height: 40px;
  }
  .title{
    font-size: 37px;
    line-height: 38px;
  }
  .description{
    font-size: 21px;
    line-height: 22px;
  }
  .sidewaysArticle img{
    height: 540px;
  }
  .groupArticle img{
    height: 550px;
  }
  .groupArticle > div{
    padding-left: 50px;
    height: 380px;
    gap: 50px;
  }
  .groupArticle div div{
    gap: 30px;
    height: 100%;
    margin-bottom: 100px;
  }
  .title{
    font-size: 40px;
    line-height: 42px;
  }
  .articleNotifs > div{
    height: 350px;
  }
}

@media screen and (max-width: 930px) {
  .staffPfpHolder{
    width: 215px;
    height: 190px;
  }
  .staffGradientDiv{
    height: 90px;
  }
}

@media screen and (max-width: 880px) {
  .headline div{
    gap: 20px;
  }
  .headline img{
    height:425px;
  }
  .whiteTitle{
    font-size: 30px;
    line-height: 30px;
  }
  .gradiantTitle{
    font-size: 50px;
    line-height: 50px;
  }
  .headline a{
    width: 220px;
    height: 55px;
    font-size: 15px;
    border-radius: 13px;
  }
  .headline a::before{
    width: 222px;
    height: 57px;
    border-radius: 13px;
  }
  .sidewaysArticle > div{
    gap:30px;
    height: 400px;
  }
  .sidewaysArticle div:last-child{
    gap: 25px;
  }
  .sidewaysArticle .scrollingText{
    font-size: 29px;
    line-height: 29px;
    height: 30px;
  }
  .title{
    font-size: 34px;
    line-height: 35px;
  }
  .description{
    font-size: 18px;
    line-height: 19px;
  }
  .sidewaysArticle img{
    height: 460px;
    margin-top: 130px;
  }
  .groupArticle img{
    height: 450px;
  }
  .groupArticle > div{
    border-radius: 30px;
    padding-inline: 50px;
    height: 320px;
    gap: 30px;
  }
  .gradientDiv::before{
    border-radius: 30px;
  }
  .groupArticle div div{
    gap: 20px;
    height: 100%;
    margin-bottom: 80px;
  }
  .title{
    font-size: 35px;
    line-height: 37px;
  }
}

@media screen and (max-width: 800px) {
  /* -- HEADER -- */
  header{
    width: 100vw;
    padding-inline: 40px;
    margin-top: 0px;
    padding-block: 40px;
    z-index: 99;
  }
  header img{
    width: 50px;
    height: 50px;
  }
  #mobileMenuButton{
    display: flex;
  }
  header div{
    position: absolute;
    padding: 20px;
    padding-top: 110px;
    top: 0;
    left: 0;
    right: 0;
    gap: 10px;
    background-color: rgba(22, 20, 19);
    flex-direction: column;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
    z-index: -1;
  }
  header div.on{
    transform: translateY(0%);
  }
  header div a{
    background-color: rgba(255, 228, 213, 0.1);
    padding-block: 8px;
    cursor: pointer;
  }
  header div a:hover{
    transform: none;
  }
  /* -- MAIN -- */
  .staffHolder{
    flex-direction: column;
  }
  .staffCard{
    width: 100%;
    height: 348px;
    margin-top: 150px;
  }
  .staffCard:nth-child(6){
    height: 350px;
  }
  .staffCard:nth-child(5){
    margin-top: 0px;
  }
  .staffGradientDiv1, .staffGradientDiv2{
    display: block;
  }
  .staffPfpHolder{
    width: 100%;
    height: 60vw;
  }
  .staffGradientDiv{
    height: 202px;
  }
  .staffGradientDiv2{
    top: 998px;
  }
  .headline{
    width: 100vw;
    padding-inline: 40px;
  }
  .groupArticle img{
    height: 425px;
  }
  .groupArticle > div{
    height: 300px;
  }
  .groupArticle h4{
    font-size: 40px;
    line-height: 42px;
  }
  .lcMain section{
    flex-direction: column;
  }
  .lcMain a{
    width: 100%;
  }
  .lcMain img{
    max-width: 100%;
    width: 100%;
  }
  /* -- FOOTER -- */
}

/* ----- MOBILE SWITCH ----- */
@media screen and (max-width: 750px) {
  .themeBubble:nth-child(2){
    top: 120%;
    left: 0;
    z-index: -10;
  }
  .headline{
    margin-top: -50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .headline div{
    align-items: center;
    gap: 10px;
  }
  .headline img{
    height:425px;
  }
  .whiteTitle{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: -5px;
  }
  .gradiantTitle{
    font-size: 50px;
    line-height: 50px;
  }
  .headline a{
    width: 50vw;
    margin-top: 10px;
  }
  .headline a::before{
    width: 50vw;
  }
  .sidewaysArticle > div{
    flex-direction: column-reverse;
    gap:0px;
    height: 720px;
  }
  .sidewaysArticle img{
    width: 40vw;
    height: auto;
    margin-top: 10px;
    margin-bottom: -120px;
  }
  .groupArticle img{
    height: 70vw;
    transform: translateX(-20px);
  }
  .groupArticle > div{
    justify-content: start;
    flex-direction: column;
    height: 55vw;
    gap: 0px;
  }
  .groupArticle div div{
    height: auto;
    margin-bottom: -70px;
    padding-top: 30px;
    justify-content: start;
    align-items: end;
    gap: 15px;
    width: 100%;
    text-align: right;
  }
  .groupArticle div div .description{
    width: 50%;
  }
  .articleNotifs > div{
    padding: 40px;
    height: 80vw !important;
  }
  .articleNotifs img{
    height: auto !important;
    width: 100%;
  }
  .articleNotifs .title{
    font-size: 5vw;
    text-align: center;
  }
  .articleNotifs .description{
    font-size: 2.5vw;
    text-align: center;
  }
  .articleNotifs div div{
    gap: 5px !important;
    align-items: center;
  }
  .rangArticle img{
    transform: rotate(-20deg) translate(-90px, -120px);
  }
  .themeArticle img{
    height: 50vh;
  }
}

@media screen and (max-width: 700px) {
  .upperDiv{
    padding-block: 30px;
  }
  .linkAndLogoHolder img {
    width: 60px;
    height: 60px;
  }
  .contactBtn{
    width: 45px;
  }
  .contactBtn::before{
    width: 47px;
  }
  .contactBtn span{
    display: none;
  }
  .downDiv span{
    font-size: 14px;
  }
  .footerLinkHolder{
    gap: 7px;
  }
  .footerLinkHolder a svg{
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 600px) {
  /* -- HEADER -- */
  header{
    padding-inline: 20px;
    padding-block: 20px;
  }
  header img{
    width: 40px;
    height: 40px;
  }
  header div{
    position: absolute;
    padding: 20px;
    padding-top: 75px;
  }
  /* -- MAIN -- */
  .headline{
    padding-inline: 20px;
  }
  .sidewaysArticle > div{
    gap:0px;
    height: 720px;
  }
  .sidewaysArticle div:last-child{
    gap: 25px;
  }
  .sidewaysArticle .scrollingText{
    font-size: 29px;
    line-height: 29px;
    height: 30px;
  }
  .title{
    font-size: 34px;
    line-height: 35px;
  }
  .description{
    font-size: 18px;
    line-height: 19px;
  }
  .sidewaysArticle img{
    width: 50vw;
    margin-bottom: -130px;
  }
  .groupArticle > div{
    border-radius: 25px;
    height: 55vw;
  }
  .gradientDiv::before{
    border-radius: 25px;
  }
  .groupArticle div div{
    gap: 5px;
    margin-bottom: -60px;
  }
  .groupArticle div div .title{
    font-size: 30px;
  }
  .groupArticle div div .description{
    font-size: 15px;
  }
  .rangArticle img{
    height: 80vw;
    transform: rotate(-20deg) translate(-60px, -120px);
  }
  /* -- FOOTER -- */
  .downDiv{
    flex-direction: column-reverse;
    gap: 25px;
  }
  .footerLinkHolder{
    gap: 25px;
  }
  .footerLinkHolder a svg{
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 560px) {
  .title{
    font-size: 30px;
    line-height: 31px;
  }
  .description{
    font-size: 16px;
    line-height: 17px;
  }
  .sidewaysArticle img{
    width: 62vw;
  }
  .groupArticle > div{
    height: 80vw;
    padding-inline: 30px;
  }
  .groupArticle div div{
    gap: 5px;
    margin-bottom: -80px;
  }
  .groupArticle img{
    height: 90vw;
  }
  .articleNotifs .title{
    font-size: 5vw !important;
  }
  .articleNotifs .description{
    font-size: 2.5vw !important;
  }
  .rangArticle img{
    height: 80vw;
    transform: rotate(-20deg) translate(-80px, -30px);
  }
}

@media screen and (max-width: 507px) {
  .staffHolder{
    padding-inline: 0px;
  }
  .staffGradientDiv{
    height: calc(60vw - 100px);
  }
  .sidewaysArticle > div{
    height: 770px;
  }
  .staffCard:nth-child(6) .staffPfpHolder{
    margin-top: -100px;
  }
}

@media screen and (max-width: 475px) {
  .staffMain{
    width: 90vw;
  }
  .staffCard{
    width: 100%;
    height: 350px;
    margin-top: 100px;
  }
  .staffCard:nth-child(5){
    margin-top: 0px;
  }
  .staffGradientDiv1{
    top: 450px;
  }
  .staffGradientDiv2{
    top: 900px;
  }
  .staffCard:nth-child(6) .staffPfpHolder{
    margin-top: -102px;
  }
  .ppMain{
    width: 90vw;
  }
  .ppMain h1{
    font-size: 1.6em;
  }
  .ppMain h2{
    margin-bottom: -20px;
    font-size: 20px;
  }
  .ppMain p{
    padding-left: 0px;
    font-size: 15px;
  }
  .headline{
    margin-top: 0px;
  }
  .headline img{
    height:350px;
  }
  .headline a{
    width: 75vw;
  }
  .headline a::before{
    width: 75vw;
    height: 57px;
    border-radius: 13px;
  }
  .sidewaysArticle > div{
    height: 150vw;
  }
  .sidewaysArticle div:last-child{
    gap: 15px;
    margin-bottom: 30px;
    height: auto;
  }
  .title{
    font-size: 6vw;
    line-height: 6.5vw;
  }
  .description{
    font-size: 3.3vw;
    line-height: 3.5vw;
  }
  .sidewaysArticle img{
    width: 60vw;
    margin-top: 0px;
    margin-bottom: -20vw;
  }
  .groupArticle h4{
    text-align: left;
    margin-left: 30px;
    margin-right: 0px;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .groupArticle{
    margin-top: 80px;
  }
  .groupArticle > div{
    border-radius: 25px;
    height: 95vw;
    padding-inline: 30px;
  }
  .groupArticle img{
    height: 93vw;
    transform: translateX(0px);
  }
  .groupArticle div div .description{
    font-size: 3.3vw;
    line-height: 4vw;
  }
  .articleNotifs > div{
    padding: 20px;
    height: 85vw !important;
  }
  .rangArticle{
    margin-top: 0px;
  }
  .rangArticle div{
    align-items: center !important;
  }
  .rangArticle > div{
    width: 100%;
    height: 110vw;
  }
  .rangArticle img{
    margin-top: 60px;
    height: auto;
    width: 65vw;
    transform: rotate(-17deg);
  }
  .rangArticle .description{
    width: 100% !important;
    text-align: center;
  }
  .themeArticle > div{
    margin-top: 10px;
    gap: 20px;
  }
  .themeArticle div div{
    gap: 20px;
    animation: themeScroll30 40s linear infinite;
  }
  .themeArticle h4{
    font-size: 30px;
  }
  .linkAndLogoHolder div{
    display: none;
  }
  .downDiv div span{
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 475px) {
  .headline{
    margin-top: 0px;
  }
  .headline img{
    height: 80vw;
  }
  .whiteTitle{
    font-size: 7vw;
    line-height: 7vw;
  }
  .gradiantTitle{
    font-size: 10vw;
    line-height: 10vw;
  }
  .headline a{
    margin-top: 5px;
  }
  .groupArticle div div{
    gap: 10px;
    margin-bottom: -50px;
  }
}

@media screen and (max-width: 400px) {
  .staffCard{
    width: 100%;
    height: 350px;
    margin-top: 5vh;
  }
  .staffCard:nth-child(5){
    margin-top: 0px;
  }
  .staffGradientDiv1{
    top: calc(350px + 5vh);
  }
  .staffGradientDiv2{
    top: calc(700px + 10vh);
  }
}

/* LOADER */

#loader, #submitMessage{
  position: absolute;
  border-radius: 25px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 20, 19, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  z-index: 101;
}
#submitMessage{
  background-color: transparent;
}
#loader.hiding, #submitMessage.hiding{
  opacity: 0;
  pointer-events: none;
}

#submitMessage.hiding h2{
  transform: translateY(10px);
  opacity: 0;
}
#submitMessage.goingToHide h2{
  transform: translateY(-10px);
  opacity: 0;
}

#submitMessage h2{
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--borderColor);
  background-color: #161413;
  border-radius: 20px;
  width: 50%;
  min-height: 100px;
  transition: all .15s ease-in-out;
  transform: translateY(0px);
}

.loading-spinner {
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  padding: 2px;
  transition: all .3s ease-in-out;
  overflow: visible;
}

.loading-spinner > circle {
  stroke: var(--neutral600);
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  transition: all 0.2s ease-in-out 0s;
  animation: 2s linear 0s infinite normal none running loading-spinner;
}

@keyframes loading-spinner {
  0% {
    stroke-dasharray: 0.01px, 43.97px;
    transform: rotate(0);
  }

  50% {
    stroke: var(--neutral400);
    stroke-dasharray: 21.99px, 21.99px;
    stroke-width: 2.5px;
    stroke-dashoffset: 5px;
    transform: rotate(450deg);
  }

  100% {
    stroke-dasharray: 0.01px, 43.97px;
    transform: rotate(1080deg);
  }
}