.container {
  width: calc(100vw * 1400 / 1920);
}

.container-header {
  width: calc(100vw * 1400 / 1920);
  height: calc(100vw * 54 / 1920);
  position: relative;
  gap: calc(100vw * 9 / 1920);
  margin-bottom: calc(100vw * 10 / 1920);
}

.color-box {
  width: 100%;
  height: calc(100vw * 8 / 1920);
}

.color--1 {
  height: 100%;
  width: calc(100vw * 84 / 1920);
  background-color: #ea0712;
}

.color--2 {
  height: 50%;
  width: calc(100vw * 1316 / 1920);
  background-color: #ddd;
}

.container-header h2 {
  color: #000;
  font-size: calc(100vw * 37 / 1920);
  line-height: calc(100vw * 37 / 1920);
  font-weight: 500;
}

.container-header h3 {
  position: absolute;
  right: 0;
  bottom: calc(100vw * 8 / 1920);
  text-transform: uppercase;
  font-size: calc(100vw * 15 / 1920);
  line-height: calc(100vw * 15 / 1920);
  color: #ccc;
  font-weight: 300;
  letter-spacing: calc(100vw * 1 / 1920);
}

.container-flex {
  display: flex;
}

.container-justify-center {
  justify-content: center;
}

.container-align-center {
  align-items: center;
}

.container-column {
  flex-direction: column;
}

.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;
}

