* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ccc;
}

h2 {
  padding-bottom: 24px;
}

p {
  padding-bottom: 16px;
}

p:last-child {
  padding-bottom: 0;
}

.mv-36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.mh-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Navbar */
.nav {
  min-height: 42px;
  background-color: #ef5122;
  display: flex;
  justify-content: space-between;
}

.nav-list {
  padding-left: 0;
  margin: auto 16px;
}

.nav-item {
  color: #fff;
  list-style: none;
  margin: 0 8px;
  display: inline-block;
}

/* Form layout */
.form-container {
  width: 70%;
  background-color: #fff;
  padding: 32px;
}

.form__row {
  padding: 8px 0;
  display: flex;
}

.form__label {
  min-width: 90px;
}

.form__input {
  border: 1px solid #ccc;
  flex: 1;
}

/* Column layout */
.column-layout {
  background-color: #fff;
  padding: 32px 0;
  display: flex;
}

.column-item {
  padding: 0 16px;
}

.sidebar-one {
  flex: 1;
  order: 1;
}

.sidebar-two {
  flex: 1;
  order: 2;
}

.main-column {
  flex: 3;
  order: 3;
}

/* Feature layout */
.feature-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* PC, Tablet */
@media (min-width: 740px) {
  .feature-layout {
    flex-direction: row;
  }
}

.feature-item {
  padding: 12px 16px;
  flex-basis: 30%;
}

.feature-item:nth-child(1) {
  background-color: #c3ffc2;
}

.feature-item:nth-child(2) {
  background-color: #ffe7c2;
}

.feature-item:nth-child(3) {
  background-color: #ebc2ff;
}

/* Wrap layout */
.wrap-layout {
  background-color: #fff;
  padding: 12px 0 32px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.wrap-layout__item {
  width: 148px;
  height: 90px;
  background-color: #ef5122;
  color: #fff;
  font-size: 48px;
  text-align: center;
  line-height: 90px;
  margin-top: 20px;
  font-weight: 700;
}

/* Center layout */
.center-layout {
  background-color: #c3ffc2;
  padding: 32px 0;
  max-width: 70%;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-layout__item {
  font-size: 42px;
  font-weight: 700;
}

/* Chart layout */
.chart-layout {
  height: 320px;
  padding: 32px 0;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.chart-layout__item {
  width: 60px;
  color: #fff;
  background-color: #ef5122;
  text-align: center;
  height: var(--percent);
  animation: growth ease-in 0.5s;
}

@keyframes growth {
  from {
    opacity: 0;
    height: calc(var(--percent) - 50%);
  }
  to {
    opacity: 1;
    height: var(--percent);
  }
}

/* The end */
.the-end {
  max-width: 70%;
  min-height: 360px;
  padding: 32px 0;
  display: flex;
}

.the-end__first {
  padding: 16px;
  background-color: #fff;
  flex: 1;
}

.the-end__second {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.the-end__second-one,
.the-end__second-two {
  padding: 16px;
  flex: 1;
}

.the-end__second-one {
  background-color: #ebc2ff;
}

.the-end__second-two {
  background-color: #c3ffc2;
}
