:root {
    /* colors */
    --primary: #42a9a6;
    --primary-hover: #6bc5c2;
    --primary-light: #e3f2f2;
    --secondary: #6b70b4;
    --secondary-hover: #979cd6;
    --secondary-light: #fffcf3;
    --accent: #6667ab;
    --modal-accent: #cacdf2;
    --light: #f4f5ff;
    --font-dark: #494949;
    --font-light: #ffffff;
    --white: #ffffff;
    --light-grey: #f2f2f2;
    --grey: rgba(217, 217, 217, 1);
    --box-shadow-color: rgba(0, 0, 0, 0.25);
    /* breakpoints */
    --width-lg: 1216px;

    /* font sizes */
    --h1: 56px;
    --h2: 45px;
    --h3: 36px;
    --h4: 28px;
    --h5: 22px;
    --h6: 20px;
    --p: 16px;
}

.loading,
.babies-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content .spinner,
.babies-loading-content .spinner {
    border: 16px solid var(--light); /* Light grey */
    border-top: 16px solid var(--primary); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal-backdrop {
    z-index: 99 !important;
}

.modal-dialog {
    padding-top: 5rem;
}

.fw-bold-s {
    font-weight: 500 !important;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

p {
    font-size: var(--p);
}

a {
    text-decoration: none;
}

ul li {
    border-radius: 5px !important;
}

strong {
    font-weight: 600;
}

textarea {
    padding: 0.5rem 1rem;
}

input {
    border-radius: 30px;
    border: 1px solid var(--font-dark);
    padding: 0.5rem 1rem;
    /* min-width: 200px; */
}

input:focus,
input:active,
textarea:focus,
textarea:active {
    outline: none;
    /* border: 1px solid var(--primary) !important; */
}
.fs-h1 {
    font-size: var(--h1) !important;
}

.fs-h2 {
    font-size: var(--h2) !important;
}

.fs-h3 {
    font-size: var(--h3) !important;
}

.fs-h4 {
    font-size: var(--h4) !important;
}

.fs-h5 {
    font-size: var(--h5) !important;
}

.fs-h6 {
    font-size: var(--h6) !important;
}

.br-10 {
    border-radius: 10px;
}

.w-30 {
    width: 30%;
}

.bg-app-primary {
    background-color: var(--primary) !important;
}

.bg-app-secondary {
    background-color: var(--secondary) !important;
}

.bg-app-primary-light {
    background-color: var(--primary-light);
}

.text-app-secondary {
    color: var(--secondary);
}

.text-app-primary {
    color: var(--primary) !important;
}

section {
    width: 100%;
    z-index: 99;
    position: relative;
    /* border: 1px solid red; */
}

html,
main {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

.content-container {
    width: 100%;
    max-width: var(--width-lg);
    margin: auto;
    position: relative;
    z-index: 99;
    padding: 1rem 1rem;
}

.section-container {
    padding: 3rem 2rem;
}

.section-container-lg {
    padding: 4rem 2rem;
}

.px-2r {
    padding-inline: 2rem;
}

.wave-p-top {
    padding-top: 2rem;
}

.wave-p-bottom {
    padding-bottom: 3rem;
}

.app-btn {
    outline: 0;
    border: none;
}

.text-btn {
    background: none;
    outline: none;
    border: none;
}

.text-btn:focus {
    outline: none;
}

.text-btn-hover-basic:hover {
    color: var(--grey);
}

.app-btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 16px;
}

.app-btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.app-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
}

.app-btn-primary:hover {
    background-color: var(--primary-hover);
}

.app-btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
}

.app-btn-white:hover {
    background-color: var(--light);
}

/* .main-content {
    padding-top: 800px;
} */

/* MY PHOTOS */
.my-image-main-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.my-image-section-container {
    width: 50%;
    min-width: 300px;
    padding: 1rem;
}

.my-image-link {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-decoration: none;
}

.my-image-photo {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.image-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    transition: background-color 0.3s;
}

.my-image-link:hover .image-text {
    background-color: var(--primary-hover);
}

/* END MY PHOTOS */
/* HOME */

.elephant-img {
    position: absolute;
    right: 2%;
    bottom: 6%;
}

#homeSlideCarousel {
    margin-top: -7rem;
}

.home-slide-text {
    /* position: absolute;
    right: 10%; */
    top: -35%;
    display: flex;
    justify-content: flex-end;
}

.home-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-bg {
    /* position: absolute; */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 965.5px;
    top: 0;
    z-index: 0;
    overflow: hidden;
    padding: 10rem 0 0 0;
    /* clip-path: url("../images/wave.svg"); */
}

.home-bg .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.home-container {
    display: flex;
    justify-content: flex-end;
}

.fancy-title {
    font-family: "Dancing Script", sans-serif;
    color: var(--secondary);
    font-size: 30px;
    /* text-align: center; */
}

.primary-title {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--h3);
}

/* CATEGORY CARD */

.category-card-container {
    width: 30%;
    /* max-width: 395px; */
    min-width: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 1rem;
}

.category-img {
    box-shadow: 1px 1px 8px 0px var(--box-shadow-color);
    width: 100%;
    border-radius: 10px;
    z-index: 0;
}

/* END CATEGORY CARD */
/* SERVICES */
.services-bg {
    background-image: url("../images/backgrounds/babybox_services_bg.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 1036px; */
    min-height: max-content;
}

.services-container {
    display: flex;
    justify-content: space-between;
}

.ref-img-lg {
    display: block;
}

.ref-img-sm {
    display: none;
}

.ref-btn-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0 0;
}

.service-text-container {
    width: 70%;
    padding: 2rem 0 0 1rem;
}

.service-img-container {
    width: 25%;
    margin-top: -2rem;
    min-width: fit-content;
}

.service-card-container,
.service-dash-card-container {
    background-color: var(--white);
    border-radius: 10px;
    width: 30%;
    min-width: 233px;
    padding: 0.5rem;
    margin: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card-container:hover {
    box-shadow: 0px 0px 20px 0px var(--box-shadow-color);
}
.service-card-container > h6,
.service-dash-card-container > h6 {
    font-size: 18px;
}

.service-text-btn {
    color: var(--primary);
    font-weight: 500;
}

.service-text-btn:hover {
    color: var(--primary-hover) !important;
}

.service-text-btn:active {
    color: var(--secondary);
}

.service-text-btn:visited {
    color: var(--secondary-hover);
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

/* END SERVICES */

/* WEBSHOP PROMO */

.promo-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.promo-card-container {
    display: flex;
    flex-direction: column;
}

.promo-img-container {
    display: block;
}

.webshop-promo-container {
    background-size: cover;
    background-position: center;
    width: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    margin: 1rem 0;
    position: relative;
    border-radius: 10px;
}

.promo-hover {
    background-color: rgba(66, 169, 166, 0.6);
    width: 230px;
    height: 230px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

.webshop-promo-icon {
    margin-top: 2rem;
    color: var(--white);
}

.webshop-promo-text {
    /* position: absolute;
    bottom: 56px;
    right: 70px; */
    font-weight: 600;
    color: var(--white);
    z-index: 1000;
}

.webshop-promo-text-long {
    /* position: absolute;
    bottom: 10px;
    right: 20px; */
    color: var(--white);
}

.webshop-promo-img {
    height: 230px;
    width: 230px;
}

/* END WEBSHOP PROMO */

/* END HOME */

/* RESULTS */

.results-container {
    display: flex;
}

.draw-container-lg {
    display: block;
}

.draw-container-sm {
    display: none;
}

.result-title-container {
    width: 25%;
    padding-top: 4rem;
    margin-right: 2rem;
}

.result-container {
    width: 70%;
    /* border: 1px solid red; */
}

.result-draw-container {
    width: 100%;
    height: 200px;
    background-image: url("../images/icons/result-dotted_line_good.svg");
    /* background-repeat: repeat-x; */
    background-position: top;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.draw-item-container {
    min-width: 132px;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
}

.result-draw-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #b0e0df;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.3rem;
}

.draw-item-1 {
    margin-top: 7.3rem;
}
.draw-item-2 {
    margin-top: 6.8rem;
}
.draw-item-3 {
    margin-top: 7rem;
}
.draw-item-4 {
    margin-top: 6.3rem;
}

.result-draw-item > img {
    width: 100%;
    height: 70%;
}

.result-text-container {
    display: flex;
    justify-content: space-between;
}

/* .result-text-item {
    border: 1px solid red;
} */

.result-text-item > h4 {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    min-width: 132px;
}
.result-text-item > p {
    text-align: center;
}

/* END RESULTS */

/* NEWS */

.sign-up-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin-inline: auto;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.news-cards-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-card-container {
    width: 30%;
    width: 301px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-right: 2rem; */
    position: relative;
}

.news-card-container > img {
    width: 100%;
    max-width: 301px;
}

.news-date-container {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 500;
    font-size: 20px;
    width: 80px;
    text-align: left;
    padding-left: 0.5rem;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 8px;
    box-shadow: 0px 0px 5px 1px var(--font-dark);
}

.news-date-container-dash {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 500;
    font-size: 20px;
    width: 72px;
    text-align: left;
    padding-left: 0.5rem;
    border-radius: 5px;
    position: absolute;
    top: 75px;
    left: 20px;
    box-shadow: 0px 0px 5px 1px var(--font-dark);
}

/* END NEWS */

/* REVIEWS */
.reviews-bg {
    background-color: rgba(66, 169, 166, 0.15);
}

.review-container {
    display: flex;
    margin-top: 1rem;
}

.reviews-container {
    background-color: var(--white);
    display: flex;
    border-radius: 10px;
    margin-top: 3rem;
    z-index: 50;
    max-width: 60%;
    min-width: 50%;
}

.reviews-img-container {
    margin-left: -3rem;
    position: relative;
    display: block;
    z-index: 0;
}

.review-quote-container {
    position: absolute;
    top: -10px;
    left: 10px;
}

/* CAROUSEL */

.carousel-control-prev,
.carousel-control-next {
    color: rgba(227, 242, 242, 1) !important;
    width: 10%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: var(--primary-hover) !important;
}

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 32px;
}

.carousel-indicators button {
    background-color: var(--primary-light) !important;
    border: 1px solid #fff !important;
    border-radius: 50% !important;
    width: 14px !important;
    height: 14px !important;
    text-indent: -999px;
}

.carousel-indicators button::marker {
    visibility: hidden !important;
    display: none !important;
}

.carousel-indicators button.active {
    background-color: var(--primary) !important;
}

.carousel-inner {
    padding-bottom: 2rem;
    padding-top: 1rem;
    width: 75%;
}

.carousel-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* text-align: center; */
}

.carousel-item.active > h6 {
    justify-self: self-start;
}
/* END CAROUSEL */

/* END REVIEWS */

/* GALLERY */

.gallery-cat-scroll-container {
    display: flex;
    align-items: center;
    position: relative;
    /* padding: 0.5rem; */
    /* padding-top: .5rem; */
    background-color: var(--light-grey);
    border-radius: 5px;
}

.gallery-cat-container {
    /* margin-top: 1rem; */
    display: flex;
    justify-content: flex-start;
    /* padding: 20px; */
    padding: 0.2rem;
    /* background-color: var(--light-grey); */
    width: max-content;
    margin-inline: auto;
    /* border-radius: 10px; */
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
}

.gallery-cat-mobile {
    display: none;
}

.active-cat-btn {
    background-color: rgba(227, 242, 242, 1) !important;
    color: var(--primary);
}

.gallery-cat-btn {
    padding: 10px 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    min-width: 110px;
}

.gallery-cat-btn.active {
    background-color: darkgray;
}

.gallery-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.gallery-images {
    width: 100%;
    display: flex;
    /* width: max-content; */
    flex-wrap: wrap;
}

.gallery-column {
    /* border: 1px solid red; */
    display: grid;
    justify-content: center;
    flex: 1; /* Equal width for each column */
    grid-auto-rows: min-content; /* Each row adjusts to its content height */
    gap: 10px;
    min-width: 212px;
    margin-right: 10px;
}

.gallery-image {
    overflow: hidden;
    width: 212px;
    cursor: pointer;
}

.gallery-image img {
    width: 100%; /* Responsive image scaling */
    height: auto; /* Maintain aspect ratio */
}

.image-modal-close {
    position: absolute;
    right: 5%;
    top: 3%;
}

.image-modal-body {
    display: flex;
    justify-content: center;
    max-width: fit-content;
    position: relative;
    padding: 0;
}

/* END GALLERY */

/* FOOTER */

.footer-btn {
    width: 143px;
}

.footer-link,
.footer-link:visited {
    color: white;
}

.footer-link-black,
.footer-link-black:visited {
    color: var(--font-dark);
}

.footer-link,
.footer-link-black {
    margin: 0.5rem 0;
}

.footer-link-black:hover,
.footer-link:hover {
    color: var(--secondary);
}

.bg-app-grey {
    background-color: var(--grey);
}

.sec-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-outer-col {
    display: flex;
    min-width: 300px;
    /* width: 50%; */
}

.footer-outer-lg {
    width: 65%;
}

.footer-outer-sm {
    width: 35%;
}

.footer-col-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.footer-logo {
    margin-left: -3rem;
    margin-bottom: 0.5rem;
    width: 250px;
    height: 103.66px;
}

.cookie-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 0.5rem 0;
}

.cookie-flex > .cookie-text-container {
    width: 80%;
}

.cookie-link {
    font-weight: 500;
    color: var(--white);
}

.cookie-link:hover {
    color: var(--primary-hover);
}

/* END FOOTER */

/* BREADCRUMBS */
.app-breadcrumb-container {
    background-color: var(--primary-light) !important;
    /* padding: 0.5rem 0; */
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.breadcrumb-link {
    color: var(--font-dark);
}

.breadcrumb-item {
    font-size: 14px !important;
}

.breadcrumb-link:hover {
    color: var(--secondary);
}

.last-breadcrumb-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 22px;
}

.baby-gal-text,
.baby-gal-text-big {
    font-family: "Dancing Script", sans-serif;
    color: var(--secondary);
    font-size: var(--h2);
    margin-bottom: 0;
}

.baby-gal-text-big {
    display: none;
}
/* END BREADCRUMBS */
/* MEDIA QUERIES */

@media screen and (max-width: 1144px) {
    .service-card-container {
        background-color: var(--white);
        border-radius: 10px;
        width: 45%;
        min-width: 240px;
        padding: 1rem;
        margin: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 1027px) {
    .gallery-cat-scroll-container {
        display: none;
    }

    .gallery-cat-mobile {
        display: block;
    }
}

@media screen and (max-width: 994px) {
    .service-card-container {
        background-color: var(--white);
        border-radius: 10px;
        width: 45%;
        min-width: 240px;
        padding: 1rem;
        margin: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 890px) {
    .service-card-container {
        background-color: var(--white);
        border-radius: 10px;
        width: 100%;
        min-width: 240px;
        padding: 1rem;
        margin: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 1100px) {
    .draw-item-1 {
        margin-top: 6.8rem;
    }
    .draw-item-2 {
        margin-top: 6.3rem;
    }
    .draw-item-3 {
        margin-top: 6.5rem;
    }
    .draw-item-4 {
        margin-top: 5.8rem;
    }
}
@media screen and (max-width: 970px) {
    .baby-gal-text {
        display: none;
    }

    .baby-gal-text-big {
        display: block;
        margin-top: -1rem;
        margin-bottom: 1rem;
    }

    .reviews-img-container > img {
        max-width: 100%;
    }
}
@media screen and (max-width: 940px) {
    /* RESULT */

    .results-container {
        flex-direction: column;
        align-items: center;
    }

    .result-title-container {
        width: 75%;
        text-align: center;
        padding: 2rem 0 0 0;
        margin-right: 0;
    }

    .result-title-container > p,
    .section-container > p {
        width: 75% !important;
    }

    /* END RESULT */

    /* WEBSHOP PROMO */

    /* .promo-container {
        flex-direction: column;
        align-items: center;
    } */

    .promo-card-container {
        /* flex-direction: row; */
        width: 30%;
    }

    .promo-img-container {
        /* flex-direction: row; */
        width: 30%;
    }

    .promo-img-container > img {
        width: 100%;
        height: auto;
        min-width: 230px;
    }

    .webshop-promo-container {
        background-size: cover;
        background-position: center;
        width: 100%;
        height: auto;
        min-height: 180px;

        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        margin: 1rem 0;
        position: relative;
        border-radius: 10px;
    }

    /* END PROMO */
}

@media screen and (max-width: 875px) {
    .elephant-img {
        position: absolute;
        right: 2%;
        bottom: 3%;
    }

    .home-bg {
        height: 890px;
    }

    .result-container {
        width: 90%;
        /* border: 1px solid red; */
    }

    .section-container {
        padding: 1rem;
    }

    .no-px {
        padding: 1rem 0 1rem 0;
    }

    .no-pbx {
        padding: 1rem 0 0 0;
    }

    .section-container-lg {
        padding: 1rem;
    }
    /* SERVICES */

    /* .services-bg {
        background-image: url("../images/backgrounds/babybox_services_bg.webp");
        background-size: cover;
        background-position: center;
        width: 100%;
        /* height: 1036px; */
    /* min-height: max-content; */
    /* } */

    .services-container {
        /* display: flex; */
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

    .service-cards-container {
        justify-content: center;
    }

    .ref-img-lg {
        display: none;
    }

    .ref-img-sm {
        width: 100%;
        height: auto;
        display: block;
        /* margin-top: 1rem; */
    }

    .ref-btn-container {
        display: flex;
        justify-content: center;
        /* margin: 1rem 0 0 0; */
        position: absolute;
        bottom: 15%;
        left: 40%;
    }

    .ref-btn-container > .app-btn-primary {
        padding: 0.5rem 2rem;
    }

    .service-text-container {
        width: 100%;
        padding: 2rem 0 0 0;
    }

    .service-img-container {
        width: 100%;
        height: min-content;
        margin-top: -2rem;
        min-width: fit-content;
        position: relative;
    }

    .service-card-container {
        background-color: var(--white);
        border-radius: 10px;
        width: 45%;
        min-width: 240px;
        padding: 1rem;
        margin: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    /* END SERVICES */

    /* REVIEWS */

    /* .reviews-container > .carousel-inner {} */

    .review-container {
        width: 100%;
    }

    .reviews-container {
        width: 60%;
    }

    .reviews-container {
        background-color: var(--white);
        display: flex;
        border-radius: 10px;
        margin-top: 3rem;
    }

    .reviews-img-container {
        margin-left: -10rem;
    }

    /* END REVIEWS */
}

@media screen and (max-width: 750px) {
    .elephant-img {
        position: absolute;
        right: 2%;
        bottom: 3%;
    }

    .home-bg {
        height: 730px;
    }

    /* .main-content {
        padding-top: 600px;
    } */

    .home-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 75%;
    }

    .home-container > div {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .home-slide-text {
        /* border: 1px solid red; */
        right: 0;
        top: 18%;
    }

    .home-text-container {
        align-items: center;
        width: 100%;
    }

    .promo-img-container {
        display: none;
    }

    .promo-card-container {
        width: 45%;
    }

    .webshop-promo-container {
        min-height: 230px;
    }
    /* REVIEWS */

    .review-container {
        margin-top: 0;
    }

    .reviews-img-container {
        display: none;
    }

    .reviews-container {
        width: 100%;
        max-width: 100%;
    }

    /* .carousel-inner {} */

    /* END REVIEWS */

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-col-container {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    .footer-col-container > h6 {
        margin: 1rem 0 0.5rem 0;
    }

    .footer-ref-col {
        align-items: flex-start !important;
    }

    .footer-outer-lg,
    .footer-outer-sm {
        width: 90%;
    }

    .footer-logo {
        margin-left: -3rem;
        margin-bottom: 0.5rem;
        width: 250px;
        height: 103.66px;
    }

    /* .footer-baby-img {
        display: none;
    } */

    /* END FOOTER */

    .draw-item-1 {
        margin-top: 5.3rem;
    }
    .draw-item-2 {
        margin-top: 4.8rem;
    }
    .draw-item-3 {
        margin-top: 5rem;
    }
    .draw-item-4 {
        margin-top: 5.3rem;
    }

    .result-title-container {
        width: 75%;
        text-align: center;
        padding: 0 0 0 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 625px) {
    .news-card-container > .px-3 {
        padding: 1rem 0 0 0 !important;
    }
    .draw-container-lg {
        display: none;
    }

    .draw-container-sm {
        display: block;
    }

    .result-container {
        width: 100%;
        /* border: 1px solid red; */
    }

    .result-draw-container {
        width: 100%;
        height: 150px;
        justify-content: space-around;
    }

    .result-text-container {
        justify-content: space-around;
    }

    .result-title-container > p,
    .section-container > p {
        width: 100% !important;
    }

    .footer-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-outer-col {
        flex-direction: column;
        padding-left: 2rem;
        /* align-items: center; */
    }

    .footer-outer-lg {
        width: 100%;
    }

    .footer-outer-sm {
        width: 100%;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-col-container {
        width: 100%;
    }

    .footer-ref-col {
        display: none;
    }
}

@media screen and (max-width: 511px) {
    .last-news-card {
        display: none;
    }

    .news-card-container {
        width: 45%;
        /* width: 301px; */
        /* min-width: 150px; */
    }

    .w-75 {
        width: 100% !important;
    }
    .w-50 {
        width: 95% !important;
    }

    h1,
    .fs-h1 {
        font-size: var(--h2) !important;
    }

    h2,
    .fs-h2 {
        font-size: var(--h3) !important;
    }

    h3,
    .fs-h3 {
        font-size: var(--h4) !important;
    }

    .wave-p-top {
        padding-top: 1rem;
    }

    .service-cards-container {
        margin-bottom: 2rem;
    }

    .service-card-container {
        background-color: var(--white);
        border-radius: 10px;
        width: 80%;
        min-width: 240px;
        padding: 1rem;
        margin: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .service-card-container > h6 {
        width: 75%;
        margin-inline: auto;
    }

    .ref-btn-container {
        left: 32%;
        bottom: 8%;
    }
}

@media screen and (max-width: 470px) {
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .home-slide-desc {
        display: none;
    }

    .home-slide-text {
        right: 0;
        top: 18%;
    }

    .elephant-img {
        position: absolute;
        right: 2%;
        bottom: 3%;
    }

    .px-2r {
        padding-inline: 0;
    }

    .category-card-container {
        width: 100%;
        margin: 0 0 3rem 0;
    }

    .category-card-container > p {
        padding: 0 0.5rem !important;
    }

    .category-img {
        width: 100%;
        box-shadow: none;
    }

    .sign-up-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
        /* margin-inline: auto; */
        margin-top: 1rem;
    }

    .sign-up-container > button {
        margin-top: 3rem;
        margin-inline: 0;
        margin-bottom: 2rem;
    }

    .home-bg {
        height: 500px;
    }
    /* .main-content {
        padding-top: 400px;
    } */
    .service-cards-container {
        margin-bottom: 2rem;
    }

    .promo-container {
        flex-direction: column;
        align-items: center;
    }
    .promo-card-container {
        width: 90%;
    }

    .webshop-promo-container {
        min-height: 294.19px;
    }

    .news-card-container {
        margin-right: 0;
    }
    .draw-item-1 {
        margin-top: 3.3rem;
    }
    .draw-item-2 {
        margin-top: 3rem;
    }
    .draw-item-3 {
        margin-top: 3.5rem;
    }
    .draw-item-4 {
        margin-top: 3.3rem;
    }
}

@media screen and (max-width: 400px) {
    /* FOOTER */
    /* .footer-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-col-container {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    .footer-col-container > h6 {
        margin: 1rem 0 0.5rem 0;
    } */

    .footer-container {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-outer-col {
        flex-direction: column;
        padding-left: 2rem;
        /* align-items: center; */
    }

    .footer-outer-lg {
        width: 100%;
    }

    .footer-outer-sm {
        width: 100%;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-col-container {
        width: 100%;
    }

    .promo-img-container {
        display: none;
    }

    /* .footer-logo {
        margin-left: -3rem;
        margin-bottom: 0.5rem;
        width: 250px;
        height: 103.66px;
    } */

    /* .footer-baby-img {
        display: none;
    } */

    /* END FOOTER */
}
/* END MEDIA QUERIES */
