/* GENERAL STARTS */
@font-face {
  font-family: "CooperHewitt-Medium";
  src: local("CooperHewitt-Medium"), local("CooperHewitt-Medium"), url("../../fonts/CooperHewitt-Medium.woff2") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "CooperHewitt-Bold";
  src: local("CooperHewitt-Bold"), local("CooperHewitt-Bold"), url("../../fonts/CooperHewitt-Bold.woff2") format("opentype");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: CooperHewitt-Medium, sans-serif;
}

h1 {
  white-space: nowrap;
}

h1,
h2 {
  font-family: CooperHewitt-Bold, sans-serif;
  margin: 0;
}

b {
  font-family: CooperHewitt-Bold, sans-serif;
  letter-spacing: 2px;
}

.blue {
  color: #5f99ff;
}

* {
  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);
  }
}
.fixedLogo {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 3;
  animation: fromLeft 750ms linear;
  width: 3vw;
  height: 3vw;
}

p {
  color: #999;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
}

button,
.btn {
  border: 2px solid #5f99ff;
  border-radius: 5px;
  padding: 0.75vw 1vw;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
button svg,
.btn svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
}
button svg path,
.btn svg path {
  fill: #fff;
}
button b,
.btn b {
  font-size: 16px;
}
button:hover,
.btn:hover {
  background-color: rgba(95, 153, 255, 0.2);
  border: 2px solid rgba(0, 0, 0, 0);
}

a {
  text-decoration: none;
}

html body .hidden {
  display: none;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.blogTitle {
  width: 70vw;
  padding: 3rem 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

.blogSubtitle {
  color: #999;
  font-size: 28px;
}

.blogCardContainer {
  width: 70vw;
  padding: 2rem 15vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 2vw;
}

.blogLink {
  align-self: stretch;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.blogCard {
  height: 100%;
  width: 18vw;
  padding: 1vw;
  box-shadow: 0 5px 15px rgba(95, 153, 255, 0.4);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  transition: all 250ms;
}
.blogCard:hover {
  transform: translateY(-5px);
  background-color: rgba(95, 153, 255, 0.3);
}

.blogImgContainer {
  position: relative;
  width: 18vw;
  height: 18vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 25%;
}
.blogImgContainer .blogBadge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #5f99ff;
  padding: 1rem;
  width: 3vw;
  height: 3vw;
}
.blogImgContainer .blogBadge b {
  white-space: nowrap;
  color: rgb(48, 48, 48);
}
.blogImgContainer img {
  width: 14vw;
  height: 14vw;
}

.blogArticleTitle {
  font-size: 24px;
  width: 80%;
  text-align: center;
  margin: 2rem 0;
}

footer {
  width: 70vw;
  padding: 4rem 15vw;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyrightContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyrightContainer svg {
  width: 1vw;
  height: 1vw;
  margin-right: 0.25rem;
}
.copyrightContainer svg path {
  fill: #fff;
}

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

.bar {
  background-color: #5f99ff;
  margin: 0 0.75rem;
  height: 1rem;
  width: 2px;
}

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

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  h1 {
    font-size: 36px;
    margin-bottom: 1rem;
  }
  .blogSubtitle {
    color: #999;
    font-size: 24px;
  }
  .blogImgContainer .blogBadge {
    top: -0.25rem;
    right: -0.25rem;
    padding: 1.25rem;
  }
  .blogImgContainer .blogBadge b {
    font-size: 12px;
  }
  .blogArticleTitle {
    font-size: 16px;
  }
}
@media (min-width: 901px) and (max-width: 1250px) and (orientation: landscape) {
  h1 {
    font-size: 36px;
    margin-bottom: 1rem;
  }
  .blogSubtitle {
    color: #999;
    font-size: 24px;
  }
  .blogImgContainer .blogBadge {
    top: -0.25rem;
    right: -0.25rem;
    padding: 1.25rem;
  }
  .blogImgContainer .blogBadge b {
    font-size: 12px;
  }
  .blogArticleTitle {
    font-size: 16px;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  .fixedLogo {
    width: 8vw;
    height: 8vw;
    top: 1.5rem;
    left: 1.5rem;
  }
  .blogCard {
    width: 28vw;
    padding: 4vw 2vw;
  }
  .blogCard .blogImgContainer {
    width: 26vw;
    height: 26vw;
  }
  .blogCard .blogImgContainer img {
    width: 20vw;
    height: 20vw;
  }
  h1 {
    font-size: 36px;
  }
  .blogSubtitle {
    font-size: 24px;
  }
  .blogImgContainer .blogBadge {
    top: -1rem;
    right: -1rem;
    padding: 1.5rem;
  }
  .blogImgContainer .blogBadge b {
    font-size: 12px;
  }
  .blogArticleTitle {
    font-size: 16px;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .fixedLogo {
    width: 8vw;
    height: 8vw;
    top: 1.5rem;
    left: 1.5rem;
  }
  .blogCard {
    width: 28vw;
    padding: 4vw 2vw;
  }
  .blogCard .blogImgContainer {
    width: 26vw;
    height: 26vw;
  }
  .blogCard .blogImgContainer img {
    width: 20vw;
    height: 20vw;
  }
  h1 {
    font-size: 36px;
  }
  .blogSubtitle {
    font-size: 24px;
  }
  .blogImgContainer .blogBadge {
    top: -1rem;
    right: -1rem;
    padding: 1.5rem;
  }
  .blogImgContainer .blogBadge b {
    font-size: 12px;
  }
  .blogArticleTitle {
    font-size: 16px;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .fixedLogo {
    width: 8vw;
    height: 8vw;
    top: 1rem;
    left: 1rem;
  }
  .blogLink {
    margin-bottom: 2rem;
  }
  .blogCard {
    width: 28vw;
    padding: 4vw 2vw;
  }
  .blogCard .blogImgContainer {
    width: 26vw;
    height: 26vw;
  }
  .blogCard .blogImgContainer img {
    width: 20vw;
    height: 20vw;
  }
  h1 {
    font-size: 24px;
  }
  .blogSubtitle {
    font-size: 14px;
  }
  .blogImgContainer .blogBadge {
    display: none;
  }
  .blogArticleTitle {
    font-size: 14px;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw 4rem 5vw;
  }
  .copyrightContainer {
    font-size: 14px;
  }
  .copyrightContainer .bar {
    margin: 0 0.5rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 7vw;
    height: 7vw;
  }
  footer {
    width: 90vw;
    padding: 2rem 5vw;
  }
  .copyrightContainer {
    font-size: 10px;
  }
  .copyrightContainer .bar {
    margin: 0 0.35rem;
  }
  .copyrightContainer svg {
    width: 3vw;
    height: 3vw;
  }
  .footerLogo {
    width: 10vw;
    height: 10vw;
  }
}

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