:root {
  --red: #b40000;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

p {
  margin-bottom: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.brand {
  color: #000;
  -webkit-text-stroke-color: #d81a1a;
  margin-top: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.navbar {
  background-color: #fff;
}

.navlink {
  text-transform: uppercase;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 24px;
  text-decoration: none;
}

.navlink:hover {
  background-color: #fff;
  text-decoration: overline;
}

.navlink.w--current {
  color: var(--red);
}

.slider {
  background-color: #fff;
  height: auto;
}

.footer {
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 13px;
  position: static;
  inset: auto 0% 0%;
}

.footer-text {
  text-align: center;
  width: auto;
  font-family: Droid Serif, serif;
  font-size: 12px;
  line-height: 15px;
}

.section {
  display: none;
}

.news-container {
  margin-top: 20px;
  margin-bottom: 100px;
}

.h1 {
  margin-top: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 500;
}

.h1.centered {
  text-align: center;
}

.h2 {
  margin-top: 0;
  font-family: Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph {
  font-family: Droid Serif, serif;
  font-size: 14px;
}

.text-links {
  color: #333;
  text-decoration: underline;
}

.text-links:hover {
  color: var(--red);
  font-weight: 400;
  text-decoration: underline;
}

.horizontal-rule {
  margin-top: 15px;
  margin-bottom: 15px;
}

.caption {
  margin-top: 5px;
  font-family: Droid Serif, serif;
  font-size: 12px;
  line-height: 16px;
}

.news-date {
  font-family: Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.content-container {
  margin-top: 20px;
  margin-bottom: 100px;
}

.content-container.centered {
  text-align: center;
}

.gallery-overview {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-features-block {
  margin-top: 16px;
  margin-bottom: 24px;
}

.gallery-feature {
  background-image: url('../images/');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image {
  width: 100%;
}

.painting-div {
  width: 60%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

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

@media screen and (max-width: 767px) {
  .slider {
    display: none;
  }

  .section {
    display: block;
  }

  .news-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-overview {
    padding: 60px 15px;
  }

  .painting-div {
    width: 80%;
  }
}

@media screen and (max-width: 479px) {
  .footer, .news-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    max-width: none;
  }

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


