* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {text-decoration: none;}
img {border: none;}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000;
  margin: 0;
  padding: 0;
  &.in-transition {
    transition: transform 900ms ease;
  }
}
.clear {clear: both;}

.cs-top-bar {
  background-color: #000;
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
}
.cs-top-bar span {
  color: #fff;
  font-weight: 700;
}

.logo-bar {
  padding: 30px;
}

.logo-bar img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 200px;
}
.cs-video-wrap {
  background-image: url('_landing/bg-placeholder.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.cs-video-wrap video {
  width: 100%;
  height: auto;
}

.base-wrap {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1240px;
  margin: 0 auto;
}

h1 {
  font-size: 74px;
}

.cs-prod-list {
  width: 100%;
  height: auto;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 40px;
}
.cs-prod-list div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
  font-size: 24px;
  text-align: center;
  font-weight: 900;
}
.cs-prod-list div img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-prod-list div span {
  margin: 14px 0 30px 0;
}

@media screen and (max-width: 768px) {
  .cs-prod-list {
    grid-template-columns: auto auto;
    gap: 20px;
  }
  .cs-top-bar {
    width: 100%;
    flex-wrap: wrap;
  }
  .cs-top-bar span {
    text-align: center;
    margin: 0 5px;
  }
  h1 {
    font-size: 45px;
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .cs-prod-list {
    grid-template-columns: auto;
    gap: 20px;
  }
}