@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;500&family=Russo+One&display=swap');
* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}
body {
  background: #000;
}

.container {
  width: 100%;
  max-width: 1280px;
  height: 100vh;
}

.header {
  width: 100%;
  height: 600px;
  background-image: url(./assets/header.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 900px) {
  .header {
    height: 400px;
  }
  @media screen and (max-width: 700px) {
    .header {
      height: 350px;
    }
    @media screen and (max-width: 580px) {
      .header {
        height: 250px;
      }
      @media screen and (max-width: 400px) {
        .header {
          height: 200px;
        }
      }
    }
  }
}

.header .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.header .top img {
  width: 30%;
  max-width: 170px;
}

@media screen and (max-width: 800px) {
  .header .top {
    padding-top: 10px;
  }
  .header .top img {
    width: 30%;
    max-width: 80px;
  }
}

.white-line {
  width: 100%;
  height: 82px;
  background-image: url('./assets/white-line.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.white-line a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1054a2;
  font-weight: 500;
}

.white-line a img {
  width: 100px;
  margin-right: -38px;
  margin-left: 1px;
}

@media screen and (max-width: 800px) {
  .white-line {
    /* font-size: 10px; */
    flex-direction: column;
    line-height: 10px;
    height: max-content;
    padding: 10px 0 26px;
    gap: 6px;
  }
  .white-line a img {
    display: block;
  }
}
.white-line div small {
  display: block;
}

.partners-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.partners-top img {
  max-width: 200px;
  max-height: 70px;
  order: 1;
}

.videos-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.videos-container div {
  width: 30%;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .videos-container div {
    width: 48%;
  }
  @media screen and (max-width: 700px) {
    .videos-container div {
      width: 98%;
    }
  }
}
.videos-container div .title {
  width: 100%;
  color: #fff;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
  font-family: 'Russo One', sans-serif;
}

.media-partners {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  background-color: #BCBBBC;
}

.media-partners img {
  max-width: 100px;
  height: 70px;
}

@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
}

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

.container{
    background-size: contain;
    background-position-y: center;
    }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}
