/* Per-widget CSS, lifted verbatim from the inline <style> blocks the
   reference page prints inside each Elementor HTML widget. */

.gpt-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    width:100%;
    font-family:'Poppins',sans-serif;
}

.gpt-info-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:12px 14px;
    min-height:78px;

    display:flex;
    align-items:center;
    gap:12px;

    box-sizing:border-box;
}

.gpt-icon{
    width:46px;
    height:46px;
    min-width:46px;

    background:#4A163F;

    border-radius:6px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.gpt-icon i{
    color:#fff;
    font-size:18px;
}

.gpt-content{
    flex:1;
    min-width:0;
}

.gpt-content h3{
    margin:0 0 2px;

    font-size:16px;
    font-weight:700;
    line-height:1.2;

    color:#000;
}

.gpt-content p{
    margin:0;

    font-size:14px;
    font-weight:400;
    line-height:1.4;

    color:#222;
}

.time-text{
    white-space:nowrap;
}

/* MOBILE */

@media(max-width:767px){

    .gpt-info-grid{
        gap:10px;
    }

    .gpt-info-card{
        padding:10px;
        min-height:68px;
        gap:10px;
    }

    .gpt-icon{
        width:38px;
        height:38px;
        min-width:38px;
    }

    .gpt-icon i{
        font-size:15px;
    }

    .gpt-content h3{
        font-size:13px;
    }

    .gpt-content p{
        font-size:11px;
    }

    .time-text{
        font-size:10px;
        white-space:nowrap;
    }
}

*{
    box-sizing:border-box;
}

.energy-benefits{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    font-family:'Poppins',sans-serif;
}

.benefit-card{
    background:#fff;
    border:1px solid #d8d0d6;
    border-radius:24px;
    padding:24px;
    display:grid;
    grid-template-columns:90px 1fr;
    gap:20px;
    align-items:center;
    width:100%;
    min-width:0;
}

.icon-box{
    width:90px;
    height:90px;
    border-radius:16px;
    background:#d8cfd7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    line-height:1;
}

.content{
    min-width:0;
}

.content h3{
    margin:0 0 10px;
    color:#2d1026;
    font-weight:700;
    font-size:clamp(20px,1.8vw,34px);
    line-height:1.25;
    word-break:normal;
    overflow-wrap:break-word;
}

.content p{
    margin:0;
    color:#6d6270;
    font-size:clamp(14px,1vw,18px);
    line-height:1.6;
    word-break:normal;
    overflow-wrap:break-word;
}

/* Tablet */

@media (max-width:1024px){

    .energy-benefits{
        grid-template-columns:1fr;
        gap:18px;
    }

    .benefit-card{
        grid-template-columns:80px 1fr;
        padding:20px;
    }

    .icon-box{
        width:80px;
        height:80px;
        font-size:34px;
    }
}

/* Mobile */

@media (max-width:767px){

    .energy-benefits{
        grid-template-columns:1fr;
        gap:14px;
        width:100%;
    }

    .benefit-card{
        grid-template-columns:60px 1fr;
        gap:14px;
        padding:16px;
        border-radius:18px;
    }

    .icon-box{
        width:60px;
        height:60px;
        font-size:24px;
        border-radius:12px;
    }

    .content h3{
        font-size:clamp(16px,4.5vw,20px);
        line-height:1.3;
        margin-bottom:6px;
    }

    .content p{
        font-size:clamp(13px,3.8vw,15px);
        line-height:1.5;
    }
}

/* Very Small Phones */

@media (max-width:480px){

    .benefit-card{
        grid-template-columns:54px 1fr;
        padding:14px;
        gap:12px;
    }

    .icon-box{
        width:54px;
        height:54px;
        font-size:22px;
    }

    .content h3{
        font-size:16px;
    }

    .content p{
        font-size:13px;
    }
}

:root{
    --primary:#22c55e;
    --text:#6d5568;
    --border:#d8ccd7;
    --bg:#ffffff;
    --selected-bg:#f7fff9;
}

.karma-options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    width:100%;
}

.karma-option{
    position:relative;
}

.karma-option input[type="checkbox"]{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.karma-option label{
    display:flex;
    align-items:center;
    gap:12px;

    width:100%;
    min-height:58px;

    padding:12px 14px;

    border:1px solid var(--border);
    border-radius:14px;

    background:var(--bg);

    cursor:pointer;
    transition:all .25s ease;
    box-sizing:border-box;

    color:var(--text);
    font-size:clamp(13px,0.7vw + 0.35rem,16px);
    font-weight:600;
    line-height:1.35;
    letter-spacing:.1px;
}

.karma-option label:hover{
    border-color:#c4b5c2;
    transform:translateY(-1px);
}

.karma-option label::before{
    content:"";
    width:20px;
    height:20px;
    min-width:20px;

    border:2px solid #b79ab1;
    border-radius:5px;

    background:#fff;

    transition:.25s ease;
    box-sizing:border-box;
}

.karma-option input:checked + label{
    border-color:var(--primary);
    background:var(--selected-bg);
    color:#4a3947;
}

.karma-option input:checked + label::before{
    content:"✓";

    background:var(--primary);
    border-color:var(--primary);

    color:#fff;
    font-size:10px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Tablet */
@media (max-width:1024px){

    .karma-options{
        gap:12px;
    }

    .karma-option label{
        min-height:56px;
        padding:13px 14px;
    }
}

/* Mobile */
@media (max-width:767px){

    .karma-options{
        grid-template-columns:1fr;
        gap:10px;
    }

    .karma-option label{
        min-height:auto;
        padding:13px;
        gap:12px;

        font-size:13px;
        line-height:1.4;
    }

    .karma-option label::before{
        width:18px;
        height:18px;
        min-width:18px;
    }
}

/* Extra Small Phones */
@media (max-width:380px){

    .karma-option label{
        font-size:12px;
        padding:12px;
    }
}

/* widget: Blob Shapes */

#uc_blob_shapes_elementor_19728f72{
  mix-blend-mode: overlay;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  opacity: 100%; 
}

#uc_blob_shapes_elementor_19728f72_justification #uc_blob_shapes_elementor_19728f72_justification-inner{
  position: absolute;
  background-position:center center;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

#uc_blob_shapes_elementor_19728f72_justification #uc_blob_shapes_elementor_19728f72_justification-inner .ue_blob_inside{
	width: 100%;
}

#uc_blob_shapes_elementor_19728f72_justification #uc_blob_shapes_elementor_19728f72_justification-inner .blob{
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  background-color: #000;
}

#uc_blob_shapes_elementor_19728f72_justification{
  display:flex;
  min-height:1px;
  position: relative;
}

#uc_blob_shapes_elementor_19728f72 .ue-blob-link{
  display:block;
}

#uc_blob_shapes_elementor_19728f72_justification .ue_blob_inside {
  position: relative;
  z-index: 2;
  overflow:hidden;
  width: 100%;
  clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  -webkit-clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  background:linear-gradient(45deg,  0%, 50%,  100%); 
}

	


#uc_blob_shapes_elementor_19728f72 {
  	aspect-ratio: 1 / 1; 
    width:100%;
  	
}

.ue-blob-text-holder{
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  width:100%;
  height:100%;
  z-index:2;
  display:flex;
  justify-content:center;
  flex-direction:column;
}

.ue_blob_inside{
  position:relative;
}

/* widget: Blob Shapes */

#uc_blob_shapes_elementor_241cb336{
  mix-blend-mode: overlay;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  opacity: 100%; 
}

#uc_blob_shapes_elementor_241cb336_justification #uc_blob_shapes_elementor_241cb336_justification-inner{
  position: absolute;
  background-position:center center;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

#uc_blob_shapes_elementor_241cb336_justification #uc_blob_shapes_elementor_241cb336_justification-inner .ue_blob_inside{
	width: 100%;
}

#uc_blob_shapes_elementor_241cb336_justification #uc_blob_shapes_elementor_241cb336_justification-inner .blob{
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  background-color: #000;
}

#uc_blob_shapes_elementor_241cb336_justification{
  display:flex;
  min-height:1px;
  position: relative;
}

#uc_blob_shapes_elementor_241cb336 .ue-blob-link{
  display:block;
}

#uc_blob_shapes_elementor_241cb336_justification .ue_blob_inside {
  position: relative;
  z-index: 2;
  overflow:hidden;
  width: 100%;
  clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  -webkit-clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  background:linear-gradient(45deg,  0%, 50%,  100%); 
}

	


#uc_blob_shapes_elementor_241cb336 {
  	aspect-ratio: 1 / 1; 
    width:100%;
  	
}

.ue-blob-text-holder{
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  width:100%;
  height:100%;
  z-index:2;
  display:flex;
  justify-content:center;
  flex-direction:column;
}

.ue_blob_inside{
  position:relative;
}

/* widget: Blob Shapes */

#uc_blob_shapes_elementor_74dfac3b{
  mix-blend-mode: overlay;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:right center;
  opacity: 100%; 
}

#uc_blob_shapes_elementor_74dfac3b_justification #uc_blob_shapes_elementor_74dfac3b_justification-inner{
  position: absolute;
  background-position:right center;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

#uc_blob_shapes_elementor_74dfac3b_justification #uc_blob_shapes_elementor_74dfac3b_justification-inner .ue_blob_inside{
	width: 100%;
}

#uc_blob_shapes_elementor_74dfac3b_justification #uc_blob_shapes_elementor_74dfac3b_justification-inner .blob{
  background-position:right center;
  background-size:cover;
  background-repeat:no-repeat;
  background-color: #000;
}

#uc_blob_shapes_elementor_74dfac3b_justification{
  display:flex;
  min-height:1px;
  position: relative;
}

#uc_blob_shapes_elementor_74dfac3b .ue-blob-link{
  display:block;
}

#uc_blob_shapes_elementor_74dfac3b_justification .ue_blob_inside {
  position: relative;
  z-index: 2;
  overflow:hidden;
  width: 100%;
  clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  -webkit-clip-path: polygon(70.400% 19.900%, 72.500% 21.400%, 74.600% 22.900%, 76.800% 24.300%, 79.000% 25.700%, 81.100% 27.100%, 83.200% 28.500%, 85.300% 29.900%, 87.300% 31.400%, 89.200% 32.900%, 91.000% 34.400%, 92.700% 35.900%, 94.200% 37.500%, 95.600% 39.100%, 96.800% 40.800%, 97.800% 42.500%, 98.600% 44.300%, 99.200% 46.200%, 99.600% 48.200%, 99.800% 50.200%, 99.800% 52.200%, 99.600% 54.300%, 99.300% 56.400%, 98.800% 58.500%, 98.100% 60.600%, 97.300% 62.600%, 96.300% 64.600%, 95.200% 66.500%, 94.000% 68.400%, 92.700% 70.200%, 91.200% 71.900%, 89.600% 73.500%, 87.900% 74.900%, 86.100% 76.200%, 84.300% 77.400%, 82.400% 78.500%, 80.400% 79.500%, 78.400% 80.400%, 76.300% 81.200%, 74.200% 82.000%, 72.000% 82.700%, 69.800% 83.400%, 67.600% 84.100%, 65.300% 84.800%, 63.000% 85.500%, 60.700% 86.200%, 58.400% 86.900%, 56.100% 87.700%, 53.800% 88.600%, 51.600% 89.500%, 49.400% 90.500%, 47.200% 91.500%, 45.000% 92.600%, 42.900% 93.700%, 40.800% 94.700%, 38.700% 95.700%, 36.600% 96.600%, 34.600% 97.500%, 32.600% 98.300%, 30.700% 99.000%, 28.800% 99.500%, 26.900% 99.900%, 25.100% 100.100%, 23.300% 100.100%, 21.600% 99.900%, 19.900% 99.500%, 18.300% 98.900%, 16.700% 98.100%, 15.200% 97.100%, 13.800% 95.900%, 12.400% 94.600%, 11.100% 93.200%, 9.800% 91.600%, 8.600% 89.900%, 7.500% 88.100%, 6.500% 86.300%, 5.500% 84.400%, 4.600% 82.500%, 3.800% 80.500%, 3.100% 78.500%, 2.400% 76.500%, 1.800% 74.500%, 1.300% 72.500%, 0.900% 70.500%, 0.500% 68.500%, 0.200% 66.500%, 0.000% 64.500%, -0.200% 62.500%, -0.300% 60.500%, 0.000% 58.700%, 0.000% 56.700%, 0.000% 54.700%, 0.000% 52.700%, 0.100% 50.700%, 0.200% 48.700%, 0.300% 46.700%, 0.400% 44.600%, 0.600% 42.500%, 0.800% 40.400%, 1.000% 38.300%, 1.300% 36.200%, 1.600% 34.100%, 1.900% 32.000%, 2.300% 29.900%, 2.800% 27.800%, 3.300% 25.800%, 3.900% 23.800%, 4.600% 21.800%, 5.400% 19.900%, 6.300% 18.000%, 7.300% 16.200%, 8.400% 14.400%, 9.600% 12.700%, 11.000% 11.100%, 12.500% 9.600%, 14.100% 8.200%, 15.800% 6.800%, 17.600% 5.500%, 19.400% 4.300%, 21.300% 3.300%, 23.200% 2.400%, 25.200% 1.600%, 27.200% 0.900%, 29.300% 0.400%, 31.400% -0.000%, 33.500% -0.200%, 35.500% 0.000%, 37.500% 0.100%, 39.500% 0.400%, 41.500% 0.900%, 43.400% 1.500%, 45.300% 2.300%, 47.200% 3.200%, 49.100% 4.200%, 51.000% 5.300%, 52.900% 6.500%, 54.800% 7.800%, 56.700% 9.200%, 58.600% 10.700%, 60.500% 12.200%, 62.400% 13.700%, 64.400% 15.200%, 66.400% 16.800%, 68.400% 18.300%, 70.400% 19.900%);
  background:linear-gradient(45deg,  0%, 50%,  100%); 
}

	


#uc_blob_shapes_elementor_74dfac3b {
  	aspect-ratio: 1 / 1; 
    width:100%;
  	
}

.ue-blob-text-holder{
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  width:100%;
  height:100%;
  z-index:2;
  display:flex;
  justify-content:center;
  flex-direction:column;
}

.ue_blob_inside{
  position:relative;
}

*{
    box-sizing:border-box;
}

.karma-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    width:100%;
    margin:0 auto;
}

.karma-card{
    position:relative;
    background:#F4EFF1;
    border:1px solid #CBB8C2;
    border-radius:20px;
    padding:32px;
    overflow:hidden;
    height:100%;
}

.karma-number{
    position:absolute;
    top:8px;
    right:18px;

    font-family:'Poppins',sans-serif;
    font-size:clamp(70px,8vw,130px);
    font-weight:700;
    line-height:1;

    color:rgba(118,91,113,0.10);

    user-select:none;
    pointer-events:none;
    z-index:1;
}

.karma-card h3{
    position:relative;
    z-index:2;

    margin:0 0 22px;
    padding-right:28%;

    font-family:'Poppins',sans-serif;
    font-size:clamp(24px,1.7vw,40px);
    font-weight:700;
    line-height:1.45;

    color:#41213D;
}

.karma-card p{
    position:relative;
    z-index:2;

    margin:0;

    font-family:'Poppins',sans-serif;
    font-size:clamp(16px,1.05vw,20px);
    font-weight:500;
    line-height:1.65;

    color:#765B71;
}

/* TABLET */

@media (max-width:1024px){

    .karma-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .karma-card{
        padding:28px;
    }

    .karma-card h3{
        padding-right:24%;
        font-size:30px;
    }

    .karma-card p{
        font-size:17px;
    }

    .karma-number{
        font-size:95px;
    }
}

/* MOBILE */

@media (max-width:767px){

    .karma-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .karma-card{
        padding:24px 22px;
        border-radius:18px;
    }

    .karma-number{
        top:10px;
        right:12px;
        font-size:72px;
    }

    .karma-card h3{
        padding-right:80px;
        margin-bottom:16px;

        font-size:18px;
        line-height:1.45;
    }

    .karma-card p{
        font-size:15px;
        line-height:1.7;
    }
}

/* SMALL MOBILE */

@media (max-width:380px){

    .karma-card{
        padding:22px 18px;
    }

    .karma-number{
        font-size:58px;
        right:10px;
    }

    .karma-card h3{
        padding-right:60px;
        font-size:17px;
    }

    .karma-card p{
        font-size:14px;
    }
}

.bonus-wrapper{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

#countdown-timer{
    font-size:15px;
    font-weight:400;
    color:#000;
    line-height:1.2;
    white-space:nowrap;
    margin:0;
    padding:0;
}

/* Mobile */
@media (max-width:767px){
    #countdown-timer{
        font-size:14px;
    }
}

/* Tablet */
@media (min-width:768px) and (max-width:1024px){
    #countdown-timer{
        font-size:15px;
    }
}

/* Desktop */
@media (min-width:1025px){
    #countdown-timer{
        font-size:16px;
    }
}