html {
  box-sizing: border-box;
}

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

a {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}


body {
  background-color: black;
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 400;
  margin: 0;
  color: white;
}

.container {
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
}

.header {
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: normal;
}

.contacts {
  max-width: 80%;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.phone {
  padding-right: 1rem;
  text-decoration: none;
}

.email {
  border-left: 1px solid white;
  padding-left: 1rem;
  text-decoration: none;
}

.content {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.content a {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .header {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .phone {
    padding-right: 0;
  }

  .email {
    padding-left: 0;
    border-left: none;
  }

  .contacts {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.1rem;
    line-height: 2rem;
  }

  .content {
    font-size: 1rem;
  }
}
