/** Shopify CDN: Minification failed

Line 167:8 Expected identifier but found whitespace
Line 167:10 Unexpected "{"
Line 167:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.newsletter-section {

}
.newsletter-section-cont{
      display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.heading-news{
text-align: center;
}
.subheading{
    font-size: 2.4rem;
       color: #000;
    font-weight: 500;
        line-height: normal;
}
.content-box p{
        font-size: 1.8rem;
       color: #4d4d4d;
    font-weight: 500;
        line-height: normal;
}
.newsletter-left {
  flex: 1 1 10%;
}

.newsletter-left .newsletter-form{
   margin: inherit;
           max-width: 45rem;
}
.newsletter-left .newsletter-form form{
        width: 100%;
}
.newsletter-right {
  flex: 1 1 40%;
  text-align: right;
}
.newsletter-form input[type="email"] {
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
    height: 71px;
    color: #3F5367;
    font-size: 1.8rem;
    background:#fff url(https://cdn.shopify.com/s/files/1/0706/1041/9805/files/Clip_path_group.png?v=1757067171) 95% 20px no-repeat;
    background-size: 30px;
}
.newsletter-checkbox{
          float: left;
          padding-top: 22px;
}
.newsletter-checkbox label{
      color: #0D0D0D;
    font-size: 1.8rem;
}
.newsletter-form button {
  background:#3F5367;
  color: #fff;
  padding: 12px 20px;
  font-size: 2rem;
  border: none;
  border-radius:8px;
  cursor: pointer;
      float: right;
      margin-top: 15px;
          width: 157px;
          height: 71px;
}
.hide-mobile {
  display: block;
}
.content-box p em{
  font-style:normal;
}
@media (max-width: 768px) {
  .content-box p{
        font-size: 1.6rem;
      }
  .newsletter-right {
    margin-top: 20px;
    text-align: center;
  }
  .hide-mobile {
    display: none;
  }
  .subheading{
    font-size: 2rem;
  }
  .newsletter-form button {
  font-size: 1.6rem;
          height:49px;
}
}
.media-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.media-section video,
.media-section img {
  width: 100%;
  height: auto;
  display: block;
}
.media-content-box {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 20px;
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.media-content-box h2,
.media-content-box p {
  margin: 0 0 15px 0;
}
.media-content-box h2{
  font-size:5.6rem;
  font-weight: 500;
}
.media-content-box p{
  font-size:2rem;
  font-weight: 500;
  margin-bottom:25px;
}
.media-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.media-buttons a {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0px;
  transition: 0.3s ease;
  font-size:2rem;
  font-weight: 500;
  border-radius:8px;
  height: 64px;
  line-height: 41px;
  width: 214px;
  text-align: center;
}
.rte p{
  color:#000;
}
.lifestyle-gallery {
  text-align: center;
  padding-top:0px;
  padding-bottom:60px;
}
.lifestyle-gallery h2 {
  color: {{ section.settings.heading_color }};
  margin-bottom: 30px;
}
.lifestyle-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap:2%;
}

.gallery-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.gallery-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius:0px;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.3s ease;
}
.gallery-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.gallery-image-wrapper:hover .gallery-hover-img {
  opacity: 1;
}
.gallery-image-wrapper:hover .gallery-main-img {
  opacity: 0;
}
.gallery-image-wrapper:hover img {
  transform: scale(1.02);
}

.lifestyle-gallery__item h3{
  font-size:3rem;
  margin-bottom: 0px;
  margin-top: 10px;
}
.lifestyle-gallery__item h5{
  font-size:2rem;
  margin-bottom: 0px;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .lifestyle-gallery__item h3{
    font-size:1.2rem;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .lifestyle-gallery__item h5{
    font-size:1.2rem;
    margin-bottom: 0px;
    margin-top: 10px;
  }
}