.bg-product {
    background-image: url("../img/bg-product.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flex {
    display: flex;
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex !important;
    }
}

.grid {
    display: grid;
}

@media (min-width: 1024px) {
    .lg\:grid {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .lg\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.flex-col {
    flex-direction: column;
}

@media (min-width: 1024px) {
    .lg\:flex-col {
        flex-direction: column !important;
    }
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.flex-row {
    flex-direction: row;
}

@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }
}

.text-xs {
    font-size: 0.75rem /* 12px */;
    line-height: 1rem /* 16px */;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}

.font-raleway {
    font-family: "Raleway";
}

.font-gabarito {
    font-family: "Gabarito";
}

.p-1 {
    padding: 0.25rem /* 4px */;
}

.p-2 {
    padding: 0.5rem /* 8px */;
}

.p-3 {
    padding: 0.75rem /* 12px */;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem /* 32px */;
}

.p-16 {
    padding: 4rem /* 64px */;
}

@media (min-width: 1024px) {
    .lg\:p-4 {
        padding: 1rem !important;
    }
}

@media (min-width: 768px) {
    .md\:-mt-16 {
        margin-top: -4rem /* -64px */;
    }
}

.-mt-8 {
    margin-top: -2rem /* -32px */;
}

.-ml-8 {
    margin-left: -2rem /* -32px */;
}

.gap-2 {
    gap: 0.5rem /* 8px */;
}

.gap-4 {
    gap: 1rem /* 32px */;
}

.gap-8 {
    gap: 2rem !important;
}

@media (min-width: 1024px) {
    .lg\:gap-24 {
        gap: 6rem /* 96px */;
    }
}

@media (min-width: 1024px) {
    .lg\:text-left {
        text-align: left !important;
    }
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

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

.w-80 {
    width: 80% !important;
}

@media (min-width: 1024px) {
    .lg\:w-80 {
        width: 80% !important;
    }

    .lg\:w-50 {
        width: 50% !important;
    }

    .lg\:w-65 {
        width: 65% !important;
    }

    .lg\:hidden {
        display: none;
    }
}

.max-w-50 {
    max-width: 50%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

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

.items-center {
    align-items: center;
}

.ms-auto {
    margin-inline-start: auto;
}

.me-auto {
    margin-inline-end: auto;
}

.left-6 {
    left: 1.5rem /* 8px */;
}

@media (min-width: 768px) {
    .md\:left-12 {
        left: 3rem /* 48px */;
    }
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem /* 20px */;
    line-height: 1.75rem /* 28px */;
}

.active-image {
    background-color: #ece5d3;
    color: black;
}

.nonactive-image {
    background-color: transparent;
    color: #22333c80;
    border: 1px solid #22333c33;
}

.rounded-md {
    border-radius: 0.375rem /* 6px */;
}

.rounded-lg {
    border-radius: 0.5rem /* 8px */;
}

.rounded-3xl {
    border-radius: 1.5rem /* 24px */;
}

.px-4 {
    padding-left: 1rem /* 16px */;
    padding-right: 1rem /* 16px */;
}

.px-8 {
    padding-left: 2rem /* 32px */;
    padding-right: 2rem /* 32px */;
}

.py-2 {
    padding-top: 0.5rem /* 8px */;
    padding-bottom: 0.5rem /* 8px */;
}

.border {
    border-width: 1px;
    border-color: #22333c33;
}

.cursor-pointer {
    cursor: pointer;
}

.active-color {
    padding: 1px;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

.nonactive-color {
    padding: 1px;
    border: 1px solid transparent !important;
    border-radius: 0.5rem;
}

.overflow-scroll {
    overflow: scroll;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.h-auto {
    height: auto !important;
}

.w-auto {
    width: auto;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-screen {
    width: 100vw;
}

@media (min-width: 1024px) {
    .lg\:ms-auto {
        margin-inline-start: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:flex-col {
        flex-direction: column;
    }
}

.max-w-full {
    max-width: 100%;
}

@media (min-width: 640px) {
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem /* 28px */;
    }
}

@media (min-width: 1024px) {
    .lg\:p-16 {
        padding: 4rem !important;
    }
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
    }
}

.overflow-x-scroll {
    overflow-x: scroll;
}

.max-w-screen {
    max-width: 90vw;
}

@media (min-width: 768px) {
    .md\:text-xl {
        font-size: 1.25rem /* 20px */;
        line-height: 1.75rem /* 28px */;
    }
}

@media (min-width: 1024px) {
    .lg\:px-16 {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }

    .lg\:p-16 {
        padding: 4rem !important;
    }
}

@media (min-width: 768px) {
    .md\:bg-transparent {
        background-color: transparent !important;
    }
}

.bg-transparent {
    background-color: transparent;
}

.bg-\[\#F9F7F1\] {
    --tw-bg-opacity: 1;
    background-color: rgb(249 247 241 / var(--tw-bg-opacity)) /* #f9f7f1 */;
}

@media (min-width: 1024px) {
    .lg\:py-16 {
        padding-top: 4rem /* 64px */;
        padding-bottom: 4rem /* 64px */;
    }
}

.bg-jeungga {
    background: linear-gradient(0deg, #22333c, #22333c),
        radial-gradient(
            50% 50% at 50% 50%,
            rgba(236, 229, 211, 0) 0%,
            rgba(236, 229, 211, 0.2) 100%
        );
}

.color-jeungga {
    color: #ece5d3;
}

.text-3xl {
    font-size: 1.875rem /* 30px */;
    line-height: 2.25rem /* 36px */;
}

.rectangle-image {
    background: #d9d9d910;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.hidden {
    display: none;
}
