* {
  font-family: "montserratregular", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-margin-top: 1px;
}

@media screen and (min-width: 800px) {
  * {
    scroll-margin-top: 50px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  --background: rgb(252, 252, 252);
  --main: #ca202b;
  --mainLight: rgb(243, 84, 94);
  --mainDark: rgb(116, 14, 31);
  --accent: rgb(255, 196, 0);
  --error: red;
  --textLight: #fbf6ef;
  --textDark: #333333;
  --gradient: linear-gradient(to right, --mainDark 20%, --main 150%);
  --gradientActive: linear-gradient(
    to right,
    --main 20%,
    --mainLight 150%
);
  --boxShadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
  --boxShadowFocus: 1px 1px 5px --main;
  --border: 3px solid --main;
  --borderRLarge: 21px;
  --borderRSmall: 3px;
  --navSize: 100vw;
  --bodySize: 100vw;
  --maxWidthContent: 1024px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 800px) {
  html,
  body {
    --navSize: 800px;
    --bodySize: 70%;
  }
}

main {
  background-color: var(--background);
  pointer-events: none;
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
}

a {
  color: var(--textDark);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a:hover {
  color: var(--main);
}

p {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.responsiveLine {
  display: block;
}

@media screen and (min-width: 800px) {
  .responsiveLine {
    display: inline-block;
  }
}

.marginTop {
  margin-top: 2rem;
}

.buffer {
  width: 100%;
  height: 6rem;
  display: block;
  clear: both;
}

.bufferSmall {
  width: 100%;
  height: 1.5rem;
  display: block;
  clear: both;
}

.dropShadow {
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
}

.dropShadow:hover {
  -webkit-box-shadow: var(--boxShadowFocus);
          box-shadow: var(--boxShadowFocus);
}

#pageUp {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 55px;
  height: 55px;
  padding: 15px;
  background-color: var(--main);
  color: white;
  cursor: pointer;
  border-radius: var(--borderRSmall);
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 20;
}

#pageUp img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bufferMobile {
  width: 100%;
  height: 40vh;
  display: block;
  clear: both;
}

@media only screen and (min-width: 800px) {
  .bufferMobile {
    height: 0;
  }
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--main) #f5f5f5;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

#cookieContainer1 {
  width: 100%;
  z-index: 900000;
  min-height: 170px;
  padding-top: .5rem;
  background-color: #e9e9e9;
  position: fixed;
  bottom: 0;
  text-align: center;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
}

#cookieContainer1 button {
  padding: 1rem 3rem;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin: .5rem;
}

#cookieContainer1 button:hover {
  -webkit-filter: brightness(110%) saturate(90%);
          filter: brightness(110%) saturate(90%);
}

#cookieContainer1 #cookieBtnAgree {
  background-color: var(--main);
  color: #ebeff4;
}

#cookieContainer1 #cookieBtnDeny {
  background-color: gray;
  color: white;
}
/*# sourceMappingURL=main.css.map */