:root {
  --white: white;
  --black: black;
}

.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;
  }
}

.container {
  max-width: 1440px;
  height: 100svh;
  display: flex;
  position: relative;
}

.section {
  background-image: url('../images/bg.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-style: none;
  border-top-color: rgba(0, 0, 0, .53);
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(97, 92, 74, .4);
  border: 2px solid rgba(255, 255, 255, .52);
  border-color: rgba(255, 255, 255, .52) rgba(255, 255, 255, .52) rgba(92, 92, 92, .1) rgba(53, 53, 53, .1);
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 18rem;
  height: 18rem;
  margin: auto;
  display: flex;
  position: relative;
  box-shadow: -20px 20px 30px rgba(27, 24, 19, .3);
}

.image {
  opacity: .5;
  text-align: center;
  align-self: flex-start;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: auto;
  padding-top: 30px;
  padding-left: 30px;
  display: block;
}

.heading {
  color: #fff;
  text-align: left;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, .1);
  order: 1;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  margin: auto auto 0 0;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.body {
  background-color: #dbdbdb;
}
