:root {
  --theme-primary-color: #f7f7f7;
  --theme-secondary-color: #000000ea;
  --theme-primary-gradient: linear-gradient(
    100deg,
    #c03701ee 45%,
    #f75402 91%,
    #f86700 100%
  );
  --theme-accent-color: #e64a02;
}
* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  min-height: 100dvh;
  height: fit-content;
  scroll-behavior: smooth;
  overflow-x: scroll;
  overflow-y: scroll;
  cursor: url("../icons/cursor_global.ico"), default;

  justify-self: center;
}
#main {
  background-color: var(--theme-primary-color);
  display: flex;
  flex: 1 0 auto;
  min-height: 100dvh;
  height: fit-content;
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-color: var(--theme-primary-color);
  overflow-y: auto;
  scrollbar-color: var(--theme-accent-color);
  display: block;
  justify-items: center;
  align-items: center;
  scroll-behavior: smooth;
  z-index: 900;
  
}
a,button {
  cursor: url(../icons/cursor_pointer_global.ico), default;
}
*::-webkit-scrollbar {
  display: none;
}
.section_name_marking {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  align-content: center;
  /* border-radius: 2vmax; */
  padding: 1vmin;
  font-family: monserrat;
  font-weight: 600;
  font-size: clamp(1vmin, calc(1em + 1vmin), 1vmax);
  background-color: rgb(211, 211, 211);
  width: 4vmax;
  height: 2vmax;
  min-width: fit-content;
  column-gap: 1em;
  max-width: fit-content;
}
.bulleting_logo {
 
  width: 2vmax;
  height: 2vmax;
  background-color: var(--theme-accent-color);
  /* border-radius: 2vmax; */
  justify-self: center;
}
.listing_number .item_number {
  font-family: monserrat;
  font-weight: bold;
  grid-column: 2;
  padding-right: 1em;
  margin-left: 1em;
  padding-left: 1em;
}
.section_name{
  display: flex;
  justify-self: center;
  justify-content: center;
  
}
.bullet_point {
  background-color: var(--theme-accent-color);
  width: 100%;
  height: 100%;
  border-radius: 1em;
}
.hyperlinked_buttons {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  align-content: center;
  border-radius: 2vmax;
  font-family: monserrat;
  font-weight: 600;
  font-size: clamp(1vmin, calc(1em + 1vmin), 1vmax);
  background-color: rgb(211, 211, 211);
  width: 4vmax;
  height: 2vmax;
  cursor: url(../icons/cursor_pointer_global.ico), default;
  background-color: rgb(202, 202, 202);
  min-width: fit-content;
  text-decoration: none;
  border: 0px;
  padding: 1vmin;
  transition-duration: 0.2s;
}
.hyperlinked_button_hyperlink {
  text-decoration: none;
  transition-duration: 0.2s;
  padding: 1vmin;
}
.hyperlinked_buttons:hover {
  background-color: var(--theme-accent-color);
}
.hyperlink_arrow_image {
  height: 2vmax;
  width: 2vmax;
  grid-column: 1;
}
.largetext_main{
  display: flex;
  font-size: clamp(2vmax, calc(5vmin + 1vmax), 20vmax);
  font-family: inter_semibold;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: left;
  align-content: first baseline;
}
.largetext_main span {
  padding-right: 1vmax;
  animation-duration: 1s;
  transform: scale(1.2);
  color: grey;
  opacity: 20%;
  animation-fill-mode: forwards;

  animation-range: cover;
}

@font-face {
  font-family: valorant;
  src: url(../fonts/Valorant/VALORANT_Font/Valorant_Font.ttf);
}
@font-face {
  font-family: google_sans;
  src: url(../fonts/Google_Sans/GoogleSans-VariableFont_GRAD\,opsz\,wght.ttf);
}
@font-face {
  font-family: monserrat;
  src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: led_counter_7;
  src: url(../fonts/led-counter-7/led_counter-7.ttf);
}
@font-face {
  font-family: moliga;
  src: url(../fonts/moliga-demo/Moliga\ DEMO.otf);
}
@font-face {
  font-family: inter_semibold;
  src: url(../fonts/inter/inter.28pt-semibold.ttf);
}

@keyframes large_to_normal_slick_entry_bottom_left {
  from {
    transform: scale(1.2) translateX(-10vmax) translateY(6vmax);
  }
  to {
    transform: scale(1) translateX(0) translateY(0);
  }
}
@keyframes large_to_normal_slick_right_entry {
  from {
    transform: translateX(5vmax) scale(1.2);

    opacity: 20%;
  }
  to {
    transform: translateX(0px) scale(1);
    opacity: 100%;
  }
}
@keyframes large_to_normal_slick_entry {
  from {
    transform: scale(1.2);

    opacity: 20%;
  }
  to {
    transform: scale(1);
    opacity: 100%;
  }
}
@keyframes left_to_right_entry_animation {
  from{
    transform: translateX(-30vw);
  }
  to{
    transform: translateX(0vw);
  }
}
@keyframes right_to_left_entry_animation {
  from{
    transform: translateX(30vw);
  }
  to{
    transform: translateX(0vw);
  }
}
.right_to_left_entry_animation_applied_elements{
  animation-name: right_to_left_entry_animation;
  animation-fill-mode: forwards;
}
.left_to_right_entry_animation_applied_elements{
  animation-name: left_to_right_entry_animation ;
  animation-fill-mode: forwards;
}
.large_to_normal_slick_entry_applied_elements {
  animation-name: large_to_normal_slick_entry;
  animation-fill-mode: forwards;
}

.large_to_normal_slick_right_entry_applied_elements {
  animation: large_to_normal_slick_right_entry;
  animation-fill-mode: forwards;
}
.large_to_normal_slick_entry_bottom_left_applied_elements {
  animation-name: large_to_normal_slick_entry_bottom_left;
  animation-fill-mode: forwards;
}
