/* * {
  outline: 1px solid red;
} */

:root {
  --primary-color: #3498db;
  --background-color: #fbfefb;
  --alt-background-color: #edf2fb;
  --highlight-color: #ffda79;
  --dark-color: #34495e;
  --alert-color: #eb3b5a;

  --copy-font: 'Open Sans', sans-serif;
  --decorative-font: 'Life Savers', cursive;
}

body {
  margin: 0;
  padding: 0;
  font-size: 2vmin;
  background-color: var(--background-color);
}

h1 {
  margin: 0;
  padding: 0;
  font-family: var(--copy-font);
  font-size: 4em;
  font-weight: 700;
  color: var(--background-color);
  text-align: center;
  text-shadow: -1px -1px 0px var(--primary-color),
    3px 3px 0px var(--primary-color), 6px 6px 0px rgba(0, 0, 0, 0.2);
}

h2 {
  margin: 0;
  padding: 0;
  font-family: var(--copy-font);
  font-size: 1.5em;
  font-weight: 300;
  color: var(--background-color);
  text-align: center;
}

h3 {
  margin: 0;
  padding: 0;
  font-family: var(--copy-font);
  font-size: 1.2em;
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
}

p {
  margin: 0;
  padding: 0;
  font-family: var(--copy-font);
  font-size: 1em;
  font-weight: 300;
  color: var(--dark-color);
}

.decorativeFont {
  font-family: var(--decorative-font);
}

.copyText {
  font-family: var(--copy-font);
  font-size: 2.5vmin;
  font-weight: 400;
  color: var(--background-color);
  /* width: 30vw; */
  margin-top: 2.5vh;
  margin-top: 2.5svh;
  margin-bottom: 3vh;
  margin-bottom: 3svh;
}

/* Set colour of all SWAL Confirm Buttons */
.swal2-styled.swal2-confirm {
  background-color: var(--primary-color) !important;
}

.copyTextBigger {
  font-family: var(--copy-font);
  font-size: 2.75vmin;
  font-weight: 500;
  color: var(--highlight-color);
}

a {
  text-decoration: underline;
  text-decoration-color: var(--highlight-color);
  color: inherit;
}

.alertColour {
  color: var(--alert-color) !important;
}

.heavyFont {
  font-weight: 800;
}

.thickUnderline {
  text-decoration-thickness: 8px;
}

a:hover {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.highlightText {
  color: var(--highlight-color) !important;
}

.subtitle {
  font-size: 2em;
  font-weight: 700;
  text-shadow: -1px -1px 0px var(--primary-color),
    2px 2px 0px var(--primary-color), 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.smallShadow {
  text-shadow: -1px -1px 0px var(--primary-color),
    1px 1px 0px var(--primary-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.subText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 50vw;
  max-width: 1200px;
  font-size: 1em;
}

.open {
  font-family: var(--copy-font);
  font-weight: 500;
  text-shadow: none;
  font-size: 1.8em;
}

.mainPage {
  display: grid;
  grid-template-columns: 50vw 50vw;
  grid-template-rows: 10vh 84vh 6vh;
  grid-template-rows: 10svh 84svh 6svh;
  background-color: var(--primary-color);
}

/* .mainPage {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
} */

.mainPageContent {
  width: 70vw;
  max-width: 1200px;
  height: 80vh;
  height: 80svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 1s ease, transform 1s ease;
}

.mainLeft {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 10vw;
  padding-right: 5vw;
}

.mainLeftCopy {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.mainLeftCopy p {
  font-size: 1.5em;
  color: var(--background-color);
  font-weight: 500;
  text-shadow: -1px -1px 0px var(--primary-color),
    1px 1px 0px var(--primary-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.mainRight {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  align-items: flex-end;
  justify-content: end;
}

.mainRight img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.mainPageContent h2 {
  line-height: 1.5em;
}

.fancy {
  color: var(--highlight-color);
  font-weight: 700;
  text-shadow: -1px -1px 0px var(--primary-color),
    2px 2px 0px var(--primary-color), 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.fancyBig {
  color: var(--highlight-color);
  font-weight: 800;
  font-size: 2.5vmin;
}

.alignCenter {
  text-align: center;
}

.quoteSection {
  display: flex;
  align-self: center;
  justify-content: center;
  min-height: 50vh;
  min-height: 50svh;
}

.quote {
  font-family: var(--decorative-font);
  font-size: 6.5vmin;
  line-height: normal;
  font-weight: 400;
  text-align: left;
  color: var(--background-color);
  align-self: center;
}

/* ANIMATIONS */

.blur-in-expand {
  animation: blur-in-expand 0.4s linear both;
}

@keyframes blur-in-expand {
  0% {
    transform: scale(0);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

/* END ANIMATIONS */

.fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.toFade {
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

.mainPageButtons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.mainPageButtons p {
  color: var(--background-color);
  font-size: 1em;
}

.siteBody {
  padding-bottom: 4em;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 4em; */
}

.tryNow {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: start;
  justify-content: center;
  align-self: flex-start;
}

.scrollDownSection {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

.scrollDownSection p {
  color: var(--alt-background-color);
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 800;
}

.scrollDownSection svg {
  fill: var(--alt-background-color);
  width: 1em;
}

.saveCount,
.learnMore {
  width: 70vw;
  max-width: 1200px;
}

.saveCount {
  height: fit-content;
  padding-top: 2em;
  padding-bottom: 2em;
  border-radius: 1em;
}

.saveCount p {
  color: var(--dark-color);
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  padding-left: 2em;
  padding-right: 2em;
}

.saveCount p .highlight {
  text-shadow: -1px -1px 0px var(--alt-background-color),
    2px 2px 0px var(--alt-background-color), 3px 3px 0px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  font-size: 1.5em;
  color: var(--primary-color);
}

.learnMore {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .learnMore p:first-of-type {
  font-family: var(--copy-font);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--alert-color);
  text-align: left;
  margin-bottom: 0.25em;
  text-shadow: -1px -1px 0px var(--alt-background-color),
    1px 1px 0px var(--alt-background-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
} */

.learnMore p {
  font-size: 1.2em;
  margin-top: 1em;
}

/* Highlight circle */

.circle-sketch-highlight {
  position: relative;
  left: 0.5em;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-sketch-highlight:before {
  content: '';
  z-index: -1;
  left: -0.5em;
  top: -0.1em;
  border-width: 0.2em;
  border-style: solid;
  border-color: var(--background-color);
  position: absolute;
  border-right-color: transparent;
  width: 100%;
  height: 1em;
  transform: rotate(2deg);
  border-radius: 50%;
  padding: 7em 0;
}

.circle-sketch-highlight:after {
  content: '';
  z-index: -1;
  left: -0.5em;
  top: 0.1em;
  padding: 7em 0;
  border-width: 0.25em;
  border-style: solid;
  border-color: var(--background-color);
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  width: 100%;
  height: 1em;
  transform: rotate(-1deg);
  border-radius: 50%;
}

.enterpriseForm .circle-sketch-highlight:before,
.enterpriseForm .circle-sketch-highlight:after {
  border-color: var(--alt-background-color);
  top: -2em;
}

.enterpriseForm .circle-sketch-highlight:before {
  border-right-color: transparent;
}

.enterpriseForm .circle-sketch-highlight:after {
  border-left-color: transparent;
  border-top-color: transparent;
}

/* Three Columns */

.threeColumns {
  width: 70vw;
  max-width: 1200px;
  display: flex;
  gap: 2em;
  margin-top: 2em;
}

.column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 1.25em;
  background-color: #3498db;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: scale 0.2s ease, transform 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.column:hover {
  scale: 1.05;
  transform: perspective(3000px) rotateX(5deg);
}

.column > img {
  width: 97.5%;
  border-radius: 0.5em;
  align-self: flex-end;
}

.columnTitle {
  display: flex;
  align-items: center;
  padding: 0.5em;
}

.columnTitle img {
  margin: 0;
  padding: 0;
  max-height: 1.5em;
  margin-right: 0.5em;
  border-radius: none;
}

.columnFooter {
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 5px 0px;
  border-radius: 0 0 0.5em 0.5em;
}

.columnTitle p {
  font-size: 0.8em;
  font-weight: 800;
  color: var(--highlight-color);
  /* filter: brightness(50%); */
  margin-top: 0.25em;
  /* margin-bottom: 0.5em; */
}

.columnText {
  font-size: 0.7em;
  /* margin-bottom: 1em; */
  /* border-bottom: 2px solid var(--dark-color); */
  color: var(--background-color);
  padding: 0 0.75em 1em 0.75em;
}

/* TABBED PANEL */

.tabPanel {
  width: 80vw;
  max-width: 1600px;
  height: 90vh;
  height: 90svh;
  background-color: var(--background-color);
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.tabs {
  width: 100%;
  height: 10vh;
  height: 10svh;
  display: flex;
}

.tabButton {
  width: 25%;
  height: 100%;
  background-color: var(--alt-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
  /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding-top: 1em;
  padding-bottom: 1em;
  user-select: none;
  -webkit-user-select: none;
}

.tabButton p {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.tabButton svg {
  fill: rgba(0, 0, 0, 0.5);
  width: 10%;
  margin-top: 0.25em;
}

.tabButton:first-of-type {
  border-radius: 1em 0 0 0;
}

.tabButton:last-of-type {
  border-radius: 0 1em 0 0;
  border-right: none;
}

.selectedTab {
  background-color: var(--background-color);
  border-bottom: none;
}

.selectedTab p {
  color: var(--dark-color);
}

.selectedTab svg {
  fill: var(--dark-color);
}

.tabContent {
  width: auto;
  height: 80vh;
  height: 80svh;
  margin-top: 7.5vh;
  padding-bottom: 7.5vh;
  display: flex;
  flex-direction: column;
  /* border-radius: 0 0 1em 1em; */
  padding: 1em;
  padding-left: 3em !important;
  padding-right: 3em !important;
  gap: 1em;
  overflow-y: scroll;
  margin-bottom: 2em;
}

.resRow {
  display: flex;
  width: 100%;
  gap: 5%;
  align-items: start;
  justify-content: center;
}

.resSection {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  background-color: var(--alt-background-color);
  border-radius: 1em;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.nameHolder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--highlight-color);
  width: 100%;
  border-radius: 1em 1em 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resNum {
  color: #fff;
  font-size: 0.7em !important;
  padding: 1em;
  font-weight: 800;
  background-color: rgba(0, 0, 0, 0.1);
  height: auto;
  border-radius: 1em;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-right: 1em;
}

.resName p {
  font-weight: 800;
  font-size: 1em !important;
}

.resSection p {
  font-size: 0.85em;
  line-height: 1.5;
  padding: 1em;
}

.resSection img {
  width: 90%;
}

.resInfoTopSection {
  background-color: #fafafa;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  padding: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resInfoTopSection p {
  font-weight: 500;
  padding: 0;
}

.tabContent .simpleButton {
  width: 100%;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  font-weight: 800;
  font-size: 1.1em;
  background-color: var(--primary-color);
  color: var(--background-color);
}

.tabContent .bullet-list {
  color: var(--dark-color);
  width: 100%;
  line-height: 1.75em;
}

.firstSentence {
  font-weight: 800;
  font-size: 1.15em;
  margin-bottom: 1em;
}

.tabHeading > .firstSentence {
  font-weight: 800;
  font-size: 1em;
  margin-bottom: 1em;
}

.largerText {
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 1em;
}

#openResTabsFromLink {
  text-decoration-thickness: 3px;
}

/* LOGOS */

.logoHolder {
  width: 70vw;
  max-width: 1200px;
  margin-top: 4em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.customerLogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  scale: 0.8;
}

/* FOOTER */

.siteFooter {
  width: 100vw;
  height: 20em;
  background-color: var(--alt-background-color);

  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 6em;
  padding-bottom: 1em;
}

.siteFooterContent {
  width: 70vw;
  max-width: 1200px;
  height: 20em;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 80% 20%;
}

.footerSocials {
  grid-column-start: 1;
  grid-column-end: 3;
}

.footerIcons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footerIcons img {
  width: 1.5em;
  margin-left: 1vw;
  margin-top: 2vw;
}

.tripticoName {
  display: flex;
  align-items: center;
}

.tripticoName p {
  color: var(--dark-color);
  filter: brightness(50%);
  font-size: 1.5em;
  font-weight: 800;
}

.footerMenuLeft {
  grid-column-start: 3;
  grid-column-end: 4;
}

.footerMenuCentre {
  grid-column-start: 4;
  grid-column-end: 5;
}

.footerMenuRight {
  grid-column-start: 5;
  grid-column-end: 6;
}

.footerLegal_1,
.footerLegal_2,
.footerLegal_3 {
  font-size: 0.6em !important;
  font-weight: 500 !important;
  padding-right: 1.5em;
  grid-row-start: 2;
  grid-row-end: 3;
  border-top: 2px solid var(--dark-color);
  padding-top: 1em;
}

.footerLegal_1 {
  grid-column-start: 3;
  grid-column-end: 4;
}

.footerLegal_2 {
  grid-column-start: 4;
  grid-column-end: 5;
}

.footerLegal_3 {
  grid-column-start: 5;
  grid-column-end: 6;
  padding-right: 0 !important;
  width: fit-content;
}

.footerLegal .footerMenuTitle {
  font-weight: 500;
  font-size: 0.6em;
  color: var(--dark-color);
}

.footerMenuTitle {
  font-family: var(--copy-font);
  font-size: 0.7em;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 2em;
  user-select: none;
  -webkit-user-select: none;
}

.footerMenuItems p {
  font-family: var(--copy-font);
  font-size: 0.6em;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 1.5em;
}

.button_homePage {
  font-family: var(--copy-font);
  font-size: 1.1em;
  font-weight: 500;
  color: var(--background-color);
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid var(--background-color);
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 25vw;
  border-radius: 0.5em;
}

.button_homePage .highlight {
  font-weight: 800;
  font-size: 1.5em;
}

.button_homePage:after {
  content: '';
  background-color: var(--alert-color);
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  border-radius: 0.5em;
}

.button_homePage:hover:after {
  top: 0px;
  left: 0px;
  box-shadow: none;
}

/* Simple-button */

.simpleButton {
  background-color: var(--background-color);
  border: 0;
  border-radius: 0.25em;
  box-sizing: border-box;
  color: var(--dark-color);
  font-family: var(--copy-font);
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1em;
  padding: 0.75em 1em;
  text-align: center;
  text-decoration: none rgba(0, 0, 0, 0.2) solid;
  text-decoration-thickness: auto;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.highlightButtonColour {
  background-color: var(--highlight-color);
  color: var(--dark-color);
}

.highlightButtonColour p,
.darkText {
  color: var(--dark-color) !important;
  font-size: 0.9em !important;
  text-transform: uppercase;
  font-weight: 800;
}

.flowTextButton {
  font-size: inherit;
  height: min-content;
  padding: 0.2em;
  margin: 0;
  border-radius: 0.1em;
  font-weight: inherit;
  color: var(--background-color);
  background-color: var(--primary-color);
  filter: brightness(105%);
}

.simpleButton:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.simpleButton:focus-visible {
  box-shadow: none;
}

.topSection {
  position: fixed;
  z-index: 999;
}

.footer {
  position: absolute;
  bottom: 0;
}

.studentCode-bar {
  height: 6vh;
  height: 6svh;
  width: 100vw;
  background-color: var(--dark-color);
  color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.studentCode-bar p {
  color: var(--background-color);
  font-size: 1em;
}

.studentCode-bar .simpleButton p {
  color: var(--dark-color) !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9em;
}

.studentCode-bar p {
  color: var(--background-color);
  font-size: 1em;
}

.header {
  width: 100vw;
  height: 10vh;
  height: 10svh;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all 0.3s ease;
}

/* Styles for the sticky header */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* Additional styles for the header when it becomes sticky */
.sticky + .content {
  padding-top: 4em; /* Adjust based on the height of your header */
}

.header p {
  font-family: var(--copy-font);
  font-size: 1em;
  font-weight: 700;
}

.headerLogo {
  max-height: 3em;
  background-color: var(--primary-color);
  border-radius: 1vmin;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(255, 255, 255, 0.15) 0px 0px 0px 1px inset;
  margin-left: 1vw;
  margin-right: 1vw;
}

.headerLeft {
  width: 30vw;
  display: flex;
  align-items: center;
  justify-content: start;
}

.headerLeft p {
  font-family: var(--copy-font);
  color: var(--background-color);
  font-size: 1.8em;
}

.headerRight {
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.25em;
}

.headerRight p {
  font-family: var(--copy-font);
  color: var(--background-color);
  font-size: 0.7em;
  text-transform: uppercase;
}

/* NEWSLETTER */

.newsletterPanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  background-color: rgba(44, 62, 80, 0.975);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletterPanelInner {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

#subStackBtn {
  border-radius: 6px;
}

.lightText {
  color: var(--background-color);
}

.smallLightText {
  color: var(--alt-background-color);
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 800;
}

/* COVER PANEL */

.openPanel,
.openLink,
#aboutUs,
#newsletterBtn,
#subStackBtn,
#scrollToSignUp,
.navNext,
.navPrev,
#resourceHeaderInfo,
#showResourcesHeaderBtn,
#contactForm_1,
.showContact,
.showFpwd,
.makeEnquiry {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.coverPanel {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-color: rgba(44, 62, 80, 0.975);
  display: none;
  align-items: center;
  justify-content: center;
}

.coverPanel .simpleButton {
  width: 100%;
  height: 3em;
  background-color: var(--alert-color);
  color: var(--background-color);
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.coverPanel video {
  align-self: center;
  justify-self: center;
  width: 100%;
  margin-top: 2em;
  border: solid 0.1em var(--background-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.coverPanelInner {
  width: 80vw;
  background-color: var(--primary-color);
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  grid-template-columns: 50% 50%;
}

.contentHolder_popUp {
  display: flex;
  flex-direction: column;
  height: inherit;
  align-items: start;
  justify-content: start;
  gap: 1em;
}

.coverPanelContent {
  grid-column-start: 1;
  grid-column-end: 2;
  align-self: center;
  justify-self: center;
  overflow-y: scroll;
  width: 80%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: start;
  justify-items: start;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.coverPanelContent p {
  color: var(--background-color);
  line-height: 1.5em;
}

.coverPanelInner img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 1em;
  grid-column-start: 2;
  grid-column-end: 3;
  align-self: end;
  justify-self: end;
  /* margin-top: 1em; */
}

.blur-content {
  /* filter: blur(5px); - ISSUES ON SAFARI */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.close-button {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 3.5vw;
  height: 3.5vw;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: var(--background-color);
  color: var(--dark-color);
  font-size: 1.25em;
  text-align: center;
  cursor: pointer;
  border: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  user-select: none;
  -webkit-user-select: none;
}

.close-button:focus {
  outline: none;
}

.close-button svg {
  width: 50%;
}

.faq_q {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: var(--highlight-color);
  font-weight: 800;
}

.faq_a {
  font-size: 1em;
  margin-bottom: 1em;
  color: var(--background-color);
  font-weight: 300;
}

.testimonialName {
  font-size: 0.8em;
  font-weight: 800;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}

.testimonialName:last-of-type {
  margin-bottom: 0.5em;
}

/* SIGN IN */

/* .contactLabel p {
  font-size: 0.7em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}

.contactLabel:last-of-type {
  margin-bottom: 0.7em;
}

.contactFormInput,
textarea {
  font-family: var(--copy-font);
  font-size: 0.9em;
  color: var(--dark-color);
  margin: 0;
  margin-bottom: 0px;
  padding: 0;
  padding: 0.4em;
  box-sizing: border-box;
  width: 32vw;
  margin-bottom: 1em;
  border: 0;
  background-color: rgba(255, 255, 255, 0.9);
  resize: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.topSignIn {
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news {
  height: 50%;
  width: 80%;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 2em;
  margin-left: 10%;
  margin-right: 10%;
}

.news p {
  color: var(--background-color);
  font-size: 0.8em;
  font-family: var(--copy-font);
  text-align: left;
}

.news p:not(:first-of-type) {
  margin-bottom: 0.5em;
}

.news p:first-of-type {
  font-weight: 700;
  color: var(--background-color);
  font-size: 0.9em;
  margin-bottom: 1em;
}

.news p:last-of-type {
  margin-bottom: 0;
} */

.bullet-list {
  margin: 0;
  padding: 0;
  font-family: var(--copy-font);
  font-size: 1em;
  font-weight: 300;
  color: var(--background-color);
  width: 90%;
  line-height: 2em;
}

/* SIGN UP FORM */

.actionCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 70vw;
  max-width: 1200px;
  height: fit-content;
  background-color: var(--primary-color);
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border: 0.75em solid #fff;
}

.actionImg {
  display: flex;
  align-items: end;
  justify-content: end;
}

.actionCard img {
  width: 90%;
  object-fit: contain;
  border-radius: 1em;
}

.actionInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1em;
  padding-left: 3em;
}

.actionCopy p {
  color: var(--background-color);
  font-size: 2em;
  /* padding-top: 1em; */
}

.currBtnHolder {
  display: grid;
  gap: 2%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 5vmin;
}

.createAccountBtn,
.tabTryTripticoBtn {
  height: fit-content;
  background-color: var(--alert-color);
  color: var(--background-color);
  font-size: 1.25em;
  font-weight: 800;
  margin-top: 1em;
  text-shadow: -1px -1px 0px var(--alert-color), 1px 1px 0px var(--alert-color),
    2px 2px 0px rgba(0, 0, 0, 0.2);
}

.mainPageButtons .createAccountBtn {
  padding-left: 3em;
  padding-right: 3em;
  font-size: 1.5em;
}

.createAccountBtn:hover,
.simpleButton:hover,
.tabTryTripticoBtn:hover {
  filter: brightness(120%);
}

.actionCard .createAccountBtn {
  margin-top: 0;
}

.actionCard .createAccountBtn,
.tabTryTripticoBtn {
  align-self: stretch;
}

.smallPrint {
  font-size: 0.4em;
}

.smallishPrint {
  font-size: 0.6em;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  color: rgba(255, 255, 255, 0.8) !important;
}

.selected {
  background: var(--highlight-color);
}

/* MAX WIDTH 1400px */

@media (max-width: 1400px) {
  .actionCard {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .actionCard img {
    display: none;
  }
  .actionInfo {
    margin-left: 0;
    padding-right: 3em;
  }
  .actionCard .createAccountBtn {
    margin-top: 1em;
  }
  .currBtnHolder {
    margin-top: 1em;
  }
  .column:first-of-type {
    display: none;
  }
  .twoColumnInfo_alt p:first-of-type {
    display: none;
  }
  .resRow {
    flex-direction: column;
  }
  .resSection {
    width: 100%;
  }
  .resRow {
    margin-bottom: 10%;
  }
}

/* MAX WIDTH 810px */

@media (max-width: 810px) {
  .mainLeft {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-left: 5vw;
  }
  .quoteSection {
    min-height: 35vh !important;
    max-height: 35vh !important;
  }
  .quoteSection .quote {
    text-align: center;
  }
  .mainLeftCopy {
    width: 45%;
  }
}

.centredBold p:first-of-type {
  width: 50vw;
  max-width: 1200px;
  font-family: var(--copy-font);
  font-size: 2em;
  font-weight: 800;
  color: var(--dark-color);
  text-align: center;
  text-shadow: -1px -1px 0px var(--alt-background-color),
    1px 1px 0px var(--alt-background-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.25em;
  line-height: normal;
}

.centredBold {
  text-align: center;
  line-height: 2em;
}

.centredTextSection {
  width: 50vw;
  max-width: 1200px;
  font-family: var(--copy-font);
  font-size: 1em;
  font-weight: 800;
  color: var(--dark-color);
  text-align: center;
  line-height: normal;
}

.centredTextSection p:first-of-type {
  color: var(--alert-color);
  font-size: 2em;
  font-weight: 800;
  text-shadow: -1px -1px 0px var(--alt-background-color),
    1px 1px 0px var(--alt-background-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.25em;
}

.topWave {
  fill: var(--dark-color);
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.topWave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 2em;
}

.wave {
  fill: var(--alt-background-color);
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 2em;
}

.altColourSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5em;
  width: 100%;
  background-color: var(--alt-background-color);
  padding-top: 3em;
  padding-bottom: 5em;
}

.altBackgroundColourSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5em;
  width: 100%;
  background-color: var(--background-color);
  padding-top: 5em;
  padding-bottom: 5em;
}

.altColourWave {
  fill: var(--alt-background-color);
}

.addSpace {
  margin-top: 4em;
  margin-bottom: 4em;
}

.centredSmall {
  width: 30vw;
  max-width: 600px;
  text-align: center;
}

.addSpaceAbove {
  margin-top: 2em;
}

.addHalfSpaceAbove {
  margin-top: 1em;
}

.addSpaceBelow {
  margin-bottom: 4em;
}

.addHalfSpaceBelow {
  margin-bottom: 1em;
}

.addSmallSpaceBelow {
  margin-bottom: 0.5em;
}

.addThirdSpaceBelow {
  margin-bottom: 2.5em;
}

.svgArrowDown {
  width: 1.5em;
  fill: var(--background-color);
  background-color: var(--alert-color);
  border-radius: 50%;
  box-shadow: -1px -1px 0px var(--alt-background-color),
    1px 1px 0px var(--alt-background-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.alertColourBtn {
  background-color: var(--alert-color);
  color: var(--alt-background-color);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75em;
}

/* .enterpriseInputSection .contactLabel:last-of-type {
  margin-bottom: 0;
} */

.enterpriseInputSection {
  margin-bottom: 0;
}

.narrow {
  width: 60%;
  margin-top: 0.25em;
}

.enterpriseForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70vw;
  max-width: 1200px;
}

.enterpriseHeading {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: 500;
  padding: 1em;
  text-align: center;
}

.aboutUsContent {
  position: relative;
}

.aboutUsContent img {
  border: 4px solid rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  margin-left: 1em;
}

.float-right {
  float: right;
  width: 20%;
}

.text-content {
  width: 100%;
}

/* TWO COLUMN PANEL */

.twoColumn {
  width: 70vw;
  max-width: 1200px;
  height: fit-content;
  padding-top: 1em;
  /* padding-bottom: 1em; */
  border-radius: 1em;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  background-color: var(--alt-background-color);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.topPanel {
  margin-top: 4em;
}

.twoColumnImages {
  width: 90%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.twoColumnImages_alt {
  width: 90%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  align-self: end;
}

.twoColumnImages img,
.twoColumnImages_alt img {
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.twoColumnImages img:nth-of-type(2) {
  z-index: 10;
}

.twoColumnImages_alt img:nth-of-type(3) {
  z-index: 10;
}

.twoColumnInfo {
  width: 80%;
  height: auto;
  height: 90%; /* Safari doesn't like this set to percentage */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.twoColumnInfo_alt {
  width: 80%;
  height: auto;
  height: 90%; /* Safari doesn't like this set to percentage */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.browserText {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  align-self: flex-start;
  margin-top: 20%;
  margin-left: 7.5%;
  /* background-color: #ffda79; */
  width: 85%;
  height: 42%;
  overflow: hidden;
}

.browserText p {
  color: #aaa;
  font-weight: 800;
  font-size: 1.2vw;
}

.cursor {
  border-right: 2px solid #aaa;
  animation: blink 0.5s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.vibrate-1 {
  -webkit-animation: vibrate-1 0.3s linear 5 both;
  animation: vibrate-1 0.3s linear 5 both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/* GALLERY */

.gallery {
  width: 70vw;
  max-width: 1200px;
  /* background-color: var(--highlight-color); */
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: 1em;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-items: center;
  /* box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 2px -2px inset; */
  /* border-bottom: 1px solid #fff; */
}

.gallery:nth-of-type(2) {
  margin-top: -2em;
  margin-bottom: -2em;
}

.galleryInfo {
  width: 90%;
  height: auto;
  height: 90%; /* Safari doesn't like this set to percentage */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.bigText {
  width: 90%;
  font-family: var(--copy-font);
  font-size: 2em;
  font-weight: 800;
  color: var(--dark-color);
  text-align: center;
  text-shadow: -1px -1px 0px var(--alt-background-color),
    1px 1px 0px var(--alt-background-color), 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.25em;
  line-height: normal;
}

.galleryImages {
  width: 90%;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  align-items: center;
  justify-content: center;
}

.galleryImages svg {
  width: 75%;
  fill: var(--dark-color);
}

.gallery_image {
  height: auto;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gallery_image img {
  width: 100%;
  border-radius: 1em;
  border: 1px solid var(--background-color);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.navPanel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.theImages {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

.swing-in-right-bck {
  -webkit-animation: swing-in-right-bck 0.1s
    cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-right-bck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    both;
}

@-webkit-keyframes swing-in-right-bck {
  0% {
    -webkit-transform: rotateY(70deg);
    transform: rotateY(70deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 1;
  }
}
@keyframes swing-in-right-bck {
  0% {
    -webkit-transform: rotateY(70deg);
    transform: rotateY(70deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 1;
  }
}

.swing-in-left-bck {
  -webkit-animation: swing-in-left-bck 0.1s
    cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-left-bck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@-webkit-keyframes swing-in-left-bck {
  0% {
    -webkit-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 1;
  }
}
@keyframes swing-in-left-bck {
  0% {
    -webkit-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 1;
  }
}

.teacherScreen {
  background-color: var(--primary-color);
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border: 0.75em solid #fff;
  display: grid;
  justify-items: center;
  align-items: end;
  margin-top: -3em;
}

.teacherScreen img {
  width: 70vw;
  max-width: 1200px;
  object-fit: contain;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.teacherScreen img:not(:last-child) {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.teacherScreen img:last-child {
  z-index: 99;
}

.twoColumnImages_alt img {
  z-index: 0;
}

.teacherScreen img.active,
.twoColumnImages_alt img.active {
  opacity: 1;
  z-index: 2;
}

.fade {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.resourceInfo {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-color: rgba(44, 62, 80, 0.975);
  display: none;
  align-items: center;
  justify-content: center;
}

/* STYLES FROM JON */

/* REMOVE THIS ********** */
/* .header {
  display: none;
} */

.contactPage {
  display: none;
  position: fixed;
  z-index: 999;
  justify-content: center;
  align-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgba(52, 152, 219, 0.95); */
  background-color: rgba(44, 62, 80, 0.975);
}

.contactLabel > p {
  font-size: 1.1vmin;
  padding: 0;
  margin: 0;
  margin-bottom: 2px;
  text-transform: uppercase;
  color: #eee;
  padding-left: 1px;
  font-weight: 800;
}

.contact_container {
  display: flex;
  flex-direction: column;
  width: 70vw;
  max-width: 900px;
  height: fit-content;
  align-self: center;
  background-color: var(--primary-color);
  padding: 2em;
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-top: 1px solid rgb(255, 255, 255, 0.5);
  align-items: center;
}

.contact_content {
  width: 95%;
  height: 95%;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.formBtns {
  display: flex;
  justify-content: space-between;
}

.contactFormInput {
  margin-bottom: 2vmin !important;
}

.contactFormInput,
textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.75vmin;
  color: #333;
  margin: 0;
  padding: 0;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 8px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.9);
  resize: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

textarea {
  min-height: 30vh;
}

.closeBtn {
  display: flex;
  border-radius: 100%;
  border: 0.1vw solid #fff;
  background-color: #fff;
  position: absolute;
  top: 1%;
  right: 1%;
}

.closeBtn > svg {
  fill: #c0392b;
  width: 5vw;
  border: none;
}

#signupPage {
  overflow: hidden;
}

.joinFrame {
  position: absolute;
  top: 10vh;
  height: 90vh;
  width: 100%;
  left: 0;
  right: 0;
  border: none;
}

html.showLoginPopup #signinForm {
  display: flex;
}

.important_field {
  display: none;
}
