/* MAIN */

* {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.main-h1 {
    color: #3769fe !important;
}

.main-h2 {
    color: black !important;
}

.main-background {
    background: rgb(255, 255, 255) !important;
    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 86%, rgba(252, 252, 252, 1) 93%, rgba(217, 217, 217, 1) 100%) !important;
}

.main-product-card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.product-disabled {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* PRODUCT 1 */

.product-1-background {
    background-image: url("../images/blue-background.png") !important;
    background-color: #cccccc !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* PRODUCT 2 */

.product-2-background {
    background-image: url("../images/yellow-background.png") !important;
    background-color: #cccccc !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* HEADER */

@media (min-width: 768px) {
    .custom-margin-md {
        margin-left: 4.5rem;
    }
}

/* MAP */

iframe {
    max-width: 100% !important;
    height: 100% !important;
}

/* ADMIN */

.read {
    background-color: rgb(255, 159, 159) !important;
}

/* Default styles for both mobile and desktop */
.mobile-header {
    display: block;
}

.desktop-header {
    display: none;
}

/* Media query for screens larger than 768 pixels (adjust as needed) */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }

    .desktop-header {
        display: block;
    }
}