@import url("https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200,300,400,500,600,700,900");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: 0;
}

body {
  font-family: "Barlow", sans-serif;
  background: white;
}

.mainNav {
  width: 100%;
  z-index: 4;
  position: fixed;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 799px) {
  .mainNav {
    padding: 0 20px;
  }
}

.mainNav:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.mainNav__content {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
}

@media screen and (max-width: 799px) {
  .mainNav__content {
    height: 50px;
  }
}

.mainNav__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 12px;
  font-family: "Source Code Pro", monospace;
}

.mainNav__back:before {
  position: absolute;
  width: 32px;
  height: 32px;
  content: '';
  background-color: transparent;
  -webkit-box-shadow: inset 0px 0px 0px 0px white;
          box-shadow: inset 0px 0px 0px 0px white;
  z-index: -1;
  border-radius: 50px;
  -webkit-transition: all 0.4s 0.25s ease, width 0.4s ease;
  transition: all 0.4s 0.25s ease, width 0.4s ease;
  left: -3px;
  opacity: 1;
}

@media screen and (max-width: 799px) {
  .mainNav__back:before {
    display: none;
  }
}

.mainNav__back:hover:before {
  width: 100%;
  height: 32px;
  opacity: 1;
  -webkit-box-shadow: inset 0px 0px 0px 18px rgba(133, 57, 190, 0.2);
          box-shadow: inset 0px 0px 0px 18px rgba(133, 57, 190, 0.2);
  -webkit-transition: all 0.4s ease, width 0.4s 0.25s ease;
  transition: all 0.4s ease, width 0.4s 0.25s ease;
}

.mainNav__icon {
  width: 25px;
  margin-right: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 799px) {
  .mainNav__icon {
    width: 24px;
  }
}

.mainNav__linkBack {
  color: #8539BE;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.mainNav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainNav__iconSocial {
  width: 40px;
  height: 40px;
  margin: 0 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 799px) {
  .mainNav__iconSocial {
    width: 24px;
    margin: 0 10px;
  }
}

.mainNav__iconSocial:last-child {
  margin-right: 0;
}

.mainNav__iconSocial:before {
  position: absolute;
  width: 0%;
  height: 0%;
  content: '';
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 799px) {
  .mainNav__iconSocial:before {
    display: none;
  }
}

.mainNav__iconSocial img {
  width: 30px;
}

.mainNav__iconSocial:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 799px) {
  .mainNav__iconSocial:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.mainNav__iconSocial:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px 0px 0px 20px rgba(133, 57, 190, 0.2);
          box-shadow: inset 0px 0px 0px 20px rgba(133, 57, 190, 0.2);
}

.mainNav.sticky:before {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.mainNav.sticky-out:before {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.mainHeading {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}

.mainHeading:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
  -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.08);
          box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.08);
}

.mainHeading__headingText {
  margin: 0 auto;
  text-align: center;
  z-index: -1;
  overflow: hidden;
  position: fixed;
}

@media screen and (max-width: 799px) {
  .mainHeading__headingText {
    margin-top: 20px;
  }
}

.mainHeading__title {
  text-transform: uppercase;
  color: #8539BE;
  letter-spacing: 1px;
}

.mainHeading__description {
  margin-top: 20px;
  color: #9c9c9c;
  font-family: "Source Code Pro", monospace;
}

.wrapper {
  z-index: 4;
  background-color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dailyItems {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 1px;
  -ms-grid-columns: (minmax(500px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 1920px) {
  .dailyItems {
    -ms-grid-columns: (minmax(400px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

@media screen and (max-width: 799px) {
  .dailyItems {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.dailyItem {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dailyItem.anime {
  -webkit-animation: itemsFade 0.6s ease backwards;
          animation: itemsFade 0.6s ease backwards;
}

@-webkit-keyframes itemsFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(160px) scaleY(1.5);
            transform: translateY(160px) scaleY(1.5);
  }
  20% {
    opacity: 0;
  }
}

@keyframes itemsFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(160px) scaleY(1.5);
            transform: translateY(160px) scaleY(1.5);
  }
  20% {
    opacity: 0;
  }
}

.dailyItem__image {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.dailyItem__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.6s ease, -webkit-transform 0.6s ease;
  transition: all 0.6s ease, -webkit-transform 0.6s ease;
  transition: all 0.6s ease, transform 0.6s ease;
  transition: all 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.dailyItem__image:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0.05;
}

.dailyItem__content {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 799px) {
  .dailyItem__content {
    height: 60px;
    bottom: 0;
  }
}

.dailyItem__itemBg {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 799px) {
  .dailyItem__itemBg {
    width: 100%;
    height: 100%;
    opacity: 1;
    bottom: 0;
  }
}

.dailyItem__text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 0;
}

@media screen and (max-width: 799px) {
  .dailyItem__text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}

.dailyItem__name {
  opacity: 0;
  font-size: 100px;
  font-weight: 800;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

@media screen and (max-width: 799px) {
  .dailyItem__name {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    letter-spacing: 0px;
    font-size: 28px;
  }
}

.dailyItem__desc {
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  letter-spacing: -5px;
  color: white;
  text-align: right;
  font-weight: 400;
  font-family: "Source Code Pro", monospace;
}

@media screen and (max-width: 799px) {
  .dailyItem__desc {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 799px) {
  .dailyItem:hover .dailyItem {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dailyItem:hover .dailyItem__content {
  height: 100%;
}

@media screen and (max-width: 799px) {
  .dailyItem:hover .dailyItem__content {
    height: 60px;
  }
}

.dailyItem:hover .dailyItem__itemBg {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.dailyItem:hover .dailyItem__name {
  opacity: 1;
  -webkit-transition: all 0.4s 0.2s cubic-bezier(0.25, 0.1, 0.24, 1.34);
  transition: all 0.4s 0.2s cubic-bezier(0.25, 0.1, 0.24, 1.34);
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.dailyItem:hover .dailyItem__desc {
  opacity: 1;
  -webkit-transition: all 0.4s 0.4s cubic-bezier(0.25, 0.1, 0.24, 1.34);
  transition: all 0.4s 0.4s cubic-bezier(0.25, 0.1, 0.24, 1.34);
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  letter-spacing: 0.5px;
}

.dailyItem:hover .dailyItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.6s ease, -webkit-transform 1s ease, -webkit-filter 0.4s 0.2s ease;
  transition: all 0.6s ease, -webkit-transform 1s ease, -webkit-filter 0.4s 0.2s ease;
  transition: all 0.6s ease, transform 1s ease, filter 0.4s 0.2s ease;
  transition: all 0.6s ease, transform 1s ease, filter 0.4s 0.2s ease, -webkit-transform 1s ease, -webkit-filter 0.4s 0.2s ease;
}

@media screen and (max-width: 799px) {
  .dailyItem:hover .dailyItem__image img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}
/*# sourceMappingURL=main.css.map */