* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: #303030;
  background: url("assets/background-image.jpg") center top / cover fixed no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.2 em;
}

.page {
  width: min(1464px, 81.8vw);
  margin: 0 auto;
  background: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 32px 70px;
}

.site-header img {
  width: min(515px, 76%);
  height: auto;
}

.red-rule {
  height: 14px;
  background: #d92929;
}

.content {
  display: grid;
  grid-template-columns: 46.8% 53.2%;
  gap: 42px;
  padding: 46px 48px 112px;
}

.copy {
  max-width: 665px;
}

p {
  margin: 0 0 30px;
}

.intro {
  margin-bottom: 30px;
  font-size: 25px;
}

h1 {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
}

ul {
  margin: 0 0 32px 42px;
  padding-left: 22px;
}

li {
  padding-left: 4px;
}

a {
  color: #ee1b2f;
  text-decoration: underline;
}

address {
  margin-top: 34px;
  font-style: normal;
}

.facebook-icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
  background: #252525;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: start;
  padding-top: 4px;
}

.gallery img {
  width: 100%;
  height: 288px;
  display: block;
  object-fit: cover;
}

.gallery img:nth-child(4),
.gallery img:nth-child(5) {
  height: 434px;
}

.gallery img:nth-child(4) {
  grid-column: 1 / span 2;
}

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ef1833;
  font-size: 20px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  body {
    font-size: 19px;
  }

  .page {
    width: min(100%, 940px);
  }

  .site-header {
    min-height: 330px;
  }

  .content {
    grid-template-columns: 1fr;
    padding: 36px 32px 76px;
  }

  .copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
    font-size: 17px;
  }

  .site-header {
    min-height: 235px;
    padding: 32px 18px;
  }

  .site-header img {
    width: min(430px, 90%);
  }

  .red-rule {
    height: 9px;
  }

  .content {
    gap: 32px;
    padding: 30px 22px 56px;
  }

  .intro {
    font-size: 21px;
  }

  h1 {
    font-size: 25px;
  }

  ul {
    margin-left: 24px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:nth-child(4),
  .gallery img:nth-child(5) {
    grid-column: auto;
    height: auto;
    max-height: none;
  }
}
