html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
    display: block;
  max-width: 100%;
  height: auto;
}

body {
    background-color: #c82127;
    color: white;
    font-family: "Roboto", serif;
}

p {
    line-height: 1.4;
}

a {
    color: white;
    font-weight: 700;
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-liftrock {
    margin: 0 auto;
    padding: 40px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 147px - 105px);
    padding: 105px 40px 147px;
}

.logo-controlis {
    width: 800px;
    margin-bottom: 5%;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.count {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.number {
    font-size: 60px;
    font-weight: 700;
}

@media only screen and (max-width: 960px) {
  .number {
    font-size: 44px;
  }
}

@media only screen and (max-width: 600px) {
  .number {
    font-size: 32px;
  }
  h1 {
    font-size: 20px;
  }
}

.word {
    font-size: 16px;
}

.contact-box {
    padding: 40px;
    text-align: center;
}