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

body {
  font-family: proxima-soft;
  color: #333;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.content-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.header-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.buy-button {
  padding: 10px 20px;
  border: 6px solid #ed1376;
  border-radius: 200px;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #ed1376;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.buy-button:hover {
  background-color: #ed1376;
  color: #fff;
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0px 20px 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.grid-2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: minmax(500px, auto) minmax(400px, 1fr) minmax(400px, 1fr);
  grid-template-rows: minmax(500px, auto) minmax(400px, 1fr) minmax(400px, 1fr);
}

.grid-block {
  border: 6px solid #000;
  background-color: #7ea7ff;
}

.grid-block.couch {
  background-color: #feab99;
  background-image: url('../images/couch-2.jpg');
  background-position: 46% 14%;
  background-size: cover;
  background-repeat: no-repeat;
}

.grid-block.bottle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #95fbff;
  background-image: url('../images/bottle.png');
  background-position: 50% 0px;
  background-size: 400px;
  background-repeat: no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.grid-block.bottle:hover {
  background-image: url('../images/bottle.png'), url('../images/pattern.png');
  background-position: 50% 0px, 50% 50%;
  background-size: 400px, cover;
  background-repeat: no-repeat, no-repeat;
}

.grid-block.about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #000;
  color: #fff;
  text-align: left;
}

.grid-block.mirror {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  background-image: url('../images/mirror.jpg');
  background-position: -284px 50%;
  background-size: 1740px;
  -webkit-transition: background-position 3000ms cubic-bezier(.19, 1, .22, 1);
  transition: background-position 3000ms cubic-bezier(.19, 1, .22, 1);
}

.grid-block.mirror:hover {
  background-color: #000;
  background-position: 174px 50%;
  background-repeat: no-repeat;
}

.grid-block.yoga {
  background-image: url('../images/yoga.jpg');
  background-position: -86px -501px;
  background-size: 2040px;
  background-repeat: no-repeat;
  -webkit-transition: background-position 2000ms ease;
  transition: background-position 2000ms ease;
}

.grid-block.yoga:hover {
  background-position: -1367px -492px;
}

.grid-block.counter {
  background-image: url('../images/counter.jpg');
  background-position: 100% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.grid-block.signup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ed1376;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 33px;
  line-height: 36px;
  font-weight: 900;
}

.title.reverse {
  color: #ed1376;
}

.body {
  font-family: proxima-soft;
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.text-field {
  height: 60px;
  margin-bottom: 20px;
  padding-left: 0px;
  border-style: solid;
  border-width: 0px 0px 3px;
  border-color: #000 #000 #fff;
  background-color: transparent;
}

.submit-button {
  border: 6px solid #fff;
  border-radius: 200px;
  background-color: transparent;
}

.speech-bubble {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  max-height: 450px;
  margin-top: -19px;
  margin-left: 30px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  border-radius: 20px;
  background-color: #ffe497;
}

.speech-bubble.mirror {
  width: 25%;
  margin-top: 0px;
  background-color: #b8ffa7;
}

.sub-title {
  margin-bottom: 5px;
  color: #ed1376;
  font-size: 20px;
  line-height: 23px;
  font-weight: 900;
  text-align: center;
}

.hero {
  color: #000;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
}

.hero.spaced {
  margin-top: 15px;
  margin-bottom: 15px;
}

.thought-bubble {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  border: 6px solid #000;
  border-radius: 200px;
  background-color: #ffe497;
}

.thought-bubble.medium {
  width: 30px;
  height: 30px;
  margin-top: 0px;
  margin-left: 54px;
  border-width: 5px;
}

.thought-bubble.small {
  width: 20px;
  height: 20px;
  margin-top: 16px;
  margin-left: 100px;
  border-width: 4px;
}

.thought-bubble.mirror {
  background-color: #b8ffa7;
}

.thought-bubbles {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-right: 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1500px;
  padding-right: 60px;
  padding-left: 60px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75px;
  margin-right: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  min-width: 0px;
  margin-left: 20px;
  padding: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 200px;
  background-color: #ed1376;
  -webkit-transition: border-width 300ms ease;
  transition: border-width 300ms ease;
  font-family: 'Fa brands 400', sans-serif;
  color: #fff;
  text-decoration: none;
}

.footer-social:hover {
  border: 4px solid #000;
}

.footer-social.mail {
  font-family: 'Fa 400', sans-serif;
}

.div-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.legal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #8e8e8e;
}

.grid {
  width: 100%;
  max-width: 1800px;
  margin: 0px 20px 20px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: minmax(500px, 1fr) minmax(500px, 1fr) minmax(500px, 1fr);
  grid-template-rows: minmax(500px, 1fr) minmax(500px, 1fr) minmax(500px, 1fr);
}

.couch-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  background-color: #7ea7ff;
}

.product-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  background-color: #95fbff;
}

.about-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  background-color: #000;
}

.mirror-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 6px solid #000;
  background-color: #000;
}

.angel-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 6px solid #000;
  background-color: #8951c2;
}

.counter-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 6px solid #000;
  background-color: #cf92da;
}

.signup-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  background-color: #ed1376;
}

.flex-speech-bubble {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: -89px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
  border: 6px solid #000;
  border-radius: 20px;
  background-color: #ffe497;
}

.flex-speech-bubble.green {
  position: relative;
  z-index: 10;
  display: none;
  background-color: #b8ffa7;
}

.product-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-pattern {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern.png');
  background-position: 50% 50%;
  background-size: 200%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.bottle-container {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-content {
  width: 80%;
  color: #fff;
}

.mirror-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 150%;
  height: 500px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/mirror.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: background-position 500ms cubic-bezier(.25, .46, .45, .94);
  transition: background-position 500ms cubic-bezier(.25, .46, .45, .94);
}

.girl-foreground {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/mirror-fg.png');
  background-position: 50% 50%;
  background-size: 160%;
  background-repeat: no-repeat;
  -webkit-filter: blur(2px) brightness(49%);
  filter: blur(2px) brightness(49%);
}

.counter-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.counter-viblok {
  position: absolute;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/counter-fg.png');
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.couch-container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.couch-background {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/couch-2.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.bubble {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  margin: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 6px solid #000;
  border-radius: 20px;
  background-color: #ffe497;
}

.bubble.mirror {
  width: 50%;
  background-color: #b8ffa7;
}

.bubble.stride {
  background-color: #96ffe8;
}

.bubble-content {
  padding: 40px;
  text-align: center;
}

.message {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.message.mirror {
  width: 100%;
  margin-bottom: 10px;
}

.grid-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1500px;
  margin-right: 60px;
  margin-left: 60px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.girl-background {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/mirror-bg.jpg');
  background-position: 39% 50%;
  background-size: 160%;
  background-repeat: no-repeat;
}

.product-copy {
  position: absolute;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-title {
  text-align: center;
}

.counter-background {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/counter-bg.jpg');
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.counter-copy {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/counter-fg.png');
  background-position: 100% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.counter-message {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e6b7ff), to(#e6b7ff));
  background-image: linear-gradient(180deg, #e6b7ff, #e6b7ff);
}

.angel-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.stride-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: url('../images/stride-02.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.stride-fg {
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-top: 62px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.stride-message {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  height: 90%;
  margin-top: 5%;
  margin-right: auto;
  margin-left: auto;
  padding: 38px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 6px solid #000;
  border-radius: 20px;
  background-color: #ffe497;
  font-family: gooddog-new, sans-serif;
  font-size: 38px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}

.carrot {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -39px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-3 {
  grid-template-areas: ". ." ". .";
  -ms-grid-columns: 70% 30%;
  grid-template-columns: 70% 30%;
}

.grid-4 {
  grid-template-areas: ". ." ". ." ". .";
  -ms-grid-columns: 33.3fr 30%;
  grid-template-columns: 33.3fr 30%;
  -ms-grid-rows: 500px 500px 500px;
  grid-template-rows: 500px 500px 500px;
}

.blue {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #7ea7ff;
  background-image: url('../images/couch-2.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.yellow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #000;
}

.red {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #95fbff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(149, 251, 255, 0.92)), to(rgba(149, 251, 255, 0.92)));
  background-image: linear-gradient(180deg, rgba(149, 251, 255, 0.92), rgba(149, 251, 255, 0.92));
}

.green {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #000;
}

.purple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #ed1376;
}

.pink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 500px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  background-color: #8951c2;
  background-image: url('../images/stride-02.png');
  background-position: 50% 0%;
  background-size: cover;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-new {
  width: 100%;
  max-width: 1500px;
  margin-right: 60px;
  margin-left: 60px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: minmax(500px, 1fr) minmax(500px, 1fr) minmax(500px, 1fr);
  grid-template-rows: minmax(500px, 1fr) minmax(500px, 1fr) minmax(500px, 1fr);
}

.blue-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 450px;
  margin-left: 20px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  border-radius: 40px;
  background-color: #ffe497;
  box-shadow: inset -9px -11px 0 0 #ddb647;
}

.blue-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin-right: -30px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.blue-headline {
  margin-bottom: 20px;
  text-align: center;
}

.bubble-copy {
  color: #000;
  line-height: 20px;
  font-weight: 900;
  text-align: center;
}

.blue-bubbles {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 5000;
  width: 102px;
  height: 71px;
  margin-top: -117px;
  margin-left: 318px;
  background-image: url('../images/bubbles-02.png');
  background-position: 0px 0px;
  background-size: 100px;
  background-repeat: no-repeat;
}

.div-block-6 {
  position: relative;
  margin-right: -100px;
  margin-bottom: 205px;
}

.mirror-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/mirror-bg.jpg');
  background-position: 50% 50%;
  background-size: 160%;
  background-repeat: no-repeat;
}

.pink-bg {
  width: 460px;
  height: 488px;
  margin-left: -10%;
  background-image: url('../images/stride-01.png');
  background-position: 0% 100%;
  background-size: 410px;
  background-repeat: no-repeat;
}

.yellow-wrapper {
  position: absolute;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yellow-content {
  position: absolute;
  z-index: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  height: 450px;
  margin-left: 30px;
  padding: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border: 7px solid #000;
  border-radius: 40px;
  background-color: #bcfebe;
  box-shadow: inset -10px -10px 0 0 rgba(0, 0, 0, 0.26);
}

.pink-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  min-width: 400px;
  margin-left: 20px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 7px solid #000;
  border-radius: 40px;
  background-color: #95f9ff;
  box-shadow: inset -9px -11px 0 0 #77c3c9;
}

.div-block-7 {
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.bg-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 488px;
  max-height: 488px;
  min-height: 488px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yellow-headline {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: url('../images/headline-lipstick-02.svg');
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
}

.link {
  margin-left: 10px;
  color: #ed1376;
  text-decoration: none;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 991px) {
  .grid-2 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: minmax(500px, auto) minmax(1px, 1fr) minmax(400px, 1fr) minmax(400px, 1fr) auto;
    grid-template-rows: minmax(500px, auto) minmax(1px, 1fr) minmax(400px, 1fr) minmax(400px, 1fr) auto;
  }
  .grid-block.couch {
    background-position: 50% 0px;
  }
  .speech-bubble {
    width: 40%;
  }
  .div-block-3 {
    padding-right: 60px;
    padding-left: 60px;
  }
  .grid {
    grid-template-areas: ". . . ." ". . . ." ". . . ." ". . . ." ". . . .";
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: minmax(500px, 1fr) minmax(500px, 1fr) 400px minmax(500px, 1fr) minmax(500px, 1fr);
    grid-template-rows: minmax(500px, 1fr) minmax(500px, 1fr) 400px minmax(500px, 1fr) minmax(500px, 1fr);
  }
  .mirror-block {
    background-size: 150%;
  }
  .bottle-container {
    width: 150%;
    height: 150%;
  }
  .mirror-container {
    background-position: 50% 50%;
  }
  .message {
    width: 90%;
  }
  .header-block {
    margin-right: 30px;
    margin-left: 30px;
  }
  .product-copy {
    width: 80%;
    height: 80%;
  }
  .stride-fg {
    width: 60%;
  }
  .blue {
    border-width: 6px;
  }
  .red {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-width: 6px;
  }
  .pink {
    background-position: 50% 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
  .grid-new {
    margin-right: auto;
    margin-left: auto;
    grid-template-areas: ". . . ." ". . . ." ". . . ." ". . . ." ". . . .";
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: minmax(500px, 1fr) minmax(500px, 1fr) 400px minmax(500px, 1fr) minmax(500px, 1fr);
    grid-template-rows: minmax(500px, 1fr) minmax(500px, 1fr) 400px minmax(500px, 1fr) minmax(500px, 1fr);
  }
  .blue-content {
    border-width: 6px;
    border-radius: 40px;
    box-shadow: inset -9px -11px 0 0 #ddb647;
  }
  .blue-copy {
    padding: 30px;
  }
  .blue-headline {
    width: 100%;
  }
  .div-block-6 {
    margin-bottom: 266px;
  }
  .pink-bg {
    z-index: 2000;
    min-width: 460px;
    margin-left: -66px;
    background-position: 50% 100%;
    background-size: 400px;
  }
  .yellow-content {
    width: 40%;
    height: 360px;
    margin-left: 15px;
    padding: 20px;
  }
  .pink-content {
    position: relative;
    z-index: 1000;
    width: 60%;
    height: 400px;
    padding: 39px;
    border-width: 6px;
    border-radius: 40px;
  }
  .yellow-headline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 98%;
    height: 154px;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-image: url('../images/headline-lipstick.svg');
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (max-width: 767px) {
  .grid-block.couch {
    background-color: #feab99;
    background-position: -34px 42px;
  }
  .title {
    line-height: 36px;
  }
  .thought-bubbles {
    left: 0px;
    top: auto;
    right: auto;
    bottom: 0px;
    margin: 0px 0px 7px 193px;
    -webkit-transform: rotateX(0deg) rotateY(180deg) rotateZ(107deg);
    transform: rotateX(0deg) rotateY(180deg) rotateZ(107deg);
  }
  .div-block-3 {
    max-width: 600px;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid {
    grid-template-areas: ". . ." ". . ." ". . ." ". . ." ". . ." ". . .";
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }
  .couch-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-position: 50% -151%;
    background-size: 730px;
  }
  .mirror-block {
    height: 780px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background-image: linear-gradient(180deg, transparent, transparent);
  }
  .flex-speech-bubble {
    margin-top: -36px;
  }
  .about-content {
    width: auto;
  }
  .mirror-container {
    overflow: visible;
    height: 100%;
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-position: 50% 100%;
    background-size: 80%;
  }
  .girl-foreground {
    margin-top: 11%;
    background-position: 63% 100%;
    background-size: 180%;
  }
  .couch-background {
    background-position: 80% 330px;
  }
  .bubble {
    width: 90%;
  }
  .bubble.mirror {
    width: 90%;
  }
  .bubble.stride {
    width: 70%;
  }
  .girl-background {
    margin-top: 13%;
    background-position: 50% 100%;
    background-size: 180%;
  }
  .stride-fg {
    width: 100%;
  }
  .blue {
    height: 700px;
    max-width: 600px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-position: 100% 140%;
    background-size: contain;
  }
  .yellow {
    height: 700px;
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .red {
    max-width: 600px;
  }
  .green {
    max-width: 600px;
    padding: 40px;
  }
  .purple {
    max-width: 600px;
    padding: 40px;
  }
  .pink {
    height: 100%;
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid-new {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    grid-template-areas: ". . ." ". . ." ". . ." ". . ." ". . ." ". . .";
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto minmax(500px, 1fr) auto auto auto auto;
    grid-template-rows: auto minmax(500px, 1fr) auto auto auto auto;
  }
  .blue-content {
    width: 95%;
    height: 420px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    padding: 25px;
  }
  .blue-headline {
    width: 80%;
    margin-bottom: 0px;
  }
  .pink-bg {
    width: 100%;
    height: 408px;
    margin-top: -60px;
    margin-left: 0px;
  }
  .yellow-wrapper {
    position: static;
    width: 100%;
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .yellow-content {
    width: 85%;
    height: 370px;
    max-width: 580px;
    margin-top: 10px;
    margin-left: 0px;
    padding: 25px;
  }
  .pink-content {
    width: 95%;
    height: 380px;
    min-width: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    padding: 25px;
  }
  .yellow-headline {
    width: 100%;
  }
  .success-message {
    background-color: #000;
  }
  .error-message {
    background-color: #000;
  }
}

@media (max-width: 479px) {
  .footer-section {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-section {
    padding: 10px 15px;
  }
  .header-logo {
    width: 30%;
  }
  .buy-button {
    padding: 8px 15px;
    font-size: 18px;
  }
  .grid-2 {
    -ms-grid-rows: 80vh minmax(1px, 1fr) 500px auto auto auto;
    grid-template-rows: 80vh minmax(1px, 1fr) 500px auto auto auto;
  }
  .grid-block.couch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #feab99;
    background-position: 75% 623%;
    background-size: 890px;
  }
  .grid-block.yoga {
    height: 500px;
  }
  .grid-block.counter {
    height: 500px;
  }
  .speech-bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
  }
  .sub-title {
    line-height: 22px;
  }
  .thought-bubbles {
    left: 0px;
    top: auto;
    right: auto;
    bottom: 0px;
    margin-left: 204px;
    -webkit-transform: rotate(107deg);
    -ms-transform: rotate(107deg);
    transform: rotate(107deg);
  }
  .div-block-3 {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-logo {
    width: 100px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .div-block-4 {
    -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;
    text-align: center;
  }
  .footer-social {
    margin-right: 10px;
    margin-left: 10px;
  }
  .div-block-5 {
    margin-top: 10px;
  }
  .grid {
    margin-right: 15px;
    margin-left: 15px;
    grid-template-areas: ". . . ." ". . . ." ". . . ." ". . . ." ". . . ." ". . . .";
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }
  .couch-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-position: 50% 100%;
    background-size: contain;
  }
  .mirror-block {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .angel-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .product-pattern {
    background-size: cover;
  }
  .mirror-container {
    height: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-size: 670px;
  }
  .girl-foreground {
    background-size: 300%;
  }
  .couch-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .couch-background {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
  }
  .bubble {
    position: relative;
    width: 95%;
    margin: 10px;
  }
  .bubble.stride {
    display: block;
    width: 90%;
    height: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .bubble-content {
    position: relative;
    padding: 25px;
  }
  .message {
    width: 80%;
  }
  .header-block {
    margin-right: 0px;
    margin-left: 0px;
  }
  .couch-mobile-bg {
    display: block;
    width: 100%;
    height: 360px;
    margin-top: -51px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-image: url('../images/couch-mobile.jpg');
    background-position: 50% 0px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .girl-background {
    background-position: 50% 100%;
    background-size: 300%;
  }
  .angel-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .stride-bg {
    height: 700px;
  }
  .stride-fg {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
    width: 120%;
    height: auto;
    margin-top: -63px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .carrot-mobile {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    margin-left: 103px;
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  .blue {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url('../images/couch-mobile-02.jpg');
    background-position: 50% 100%;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
  }
  .yellow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .purple {
    height: 700px;
  }
  .pink {
    overflow: hidden;
    height: 100%;
    -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;
  }
  .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid-new {
    margin-right: auto;
    margin-left: auto;
    grid-template-areas: ". . . ." ". . . ." ". . . ." ". . . ." ". . . ." ". . . .";
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 700px 700px 700px 700px 700px 700px;
    grid-template-rows: 700px 700px 700px 700px 700px 700px;
  }
  .blue-content {
    position: relative;
    width: 95%;
    height: auto;
    max-height: auto;
    margin-top: 10px;
    margin-left: 0px;
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .blue-copy {
    margin-right: 0px;
    padding: 0px;
  }
  .blue-headline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 260px;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .div-block-6 {
    display: none;
    margin-right: auto;
    margin-bottom: auto;
  }
  .pink-bg {
    position: relative;
    margin-top: auto;
    margin-left: 74px;
  }
  .yellow-wrapper {
    width: 100%;
    margin-top: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .yellow-content {
    width: 85%;
    height: 340px;
    margin-top: 0px;
    margin-left: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .pink-content {
    position: relative;
    width: 95%;
    height: 260px;
    max-width: auto;
    min-width: auto;
    margin-top: 10px;
    margin-right: 0px;
    margin-left: 0px;
    padding: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .bg-wrapper {
    height: auto;
  }
  .yellow-headline {
    height: 121px;
    margin-bottom: 10px;
    background-image: url('../images/headline-lipstick.svg');
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

#w-node-b2299c1f261e-960ddeaf {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 991px) {
  #w-node-b2299c1f261e-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b2299c1f261e-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

#w-node-408484c76f0d-960ddeaf {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 991px) {
  #w-node-408484c76f0d-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-408484c76f0d-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

#w-node-8db717ad9f7e-960ddeaf {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 991px) {
  #w-node-8db717ad9f7e-960ddeaf {
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-8db717ad9f7e-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

#w-node-0cb3b74efb4b-960ddeaf {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 991px) {
  #w-node-0cb3b74efb4b-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-0cb3b74efb4b-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-0cb3b74efb4b-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

#w-node-ccaae9aded75-960ddeaf {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

@media screen and (max-width: 991px) {
  #w-node-ccaae9aded75-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ccaae9aded75-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ccaae9aded75-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

#w-node-9a5f7008b6d4-960ddeaf {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

@media screen and (max-width: 991px) {
  #w-node-9a5f7008b6d4-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-9a5f7008b6d4-960ddeaf {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-column-span: 5;
    grid-column-end: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.eot') format('embedded-opentype'), url('../fonts/fa-brands-400.woff') format('woff'), url('../fonts/fa-brands-400.ttf') format('truetype'), url('../fonts/fa-brands-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.eot') format('embedded-opentype'), url('../fonts/fa-regular-400.woff') format('woff'), url('../fonts/fa-regular-400.ttf') format('truetype'), url('../fonts/fa-regular-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}

.blue, .red, .green, .yellow, .pink {
    cursor: pointer;
}