@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "Lato", sans-serif;
    font-size: 10px;
    line-height: 100%;
    font-weight: 400;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --green: #007c3f;
}

.text-green {
    color: var(--green);
}

.font-raleway {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    line-height: 100%;
}

.font-raleway-italic {
    font-family: "Raleway", sans-serif;
    font-style: italic;
    line-height: 100%;
}

.container {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.container-one {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 24px;
}

h2 {
    line-height: 100%;
}

h3 {
    line-height: 100%;
}

p {
    line-height: 100%;
}

.shadow-1 {
    box-shadow: 0px 0px 40px 0px #00000040;
}

.section_desc {
    position: relative;
}

.section_desc::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%);
    width: 110px;
    height: 3px;
    background: #d81c1c;
    /* border-radius: 2px; */
}

/* STROKE */
.text-stroke-green-old {
    -webkit-text-stroke: 2px #045A30;
}

.text-stroke-green {
    -webkit-text-stroke: 1px #007c3f;
}

.text-stroke-white {
    -webkit-text-stroke: 1px #ffffff;
}

.text-stroke-yellow {
    -webkit-text-stroke: 1px #FFDC58;
}

/* BACKGROUND */
.bg-green-gradient {
    background: linear-gradient(180deg, #007c3f 0%, #00c061 100%);
}

.bg-green-gradient-reverse {
    background: linear-gradient(180deg, #00c061 0%, #007c3f 100%);
}

.bg-soft-green-gradient {
    background: linear-gradient(360deg, #009548 0%, #f7f7f7 100%);
}

.bg-soft-green-gradient-reverse {
    background: linear-gradient(180deg, #009548 0%, #f7f7f7 100%);
}

.bg-light-gray-green {
    background: linear-gradient(180deg, #f7f7f7 0%, #00c664 100%);
}

.bg-bright-green-to-dark-green {
    background: linear-gradient(180deg, #01c966 0%, #009548 100%);
}

.bg-red-linear {
    background: linear-gradient(180deg, #e77212 0%, #c6573f 100%);
}

.bg-yellow-gradient {
    background: linear-gradient(180deg, #fcd12c 0%, #ffdf6f 100%);
}

.bg-gradient-yellow-beige {
    background: linear-gradient(180deg, #ffdc58 0%, #ebdda8 100%);
}

.bg-soft-yellow-gradient {
    background: linear-gradient(180deg, #f7f7f7 0%, #ffdf6f 100%);
}

.bg-monochrome {
    background: linear-gradient(180deg, #ffffff 0%, #007c3f 100%);
}

.bg-card-green {
    background: linear-gradient(180deg, #007c3f 11.91%, #00c664 100%);
}

.bg-card-green-old {
    background: linear-gradient(180deg, #009548 0%, #002f17 100%);
}

.bg-card-green-buttons {
    background: radial-gradient(62.2% 62.2% at 51.67% 45.29%, #00B55C 0%, #007C3F 100%);
}

/* BACKGROUND IMAGE */
.bg-image-intersect-banner {
    background-image: url("/assets/images/components/Intersect-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    /* max-width: 360px; */
}

.bg-image-ovals {
    background-image: url("/assets/images/components/Intersect.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.bg-image-rectangle {
    background-image: url("/assets/images/components/rectangle.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.bg-image-cloud {
    background-image: url("/assets/images/cloud-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 160px;
    height: 172px;
    border-radius: 20px;
}

/* IMAGE */
.img-right {
    width: 97px;
    height: 150px;
}

/* SWIPER CSS */

.swiper {
    cursor: grab;
}

.swiper-sw {
    width: 100%;
    max-width: 250px;
}

.swiper-pagination {
    display: none !important;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.card-border {
    border: 4px solid #ffffff;
    /* Warna merah gelap seperti pada frame */
    border-radius: 0.75rem;
}

/* CARD NUTRIFLAKES VS KIMIA */

.card-obat {
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(40, 6, 12, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 159px;
    /* margin-top: 20%; */
}

.divider-yellow {
    position: relative;
    display: block;
}

.divider-yellow::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(2, 255, 23, 0.15) 10%,
            rgba(60, 255, 0, 0.8) 50%,
            rgba(255, 255, 255, 0.2) 90%,
            transparent 100%);
}

.divider-white {
    position: relative;
    display: block;
}

.divider-white::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 10%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.2) 90%,
            transparent 100%);
}

/* ICON */
.mdi--cancel-bold {
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.mdi--cancel-bold::after {
    display: inline-block;
    width: 30px;
    height: 38px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fffcfc' d='M20 6.91L17.09 4L12 9.09L6.91 4L4 6.91L9.09 12L4 17.09L6.91 20L12 14.91L17.09 20L20 17.09L14.91 12z'/%3E%3C/svg%3E");
}

.game-icons--coffee-cup::after {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M144 32S94.11 69.4 96 96c1.604 22.57 44.375 25.665 48 48c1.91 11.772-16 32-16 32s48-25.373 48-48s-42.8-25.978-48-48c-3.875-16.414 16-48 16-48m80 0s-49.89 37.4-48 64c1.604 22.57 44.375 25.665 48 48c1.91 11.772-16 32-16 32s48-25.373 48-48s-42.8-25.978-48-48c-3.875-16.414 16-48 16-48m80 0s-49.89 37.4-48 64c1.604 22.57 44.375 25.665 48 48c1.91 11.772-16 32-16 32s48-25.373 48-48s-42.8-25.978-48-48c-3.875-16.414 16-48 16-48M73.293 201c1.43 63.948 18.943 179.432 74.707 238h152c55.764-58.568 73.278-174.052 74.707-238zm319.598.445c-.186 9.152-.652 19.252-1.472 30.057C419.312 235.162 441 259.142 441 288c0 31.374-25.626 57-57 57a56.7 56.7 0 0 1-12.764-1.465c-2.912 9.62-6.176 19.165-9.84 28.51A87.5 87.5 0 0 0 384 375c48.155 0 87-38.845 87-87c0-45.153-34.153-82.12-78.11-86.555zM42.763 457c1.507 5.193 3.854 11.2 6.955 16.37c2.637 4.394 5.69 8.207 8.428 10.58C60.882 486.32 63 487 64 487h320c1 0 3.118-.678 5.855-3.05c2.738-2.373 5.79-6.186 8.428-10.58c3.1-5.17 5.448-11.177 6.955-16.37z'/%3E%3C/svg%3E");
}

.ion--fast-food-sharp::after {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M384 352H184.36l-41 35l-41-35H16v24c0 30.59 21.13 55.51 47.26 56c2.43 15.12 8.31 28.78 17.16 39.47C93.51 487.28 112.54 496 134 496h132c21.46 0 40.49-8.72 53.58-24.55c8.85-10.69 14.73-24.35 17.16-39.47c13.88-.25 26.35-7.4 35-18.63A61.26 61.26 0 0 0 384 376Zm-279-32l38.33 28.19L182 320h202v-8a40.07 40.07 0 0 0-32-39.2c-.82-29.69-13-54.54-35.51-72C295.67 184.56 267.85 176 236 176h-72c-68.22 0-114.43 38.77-116 96.8A40.07 40.07 0 0 0 16 312v8z'/%3E%3Cpath fill='%23000' d='M463.08 96h-74.59l8.92-35.66L442 45l-10-29l-62 20l-14.49 60H208v32h18.75l1.86 16H236c39 0 73.66 10.9 100.12 31.52A121.9 121.9 0 0 1 371 218.07a124.2 124.2 0 0 1 10.73 32.65a72 72 0 0 1 27.89 90.9A96 96 0 0 1 416 376c0 22.34-7.6 43.63-21.4 59.95a80 80 0 0 1-31.83 22.95a109.2 109.2 0 0 1-18.53 33c-1.18 1.42-2.39 2.81-3.63 4.15H416c16 0 23-8 25-23l36.4-345H496V96Z'/%3E%3C/svg%3E");
}

.ic--round-food-bank::after {
    display: inline-block;
    width: 19px;
    height: 19px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m10.8 3.9l-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5a2.01 2.01 0 0 0-2.4 0m1.7 8.6c0 .83-.67 1.5-1.5 1.5v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V14c-.83 0-1.5-.67-1.5-1.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5zm2 5.5c-.28 0-.5-.22-.5-.5v-3h-.5c-.28 0-.5-.22-.5-.5v-2.5c0-.88.57-1.63 1.36-1.89c.31-.11.64.14.64.48v7.41c0 .28-.22.5-.5.5'/%3E%3C/svg%3E");
}

.mdi--clock-outline::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 20a8 8 0 0 0 8-8a8 8 0 0 0-8-8a8 8 0 0 0-8 8a8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10a10 10 0 0 1-10 10C6.47 22 2 17.5 2 12A10 10 0 0 1 12 2m.5 5v5.25l4.5 2.67l-.75 1.23L11 13V7z'/%3E%3C/svg%3E");
}

.healthicons--sleepy-24px::after {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23000'%3E%3Cpath d='M12 2q1.03.002 2 .2v2.052A8 8 0 1 0 19.419 9h2.123A10 10 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12S6.477 2 12 2'/%3E%3Cpath d='M8.003 9.705c.007.157-.02.462-.138.768c-.116.3-.299.548-.57.697c-.271.15-.579.17-.894.108a2 2 0 0 1-.722-.294l-.863 1.227c.285.2.75.432 1.296.54c.553.108 1.243.098 1.906-.267c.664-.365 1.04-.943 1.245-1.468A3.5 3.5 0 0 0 9.5 9.633zm3.952.649a3.5 3.5 0 0 1-.853-1.115l1.36-.632c.067.143.232.4.48.617c.241.21.518.346.827.353c.31.006.592-.118.842-.319c.256-.206.432-.457.504-.596l1.333.686c-.16.31-.464.731-.897 1.08c-.44.352-1.055.664-1.812.648c-.758-.015-1.36-.352-1.784-.722M15.25 3a.75.75 0 0 1 .75-.75h3.759c.757 0 1.136.916.6 1.451L17.812 6.25H20a.75.75 0 0 1 0 1.5h-3.759c-.757 0-1.136-.916-.6-1.451l2.548-2.549H16a.75.75 0 0 1-.75-.75M7.767 16.98l.16.733l8.465-1.84l-.16-.732a4.332 4.332 0 0 0-8.465 1.84'/%3E%3C/g%3E%3C/svg%3E");
}

.material-symbols--sentiment-stressed::after {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m-4.55-9.4l3.575-2.6L7.45 7.4l-.9 1.2L8.475 10L6.55 11.4zm3.05 4.45l1.5-1.5l1.5 1.5l1.5-1.5l.975.975l1.05-1.05L15 13.45l-1.5 1.5l-1.5-1.5l-1.5 1.5l-1.5-1.5l-2.025 2.025l1.05 1.05L9 15.55zm6.05-4.45l.9-1.2l-1.925-1.4l1.925-1.4l-.9-1.2l-3.575 2.6z'/%3E%3C/svg%3E");
}

.f7--exclamationmark-octagon-fill::after {
    display: inline-block;
    width: 8px;
    height: 8px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23fffb00' d='M20.887 50.71h14.226c2.977 0 4.407-.96 5.93-2.624l8.625-9.563c1.547-1.71 1.945-2.836 1.945-5.156v-10.71c0-2.344-.398-3.446-1.945-5.157l-8.625-9.562c-1.523-1.665-2.953-2.649-5.93-2.649H20.887c-2.977 0-4.383.984-5.93 2.649L6.332 17.5c-1.547 1.71-1.945 2.813-1.945 5.156v10.711c0 2.32.398 3.446 1.945 5.156l8.625 9.563c1.547 1.664 2.953 2.625 5.93 2.625m7.125-19.288c-1.242 0-1.922-.727-1.97-1.969l-.327-11.578c-.047-1.29.914-2.203 2.273-2.203c1.313 0 2.32.937 2.274 2.226l-.329 11.555c-.046 1.266-.75 1.969-1.921 1.969m0 8.625c-1.36 0-2.649-1.078-2.649-2.531s1.266-2.532 2.649-2.532c1.36 0 2.625 1.055 2.625 2.532c0 1.476-1.29 2.53-2.625 2.53'/%3E%3C/svg%3E");
}

.radix-icons--double-arrow-down::after {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill='%23009548' d='M11.225 8.082a.5.5 0 0 1 .693.694l-.064.078l-4 4a.5.5 0 0 1-.707 0l-4-4l-.065-.078a.5.5 0 0 1 .694-.694l.078.065L7.5 11.793l3.647-3.646zm0-6a.5.5 0 0 1 .693.694l-.064.078l-4 4a.5.5 0 0 1-.707 0l-4-4l-.065-.078a.5.5 0 0 1 .694-.694l.078.065L7.5 5.793l3.647-3.646z' stroke-width='0.5' stroke='%23009548'/%3E%3C/svg%3E");
}

.radix-icons--double-arrow-down-white::after {
    display: inline-block;
    width: 13px;
    height: 13px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill='%23fff' d='M11.225 8.082a.5.5 0 0 1 .693.694l-.064.078l-4 4a.5.5 0 0 1-.707 0l-4-4l-.065-.078a.5.5 0 0 1 .694-.694l.078.065L7.5 11.793l3.647-3.646zm0-6a.5.5 0 0 1 .693.694l-.064.078l-4 4a.5.5 0 0 1-.707 0l-4-4l-.065-.078a.5.5 0 0 1 .694-.694l.078.065L7.5 5.793l3.647-3.646z' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}

.sidekickicons--quotation-mark-20-solid::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M5.5 6.5C3.583 6.5 2 8.084 2 10c0 .875.237 1.633.691 2.211c.332.423.823.653 1.3.9c.026.799-.02 1.018-.66 2.3c-.337.674.419 1.368 1.062.975C7.798 14.29 9 11.833 9 10c0-1.916-1.583-3.5-3.5-3.5m9 0C12.583 6.5 11 8.084 11 10c0 .875.237 1.633.691 2.211c.332.423.823.653 1.3.9c.026.799-.02 1.018-.66 2.3c-.337.674.419 1.368 1.062.975C16.798 14.29 18 11.833 18 10c0-1.916-1.583-3.5-3.5-3.5' stroke-width='0.5' stroke='%23000'/%3E%3C/svg%3E");
}

.line-md--arrow-right::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='20' stroke-dashoffset='20' d='M3 12h17.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.2s' values='20;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='12' stroke-dashoffset='12' d='M21 12l-7 7M21 12l-7 -7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.2s' dur='0.2s' values='12;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.line-md--arrow-right-dark::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='20' stroke-dashoffset='20' d='M3 12h17.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.2s' values='20;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='12' stroke-dashoffset='12' d='M21 12l-7 7M21 12l-7 -7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.2s' dur='0.2s' values='12;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.healthicons--no-outline-24px::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23D81C1C' stroke-width='0.5' stroke='%23D81C1C'%3E%3Cpath d='M8.478 8.478a1 1 0 0 1 1.414 0l2.154 2.153l2.153-2.153a1 1 0 1 1 1.414 1.414l-2.153 2.154l2.153 2.153a1 1 0 0 1-1.414 1.414l-2.153-2.153l-2.154 2.153A1 1 0 0 1 8.478 14.2l2.153-2.153l-2.153-2.154a1 1 0 0 1 0-1.414'/%3E%3Cpath fill-rule='evenodd' d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10s10-4.477 10-10S17.523 2 12 2M4 12a8 8 0 1 1 16 0a8 8 0 0 1-16 0' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
}

.lets-icons--done-round-fill::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23FFDC58' stroke-linecap='round' stroke-width='4' d='M19.548 7.267a2 2 0 1 0-3.096-2.533L8.666 14.25L6.2 12.4a2 2 0 0 0-2.4 3.2l3.233 2.425a3 3 0 0 0 4.122-.5z'/%3E%3C/svg%3E");
}

.raphael--arrowright {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M11.166 23.963L22.36 17.5c1.43-.824 1.43-2.175 0-3L11.165 8.037c-1.43-.826-2.598-.15-2.598 1.5v12.926c0 1.65 1.17 2.326 2.598 1.5z'/%3E%3C/svg%3E");
}

.raphael--arrowleft {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M20.834 8.037L9.64 14.5c-1.43.824-1.43 2.175 0 3l11.194 6.463c1.43.826 2.598.15 2.598-1.5V9.537c0-1.65-1.17-2.326-2.598-1.5'/%3E%3C/svg%3E");
}

/* ICON SOCIAL SHOP & SOCIAL MEDIA */
.skill-icons--instagram {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cg fill='none'%3E%3Crect width='256' height='256' fill='url(%23SVGWRUqebek)' rx='60'/%3E%3Crect width='256' height='256' fill='url(%23SVGfkNpldMH)' rx='60'/%3E%3Cpath fill='%23fff' d='M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396s-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413s.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5s6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355s22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334s-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334'/%3E%3Cdefs%3E%3CradialGradient id='SVGWRUqebek' cx='0' cy='0' r='1' gradientTransform='matrix(0 -253.715 235.975 0 68 275.717)' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fd5'/%3E%3Cstop offset='.1' stop-color='%23fd5'/%3E%3Cstop offset='.5' stop-color='%23ff543e'/%3E%3Cstop offset='1' stop-color='%23c837ab'/%3E%3C/radialGradient%3E%3CradialGradient id='SVGfkNpldMH' cx='0' cy='0' r='1' gradientTransform='matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%233771c8'/%3E%3Cstop offset='.128' stop-color='%233771c8'/%3E%3Cstop offset='1' stop-color='%2360f' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
}

.logos--facebook {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%231877f2' d='M256 128C256 57.308 198.692 0 128 0S0 57.308 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.348-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.959 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445'/%3E%3Cpath fill='%23fff' d='m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A129 129 0 0 0 128 256a129 129 0 0 0 20-1.555V165z'/%3E%3C/svg%3E");
}

.logos--tiktok-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 290'%3E%3Cpath fill='%23ff004f' d='M189.72 104.421c18.678 13.345 41.56 21.197 66.273 21.197v-47.53a67 67 0 0 1-13.918-1.456v37.413c-24.711 0-47.59-7.851-66.272-21.195v96.996c0 48.523-39.356 87.855-87.9 87.855c-18.113 0-34.949-5.473-48.934-14.86c15.962 16.313 38.222 26.432 62.848 26.432c48.548 0 87.905-39.332 87.905-87.857v-96.995zm17.17-47.952c-9.546-10.423-15.814-23.893-17.17-38.785v-6.113h-13.189c3.32 18.927 14.644 35.097 30.358 44.898M69.673 225.607a40 40 0 0 1-8.203-24.33c0-22.192 18.001-40.186 40.21-40.186a40.3 40.3 0 0 1 12.197 1.883v-48.593c-4.61-.631-9.262-.9-13.912-.801v37.822a40.3 40.3 0 0 0-12.203-1.882c-22.208 0-40.208 17.992-40.208 40.187c0 15.694 8.997 29.281 22.119 35.9'/%3E%3Cpath d='M175.803 92.849c18.683 13.344 41.56 21.195 66.272 21.195V76.631c-13.794-2.937-26.005-10.141-35.186-20.162c-15.715-9.802-27.038-25.972-30.358-44.898h-34.643v189.843c-.079 22.132-18.049 40.052-40.21 40.052c-13.058 0-24.66-6.221-32.007-15.86c-13.12-6.618-22.118-20.206-22.118-35.898c0-22.193 18-40.187 40.208-40.187c4.255 0 8.356.662 12.203 1.882v-37.822c-47.692.985-86.047 39.933-86.047 87.834c0 23.912 9.551 45.589 25.053 61.428c13.985 9.385 30.82 14.86 48.934 14.86c48.545 0 87.9-39.335 87.9-87.857z'/%3E%3Cpath fill='%2300f2ea' d='M242.075 76.63V66.516a66.3 66.3 0 0 1-35.186-10.047a66.47 66.47 0 0 0 35.186 20.163M176.53 11.57a68 68 0 0 1-.728-5.457V0h-47.834v189.845c-.076 22.13-18.046 40.05-40.208 40.05a40.06 40.06 0 0 1-18.09-4.287c7.347 9.637 18.949 15.857 32.007 15.857c22.16 0 40.132-17.918 40.21-40.05V11.571zM99.966 113.58v-10.769a89 89 0 0 0-12.061-.818C39.355 101.993 0 141.327 0 189.845c0 30.419 15.467 57.227 38.971 72.996c-15.502-15.838-25.053-37.516-25.053-61.427c0-47.9 38.354-86.848 86.048-87.833'/%3E%3C/svg%3E");
}

.streamline-plump--web {
    display: inline-block;
    width: 20px;
    height: 20px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath stroke-linejoin='round' d='M3 24a21 21 0 1 0 42 0a21 21 0 1 0-42 0'/%3E%3Cpath stroke-linejoin='round' d='M15 24a9 21 0 1 1 18 0a9 21 0 1 1-18 0'/%3E%3Cpath stroke-linecap='round' d='M4.5 31h39m-39-14h39'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.prime--twitter::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23SVGG1Ot4cAD)'%3E%3Cpath fill='%23000' d='M11.025.656h2.147L8.482 6.03L14 13.344H9.68L6.294 8.909l-3.87 4.435H.275l5.016-5.75L0 .657h4.43L7.486 4.71zm-.755 11.4h1.19L3.78 1.877H2.504z' stroke-width='0.5' stroke='%23000'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='SVGG1Ot4cAD'%3E%3Cpath fill='%23fff' d='M0 0h14v14H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
}