@charset "utf-8";
/*-----------------------
    Fonts
-------------------------*/
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat-Regular.otf') format('otf'),
        url('../fonts/Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
/* -----------------------------------
    General CSS
-------------------------------------*/
html {
    font-size: 16px;
    color: #000000;
    vertical-align: baseline;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden !important;
}

body {
    font-size: 16px;
    color: #000000;
    vertical-align: baseline;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden !important;
    position: relative;
    z-index: 11111;
    background: #f5f5f5;
    font-family: 'Montserrat-Regular';
}
.modal
{
   
    z-index: 111111;
}
body.modal-open
{
    padding-right: 0 !important;
}
  
img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212121;
    margin: 0 0 26px;
    font-weight: 700;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    transition: all 0.3s ease 0s;
    text-decoration: none !important;
    outline: none !important;
}
a:focus , button:focus
{
    box-shadow: none !important;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}
.padding-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pt-45 {
    padding-top: 45px !important;
}
.pb-45 {
    padding-bottom: 45px !important;
}
.pt-70 {
    padding-top: 70px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-100 {
    padding-top: 100px !important;
}
.pt-120 {
    padding-top: 120px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}
.pb-100 {
    padding-bottom: 100px !important;
}
.pb-170 {
    padding-bottom: 170px !important;
}

.mt-5 {
    margin-top: 5px !important;
}
.mb-50
{
    margin-bottom: 50px !important;
}
.mb-150
{
    margin-bottom: 150px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mb-30
{
    margin-bottom: 30px !important;
}
.m-40 {
    margin: 40px 0 !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}
.border-radius-16
{
    border-radius: 16px !important;
}
.border-radius-20
{
    border-radius: 20px !important;
}
.border-radius-top
{
    border-top-right-radius: 16px !important;
    border-top-left-radius: 16px !important;
}
.border-radius-bottom
{
    border-bottom-right-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
}
.no-padding

{
    padding: 0 !important;
}
.no-border
{
    border: 0 !important;
}
.w-100
{
    width: 100% !important;
}
.box-shadow
{
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}
#overlay
{
    font: 1em/1.5 sans-serif;
    height: 100vh;
    display: grid;
    z-index: 111111;
    place-items: center;
}
.smiley {
    width: 8em;
    height: 8em;
  }
  .smiley__eye1,
  .smiley__eye2,
  .smiley__mouth1,
  .smiley__mouth2 {
    animation: eye1 3s ease-in-out infinite;
  }
  .smiley__eye1,
  .smiley__eye2 {
    transform-origin: 64px 64px;
  }
  .smiley__eye2 {
    animation-name: eye2;
  }
  .smiley__mouth1 {
    animation-name: mouth1;
  }
  .smiley__mouth2 {
    animation-name: mouth2;
    visibility: hidden;
  }
  
  /* Dark theme */
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: hsl(var(--hue), 90%, 10%);
      --fg: hsl(var(--hue), 90%, 90%);
    }
  }
  
  /* Animations */
  @keyframes eye1 {
    from {
      transform: rotate(-260deg) translate(0, -56px);
    }
    50%,
    60% {
      animation-timing-function: cubic-bezier(0.17, 0, 0.58, 1);
      transform: rotate(-40deg) translate(0, -56px) scale(1);
    }
    to {
      transform: rotate(225deg) translate(0, -56px) scale(0.35);
    }
  }
  @keyframes eye2 {
    from {
      transform: rotate(-260deg) translate(0, -56px);
    }
    50% {
      transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
    }
    52.5% {
      transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1, 0);
    }
    55%,
    70% {
      animation-timing-function: cubic-bezier(0, 0, 0.28, 1);
      transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
    }
    to {
      transform: rotate(150deg) translate(0, -56px) scale(0.4);
    }
  }
  @keyframes eyeBlink {
    from,
    25%,
    75%,
    to {
      transform: scaleY(1);
    }
    50% {
      transform: scaleY(0);
    }
  }
  @keyframes mouth1 {
    from {
      animation-timing-function: ease-in;
      stroke-dasharray: 0 351.86;
      stroke-dashoffset: 0;
    }
    25% {
      animation-timing-function: ease-out;
      stroke-dasharray: 175.93 351.86;
      stroke-dashoffset: 0;
    }
    50% {
      animation-timing-function: steps(1, start);
      stroke-dasharray: 175.93 351.86;
      stroke-dashoffset: -175.93;
      visibility: visible;
    }
    75%,
    to {
      visibility: hidden;
    }
  }
  @keyframes mouth2 {
    from {
      animation-timing-function: steps(1, end);
      visibility: hidden;
    }
    50% {
      animation-timing-function: ease-in-out;
      visibility: visible;
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: -351.86;
    }
  }
  
/* -----------------------------------
  Sections CSS
-------------------------------------*/
.hero-section-part
{
    margin-top: 15px;
}
.the-most-powerful
{
    position: relative;
    overflow: hidden;
}
.first-hero-section
{
    width: 100%;
    height: auto;
}
.get-help-by-email
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 2%;
    max-width: 100%;
    opacity: 1;
    background-color: #ffffff24;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 16px;
    padding: 0.25rem ;
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
}
.log-prime img
{
    width: 160px;
}
.col-flex-end
{
    display: flex;
    justify-content: end;
}
.email-part
{
    padding: 0px 20px 16px 20px;
}
.email-part small
{
    font-weight: 600;
    color: #c3cad1;
    font-size: 10px;
    margin-top: 7px;
    font-family: 'Montserrat-Regular';
}
.email-part a
{
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    display: block;
    font-family: 'Montserrat-Regular';
}
.smart-product-container
{
    position: relative;
}
.smart-product-container img
{
    border-radius: 20px !important;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
}
.search-video
{
    position: absolute;
    width: 50%;
    left: 2%;
    top: 244px;
}
.mobile-video
{
    position: absolute;
    width: 43%;
    left: 6%;
    top: 18%; 
}
.card.maga-menu-snippets
{
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
    border: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.card.maga-menu-snippets .card-header
{
    background: transparent;
    border: none;
    padding: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.card.maga-menu-snippets .card-header img
{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.card.maga-menu-snippets .card-body
{
    padding: 0;
    border-bottom: 1px solid #DEE2E6;
}
.card.maga-menu-snippets .card-body img
{
    width: 100%;
    display: block;
    margin: 0 auto;
}
.card.maga-menu-snippets .card-footer
{
    margin-top: 3rem;
    padding: 0;
    border: 0;
}
.hotspot-container
{
    position: relative;
    overflow: hidden;
}
.hotspot-gif
{
    position: absolute;
    top: 27%;
    left: 0;
    width: 48%;
}
.hotspot-3
{
    position: absolute;
    width: 54%;
    top: 35%;
    left: 16.5%;
}
.hot-spot-4
{
    position: absolute;
    bottom: 0;
    left: 3%;
    width: 55%;
}
.shop-filter-card-body
{
    position: relative;
}


.card.maga-menu-snippets .card-body .filter-video
{
    position: absolute;
    width: 25%;
    top: 24%;
    left: 30%;
    border-radius: 10px;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
    border: 1px solid #DEE2E6;
}
.card.maga-menu-snippets .card-footer.filter
{
    margin-top: 0;
}
.cart-box-cotent img
{
    border-radius: 20px;
    border-top: 1px solid rgb(219, 219, 219);
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
}
.card-demo
{
    border-radius: 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
}
.img-demo-part
{
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}
.img-demo-part img
{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.text-demo-live 
{
    background-color: #ffefef;
    padding: 1.5rem;
    border-right: 1px solid #DEE2E6;
    border-bottom: 1px solid #DEE2E6;
    border-left: 1px solid #DEE2E6;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}
.text-demo-live.green
{
    background-color: #E2F9EE;
}
.text-demo-live.blue
{
    background-color: #e3f0f4;
}
.text-demo-live h2
{
    font-weight: 400;
    color: #E84E48;
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: calc(1.359375rem + 1.3125vw);
    font-family: "Inter", "Odoo Unicode Support Noto", sans-serif;
}
.card.card-box
{
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 17%);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.card.card-box .card-header
{
    text-align: center;
    padding: 0;
    background-color: #E84E48;
    border: 1px solid #bedce6;
    border-radius: calc(0.125rem - 1px) calc(0.125rem - 1px) 0 0;
}
.card.card-box .card-header p
{
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Montserrat-Regular';
    padding: 12px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
}
.card.card-box .card-body
{
    background-color: rgba(255, 255, 255, 0.9) ;
    color: #212529;
    padding: 0.9375rem;
    border-bottom-right-radius: calc(0.125rem - 1px);
    border-bottom-left-radius: calc(0.125rem - 1px);
}
.card.card-box .card-body a
{
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: #212529;
    font-family: 'Montserrat-Regular';
}
h2.green-text
{
    color: #00B87C;
}
h2.blue-text
{
    color: #4298b5;
}
.card.card-box .card-header.green
{
    background-color: #00B87C;
    border: 1px solid #bedce6;
}
.card.card-box .card-header.blue
{
    background-color: #4298b5;
    border: 1px solid #bedce6;
}
.card.card-question
{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
    background-color: #FFFFFF;
    border: 1px solid #fff;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 5%);
}
.card.card-question .card-header
{
    padding: 0;
    background: transparent;
    border: none;
}
.card.card-question .card-header h4{
    color: #714B67;
    font-size: 0.8em;
    width: max-content;
    margin-left: 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 35px 0 10px;
    margin-bottom: 0;
    border-bottom: 3px solid #714B67 ;
    font-family: "Inter", "Odoo Unicode Support Noto", sans-serif;
}
.card.card-question .card-body
{
    margin-bottom: 25.6px;
    margin-top: 25.6px;
    padding-left: 3rem;
    padding-right: 3rem;
}
.card.card-question .card-body h3
{
    margin-bottom: 10px;
    font-family: "Inter", "Odoo Unicode Support Noto", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: calc(1.2890625rem + 0.46875vw);
    color: #212529;
}
.card.card-question .card-body p
{
    margin-right: 0px;
    margin-bottom: 10.5px;
    margin-left: 0px;
    font-family: 'Montserrat-Regular';
    font-size: 1.125rem;
    font-weight: 400;
}
.contact
{
    padding-bottom: 20px;
}