/** Shopify CDN: Minification failed

Line 31:39 Expected identifier but found "!"
Line 165:15 Expected identifier but found whitespace
Line 165:17 Unexpected "{"
Line 165:26 Expected ":"

**/


/* CSS from section stylesheet tags */
.why-choose-section
        {
            background-color: #FFCCE354;
            padding-top: 67px;
            padding-bottom: 100px;
        }

        .why-choose-section .swiper-button-prev,
        .why-choose-section .swiper-button-next {
            color: #ec4899; /* pink-500 */
        }

        .why-choose-section .swiper-pagination-bullet-active {
            background: #ec4899;
        }

        .why-choose-section .swiper-slide
        {
          width: 100%;
          max-width: calc(25% - 40px); !important;
          border-radius: 25px;
          overflow: hidden;
          background-color: #ffffff;
          padding: 10px;
        }

        

        .why-choose-section .swiper-slide img
        {
          width: 100%;
          height: 350px;
          max-height: 100%;
          max-width: 100%;
          object-fit: cover;
          border-radius: 20px;
        }
        
        .why-choose-section .swiper-slide h3
        {
          font-size: 20px !important;
          height: 47px;
          text-align: center;
          overflow: hidden;
        }

        .why-choose-section .swiper-slide p
        {
          font-size: 15px;
          line-height: 30px;
          text-align: center;
          overflow: hidden;
          height: 90px;
        }

        .why-choose-section .swiper-pagination
        {
          position: inherit !important;
        }

        

        .why-choose-section .swiper-button-next:after,
        .why-choose-section .swiper-button-prev:after
        {
          font-size: 20px;
        }

        @media screen and (max-width: 1024px)
        {
          .why-choose-section .swiper-slide
          {
            max-width: calc(33.33% - 33px);
          }
        }
        
        @media screen and (max-width: 749px)
        {
          .why-choose-section .swiper-slide
          {
            max-width: calc(100% - 20px);
          }
        }
.custom_hero_section .three-blocks {
  display: flex;
  
}

.custom_hero_section .block {
  text-align: center;
  width: 33.33%;
  max-width: 100%;
}

.custom_hero_section .block-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}

.custom_hero_section .block-left .left_content
{
    background-color: #FFCCE3;
    padding: 70px 43px;
}

.custom_hero_section .block-left .left_video_wrapper video 
{
    height: 100%;
    max-height: 370px;
    width: 100%;
    object-fit: cover;
}


.custom_hero_section .block-left .left_content h2
{
    font-size: 30px;
    line-height: 45px;
}

.custom_hero_section .block-left h2 { font-size: 24px; margin-bottom: 20px; }
.custom_hero_section .block-left a {
    padding: 10px 20px;
    background: #fff;
    color: #282828;
    border-radius: 51px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
}

.custom_hero_section .block-center {
  position: relative;
  overflow: hidden;
}
.custom_hero_section .block-center img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.custom_hero_section .block-center img.fg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) !important;
  max-width: 70%;
  object-fit: none;
}

.custom_hero_section .block-right {
    background: {{ section.settings.right_bg }};
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom_hero_section .block-right .right_content_wrapper{
    display: flex;
    column-gap: 40px;
    padding-top: 20px;
}

.custom_hero_section .block-right .right_content_wrapper img
{
    height: 100%;
    max-height: 35px;
    width: 100%;
    max-width: 116px;
}


.custom_hero_section .block-right video,
.custom_hero_section .block-right img {
  max-width: 100%;
  border-radius: 12px;
  width: 100%;
}
.custom_hero_section .block-right p {
  margin: 0;
  font-size: 16px;
}

.custom_hero_section .block-right .right_content_wrapper p span
{
    color: #EF8BB9;
}

@media(max-width: 989px)  
{
  .custom_hero_section .block-right.custom_mobile_hide
  {
    display: none;
  }

  .custom_hero_section .block
  {
    width: 50%;
  }
}

@media(max-width: 750px)  
{
  .custom_hero_section .three-blocks
  {
    display: flex;
    flex-direction: column;
  }
  .custom_hero_section .block
  {
    width: 100%;
  }
  .custom_hero_section .block-left
  {
    flex-direction: column-reverse;
  }
  .custom_hero_section .block-left .left_content
  {
    padding: 60px 10px;
  }
  .custom_hero_section .block.block-center
  {
    margin-top: 20px;
  }

  .custom_hero_section .block-left .left_content h2
  {
    font-size: 20px;
  }

  .custom_hero_section .block-left a
  {
    padding: 5px 20px;
  }
}