html, body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

main.landing-grid {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

main.landing-grid .grid-main-item {
    position: relative;
    width: calc(100% / 3);
    height: 50%;
    background-position: center center;
    color: #FFF;
}

main.landing-grid .grid-item {
    position: relative;
    width: calc(100% / 3);
    height: 50%;
    background-size: cover;
    background-position: center center;
    color: #FFF;
}

main.landing-grid .grid-item h4 {
    color: #FFF;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 300;
    line-height: 1.2;
}

main.landing-grid .grid-item > div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00000033;
    padding: 20px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
    z-index: 100;
}

main.landing-grid .grid-main-item > div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00000022;
    padding: 20px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
    z-index: 100;
}

main.landing-grid .grid-item .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity, 2s;
}

main.landing-grid .grid-item .background.active {
    opacity: 1;
}

.scroll-down {
    cursor: pointer;
    position: absolute !important;
    left: calc(50% - 15px) !important;
    bottom: 20px !important;
    width: 30px !important;
    height: calc(100% - 60px) !important;
    background-color: #00000000 !important;
}

.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #FFFFFF;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {

    main.landing-grid {
        flex-flow: column;
        height: auto;
        position: relative;
        padding-top: 50vh;
    }

    main.landing-grid .grid-main-item,
    main.landing-grid .grid-item {
        width: 100vw;
        height: 50vh;
    }

    main.landing-grid .grid-main-item {
        position: absolute;
        top: 0;
    }

  .loader img {
    width: 90%;
  }

  .scroll-down {
    display: none !important;
  }
}

.loaderBanner {
  width: 500px;
}

.loaderWrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation: fadeLoader 0.6s 4s ease forwards;
}

.loader {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 999;
}

.loader .bar {
  width: 10px;
  height: 5px;
  background: #1ABC9C;
  margin: 2px;
  animation: bar 1s infinite linear;
}
.loader .bar:nth-child(1) {
  animation-delay: 0s;
}
.loader .bar:nth-child(2) {
  animation-delay: 0.25s;
}
.loader .bar:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes bar {
  0% {
    transform: scaleY(1) scaleX(0.5);
  }
  50% {
    transform: scaleY(10) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(0.5);
  }
}

@keyframes fadeLoader {
  to {
    opacity: 0;
  }
}