@import url(boostrap-grid.css);
@import url(video/video-player.css);
@import url(way-to-sifts/sifts.css);

html {
  width: 100vw;
  height: auto;
  background-color: #000;
}

body {
  margin: 0;
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(background.png);
  width: 100vw;
  height: 100%;
  min-height: 100%;
  background-size: cover;
}

a {
  font-weight: 500;
  color: #9DC73D;
}
a:hover {
  color: #9DC73D;
  text-decoration: underline;
}

h1 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;

  margin-top: 37px;

  color: #FFFFFF;

  @media (min-width: 992px) {
    font-size: 54px;
    line-height: 64px;

    margin-top: 78px;
  }

  span {
    position: relative
  }

  span.you::after {
    position: absolute;
    top: 33px;
    left: 0;
    background-image: url(hero/you-underline.svg);
    background-size: 61px 9px;
    content: "";
    display: inline-block;
    width: 61px;
    height: 9px;
  }

  @media (min-width: 992px) {
    span.you::after {
      top: 55px;
      background-size: 91px 16px;
      width: 91px;
      height: 16px;
    }
  }


  span.your::after {
    position: absolute;
    top: 33px;
    left: 0;
    background-image: url(hero/your-underline.svg);
    background-size: 76px 9px;
    content: "";
    display: inline-block;
    width: 76px;
    height: 9px;

  }
  @media (min-width: 992px) {
    span.your::after {
      top: 55px;
      background-size: 146px 16px;
      width: 146px;
      height: 16px;
    }
  }
}

h3 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;
  margin-bottom: 0;

  @media (min-width: 992px) {
    margin-bottom: 32px;
  }
}

h4 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;

  @media (min-width: 992px) {
    font-size: 27px;
    line-height: 34px;
  }
}

h5 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;

  color: #FFFFFF;

  @media (min-width: 992px) {
    font-size: 24px;
    line-height: 30px;
  }

  span {
    color: #9DC73D;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: center;
  background-color: #000;
  height: 72px;

  @media (min-width: 992px) {
    display: flex;
    width: 100%;
    height: 85px;
  }
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9FBF27;
  border-radius: 72px;
  border: 0;

  margin-left: 0;
  font-family: 'Roboto', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  color: #FFFFFF;

  width: auto;
  height: 40px;
  padding: 0 20px;

  cursor: pointer;

  @media (min-width: 992px) {
    height: 50px;
    width: auto;
    padding: 0 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
  }
}

button.secondary {
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff !important;
}

header .container,
header .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;

    @media (min-width: 992px) {
      width: 100%;
      max-width: 1200px;
    }
}

header .icon img {
  height: 34px;

  @media (min-width: 992px) {
    height: 44px;
  }
}

main {
  display: flex;
  flex-direction: column;
  margin-top: 53px;

  @media (min-width: 992px) {
    margin-top: 85px;
  }
}

.subtitle {
  margin: 0 auto;
  max-width: 810px;
}

.container1 {
  padding: 0 12px;
  width: auto;
}

#ways-of-sift {
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  flex-direction: column;

  @media (min-width: 993px){
    margin-top: 110px;
    max-width: 870px;
  }
}

#ways-of-sift .sifts {
  display: flex;
  flex-direction: column;
  align-items: center;

  @media (min-width: 992px) {
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

#keywords {
  margin: 0 auto;
  margin-top: 93px;

  @media (min-width: 992px) {
    margin-top: 175px;
  }
}

#keywords img {
  width: 100%;
}

.container {
  padding: 0 12px;
  width: calc(100% - 24px);
}

.container #sifts-carousel {
  margin-left: -12px;
  margin-right: -12px;

  @media (min-width: 992px) {
   /* Undo container margin for carousel items */
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  @media only screen and (max-width: 991px) and (orientation:landscape) {
    width: 100vw;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
  }
}

#sifts-carousel {
  margin: 0 auto;
  margin-top: 28px;
  width: 100vw;
  display: flex;
  flex-direction: column;

  @media (min-width: 992px) {
    margin-top: 100px;
  }
}

.splide {
  margin-top: 28px;

  @media (min-width: 992px) {
    margin-top: 65px;
  }

  a > img {
    width: 102px;
    height: 102px;
    border-radius: 4px;

    @media (min-width: 992px) {
      width: 205px;
      height: 205px;
    }
  }
  a.selected > img {
    border: 4px solid #fff;
    transform: translate(0, -26px);
    transition: transform 0.2s ease-in;
    transition-delay: 2.5s;
  }
}

.splide .splide__slide {
  margin-top: 26px;
}

.splide .splide__arrows,
.splide .splide__pagination {
  display: none;
}

.container #bottom-cta {
  margin-left: -12px;
  margin-right: -12px;

  @media (min-width: 992px) {
    /* Undo container margin for carousel items */
    width: 100vw;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
  }

  @media only screen and (max-width: 991px) and (orientation:landscape) {
    width: 100vw;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
  }
}

#bottom-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding: 35px;
  background-color: #000;
  
  @media (min-width: 992px) {
    margin-top: 123px;
    padding: 60px;
  }
}

#bottom-cta .text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 32px;
  text-align: center;

  color: #FFFFFF;

  @media (min-width: 992px) {
    max-width: 810px;
    font-size: 40px;
    line-height: 52px;
    padding: 0 40px;
  }
}

#bottom-cta .text span.green {
  color: #9DC73D;
}

#bottom-cta button {
  margin-top: 34px;
  margin-bottom: 10px;

  @media (min-width: 992px) {
    margin-bottom: 20px;
  }
}