.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

a {
  color: #78999c;
  text-decoration: underline;
}

.container {
  display: block;
  max-width: 800px;
}

.section-header {
  margin-top: 60px;
}

.logo {
  width: 300px;
}

.slogan_text {
  margin-top: 10px;
  font-size: 21px;
  line-height: 21px;
}

.body {
  font-family: Quicksand, sans-serif;
}

.slogan {
  padding-left: 96px;
}

.section-content {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 96px;
}

.bakingday {
  position: relative;
}

.backingday_icon {
  position: absolute;
  left: -55px;
  top: -2px;
  right: auto;
  bottom: auto;
}

.backingday_text {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 32px;
}

.products {
  margin-top: 20px;
  padding-left: 0px;
  list-style-type: none;
}

.product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product_image {
  width: 240px;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.product_price {
  margin-top: 8px;
  padding-right: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 16px;
  text-align: right;
}

.product_amount {
  min-width: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.product_title {
  margin-top: 5px;
  font-size: 24px;
  line-height: 24px;
}

.dropdown {
  font-size: 16px;
}

.order {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  background-color: #78999c;
}

.order:hover {
  background-color: #5c787a;
}

.success-message {
  padding: 60px;
  border-radius: 10px;
  background-color: #dae6e7;
}

.menu {
  text-align: right;
}

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

.menuitem {
  padding-right: 0px;
  padding-left: 20px;
}

.subheadline {
  margin-bottom: 20px;
}

.profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0px;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.profile-image {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  border-radius: 250px;
  background-image: url('../images/daniel-n.png');
  background-position: 0px 0px;
  background-size: 150px 150px;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.profile-text {
  text-align: center;
}

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

  .product_image {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .section-content {
    padding-left: 0px;
  }

  .product_image {
    width: 120px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 100%;
  }

  .slogan {
    padding-left: 0px;
  }

  .backingday_icon {
    display: none;
  }

  .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product_image {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .product_price {
    width: 100px;
    margin-top: 15px;
    text-align: left;
  }

  .product_amount {
    width: 100px;
    margin-top: -20px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .success-message {
    padding: 30px 30px 50px;
  }
}

