/* GENERAL STARTS */
@font-face {
  font-family: "CooperHewitt-Medium";
  src: local("CooperHewitt-Medium"), url("../../fonts/CooperHewitt-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "CooperHewitt-Bold";
  src: local("CooperHewitt-Bold"), url("../../fonts/CooperHewitt-Bold.woff2") format("woff2");
  font-display: swap;
}
* {
  color: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}

.heroBackground {
  width: 100vw;
  background-color: #000;
  height: 45vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}

/* GENERAL ENDS */
.heroSection {
  width: 100vw;
  height: fit-content;
  position: relative;
  box-shadow: 0 5px 15px rgba(95, 153, 255, 0.05);
}

.heroImg {
  position: absolute;
  left: 30vw;
  bottom: 0;
  width: 40vw;
  height: 40vw;
  z-index: 2;
}

@keyframes fromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30vw);
  }
  50% {
    opacity: 50%;
    transform: translateX(-15vw);
  }
  100% {
    opacity: 100%;
    transform: translateY(0);
  }
}
.fixedButtons {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 3;
  animation: fromLeft 750ms linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fixedButtons .toBlogBtn {
  padding: 0.5rem 1rem;
  width: auto;
  min-width: auto;
  border: none;
  margin-top: 0.5rem;
}
.fixedButtons .toBlogBtn svg {
  margin: 0 0.5rem 0 0;
}
.fixedButtons .toBlogBtn svg path {
  fill: #fff;
}

.fixedLogo {
  width: 3vw;
  height: 3vw;
}

/* LOADING STICKER STYLING STARTS */
.codingStickerContainer {
  position: absolute;
  left: 40vw;
  bottom: 7vw;
  width: 20vw;
  height: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.codingStickerContainer svg {
  font: 60px Arial;
  font-weight: 800;
  width: auto;
  height: auto;
}
.codingStickerContainer text {
  fill: #000;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linejoin: round;
  letter-spacing: 4px;
}

.loadingSticker {
  position: relative;
  top: 4.5vw;
  width: 10vw;
  height: 10vw;
  border: 10px solid #fff;
  border-radius: 50%;
  background-color: rgb(48, 48, 48);
  box-shadow: 0 5px 15px rgba(85, 82, 77, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.loadingSticker b,
.loadingSticker span {
  font-family: sans-serif;
  color: #fff;
}
.loadingSticker b {
  font-size: 28px;
}
.loadingSticker span {
  font-size: 20px;
  margin: 0.5rem 0;
  font-weight: 100;
}

.loadingBar {
  margin-top: 0.5rem;
  width: 6vw;
  height: 1vw;
  border-radius: 5px;
  border: 2px solid #fff;
  position: relative;
}

.loaded {
  height: 1vw;
  border-radius: 5px 0 0 5px;
  background-color: #fff;
  border: 2px solid #fff;
  position: absolute;
  top: -2px;
  left: 0;
  width: 4vw;
}

/* LOADING STICKER STYLING ENDS */
.backgroundSvgContainer {
  width: 100vw;
  height: 100%;
  background-color: #000;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.svgContainer {
  width: 10vw;
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.svgContainer svg {
  width: 3vw;
  height: 3vw;
}
.svgContainer svg path {
  fill: rgba(172, 202, 255, 0.7);
}

.falling0 {
  animation: falling 4s linear infinite;
}

.falling1 {
  animation: falling 4s linear 250ms infinite;
}

.falling2 {
  animation: falling 4s linear 500ms infinite;
}

.falling3 {
  animation: falling 4s linear 1500ms infinite;
}

.falling4 {
  animation: falling 4s linear 2000ms infinite;
}

.falling5 {
  animation: falling 4s linear 2500ms infinite;
}

@keyframes falling {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 50%;
    transform: translateY(2.5vw);
  }
  100% {
    opacity: 100%;
    transform: translateY(5vw);
  }
}
@media (min-width: 1401px) and (max-width: 1600px) and (orientation: landscape) {
  .loadingSticker {
    border: 7.5px solid #fff;
  }
  .loadingSticker b {
    font-size: 20px;
  }
  .loadingSticker span {
    font-size: 14px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loaded {
    left: -1px;
  }
  .fixedLogo {
    top: 2rem;
    left: 2rem;
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 1601px) and (max-width: 2000px) and (orientation: landscape) {
  .loadingSticker b {
    font-size: 24px;
  }
  .loadingSticker span {
    font-size: 16px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loaded {
    left: -1px;
  }
}
@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  .loadingSticker {
    top: 5vw;
  }
  .fixedButtons {
    top: 0.5rem;
    left: 0.5rem;
  }
  .fixedButtons .toBlogBtn {
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
  }
  .fixedButtons .toBlogBtn b {
    font-size: 12px;
  }
  .fixedButtons .toBlogBtn svg {
    width: 2vw;
    height: 2vw;
    margin: 0 0.25rem 0 0;
  }
  .fixedLogo {
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 1101px) and (max-width: 1400px) and (orientation: landscape) {
  .loadingSticker {
    width: 11vw;
    height: 11vw;
    border: 7.5px solid #fff;
  }
  .loadingSticker b {
    font-size: 16px;
  }
  .loadingSticker span {
    font-size: 12px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loaded {
    left: -1px;
  }
}
@media (min-width: 901px) and (max-width: 1100px) and (orientation: landscape) {
  .loadingSticker {
    width: 12vw;
    height: 12vw;
    border: 5px solid #fff;
  }
  .loadingSticker b {
    font-size: 14px;
  }
  .loadingSticker span {
    font-size: 12px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loaded {
    left: -1px;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  .heroBackground {
    width: 100vw;
    height: 100vw;
  }
  .heroImg {
    left: 2vw;
    width: 96vw;
    height: 96vw;
  }
  .svgContainer {
    width: 20vw;
    height: 20vw;
  }
  .svgContainer svg {
    width: 6vw;
    height: 6vw;
  }
  .loadingSticker {
    width: 30vw;
    height: 30vw;
    border: 7.5px solid #fff;
    top: 2.5vw;
  }
  .loadingSticker b {
    font-size: 28px;
  }
  .loadingSticker span {
    font-size: 20px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loadingBar {
    width: 16vw;
    height: 3vw;
  }
  .loaded {
    left: -1px;
    width: 8vw;
    height: 3vw;
  }
  .fixedButtons {
    top: 0.5rem;
    left: 0.5rem;
  }
  .fixedButtons .toBlogBtn {
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
  }
  .fixedButtons .toBlogBtn b {
    font-size: 12px;
  }
  .fixedButtons .toBlogBtn svg {
    width: 4vw;
    height: 4vw;
    margin: 0 0.25rem 0 0;
  }
  .fixedLogo {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .heroBackground {
    width: 100vw;
    height: 100vh;
  }
  .heroImg {
    left: 25vw;
    width: 50vw;
    height: 50vw;
  }
  .svgContainer {
    width: 10vw;
    height: 10vw;
  }
  .svgContainer svg {
    width: 4vw;
    height: 4vw;
  }
  .loadingSticker {
    top: 5vw;
    width: 16vw;
    height: 16vw;
    border: 5px solid #fff;
  }
  .loadingSticker b {
    font-size: 12px;
  }
  .loadingSticker span {
    font-size: 10px;
    margin: 0.5rem 0 0 0;
    font-weight: 100;
  }
  .loadingBar {
    width: 10vw;
    height: 2vw;
  }
  .loaded {
    left: -1px;
    width: 6vw;
    height: 2vw;
  }
  .fixedButtons {
    top: 0.5rem;
    left: 0.5rem;
  }
  .fixedButtons .toBlogBtn {
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
  }
  .fixedButtons .toBlogBtn b {
    font-size: 12px;
  }
  .fixedButtons .toBlogBtn svg {
    width: 4vw;
    height: 4vw;
    margin: 0 0.25rem 0 0;
  }
  .fixedLogo {
    width: 6vw;
    height: 6vw;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .heroBackground {
    width: 100vw;
    height: 100vw;
  }
  .heroImg {
    left: 2vw;
    width: 96vw;
    height: 96vw;
  }
  .svgContainer {
    width: 20vw;
    height: 20vw;
  }
  .svgContainer svg {
    width: 6vw;
    height: 6vw;
  }
  .loadingSticker {
    top: 4vw;
    width: 30vw;
    height: 30vw;
    border: 4px solid #fff;
  }
  .loadingSticker b {
    font-size: 12px;
  }
  .loadingSticker span {
    font-size: 10px;
    margin: 0.5rem 0;
    font-weight: 100;
  }
  .loadingBar {
    width: 16vw;
    height: 3vw;
  }
  .loaded {
    left: -1px;
    width: 8vw;
    height: 3vw;
  }
  .fixedButtons {
    top: 0.5rem;
    left: 0.5rem;
  }
  .fixedButtons .toBlogBtn {
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
  }
  .fixedButtons .toBlogBtn b {
    font-size: 12px;
  }
  .fixedButtons .toBlogBtn svg {
    width: 4vw;
    height: 4vw;
    margin: 0 0.25rem 0 0;
  }
  .fixedLogo {
    width: 10vw;
    height: 10vw;
  }
}

/*# sourceMappingURL=heroSection1.css.map */
