/* line 10, style.scss */
:root {
  --light: #f8f9fa;
  --lighten: #e9e9e9;
  --dark: #1e1f36;
  --blue: #46d5ff;
  --orange: #DF744A;
  --jaune: #DCB239;
}

/* line 20, style.scss */
html,
body {
  font-family: "Open Sans Condensed";
  width: 100%;
  height: 100%;
  margin: 0;
  color: #000000;
}

/* line 30, style.scss */
html,
* {
  box-sizing: border-box;
}

/* line 35, style.scss */
html {
  font-size: 62.5%;
  font-size: calc(1em * 0.625);
  color: #000000;
}

/* line 44, style.scss */
a {
  text-decoration: none;
  color: #ffffff;
}

/* line 49, style.scss */
body {
  font-size: 1.6rem;
  background-color: var(--light);
}

/* line 54, style.scss */
.topnavbar {
  width: 100%;
  background-color: var(--blue);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

/* line 66, style.scss */
.menu--main {
  margin: 0;
  padding: 0;
  display: flex;
}
/* line 71, style.scss */
.menu--main li {
  display: inline;
  list-style: none;
}
/* line 75, style.scss */
.menu--main li a {
  display: block;
  font-size: 1.8rem;
  color: #ffffff;
  padding: 10px;
  transition: 0.25s ease-in-out;
}
/* line 81, style.scss */
.menu--main li a:hover {
  background-color: var(--orange);
}
/* line 85, style.scss */
.menu--main li a.active {
  background-color: var(--orange);
}

/* line 92, style.scss */
.container {
  max-width: 100vw;
  padding: 0px 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  /* line 92, style.scss */
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1367px) {
  /* line 92, style.scss */
  .container {
    max-width: 1440px;
  }
}

/* line 106, style.scss */
.intro {
  padding-top: 50px;
  display: flex;
  flex-direction: column-reverse;
  flex: 0 0 50%;
  max-height: 100vh;
}
@media (min-width: 768px) {
  /* line 106, style.scss */
  .intro {
    padding-top: 100px;
    padding-bottom: 50px;
    flex-direction: row;
    height: auto;
  }
}

/* line 122, style.scss */
.intro h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

/* line 129, style.scss */
.welcome_block,
.welcome_picture {
  width: 100%;
}
@media (min-width: 768px) {
  /* line 129, style.scss */
  .welcome_block,
  .welcome_picture {
    width: 50%;
  }
}

/* line 137, style.scss */
.welcome_picture img {
  max-width: 100%;
}

@media (min-width: 768px) {
  /* line 141, style.scss */
  .welcome_block {
    padding-right: 80px;
  }
}

.welcome_block svg {
  width: 50px;
  height: auto;

}

/* line 147, style.scss */
.featured {
  display: flex;
  flex-direction: column-reverse;
  flex: 0 0 100%;
  width: 98%;
}
@media (min-width: 768px) {
  /* line 147, style.scss */
  .featured {
    flex-direction: row;
  }
}

/* line 160, style.scss */
.featured_picture img {
  max-width: 100%;
}

/* line 164, style.scss */
.featured_block {
  width: 98%;
  padding-top: 30px;
  width: 100%;
}
@media (min-width: 1025px) {
  /* line 164, style.scss */
  .featured_block {
    width: 60%;
    padding: 50px;
  }
}

/* line 179, style.scss */
.featured--title {
  display: block;
  text-align: center;
}

/* line 184, style.scss */
.featured--stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  z-index: 2;
  font-family: "Open Sans";
  font-weight: 500;
  padding-bottom: 15px;
}

/* line 204, style.scss */
h2.title_section_featured,
h2.title_section_videos {
  text-transform: uppercase;
  font-size: 4.0rem;
  padding: 20px;
  margin: -20px;
  line-height: 1;
  background-color: var(--jaune);
  color: #ffffff;
}
@media (min-width: 1025px) {
  /* line 204, style.scss */
  h2.title_section_featured,
  h2.title_section_videos {
    font-size: 7rem;
  }
}

/* line 224, style.scss */
h2.title_section_featured {
  transform: rotate(2deg);
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  /* line 224, style.scss */
  h2.title_section_featured {
    text-align: right;
  }
}

/* line 234, style.scss */
h2.title_section_videos {
  transform: rotate(-2deg);
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
  max-width: 98%;
  margin-left: auto;
  margin-right: auto;
}

/* bandeau */
/* line 245, style.scss */
.filters {
  width: 100%;
  text-align: center;
  color: #000000;
}

/* line 251, style.scss */
.filters .sort {
  display: inline-block;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  cursor: pointer;
}

/* grille*/
/* line 260, style.scss */
.grid-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* line 269, style.scss */
.grid-container {
  width: 100%;
  margin: auto;
  text-align: center;
}

/* line 275, style.scss */
.grid-item {
  height: calc( (100vw * 9) / 16);
  margin: 5px 0;
  padding: 0;
  color: #ffffff;
  text-shadow: #000 1px 0 20px;
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  /* line 275, style.scss */
  .grid-item {
    width: 300px;
  }
}
@media (min-width: 1201px) {
  /* line 275, style.scss */
  .grid-item {
    width: 300px;
    height: 170px;
  }
}
/* line 303, style.scss */
.grid-item .grid-item-link {
  z-index: 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  display: block;
  transition: transform 3s ease;
}
/* line 318, style.scss */
.grid-item .grid-item-link:hover {
  transform: scale(1.05);
}
/* line 323, style.scss */
.grid-item .grid-item--container {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 333, style.scss */
.grid-item .grid-item--container::before {
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  /* line 323, style.scss */
  .grid-item .grid-item--container {
    opacity: 0;
  }
}
/* line 348, style.scss */
.grid-item:hover .grid-item--container {
  opacity: 1;
}
/* line 354, style.scss */
.grid-item--stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 2;
}
/* line 362, style.scss */
.grid-item--title {
  z-index: 2;
  font-size: 2rem;
  line-height: 1;
}
/* line 368, style.scss */
.grid-item--likes, .grid-item--views {
  font-size: 1.4rem;
  line-height: 1;
  width: 50%;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  padding: 0 25px;
}
/* line 378, style.scss */
.grid-item--likes i, .grid-item--views i {
  padding-right: 10px;
}

/* timeline */
/* line 385, style.scss */
.container--text {
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 2rem;
  background-color: #48b379;
  padding: 10px 10px 50px 50px;
}
@media (min-width: 768px) {
  /* line 385, style.scss */
  .container--text {
    padding: 50px;
  }
}

/* line 399, style.scss */
#timeline {
  list-style: none;
  margin: 0;
  padding-left: 30px;
  border-left: 8px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
}
@media (min-width: 768px) {
  /* line 399, style.scss */
  #timeline {
    margin: 50px 0 30px 120px;
  }
}
/* line 411, style.scss */
#timeline li {
  margin: 40px 0;
  position: relative;
}

/* line 423, style.scss */
.date {
  margin-top: -10px;
  top: 50%;
  left: -80px;
  font-size: 0.95em;
  line-height: 20px;
  position: absolute;
}
@media (min-width: 768px) {
  /* line 423, style.scss */
  .date {
    left: -158px;
  }
}

/* line 436, style.scss */
.circle {
  margin-top: -10px;
  top: 50%;
  left: -44px;
  width: 20px;
  height: 20px;
  background: #DF744A;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: block;
  position: absolute;
}

/* line 449, style.scss */
.content {
  padding: 20px;
  margin-right: 0;
  border-color: #ffffff;
  border-width: 2px;
  border-style: solid;
  border-radius: 0.5em;
  position: relative;
}
@media (min-width: 768px) {
  /* line 449, style.scss */
  .content {
    margin-right: 20px;
  }
}
/* line 462, style.scss */
.content:before, .content:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  position: absolute;
  pointer-events: none;
  right: 100%;
}
/* line 471, style.scss */
.content:before {
  border-right-color: inherit;
  border-width: 20px;
  top: 50%;
  margin-top: -20px;
}
/* line 477, style.scss */
.content:after {
  border-right-color: #48b379;
  border-width: 17px;
  top: 50%;
  margin-top: -17px;
}
/* line 483, style.scss */
.content p {
  text-align: justify;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}

/* footer*/
/* line 495, style.scss */
.footer {
  background-color: #46d5ff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 503, style.scss */
.footer img {
  max-width: 558px;
  width: 100%;
  height: auto;
}
/* line 509, style.scss */
.footer .credits {
  margin-top: 30px;
  font-size: 1.6rem;
}
/* line 513, style.scss */
.footer .credits .love i {
  color: red;
  margin-left: 2px;
  margin-right: 2px;
}

/* line 525, style.scss */
.header__main {
  background: url("/assets/channels4_banner.jpg") center center no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  /* line 525, style.scss */
  .header__main {
    height: 500px;
    flex-direction: row;
  }
}
/* line 538, style.scss */
.header__main::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* line 547, style.scss */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  /* line 547, style.scss */
  .logo {
    width: 50%;
    align-items: flex-start;
  }
}
/* line 561, style.scss */
.logo .total_views {
  margin-left: 5%;
  font-size: 1.4rem;
  color: #ffffff;
  z-index: 2;
}
/* line 568, style.scss */
.logo img {
  z-index: 2;
  margin-left: 5%;
}

/* line 575, style.scss */
.amis {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  margin-right: 5%;
}
@media (min-width: 768px) {
  /* line 575, style.scss */
  .amis {
    width: 50%;
    justify-content: flex-end;
  }
}
/* line 590, style.scss */
.amis a.amis--link {
  padding: 0 10px;
}
/* line 594, style.scss */
.amis i {
  color: white;
  font-size: 4rem;
}

/* line 599, style.scss */
.title__wrapper {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  /* line 599, style.scss */
  .title__wrapper {
    width: 60%;
  }
}

/* line 608, style.scss */
.title--main {
  text-align: center;
  font-family: "Exo", sans-serif;
  font-size: 3.2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  color: #46d5ff;
  position: relative;
  line-height: 1;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  /* line 608, style.scss */
  .title--main {
    font-size: 6.2rem;
  }
}

@keyframes morph-1 {
  0% {
    clip-path: polygon(93% 0, 100% 84%, 13% 100%, 0 11%);
  }
  20% {
    clip-path: polygon(100% 6%, 100% 91%, 6% 100%, 0 0);
  }
  40% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
  60% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  80% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  100% {
    clip-path: polygon(93% 0, 100% 84%, 13% 100%, 0 11%);
  }
}
@keyframes morph-2 {
  0% {
    clip-path: polygon(100% 6%, 100% 91%, 6% 100%, 0 0);
  }
  20% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  40% {
    clip-path: polygon(90% 0, 100% 95%, 0 100%, 6% 0);
  }
  60% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  80% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  100% {
    clip-path: polygon(100% 6%, 100% 91%, 6% 100%, 0 0);
  }
}
@keyframes morph-3 {
  0% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
  20% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  40% {
    clip-path: polygon(95% 0, 100% 88%, 0 100%, 4% 9%);
  }
  60% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
  80% {
    clip-path: polygon(93% 0, 100% 84%, 13% 100%, 0 11%);
  }
  100% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
}
@keyframes morph-4 {
  0% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  20% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
  40% {
    clip-path: polygon(95% 0, 100% 88%, 0 100%, 4% 9%);
  }
  60% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  80% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
}
@keyframes morph-5 {
  0% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  20% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  40% {
    clip-path: polygon(90% 0, 100% 95%, 0 100%, 6% 0);
  }
  60% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  80% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  100% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
}
@keyframes morph-6 {
  0% {
    clip-path: polygon(90% 0, 100% 95%, 0 100%, 6% 0);
  }
  20% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  40% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
  60% {
    clip-path: polygon(100% 6%, 100% 91%, 6% 100%, 0 0);
  }
  80% {
    clip-path: polygon(93% 0, 100% 84%, 13% 100%, 0 11%);
  }
  100% {
    clip-path: polygon(90% 0, 100% 95%, 0 100%, 6% 0);
  }
}
@keyframes morph-7 {
  0% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  20% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
  40% {
    clip-path: polygon(93% 0, 100% 84%, 13% 100%, 0 11%);
  }
  60% {
    clip-path: polygon(95% 0, 100% 88%, 0 100%, 4% 9%);
  }
  80% {
    clip-path: polygon(100% 6%, 100% 91%, 6% 100%, 0 0);
  }
  100% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
}
@keyframes morph-8 {
  0% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  20% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  40% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
  60% {
    clip-path: polygon(90% 0, 100% 95%, 0 100%, 6% 0);
  }
  80% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  100% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
}
@keyframes morph-9 {
  0% {
    clip-path: polygon(95% 0, 100% 88%, 0 100%, 4% 9%);
  }
  20% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  40% {
    clip-path: polygon(100% 0, 100% 84%, 3% 100%, 0 15%);
  }
  60% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
  80% {
    clip-path: polygon(100% 0, 89% 100%, 0 100%, 8% 4%);
  }
  100% {
    clip-path: polygon(95% 0, 100% 88%, 0 100%, 4% 9%);
  }
}
@keyframes morph-10 {
  0% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
  20% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  40% {
    clip-path: polygon(100% 0, 94% 100%, 13% 100%, 0 11%);
  }
  60% {
    clip-path: polygon(100% 4%, 89% 100%, 4% 100%, 0 1%);
  }
  80% {
    clip-path: polygon(100% 16%, 94% 100%, 3% 100%, 0 0);
  }
  100% {
    clip-path: polygon(100% 8%, 96% 90%, 6% 100%, 0 0);
  }
}
/* line 103, anim.scss */
.shape {
  position: relative;
  margin: auto;
}
/* line 112, anim.scss */
.shape::after {
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
/* line 118, anim.scss */
.shape::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  animation-name: morph-3;
  background: transparent;
  z-index: -1;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.15);
}
/* line 130, anim.scss */
.shape::after {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: 50px;
  left: 50px;
  animation-name: morph-10;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}
