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

/* Edit buttons z-index fix */
.text-btn {
    position: relative;
    z-index: 999 !important;
    pointer-events: auto !important;
}

/* Disable pointer events on the baby image to prevent it from blocking buttons */
.hospital-big-baby {
    pointer-events: none;
}

/* Ensure edit buttons near the baby image are always clickable */
.hospital-big-baby ~ .text-btn,
.hospital-big-baby + .text-btn {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 9999 !important;
}

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

.price-cat-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    white-space: nowrap; /* Ensure buttons stay on a single line */
}

.price-cat-container::-webkit-scrollbar {
    display: none; /* Hide default scrollbar */
}

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

.price-cat-accordion {
    background-color: rgba(66, 169, 166, 0.05) !important;
}

.price-radio {
    min-width: 10px;
    margin-right: 0.5rem;
}

/* Custom radio to checkbox style */
.price-radio {
    display: none;
}

.price-radio + .price-radio-label {
    position: relative;
    padding-left: 30px; /* Space for the custom checkbox */
    cursor: pointer;
    display: inline-block;
}

.price-radio + .price-radio-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    background-color: transparent;
}

.price-radio:checked + .price-radio-label::before {
    content: "\2714"; /* Checkmark character */
    font-size: 16px;
    color: white;
    background-color: var(--primary);
    text-align: center;
    line-height: 18px;
}

.accordion-button {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none;
}

.accordion-body {
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.price-cat-btn {
    background-color: transparent;
    outline: 0;
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
}

.active-price-cat {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    font-weight: 500;
}

.price-cards-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.price-card-container {
    width: 260px;
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    flex: 0 0 23%;
    /* Calculate space between cards */
    margin-right: calc((100% - 4 * 24%) / 3);
    margin-bottom: 20px;
}

.price-card-container > img {
    width: 100%;
}

.price-card-text {
    padding: 0.5rem 0.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* END PRICES */

/* HOSPITAL */

.product-order-bg {
    background-image: url("../images/backgrounds/babybox_services_bg.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
}

.hospital-title-container {
    display: none;
}

.mama-photo-text-container {
    display: none;
}

.hospital-title-mobile {
    display: none;
}

.hospital-title-desktop {
    display: block;
}

.mama-photo-text-desktop {
    display: block;
}

.mama-photo-text-mobile {
    display: none;
}

.hospital-section-text {
    /* padding: 0 0.5rem; */
    width: 45%;
}

.hospital-big-baby {
    /* position: absolute; */
    margin-top: -12rem;
}

.hospital-service-link {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
    text-align: start;
}

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

.package-content-list {
    list-style: none;
    font-weight: 300;
    padding-left: 0;
}

.package-content-list li {
    position: relative;
    padding-left: 30px;
}

.package-content-list li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 2px;
    background-color: var(--font-dark);
    border-radius: 50%;
}

.hospital-section-container {
    display: flex;
}

.hospital-section-text > div > img,
.hospital-section-container > div > img,
.hospital-section-container-reverse > div > img {
    max-width: 560px;
}

/* END HOSPITAL */

/* KINDERGARDEN */
.kinder-carousel-item {
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}
/* END KINDERGARDEN */

/* BABY MAMA */

.mama-photo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(66, 169, 166, 0.05);
    padding: 1rem 1rem 0 1rem;
    border-radius: 10px;
}

.mama-img {
    margin-top: -25rem;
}

.mama-section-text {
    width: 55%;
    padding-top: 3rem;
    padding-left: 1rem;
}
/* END BABY MAMA */

/* FAMILY */

.family-gift-img {
    margin-top: -6rem;
    margin-left: -6rem;
    margin-right: 2rem;
}

.family-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(66, 169, 166, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

/* END FAMILY */

/* SHIPPING */

.ship-info-container {
    background-color: rgba(66, 169, 166, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.ship-info-container > p {
    margin-bottom: 0;
}

.ship-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ship-text-container {
    background-color: rgba(245, 250, 250, 1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-left: -4rem;
}

.ship-text-container > h4 {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 1rem;
}

/* END SHIPPING */

/* CONTACT */

/* ABOUT US */
.about-ceo-container {
    background-color: rgba(227, 242, 242, 1);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
}
.about-sliders {
    display: flex;
    justify-content: space-between;
}

.about-slider-container {
    width: 48%;
    background-color: rgba(66, 169, 166, 0.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.about-reviews-container {
    background-color: var(--white);
    display: flex;
    border-radius: 10px;
    z-index: 50;
    max-width: 100%;
    width: 100%;
}

/* END ABOUT US */

/* CONTACT INFO */
.contact-info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 421px;
}

.contact-data-container {
    width: 45%;
}

.contact-form-container input,
.contact-form-container textarea,
.contact-form-container select {
    background-color: #e5f0f0;
    border: none;
    border-radius: 10px;
    width: 100%;
}

.info-icon-bg {
    background-color: rgba(66, 169, 166, 0.05);
    border-radius: 50%;
    padding: 0.2rem;
    margin-right: 0.5rem;
    /* margin-bottom: 0.5rem; */
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-link {
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 1rem;
    display: block;
}

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

.info-form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* END CONTACT INFO */

/* FAQ */

.faq-section {
    width: 100%;
    margin: auto;
    background-color: white;
    padding: 0.5rem;
}
.faq {
    border-radius: 10px;
    background-color: var(--white);
    /* border: 3px solid var(--secondary); */
    margin: 15px 0;
    overflow: hidden;
}

.question {
    font-size: 24px;
    font-weight: 500;
    background-color: rgba(229, 240, 240, 1);
    color: var(--primary);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question::after {
    content: "+";
    font-size: 20px;
    font-weight: bold;
}

.question.active::after {
    content: "-";
}

.answer {
    font-size: 16px;
    color: var(--font-dark);
    background-color: rgba(66, 169, 166, 0.05);
    font-weight: 300;
    padding: 20px;
    margin: 0;
    display: none;
}

.answer table {
    border-collapse: collapse; /* Ensures no double borders */
    width: 100%; /* Optional: to make the table take the full width */
}

.answer table th,
.answer table td {
    border: 1px solid #000000;
    padding: 5px;
}

/* COLLEGUES */

.mt-collegue {
    margin-top: -1.5rem !important;
}

.collegue-card-container {
    min-width: 280px;
    width: 280px;
    /* min-width: fit-content; */
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
    flex: 0 0 23%;
    margin-right: calc((100% - 4 * 24%) / 3);
    margin-bottom: 20px;
}

.collegue-card-container > img {
    width: 100%;
    height: 252.62px;
    border-radius: 5px;
}

.collegue-hospital {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-radius: 5px;
    width: 100%;
    padding: 0.5rem;
    margin: 1rem 0;
    height: 70px;
}

.collegue-card-container > .d-flex > .baby-date-label {
    font-size: 14px;
}

.collegue-text-container {
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.collegue-hospital-img {
    max-width: 50%;
    max-height: 100%;
}

.collegue-gallery-btn {
    font-size: 12px !important;
}

/* Ensure all text containers have the same height */
.collegue-text-container {
    min-height: 180px; /* Adjust this value as necessary */
}

.collegue-name {
    min-height: 3em; /* Adjust this value as necessary to match the height of the tallest title */
}

.collegue-position {
    min-height: 1.5em; /* Adjust this value if necessary */
}

/* END COLLEGUES */

/* END CONTACT */

/* ACTUALS */
.timeline-container {
    /* position: relative; */
    padding: 0 2rem;
    max-width: 1180px;
    margin-inline: auto;
    /* border: 1px solid red; */
}

.year-label,
.month-label {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0 auto 2rem auto;
    background-color: rgba(229, 240, 240, 1);
    color: var(--primary);
    padding: 0.2rem;
    border-radius: 50px;
    width: 160px;
}

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

.timeline-item {
    /* border: 1px solid blue; */
    /* position: relative; */
    width: 50%;
    margin-bottom: 20px;
    display: flex;
}

.timeline-item.left {
    left: 0;
    flex-direction: row-reverse;
}

.timeline-item.right {
    left: 65%;
    flex-direction: row;
}

.time-line {
    height: 5px;
    background-color: rgba(229, 240, 240, 1);
    /* position: absolute; */
    align-self: flex-end;
    margin-bottom: 5rem;
}

.time-line-left {
    left: 100%;
    bottom: 15%;
    width: calc(45% - 1px);
}

.time-line-right {
    left: -43%;
    bottom: 15%;
    width: calc(45% - 1px);
}

.timeline-item.right::before {
    left: 100%; /* Align dots on the timeline for right items */
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: rgba(229, 240, 240, 1);
}

.big-z {
    z-index: 12;
}

.actual-card-container {
    background-color: rgba(229, 240, 240, 1);
    border-radius: 14px;
    max-width: 301px;
    min-width: 301px;
}

.actual-card-container:hover {
    background-color: var(--primary-light);
}

.actual-card-img {
    /* height: 195px; */
    border-radius: 10px;
}

.actual-text-container {
    padding: 1rem;
}

.actual-big-container {
    background-color: rgba(227, 242, 242, 0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}
.actual-big-img {
    /* height: 327px; */
    width: 301px;
    margin-top: -12rem;
    border-radius: 10px;
}

.actual-section {
    padding-top: 14rem !important;
}

.actual-card-link {
    color: var(--font-dark);
}

/* END ACTUALS */

/* HOSPITAL GALLERIES */

.hos-gal-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.hos-gal-card-container {
    background-color: rgba(227, 242, 242, 0.4);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    width: 200px;
    height: 200px;
    margin-bottom: 6rem;
    border-radius: 10px;
    color: #1c7976; /*var(--primary);*/
    font-weight: 300;
    font-size: 16px;
    cursor: pointer;
    flex: 0 0 18%;
    margin-right: calc((100% - 5 * 19%) / 4);
    border: 1px solid rgba(66, 169, 166, 0.2);
    /* flex-grow: 1; */
}
.hos-gal-card-container:hover {
    background-color: var(--primary-light-hover);
}

.hos-gal-img-container {
    background-color: var(--white);
    border: 2px solid rgba(227, 242, 242, 0.4);
    padding: 1rem;
    border-radius: 10px;
    margin-top: -4.5rem;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hos-gal-img-container > img {
    width: 100%;
}

.hos-gal-text-container {
    flex-grow: 1;
    color: rgba(28, 121, 118, 1);
}

.hos-search-container {
    position: relative;
    width: 200px;
}

.hos-search-input {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 300;
    width: 30%;
    border: none;
}

.hos-search-input-icon {
    position: absolute;
    color: var(--primary);
    right: 5%;
    bottom: 34%;
}

.search-input-icon {
    position: absolute;
    color: var(--primary);
    right: 2%;
    bottom: 42%;
}

.search-input-icon:hover {
    color: var(--primary-hover);
}

.hos-search-input::placeholder {
    color: var(--primary);
    font-weight: 300;
}

.hos-gal-date-container,
.hos-gal-date-mobile-container {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    /* padding: 20px; */
    padding: 0.2rem;
    background-color: rgba(66, 169, 166, 0.05);
    width: max-content;
    margin-inline: auto;
    border-radius: 10px;
    width: 100%;
}

.hos-gal-date-mobile {
    display: none;
}

.hos-gal-date-mobile > .accordion {
    width: 49%;
}

.scroll-container {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.date-buttons {
    width: 100%;
}

.date-btn {
    margin: 0 0.5rem;
    min-width: 50px;
    font-weight: 300;
    /* background-color: rgba(66, 169, 166, 0.05) !important; */
    background-color: transparent;
}

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

.active-date-btn {
    color: var(--primary);
    font-weight: 400;
}

.active-date-btn:hover {
    color: var(--primary-hover);
}

.date-buttons button {
    display: inline-block;
}

.scroll-arrow {
    cursor: pointer;
    font-size: 16px;
    color: var(--primary);
    border: none;
    outline: none;
    background-color: transparent;
}

.scroll-arrow:hover {
    color: var(--primary-hover);
}

.year-container {
    display: flex;
    width: 36%;
    min-width: 409px;
}

.month-container {
    display: flex;
    width: 40%;
    min-width: 450px;
}

/* BABIES */
.babies-list-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    align-items: start;
    margin-top: 2rem;
}

.babies-controls-container {
    display: flex;
    flex-direction: row;
    font-size: 16px;
}

.babies-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.babies-row:last-child .baby-card:last-child {
    margin-right: 0; /* Remove margin for the last card in the row */
}

.babies-row.justify-content-start .baby-card {
    margin-right: 20px; /* Fixed margin for less than 4 cards, adjust as necessary */
}

.babies-row.justify-content-start .baby-card:last-child {
    margin-right: 0; /* Remove margin for the last card */
}

.baby-card-container {
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 0.5rem;
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 266px;
    /* Adjust based on your design, ensures no more than 4 cards in a row */
    flex: 0 0 23%;
    /* Calculate space between cards */
    margin-right: calc((100% - 4 * 23.5%) / 3);
    margin-bottom: 20px; /* Space between rows */
}

.baby-card-container:hover {
    background-color: var(--primary-light-hover);
    cursor: pointer;
}

.baby-card-girl-container,
.baby-modal-girl-input,
.baby-modal-girl-img {
    background-color: var(--girl-color) !important;
}
.baby-card-girl-container:hover {
    background-color: var(--girl-hover) !important;
}

.baby-text-container {
    padding: 1rem 1rem 1rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-start;
}

.baby-img {
    width: 250px;
    height: 180px;
    border-radius: 10px;
}

.baby-date-label {
    line-height: 1.2;
    width: 95%;
    font-weight: 300;
}

.baby-date-icon {
    width: 5%;
}

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

.baby-modal-container {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 1200px;
}

.baby-modal-content {
    overflow: visible !important;
    height: fit-content !important;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    background-color: transparent;
    border: none;
}

.baby-modal-sender {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.captcha-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    align-items: center;
}

.captcha-img-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.baby-modal-share {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.baby-modal-body {
    overflow-y: visible !important;
}

.baby-modal-body-container {
    display: flex;
    justify-content: space-between;
}

.baby-modal-img-col {
    width: 45%;
}

.baby-modal-form-col {
    width: 55%;
    padding: 1rem;
}

.baby-modal-img-container {
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 1rem;
    max-width: 40%;
    min-width: fit-content;
}

.baby-modal-img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
}

.baby-modal-img-text {
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
}

.baby-modal-btn {
    background-color: transparent;
    color: var(--white);
    font-size: 36px;
    border: none;
    outline: none;
    padding: 0 1rem;
}

.baby-modal-btn:disabled {
    opacity: 0.5;
}

.baby-modal-btn:hover {
    color: var(--light-grey);
}

.baby-modal-btn:focus {
    outline: none;
}

.baby-data-label {
    white-space: nowrap;
    margin-right: 0.2rem;
    font-weight: 300;
}

.baby-modal-footer {
    border-top: none !important;
}

.baby-modal-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.baby-modal-input > textarea,
.captcha-input {
    background-color: var(--primary-light);
    border: none;
    border-radius: 10px;
}

.baby-modal-in {
    background-color: var(--primary-light);
    border: none;
    border-radius: 10px;
}

.captcha-input {
    width: 20%;
    min-width: 20% !important;
}

.captcha-btn {
    color: var(--primary);
    background: none;
    outline: none;
    border: none;
    font-size: 20px;
}

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

.page-link {
    font-size: 16px !important;
    color: var(--primary);
}

.active > .page-link,
.page-link.active {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary);
}

/* END BABIES */

/* END HOSPITAL GALLERIES */

/* PRODUCTS */
.products-container {
    /* padding: 1rem; */
}

.products-container p {
    margin-bottom: 0.25rem !important;
}

.photo-make-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    /* position: relative; */
    /* margin-top: 2rem; */
}

.photo-make-text {
    /* margin-left: 5rem; */
    z-index: 100;
    margin-top: 1rem;
    width: 60%;
}

.photo-make-img-container {
    position: relative;
    width: 40%;
}

.photo-make-img {
    position: absolute;
    left: 0;
}

/* DIY */
.tip-img {
    position: absolute;
    right: 0;
}

.tip-img-1 {
    top: 0;
    right: 220px;
}

.tip-img-2 {
    top: 150px;
    right: 0;
}

.tip-img-3 {
    top: 220px;
    right: 220px;
}

.diy-list > li::marker {
    content: "";
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 2px;
    background-color: var(--font-dark);
    border-radius: 50%;
}

/* END DIY */
/* PACKAGES */
.package-carousel-container {
    justify-content: center;
}

.carousel-inner-container {
    border: 5px solid var(--primary-light);
    border-radius: 10px;
    padding: 1rem;
}

.package-carousel-inner {
    justify-content: center;
    border-radius: 10px;
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
}

.package-carousel-item {
    border-radius: 10px;
}

.package-carousel-indicators {
    position: relative; /* Ensure indicators are positioned relative to the parent container */
    bottom: -20px; /* Adjust as needed to position outside the border */
    z-index: 100;
    display: flex;
    justify-content: center;
}

.package-carousel-img {
    height: 400px;
    width: 100%;
    object-fit: contain;
    /* background-color: #f8f9fa; */
}

.package-link {
    color: var(--primary);
    font-weight: 300;
}

.package-link:hover {
    color: var(--primary-hover);
    /* font-weight: 400; */
}
/* END PACKAGES */

/* END PRODUCTS */

/* MEDIA QUERIES */

@media screen and (max-width: 1110px) {
    .photo-make-container {
        flex-direction: column;
        align-items: center;
    }

    .photo-make-img {
        position: unset;
    }
    .photo-make-text {
        margin-top: 2rem;
        padding-left: 1rem;
        width: 100%;
    }
    .photo-make-text > h1 {
        text-align: center;
    }

    .photo-make-img-container {
        width: 80%;
        align-self: flex-end;
    }

    .photo-make-img {
        width: 100%;
    }

    .photo-make-text > div > button {
        width: 100%;
    }
}

@media screen and (max-width: 1075px) {
    .hospital-section-text {
        width: 40%;
    }
}

@media screen and (max-width: 990px) {
    .mama-section-text {
        width: 100%;
        padding-top: 1rem;
        padding-left: 0;
        text-align: left;
    }

    .mama-section-text > h4 {
        text-align: center;
        font-size: 34px;
    }

    .family-gift-img {
        margin: -10rem 0 0 0 !important;
    }

    .hospital-section-container {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }

    .hos-gal-date-container {
        display: none;
    }

    /* .hos-gal-date-container {
        flex-direction: column;
    } */

    .year-container,
    .month-container {
        width: 100%;
        min-width: unset;
    }

    .hos-gal-date-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .date-btn {
        margin: 0 0.3rem;
    }
    /* .scroll-container {
        width: 80%;
    } */

    .date-acc-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .year-acc-body > .form-check {
        width: 19%;
        /* width: 65px; */
        min-width: 65px;
    }
    .month-acc-body > .form-check {
        width: 24%;
    }
    .hospital-section-container-reverse {
        flex-direction: column-reverse;
        justify-content: center !important;
        align-items: center !important;
    }

    .hospital-title-container {
        display: block;
        width: 100%;
        padding: 0.5rem 0 0 0;
    }

    .mb-fam {
        margin-bottom: 13rem !important;
    }

    .mb-fam-s {
        margin-bottom: 8rem !important;
    }

    .mb-fam-lg {
        margin-bottom: 22rem !important;
    }

    .mt-fam {
        margin-top: -15rem !important;
    }

    .hospital-service-link {
        margin: 1rem 0 0.5rem 0;
    }

    .hospital-title-mobile {
        display: block;
        font-size: 34px;
    }

    .hospital-title-desktop {
        display: none;
    }

    .hospital-section-text,
    .hospital-section-container {
        width: 100%;
        text-align: center;
        padding-bottom: 0.5rem;
    }

    .hospital-section-title {
        text-align: center;
    }

    .hospital-section-text > h4 {
        margin: 1rem 0;
    }

    .hospital-section-text > p {
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .hospital-section-text > div > img,
    .hospital-section-container > div > img,
    .hospital-section-container-reverse > div > img {
        margin: 1rem 0;
        max-width: 100%;
        height: auto;
    }

    .hospital-big-baby {
        margin: -38rem 0 1rem 0 !important;
    }

    .hospital-baby-container {
        margin-top: 28rem !important;
    }

    .mama-photo-container {
        justify-content: center;
        position: relative;
    }

    .mama-photo-container > .order-btn-container {
        position: absolute;
    }

    .mama-photo-text-container {
        display: block;
        width: 100%;
        margin-bottom: 24rem;
    }

    .mama-photo-text-desktop {
        display: none;
    }

    .mama-photo-text-mobile {
        display: block;
    }
}

@media screen and (max-width: 910px) {
    .baby-modal-body-container {
        flex-direction: column;
        align-items: center;
    }
    .baby-modal-img-container,
    .baby-modal-img-col,
    .baby-modal-form-col {
        width: 100%;
        max-width: 100%;
    }

    .baby-modal-img-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .baby-modal-form-btn {
        display: flex;
        justify-content: center;
    }
}

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

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

    .collegue-card-container {
        width: 300px;
    }
    .collegue-card-container > img {
        height: auto;
    }

    #collegueFilterAccord {
        width: 300px;
        margin-inline: auto;
    }

    .contact-info-container {
        /* display: flex; */
        justify-content: center;
        align-items: center;
        /* flex-wrap: wrap; */
    }
    .info-form button {
        text-align: center;
    }

    .info-submit {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .contact-form-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 421px;
    }

    .contact-data-container {
        width: 100%;
    }

    .year-label,
    .month-label {
        position: relative;
        width: 100%;
        text-align: center;
        margin: 0 -2rem 2rem auto;
        background-color: rgba(229, 240, 240, 1);
        color: var(--primary);
        padding: 0.2rem;
        border-radius: 50px;
        width: 160px;
    }

    .timeline-item {
        width: 94%;
    }

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 0;
        flex-direction: row-reverse;
    }

    .timeline-right-container {
        justify-content: flex-start;
    }

    /* .time-line {
        height: 5px;
        background-color: rgba(229, 240, 240, 1);
        width: calc(100% - 20px);
        position: absolute;
    }

    .time-line-left {
        left: 100%;
        bottom: 15%;
    }

    .time-line-right {
        left: 100%;
        bottom: 15%;
    } */

    .timeline-item.right::before {
        left: 100%; /* Align dots on the timeline for right items */
    }

    .timeline-container::before {
        content: "";
        position: absolute;
        left: 90%;
        top: 0;
        bottom: 0;
        width: 5px;
        background-color: rgba(229, 240, 240, 1);
    }
}
@media screen and (max-width: 750px) {
    .ship-img-container {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-sliders {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-slider-container {
        width: 100%;
        margin-bottom: 1rem;
    }

    .ship-text-container {
        background-color: transparent;
        padding: 1.5rem 0;
        /* border-radius: 10px; */
        margin-left: 0;
    }

    .ship-img-container > div {
        width: 100%;
    }
    .ship-img-container > div > img {
        width: 100%;
        height: auto;
    }

    .ship-text-container > h4 {
        font-size: 34px !important;
    }
}

@media screen and (max-width: 600px) {
    .mama-section-text > h4 {
        text-align: left;
        font-size: 34px;
    }

    .hospital-section-text,
    .hospital-section-container {
        text-align: left;
    }
    .hospital-section-title {
        text-align: left;
    }

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

    .price-card-container {
        width: fit-content;
    }

    .price-card-container > img {
        width: 300px;
    }
    /* 
    .time-line {
        height: 5px;
        background-color: rgba(229, 240, 240, 1);
        width: 20%;
        position: absolute;
    } */

    .hospital-section-text > p {
        width: 100%;
        margin: 0.5rem auto;
        text-align: start;
    }

    .hospital-p {
        /* width: 90%; */
        margin: 0.5rem auto;
    }
}

@media screen and (max-width: 586px) {
    .diy-baby-img {
        max-width: 100%;
        height: auto;
    }
    .baby-card-container {
        background-color: var(--primary-light);
        border-radius: 10px;
        padding: 0.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 315px;

        flex: unset;
        /* Calculate space between cards */
        margin-bottom: 20px; /* Space between rows */
    }

    .baby-img {
        width: 295px;
        height: 208px;
    }

    .babies-row {
        justify-content: center;
    }

    .baby-modal-sender {
        flex-direction: column;
    }
    .baby-modal-share {
        flex-direction: column;
    }

    .baby-modal-sender > .w-50 {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 1rem;
    }

    .captcha-container {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    #fbShareBtn {
        width: 60%;
        margin-top: 1rem;
    }

    .modal-header {
        padding: 0.8rem 0.8rem 0 0 !important;
        border-bottom: none !important;
    }

    .hospital-big-baby {
        margin: 0 !important;
        position: absolute;
        bottom: 105%;
        left: 0%;
    }
}

@media screen and (max-width: 470px) {
    .info-form-flex {
        flex-direction: column !important;
    }

    .info-form-flex > .ps-3 {
        padding-left: 0 !important;
        margin-top: 1rem;
    }

    .info-form-flex > .w-50 {
        width: 100% !important;
    }

    .info-form-flex > .pe-3 {
        padding-right: 0 !important;
    }

    .contact-form-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 100%;
    }

    .hos-gal-container {
        margin-top: 2rem;
    }

    .hos-gal-card-container {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: unset;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hos-gal-img-container {
        margin-top: 0;
    }

    .hos-search-container {
        width: 100%;
    }

    .baby-modal-btn {
        padding: 0;
    }
}
@media screen and (max-width: 400px) {
    .captcha-img-container {
        flex-direction: column;
        margin-top: 1rem;
        width: 100%;
    }
    .captcha-img-container > .d-flex {
        width: 100%;
    }

    .baby-modal-hospital {
        flex-direction: column;
    }

    .captcha-input {
        width: 100%;
        margin-top: 1rem;
    }
    #fbShareBtn {
        width: 100%;
    }

    .baby-modal-share > .d-flex {
        flex-wrap: wrap;
    }
}
/* END MEDIA QUERIES */
