@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-Variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
}

:root {
    --bs-hero-bg: url("../../img/hero_pink.webp");
    --bs-font-family: "Inter", sans-serif;
    --bs-font-family-heading: "Inter", sans-serif;
    --bs-tertiary-bg-rgb: 247, 247, 247;
    --bs-navbar-brand-hover-color: 255, 255, 255;
}

body,
h1, h2, h3, h4, h5, h6,
p, small, .small,
input, textarea, select, button,
.navbar-brand, .lead, .blockquote p {
    font-family: "Inter", sans-serif !important;
}

.btn-primary {
    color: #FFFFFF !important;
}

.btn-pricing {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.btn-pricing:hover {
    background-color: #535252;
    border-color: #535252;
    color: #FFFFFF;
}

#btnAppDownload {
    left: 0;
    right: 0;
    width: auto;
}

@media (min-width: 768px) {
    #btnAppDownload {
        width: max-content;
        max-width: 420px;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

#btnAppDownload.pulse {
    animation: pulse-download 1.5s infinite;
    transform-origin: center bottom;
}

@keyframes pulse-download {
    0% {
        transform: scale(0.7);
    }
    50% {
        transform: scale(0.77);
    }
    100% {
        transform: scale(0.7);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.catalog-template-image {
    width: 100%;
    height: 320px;
    object-fit: contain;
}

.catalog-template-link {
    display: block;
}

.catalog-template-placeholder {
    min-height: 100%;
    padding: 2.5rem 1.5rem;
    border-radius: 1.25rem;
    color: #111111;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .catalog-template-col {
        padding-left: 0.45rem;
        padding-right: 0.45rem;
    }

    .catalog-template-image {
        height: 220px;
    }

    .catalog-template-link h3 {
        font-size: 1rem !important;
        margin-top: 0.75rem !important;
    }

    .catalog-template-placeholder {
        padding: 1.5rem 1rem;
        font-size: 1.35rem;
    }
}

@media (max-width: 379.98px) {
    .catalog-template-col {
        width: 100%;
        flex: 0 0 100%;
    }

    .catalog-template-image {
        height: 260px;
    }
}
