/* src/styles.scss */
html {
  font-size: 40px;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Montserrat,
    "Helvetica Neue",
    sans-serif;
}
@media (max-width: 7000px) {
  html {
    font-size: 30px;
  }
}
@media (max-width: 5000px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 3000px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 2000px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 6px;
  }
}
@font-face {
  font-family: montserrat;
  src: url(/fonts/Montserrat-Medium.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url(/fonts/Montserrat-Bold.ttf);
  font-weight: 600;
  font-style: bold;
}
@font-face {
  font-family: montserrat;
  src: url(/fonts/Montserrat-Black.ttf);
  font-weight: 900;
  font-style: black;
}
@font-face {
  font-family: ITC;
  src: url(/fonts/ITCErasBold.otf);
}
@font-face {
  font-family: Santa;
  src: url(/fonts/SantaBeast.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: montserrat;
  background: #fff;
  color: #fff;
  font-size: 1.6rem;
}
@keyframes FadeIn {
  from {
    opacity: 0;
    transform: translateX(90vh);
  }
}
@keyframes FadeOut {
  to {
    opacity: 0;
    transform: translateX(90vh);
  }
}
::view-transition-old(Slide) {
  animation: 300ms linear FadeOut;
}
::view-transition-new(Slide) {
  animation: 300ms linear FadeIn;
}
::view-transition-old(SlideOut) {
  animation: 300ms linear FadeOut;
}
@keyframes SlideIn {
  from {
    opacity: 0;
  }
}
@keyframes SlideOut {
  to {
    opacity: 0;
  }
}
.ScrollConfig {
  scroll-behavior: smooth;
}
.ScrollConfig::-webkit-scrollbar {
  background: none;
  width: 1.5rem;
  height: 1.5rem;
}
.ScrollConfig::-webkit-scrollbar-thumb {
  background: #f7931e;
  border-radius: 1rem;
}
.ButtonConfig {
  transition: 300ms ease;
}
.ButtonConfig:hover {
  cursor: pointer;
  opacity: 0.8;
  transform: scale(1.02);
}
.InTextConfig30 {
  height: 3rem;
  border: 0.2rem solid #f7931e;
  border-radius: 1rem;
  padding: 0 1rem;
  outline: none;
}
.InTextConfig20 {
  height: 2rem;
  border: 0.2rem solid #f7931e;
  border-radius: 1rem;
  padding: 0 1rem;
  outline: none;
}
:root {
  --subitem-width: 200px;
}
@media (max-width: 1200px) {
  :root {
    --subitem-width: 300px;
  }
}
@media (max-width: 1000px) {
  :root {
    --subitem-width: 200px;
  }
}
@media (max-width: 768px) {
  :root {
    --subitem-width: 15rem;
  }
}
p,
b,
i,
input,
select,
textarea {
  font-size: 1.6rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.8rem;
}
h5 {
  font-size: 1.6rem;
}
h6 {
  font-size: 1.4rem;
}

/* angular:styles/global:styles */
