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

.body {
  background-color: #242424;
}

.section {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #161616;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
}

.section.navbar {
  margin-bottom: 20px;
  display: block;
}

.text-block {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
}

.text-block.bodytext {
  width: auto;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
}

.text-block.bodysmalltext {
  width: auto;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

.text-block.bodysmalltext.marginbottom {
  margin-bottom: 20px;
}

.text-block.bodysmalltext.copyright {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-block.titletext {
  margin-bottom: 20px;
  font-size: 32px;
}

.image {
  width: 30px;
  margin-right: 10px;
}

.container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  display: flex;
}

.div-block {
  width: 300px;
  color: #522f2f;
  background-color: #161616;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  display: flex;
}

.div-block.product {
  justify-content: space-between;
  margin-top: 0;
  padding-right: 20px;
}

.image-2 {
  width: 50px;
  margin-right: 5px;
}

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

.link-block {
  margin-top: 0;
  margin-bottom: 20px;
  text-decoration: none;
}

.div-block-2 {
  align-items: center;
  display: flex;
}

.image-3 {
  text-align: left;
}

.container-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.image-4 {
  max-width: 50%;
  border-radius: 10px;
  flex: 0 auto;
}

.div-block-3 {
  padding-top: 10px;
  padding-left: 20px;
}

.map {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .container-2, .container-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .text-block.bodytext {
    padding-right: 20px;
  }

  .div-block.product {
    width: 200px;
  }

  .container-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-4 {
    display: none;
  }
}


