html {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
body {
  font-size: 100%;
  line-height: 1.48;
  font-family: "Roboto", sans-serif;
  background: #0c091a;
  color: #ffffff;
}
img {
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 16px;
  line-height: 1.12;
  margin-bottom: 0.5em;
}
p {
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.72);
}
a {
  color: #fff;
}
header {
  padding: 12px;
  background: #a80293;
}
.header__logo {
  display: block;
  width: 120px;
  margin: 0 auto;
}
.header__logo img {
  display: block;
}
.grid {
  width: 882px;
  max-width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.grid--large {
  width: 1060px;
}
.grid--small {
  width: 707px;
}
.column {
  padding-left: 12px;
  padding-right: 12px;
}
.column--half {
  flex: 0 0 50%;
}
.section__separator {
  position: relative;
  top: -2px;
  width: 100%;
}
.intro,
.ads {
  background: #1d1b29;
}
.intro .grid,
.ads .grid {
  align-items: center;
}
.intro {
  padding: 48px 0;
  background-image: url("assets/blob_top_right.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 50% auto;
}
.intro p {
  margin-bottom: 0.5em;
}
.ads {
  padding-bottom: 48px;
}
.ads__wrapper {
  position: relative;
  max-width: 90%;
}
.ads__video {
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.5);
}
.ads__video:focus {
  outline: 0;
  border: 0;
}
.ads__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ads__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.ads__play img {
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0.54;
  transition: opacity 160ms ease-in-out;
}
.ads__play:hover img {
  opacity: 1;
}
.channels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.channels img {
  display: block;
  flex: 0 1 auto;
}
.ifop,
.protection {
  padding-bottom: 40px;
  font-size: 14px;
}
.footer {
  padding: 16px 0;
  font-size: 14px;
  background: #1d1b29;
}

@media screen and (max-width: 768px) {
  .grid {
    display: block;
  }
  .column {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .intro {
      padding: 24px 0;
  }
  .intro .column--half img {
    display: block;
    margin: 0 auto;
  }
  .ads {
    text-align: center;
  }
  .ads__wrapper {
    margin: 0 auto;
    max-width: 88%;
  }
  .channels {
    margin: 0 auto;
    max-width: 88%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .channels img {
    margin-right: 12px;
    margin-top: 12px;
  }
  .footer {
    text-align: center;
  }
  .footer .column {
    padding: 0;
  }
}
