.body {
  color: #fff;
  font-family: Instrument Sans, sans-serif;
}

.section {
  background-image: url('../images/background-desktop.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100lvh;
  padding-top: 15vh;
}

.container {
  width: 1400px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.header {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.left-header {
  flex-flow: column;
}

.right-header {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  font-size: 24px;
  line-height: 25px;
  display: flex;
}

.heading {
  margin-top: 0;
  font-size: 24px;
  line-height: 24px;
}

.address {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
}

.main {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15vh;
  display: flex;
}

.left-main {
  font-size: 55px;
  font-weight: 500;
  line-height: 100%;
}

.right-main {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-flow: column;
  font-size: 43px;
  line-height: 98.5%;
  display: flex;
}

.links {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
a.links:hover{
  text-decoration: underline;
}

.bg-cover {
  background-color: #581818;
  height: 100svh;
  position: absolute;
}

.paragraph {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 25vh;
  }

  .left-main, .right-main {
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    background-position: 0%;
  }

  .left-main, .right-main {
    font-size: 25px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 10vh;
  }

  .container {
    max-width: 80%;
  }

  .right-header {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: right;
    flex-flow: column;
    font-size: 12px;
    line-height: 13px;
  }

  .address {
    font-size: 12px;
    line-height: 13px;
  }

  .main {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 50vh;
    margin-top: 20vh;
  }

  .right-main {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    margin-top: 3svh;
  }
}


