body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "filsonproregular";
    font-weight: 400;
    background: #FDF7E7;
}

@font-face {
    font-family: "filsonprobook";
    font-weight: 350;
    src: url("../fonts/filsonprobook-webfont.woff2") format("woff2"),
        url("../fonts/filsonprobook-webfont.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "filsonproregular";
    font-weight: 400;
    src: url("../fonts/filsonproregular-webfont.woff2") format("woff2"),
        url("../fonts/filsonproregular-webfont.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "filsonpromedium";
    font-weight: 500;
    src: url("../fonts/filsonpromedium-webfont.woff2") format("woff2"),
        url("../fonts/filsonpromedium-webfont.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "filsonprobold";
    font-weight: 700;
    src: url("../fonts/filsonprobold-webfont.woff2") format("woff2"),
        url("../fonts/filsonprobold-webfont.woff") format("woff");
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

.btn-main {
    color: #DDDB03;
    font-family: "filsonpromedium";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    border-color: #502774;
    background: #502774;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.btn-main:hover {
    color: #FFFFFF;
}

.navbar-expand-lg .navbar-nav {
    width: 90%;
    justify-content: space-between;
    align-items: center;
}

.navbar .nav-link {
    color: #502774;
    font-family: "filsonprobold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #502774;
}

.background-home {
    background-image: url("../imgs/banners/bannerhome.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    display: flex;
    align-items: center;
}

.background-home-purple {
    background-image: url("../imgs/banners/bannerpurple.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 450px;
    position: relative;
}

.background-home-purple .product {
    background-image: url("../imgs/logos/vision.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 229px;
    height: 380px;
    position: absolute;
    top: 13%;
    right: 15%;
    animation: floatingRotate18 2s ease-in-out infinite;
}

@keyframes floatingRotate18 {

    0%,
    100% {
        transform: rotate(18deg) translateY(0);
    }

    50% {
        transform: rotate(18deg) translateY(-15px);
    }
}

.background-home-purple .bear {
    background-image: url("../imgs/logos/bear.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 160px;
    height: 214px;
    position: absolute;
    bottom: 5%;
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(3deg);
    }
}

.background-home-purple .heart {
    background-image: url("../imgs/logos/heart.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 180px;
    height: 146px;
    position: absolute;
    bottom: -10%;
    left: 16%;
    animation: heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.background-home-purple .glasses {
    background-image: url("../imgs/logos/glasses.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 182.353px;
    height: 89.929px;
    position: absolute;
    top: -5%;
    right: 30%;
    animation: floatingRotate5 3s ease-in-out infinite;
}

@keyframes floatingRotate5 {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

.background-home-purple .text {
    width: 527px;
    left: 20%;
    top: 20%;
    position: absolute;
}

.background-home-purple .text h2 {
    color: #FFF;
    text-align: start;
    font-family: "filsonprobook";
    font-size: 64px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

.background-home-purple .text h3 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.banner-green-section {
    background: #b8d144;
    height: 450px;
}

.banner-green-section .backgroundgreen1 {
    background: #9DC22F;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-green-section h2 {
    color: #FFF;
    font-family: "filsonprobook";
    font-size: 50px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

.banner-green-section h3 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.banner-green-section .backgroundgreen2 {
    background: #DCE9BE;
    height: 468px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background: #502774;
    min-height: 236px;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer p,
footer a {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
}

footer .social a {
    font-family: "filsonproregular";
    font-weight: 400;
}

.product-section-home .bg-purple {
    width: 358px;
    height: 72px;
    background-image: url("../imgs/logos/bg-purple.png");
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-section-home h4 {
    color: #D0D703;
    font-family: "filsonpromedium";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}

.product-section-home .product-item {
    width: 376px;
    height: 442px;
    position: relative;
}

.product-section-home .bginmunitykids {
    background-image: url("../imgs/products/bginmunitykids.png");
}

.product-section-home .bginmunity {
    background-image: url("../imgs/products/bg-lila-claro.png");
}

.product-section-home .bgbeauty {
    background-image: url("../imgs/products/bgbeauty.png");
}

.product-section-home .bgvitaminc {
    background-image: url("../imgs/products/bgvitaminc.png");
}

.product-section-home .bgmelatonina {
    background-image: url("../imgs/products/bginmunity.png");
}

.product-section-home {
    position: relative;
}

.product-section-home .points1 {
    background-image: url("../imgs/logos/points1.png");
    background-repeat: no-repeat;
    width: 347px;
    height: 320px;
    position: absolute;
    top: -160px;
    right: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.product-section-home .points2 {
    background-image: url("../imgs/logos/points2.png");
    background-repeat: no-repeat;
    width: 347px;
    height: 320px;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

.product-section-home .product-item img {
    width: auto;
    height: 250px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}

.product-section-home .product-item img:hover {
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-section-home .product-item p {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
}

.product-section-home .product-item a.btn-seemore {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 125px;
    height: 35px;
    line-height: 35px;
}

.product-section-home .product-item .product-soon,
.swiper-wrapper .product-soon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5A35C;
    color: #fff;
    font-family: "filsonprobold";
    font-size: 16px;
    padding: 6px 16px;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
    clip-path: polygon(12px 0%, 88% 0%, 100% 50%, 88% 100%, 12px 100%, 0% 50%);
    width: 200px;
    text-align: center;
}

.bodygreen {
    background: #95C121;
    position: relative;
}

.bodygreen:before {
    content: "";
    background-image: url("../imgs/logos/points2.png");
    background-repeat: no-repeat;
    width: 347px;
    height: 320px;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}


.btn-back {
    width: 172px;
    height: 60px;
    line-height: 60px;
    border:1px solid #502774
}
.btn-back:hover{
background: #DDDB03;
color: #502774;

}
.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.5, -0.5, 0.25, 1.4) !important;
}

.gallery-container {
    display: flex;
}

/* Thumbnails */
.gallery-thumbs {
    width: 90px;
    height: 360px;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.8;
    cursor: pointer;
    border: 2px solid #000000;
    border-radius: 23px;
    box-sizing: border-box;
    width: 100%;
    height: 76px;
    overflow: hidden;
    background: #FFFFFF;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 4px solid #000000;
    box-sizing: border-box;
}

.gallery-thumbs img {
    width: 100%;
    height: 76px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Main gallery */
.gallery-top {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.gallery-top .swiper-slide {
    width: 250px;
    height: 415px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.gallery-top .swiper-slide img {
    width: auto;
    height: 415px;
    object-fit: contain;
    border-radius: 30px;
}

.swiper-navigation-container {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 150px;
    height: 47px;
    margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.custom-prev,
.custom-next {
    width: 53px;
    height: 47px;
    cursor: pointer;
}

.product-information-detail {
    padding: 30px 20px;
    border-radius: 23px;
    background: #FFEEBF;
    color: #000;
    font-family: "filsonproregular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-information-detail strong {
    color: #000;
    font-family: "filsonprobold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.product-information-detail h3 {
    color: #95C121;
    font-family: "filsonprobold";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.check-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.check-item strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('../imgs/logos/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.product-information-detail h4 {
    color: #000;
    font-family: "filsonprobold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.principal-components {
    border-radius: 14px;
    border: 1px solid #000;
    background: #FFF;
    padding:5px;
    text-align: center;
}

.image-with-text {
    position: relative;
    display: inline-block;
}

.image-with-text img {
    display: block;
    max-width: 100%;
    width: auto;
    height: 100px;
    object-fit: contain;
    animation: swing 2s ease-in-out infinite;
}

.image-with-text .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: "filsonprobold";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

/******** CONTACT SECTION ************/
.background-contact {
    background-image: url("../imgs/banners/banner-pink.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 450px;
    position: relative;
}

.background-contact .product {
    background-image: url("../imgs/products/melatonina-banner.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 229px;
    height: 380px;
    position: absolute;
    top: 13%;
    right: 15%;
    animation: floatingRotate10 2s ease-in-out infinite;
}

@keyframes floatingRotate10 {

    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(10deg) translateY(-15px);
    }
}

.background-contact .thunder {
    background-image: url("../imgs/logos/thunder.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 65px;
    height: 107px;
    position: absolute;
    right: 30%;
    animation: flash 0.8s ease-in-out infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    20% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 0.3;
    }

    80% {
        opacity: 1;
    }
}

.background-contact .cloud {
    background-image: url("../imgs/logos/cloud.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 140px;
    height: 74px;
    position: absolute;
    bottom: 3%;
    right: 30%;
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
}

.background-contact .cloud2 {
    background-image: url("../imgs/logos/cloud2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 165px;
    height: 87px;
    position: absolute;
    top: 10%;
    right: 10%;
    animation: swing 1.5s ease-in-out infinite;
    transform-origin: center;
}

.background-contact .text {
    width: 527px;
    left: 10%;
    top: 40%;
    position: absolute;
}

.background-contact .text h4 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.address-info-container {
    max-width: 380px;
    border-radius: 10px;
    background: #F5A35C;
    padding: 30px 50px;
    color: #FFF;
    font-family: "filsonproregular";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.address-info-container a {
    color: #FFF;
}

.address-info-container h6 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    max-width: 429px;
    height: 44px;
    border-radius: 10px;
    border-color: #F5A35C;
    background: #F5A35C;
    color: #FFF;
    font-family: "filsonpromedium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-control:focus {
    color: #F5A35C;
}

.form-control::placeholder {
    color: #FFF;
}

.contact-form textarea {
    height: 257px;
}

.contact-form input[type="submit"] {
    width: 125.641px;
    background: #502774;
    color: #DDDB03;
    font-family: "filsonpromedium";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    float: right;
    border-radius: 0;
    border-color: #502774;
    display: flex;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin: 0 auto;
    transition: all 1s ease;
}

.contact-form input[type="submit"]:hover {
    border-color: #502774;
    color: #502774;
    background: #D0D703;
}

.contact-section {
    position: relative;
}

.contact-section .points {
    background-image: url("../imgs/logos/dots.svg");
    background-repeat: no-repeat;
    width: 324px;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

.contact-section .moon {
    background-image: url("../imgs/logos/moon.svg");
    background-repeat: no-repeat;
    width: 280px;
    height: 235px;
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

/******** FAQS SECTION ************/
.background-faqs {
    background-image: url("../imgs/banners/banner-faqs.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 450px;
    position: relative;
    isolation: isolate;
}

.background-faqs .product {
    background-image: url("../imgs/products/beauty-banner.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 230px;
    height: 380px;
    position: absolute;
    top: 13%;
    right: 15%;
    animation: floatingRotate10 2s ease-in-out infinite;
}

.background-faqs .heart {
    background-image: url("../imgs/logos/heart.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 119px;
    height: 98px;
    position: absolute;
    bottom: 0;
    right: 30%;
    animation: heartbeatRotate44 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartbeatRotate44 {

    0%,
    100% {
        transform: rotate(44deg) scale(1.0);
    }

    50% {
        transform: rotate(-44deg) scale(1.1);
    }
}

.background-faqs .heart2 {
    background-image: url("../imgs/logos/heart.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 164px;
    height: 135px;
    position: absolute;
    top: 0;
    right: 10%;
    animation: heartbeatRotate8 1.5s ease-in-out infinite;
    transform-origin: center;
    z-index: -1;
}

@keyframes heartbeatRotate8 {

    0%,
    100% {
        transform: rotate(8deg) scale(1.0);
    }

    50% {
        transform: rotate(-8deg) scale(1.1);
    }
}

.background-faqs .text {
    width: 527px;
    left: 10%;
    top: 30%;
    position: absolute;
}

.background-faqs .text h4 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.points-yellow {
    background-image: url("../imgs/logos/yellow-points.svg");
    background-repeat: no-repeat;
    width: 324px;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

.faqs-section h2,
.negrita {
    color: #000;
    font-family: "filsonprobold";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faqs-section .accordion-item {
    background: #D1D700;
    border-radius: 43px !important;
    color: #000;
    font-family: "filsonprobold";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faqs-section .accordion-button:focus {
    box-shadow: none;
}

.faqs-section .accordion-button {
    border-radius: 43px !important;
    background: #D1D700;
    border: 0;
    color: #000;
    font-family: "filsonprobold";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}

.faqs-section p {
    color: #000;
    font-family: "filsonproregular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.body-aboutus {
    position: relative;
}

.body-aboutus:before {
    content: "";
    background-image: url("../imgs/logos/yellow-points.svg");
    background-repeat: no-repeat;
    width: 320px;
    height: 350px;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

.aboutus-container .image {
    width: 270px;
    height: 450px;
    animation: floatingRotate10 2s ease-in-out infinite;
}

.aboutus-container h2 {
    color: #502774;
    font-family: "filsonprobold";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}



.aboutus-container .card {
    border-radius: 43px;
    background: #FFF;
    border-color: #FFFFFF;
    padding: 30px;
}

.aboutus-container h4 {
    color: #CB2585;
    font-family: "filsonprobold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.aboutus-container p {
    color: #000;
    font-family: "filsonproregular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.container-gummies-card {
    background: #00ABB1;
    height: 350px;
}

.container-gummies-card img {
    /* max-width: 330px; */
    height: 400px;
    border-radius: 43px;
    margin: 0 auto;
}

.container-factory .img-factory {
    height: 593px;
    border-radius: 43px;
}
.container-factory p strong{
    font-family: "filsonprobold";
    font-weight: 700;
}

/* CERTIFICATIONS */
.container-certifications {
    min-height: 500px;
    background: #95C121;
}

.container-certifications h4 {
    color: #502774;
    font-family: "filsonprobold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.container-certifications .card {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    padding: 30px;
    border-radius: 43px;
}

.container-certifications img {
    width: 186px;
    height: 186px;
    object-fit: contain;
}

.container-factory {
    position: relative;
}

.container-factory .points1 {
    background-image: url(../imgs/logos/points1.png);
    background-repeat: no-repeat;
    width: 347px;
    height: 320px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.5;
}

/******* POINTS OF SALE ******/
.points-of-sale-container {
    background-color: #95C121;
}

.background-points-of-sale {
    background-image: url("../imgs/banners/banner-points-sale.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 450px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.background-points-of-sale .product {
    background-image: url("../imgs/products/melatonina-banner.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 230px;
    height: 380px;
    position: absolute;
    top: 13%;
    right: 15%;
    animation: floatingRotate10 2s ease-in-out infinite;
}

.background-points-of-sale .comb {
    background-image: url("../imgs/logos/comb.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 119px;
    height: 98px;
    position: absolute;
    bottom: 0;
    right: 15%;
    animation: heartbeatRotate44 1.5s ease-in-out infinite;
    transform-origin: center;
}

.background-points-of-sale .orange-slice {
    background-image: url("../imgs/logos/orange-slice.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 119px;
    height: 60px;
    position: absolute;
    top: 10%;
    right: 25%;
    animation: heartbeatRotate8 1.5s ease-in-out infinite;
    transform-origin: center;
}

.background-points-of-sale .text {
    width: 527px;
    left: 10%;
    top: 35%;
    position: absolute;
}

.background-points-of-sale .text h4 {
    color: #FFF;
    font-family: "filsonprobold";
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.marker-item-container {
    position: relative;
    border-radius: 43px;
    background: #FFF;
    padding: 50px 50px;
}

.marker-item-container::before {
    content: "";
    position: absolute;
    left: -2%;
    top: -8%;
    background-image: url("../imgs/logos/points-of-sale.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 80px;
    height: 100px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.marker-item-container h3 {
    color: #502774;
    font-family: "filsonprobold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.marker-item {
    /* border-radius: 25px;
    background: #FFFFFF;
    background: #95C121;
    border: 1px solid #95C121; 
    max-width: 200px;
    display: block;
    padding: 15px; */
}

.marker-item h5 {
    color: #FFF;
    text-align: center;
    font-family: "filsonprobold";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.marker-item a {
    color: #DDDB03;
    font-family: "filsonproregular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 148px;
    height: 44px;
    border-radius: 43px;
    background: #502774;
    border: 1px solid #502774;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: .5s all ease-in;
}

.marker-item a:hover {
    color: #502774;
    background: #DDDB03;
}

.marker-item img {
    object-fit: contain;
    height: 100px;
    width: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}