/** Shopify CDN: Minification failed

Line 47:11 Expected ":"
Line 47:17 Expected ":"

**/
.oodie_app_content_section .page__width {
  max-width: 119rem;
}

.oodie_app_content_section .app_content_main {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 70px;
}

.app_content .heading h2 {
  color: rgb(61, 66, 70);
  font-size: 30px;
  line-height: 39px;
  letter-spacing: -0.5px;
  font-weight: 700;
  font-style: normal;
  margin: 0;
}

.app_content .description {
  color: rgb(18, 18, 18);
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: -0.5px;
  font-weight: 400;
  font-style: normal;
}

.app_content .description p {
  margin: 0;
  padding-top: 18px;
}

.app_content_main .app_images_main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap; wrap;
  gap: 10px;
}
  
.app_images_main .app_image {
  width: calc(30.6% - 10px);
  max-width: 100%;
}

.app_image img {
  width: 100%;
  object-fit: cover;
  display: flex;
}

@media only screen and (max-width: 768px) {

  .oodie_app_content_section .app_content_main {
    gap: 4rem;
  }

  .app_content .heading h2 {
    font-size: 21px;
    line-height: 27.3px;
  }
}

@media only screen and (max-width: 469px) {

  .app_images_main .app_image {
    width: calc(50.0% - 10px);
  }
}