/** Shopify CDN: Minification failed

Line 514:0 Unexpected "}"

**/
/* section-rich-text */
/*
 *  1.0. Mixins
*/
:root{
    --gutter-small: 15px;
    --gutter-regular: 25px;
    --gutter-large: 50px;
    --gutter-xlarge: 80px;
    --gutter-container: 40px;
    --spacing: 24px;
}
@media screen and (max-width: 1280px) {
  :root {
    --gutter-small: 12px;
    --gutter-regular: 20px;
    --gutter-large: 35px;
    --gutter-xlarge: 60px;
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --gutter-small: 9px;
    --gutter-regular: 15px;
    --gutter-large: 25px;
    --gutter-xlarge: 40px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --button-padding: 0.6875rem 0.5625rem;
    --input-padding: 0.5rem;
    --button-product: 3.125rem;
    --gutter-container: 20px;
  }
}
@media screen and (max-width: 474px) {
  :root {
    --sidebar-width: 100%;
    --gutter-container: 15px;
  }
}
.spacing--custom>*:not(:last-child) {
    margin-bottom: var(--spacing);
}

.shopify-section.section-richtext-bg {
    padding-top: var(--container-vertical-space);
    padding-bottom: var(--container-vertical-space);
}
@media screen and (min-width: 768px) {
  .rich-text-code:not(.rich-text--image-on-top) {
    display: flex;
  }
}
.rich-text__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rich-text-code{
  color: var(--color-text-cards);
  border: solid 1px var(--color-borders-cards);
  border-radius: var(--border-radius-cards);
  overflow: hidden;
}
.rich-text__container--image-top {
  grid-template-columns: 100%;
  justify-content: center;
  grid-template-areas: "image" "text";
}
.rich-text__container--image-top.no-image {
  grid-template-areas: "text";
}
.rich-text__container--image-right {
  grid-template-areas: "text image";
}
.rich-text__container--image-right .rich-text__image {
    padding: 7px;
}
.rich-text__container .rich-text__image figure img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.rich-text__container--image-right .rich-text__image--fit img {
  object-position: left;
}
.rich-text__container--image-left {
  grid-template-areas: "image text";
}
.rich-text__container--image-left .rich-text__image {
    padding: 7px;
}
.rich-text__container .align-content--horizontal-left {
    text-align: left;
}
.rich-text__container .align-content--horizontal-center {
    text-align: center;
}
.rich-text__container .align-content--horizontal-right {
    text-align: right;
}

@media screen and (max-width: 767px) {
  .rich-text__container {
    grid-template-columns: 100%;
    justify-content: center;
    grid-template-areas: "image" "text";
  }
  .rich-text__container .rich-text__image {
    min-height: auto;
    padding:7px 0;
  }
  .rich-text__container--fullwidth .rich-text__text {
    width: 100%;
    padding-inline-start: var(--gutter-xlarge);
    padding-inline-end: var(--gutter-xlarge);
  }
  .spacing--custom>*:not(:last-child) {
      margin-bottom: calc(var(--spacing) / 2);
  }
}
@media screen and (min-width: 768px) {
  .rich-text__container .rich-text__image figure {
    /*position: absolute;
    height: 100%;*/
    width: 100%;
    padding-top: 0 !important;
  }
}
.rich-text-code .rich-text__text {
  grid-area: text;
}
.container--fullwidth .rich-text__container--image-right .rich-text__text {
  padding-inline-end: var(--gutter-xlarge);
  padding-inline-start: calc((100vw - 1280px) / 2);
}
@media screen and (max-width: 1360px) {
  .container--fullwidth .rich-text__container--image-right .rich-text__text {
    padding-inline-start: var(--gutter-xlarge);
  }
}
@media screen and (max-width: 767px) {
  .container--fullwidth .rich-text__container--image-right .rich-text__text {
    padding: var(--gutter-xlarge);
  }
}
.container--fullwidth .rich-text__container--image-left .rich-text__text {
  padding-inline-start: var(--gutter-xlarge);
  padding-inline-end: calc((100vw - 1280px) / 2);
}
@media screen and (max-width: 1360px) {
  .container--fullwidth .rich-text__container--image-left .rich-text__text {
    padding-inline-end: var(--gutter-xlarge);
  }
}
@media screen and (max-width: 767px) {
  .container--fullwidth .rich-text__container--image-left .rich-text__text {
    padding: var(--gutter-xlarge);
  }
}
@media screen and (min-width: 1024px) {
  .rich-text-code .rich-text__container--fullwidth.rich-text__container--image-top .card__text {
    width: 80%;
  }
}
.rich-text__image {
  grid-area: image;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.rich-text__image figure {
  width: 100%;
  margin: 0;
  position: relative;
}
.no-image .rich-text__image {
  display: none;
}
.rich-text__image--fit img {
  object-fit: cover !important;
}

.merged-section + .merged-section .container--large:not(.container--vertical-space),
.merged-section + .merged-section .container--fullwidth:not(.container--vertical-space) {
  margin-top: -1px;
}
.rich-text-code .rich-text__text .card__text h2 {
    font-family: Nunito;
    font-weight: 700;
    color: var(--color-text-cards);
}
.template-product .rich-text__container .rich-text__image figure img, .template-product .rich-text__container .rich-text__image video {
    border-radius: 20px;
  }
  .rich-text__image.rich-text__image--fit.hascode video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
.align-content--vertical-middle {
    align-items: center;
}
.align-content--horizontal-left {
    justify-content: flex-start;
}
.align-content {
    display: flex;
    height: 100%;
    position: relative;
}
.gutter--xlarge {
    padding: var(--gutter-xlarge);
}

.card .button--new_design{
    /* background-image: linear-gradient(to right, #0097b2, #7ed957); */
    background-image: linear-gradient(to right,#141B4D,#141B4D);
    padding: 15px 50px 15px 40px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: none;
}
.new-btn-color .card .button--new_design{
  background:#141B4D;
}
.card .button--new_design svg{
  position: absolute;
  right: 20px;
  top:0px;
  transition: .5s all;
  width: 22px;
  height: 100%;
}
.rich-text-btn-main.btn-big-review .button {
    max-width: 300px;
    width: 100%;
    text-align: center;
    font-size: 20px;
}
.rich-text-btn-main.btn-big-review {
    margin-bottom: 12px;
}
.card__text .payments--footer {
    max-width: 300px;
    width: 100%;
    margin-bottom: 0px;
    text-align: center;
}
.card__text .rich-box-review {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 300px;
    width: 100%;
}
.card__text .rich-box-review p {
    font-size: 14px;
    margin-left: 5px;
    color: #545454;
    font-weight: 800;
    margin: 0;
}
.card__text .rich-box-review .alr-display-review {
    margin-bottom: 0;
    margin-top: -5px;
}
.card__text .payments--footer+.rich-box-review {
    justify-content: center;
}

.button {
    text-align: center;
    padding: 14px 46px;
    display: inline-block;
    border-style: solid;
    border-radius: 12px;
    font-weight: 400;
    line-height: 1.25;
    cursor: pointer;
    border-width: 1px;
    color: #000;
    transition: all 175ms linear;
}
.button--icon .button__icon {
    width: 22px;
    position: absolute;
    top: 50%;
    transform-origin: center right;
    transform: translate(-25px, -50%);
    pointer-events: none;
    align-items: center;
    opacity: 0;
    transition: opacity 175ms linear, transform 175ms ease;
}
.button--icon span {
    line-height: 1;
}
.mybtn {
    background-image: linear-gradient(to right, #0b0249, #0b0249);
    padding: 15px 50px 15px 40px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.mybtn svg {
    position: absolute;
    right: 25px;
    transition: .5s all;
}
.mybtn:hover svg {
    right: 20px;
}
@media(max-width:767.98px){
  .rich-text-code .rich-text__text {
    padding-left: 0;
    padding-right: 0;
  }
}


/*  --- waves css ---- */
.primary-waves::before ,.primary-waves::after {
    content: "";
    display: block;
    width: 100%;
    height: 10vw;
    /* background: #fff; */
    --bg-png-color:linear-gradient(to top, rgba(255,255,255,0), 0%,rgba(255,255,255,1) 100%);
    background-image: url(/cdn/shop/files/1_1.svg?v=1709033884),var(--bg-png-color);
    background-size: cover;
}
.primary-waves::after {
    transform: rotate(180deg);
}
.secondary-waves::before ,.secondary-waves::after {
    content: "";
    display: block;
    width: 100%;
    height: 10vw;
    /* background: #fff; */
    --bg-png-color:linear-gradient(to top, rgba(255,255,255,0), 0%,rgba(255,255,255,1) 100%);
    background-image: url(/cdn/shop/files/8c3791d4-9c16-441b-8f68-18548d000ece.svg),var(--bg-png-color);
    background-size: cover;
}
.secondary-waves::after {
    transform: rotate(180deg);
}
.primary-waves.hide-bottom::after , .secondary-waves.hide-bottom::after {
    display: none;
}
.primary-waves.hide-top::before , .secondary-waves.hide-top::before {
    display: none;
}
.top-waves2.waves , .bottom-waves2.waves {
    width: 100%;
    opacity: 0.23;
}
.bottom-waves2.waves {
    transform: rotate(180deg);
}
.template-index .icon-text-sec.primary-waves::before {
    /* background-color: #ececec; */
    --bg-png-color:linear-gradient(to top, rgba(236,236,236,0), 0%,rgba(236,236,236,1) 100%);
}
.template-index .icon-text-sec.primary-waves::after {
    margin-bottom: 40px;
}
.template-index .icon-text-sec.primary-waves,
.template-page-fodselsdag .main-footer.primary-waves,
.free-pro-birth.secondary-waves.waves-5,
.secondary-waves.waves-5.bottom-top{
    position: relative;
}
.template-index .icon-text-sec.primary-waves:before,
.template-page-fodselsdag .main-footer.primary-waves:before{
    --bg-png-color: transparent;
    position: absolute;
    top: -10vw;
    z-index: 20;
    background: url(/cdn/shop/files/1_1.svg?v=1709033884);
    background-size: cover;
    margin-top: 0px;
}
.secondary-waves.waves-3::before ,.secondary-waves.waves-3::after {
  background-image: url(/cdn/shop/files/ways-3.svg?v=1714557036),var(--bg-png-color);
}
.secondary-waves.waves-4::before ,.secondary-waves.waves-4::after {
  background-image: url(/cdn/shop/files/ways-4-new.svg?v=1722416834),var(--bg-png-color);
}
.secondary-waves.waves-5::before ,.secondary-waves.waves-5::after {
  background-image: url(/cdn/shop/files/ways-5.svg?v=1726229966),var(--bg-png-color);
}
.free-pro-birth.secondary-waves.waves-5::before,
.secondary-waves.waves-5.bottom-top::after{
    --bg-png-color: transparent;
    position: absolute;
    top: -10vw;
    z-index: 20;
    background: url(/cdn/shop/files/ways-5.svg?v=1726229966);
    background-size: cover !important;
    margin-top: 0px;
}
.secondary-waves.waves-5.bottom-top::after{
  top:auto;
  bottom:-10vw;
}
.secondary-waves.waves-6::before ,.secondary-waves.waves-6::after {
  background-image: url(/cdn/shop/files/ways-6.svg?v=1728642202),var(--bg-png-color);
}
.secondary-waves.waves-7::before ,.secondary-waves.waves-7::after {
  background-image: url(/cdn/shop/files/ways-7.svg?v=1729846149),var(--bg-png-color);
}
.secondary-waves.waves-8::before ,.secondary-waves.waves-8::after,
.primary-waves.waves-8::before ,.primary-waves.waves-8::after{
  background-image: url(/cdn/shop/files/ways-8.svg?v=1730194226),var(--bg-png-color);
}
.primary-waves.waves-8::before{
  background: url(/cdn/shop/files/ways-8.svg?v=1730194226) !important;
  background-size: cover !important;
}
.secondary-waves.waves-9::before ,.secondary-waves.waves-9::after,
.primary-waves.waves-9::before ,.primary-waves.waves-9::after{
  background-image: url(/cdn/shop/files/ways-9.svg?v=1730968386),var(--bg-png-color);
}
.primary-waves.waves-9::before{
  background-image: url(/cdn/shop/files/ways-9.svg?v=1730968386) !important;
  background-size: cover !important;
}
.primary-waves.waves-10::after{
  background-image: url(/cdn/shop/files/ways-10.svg?v=1744633255) !important;
  background-size: cover !important;
}
.main-footer.primary-waves:before {
    margin-top: -2px;
}

.wa-pt {
    margin-top: 50px;
}

/*  --- waves css end ---- */


/* Client Slider */
.section-heading--center {
    text-align: center;
    display: block;
}
.client-image-container {
    margin-top: 0 !important;
    padding: 30px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.client-image-container .section-heading {
    order: 2;
    padding: 40px;
    background: #fff;
    margin-top: -80px;
    z-index: 3;
    border-radius: 10px;
    border: 1px solid #000;
}
.client-image-container .section-heading p {
	display: none;
}
.client-image-container .section-heading h3 {
    font-size: 38px;
    max-width: 400px;
    margin-bottom: 0;
    font-weight: 600;
}
.client-image-container .swiper {
    order: 1;
    z-index: 2;
}
.client-image-container .swiper-slide img {
    display: block;
    width: 100%;
    min-height: 350px;
    border-radius: 10px;
    object-fit: cover;
}
.clientslide .swiper-wrapper {
    transition-timing-function: linear !important;
}
@media(max-width:767.98px){
    .client-image-container .section-heading h3 {
      max-width: 260px;
      font-size: 24px;
  }
}
}
/* Client Slider end */


.text-wtih-icon-two + .section-video-review,
.section-richtext-bg + .section-video-review{
    margin-top: 50px;
}
.section-richtext-bg + .section-video-review {
    margin-top: 50px;
}