.container {
  width: calc(100vw * 1200 / 1920);
}

.container-header {
  width: calc(100vw * 1200 / 1920);
  height: calc(100vw * 57 / 1920);
  gap: calc(100vw * 12 / 1920);
  position: relative;
}

.color-box {
    width: 100%;
    height: calc(100vw * 8 / 1920);
    justify-content: space-between;
}

.color--1 {
    height: 100%;
    width: calc(100vw * 84 / 1920);
    background-color: #ea0712;
}

.color--2 {
    height: 50%;
    width: calc(100vw * 1316 / 1920);
    background-color: #ddd;
}

.color--2.color--2-honor {
    width: calc(100vw * 104 / 1920);
}

.container-flex {
  display: flex;
}

.container-justify-center {
  justify-content: center;
}

.container-align-center {
  align-items: center;
}

.container-column {
  flex-direction: column;
}

.container-header h2 {
  font-size: calc(100vw * 37 / 1920);
  line-height: calc(100vw * 37 / 1920);
  font-weight: 500;
  display: inline-block;
}

.container-header h3 {
  position: absolute;
  right: 0;
  bottom: calc(100vw * 17 / 1920);
  font-size: calc(100vw * 18 / 1920);
  line-height: calc(100vw * 18 / 1920);
  font-weight: 400;
  text-transform: uppercase;
  color: #bcbcbc;
}

.container-grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.font-color{
    color: #3b3b3b;
}
