/* General classes */

.flex {
    display: flex;
}

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

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

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

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

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

/* Margin and Padding */
.mt-20 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

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

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.md\:mt-6 {
    margin-top: 1.5rem;
}

/* Typography */
.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

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

.font-extra-bold {
    font-weight: 900;
}





.bg-secondary {
	background: #02245B;
}

.border-1 {
	border: 1px solid gray;
}



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

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

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

.lg\:text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Width and Height */
.h-\[126px\] {
    height: 126px;
}

.md\:h-\[192px\] {
    height: 192px;
}

/*.w-\[100%\] {*/
/*    width: 100%;*/
/*}*/

.md\:w-\[281px\] {
    width: 281px;
}

/* Grid and Spacing */
.grid {
    display: grid;
}

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

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

.gap-y-5 {
    row-gap: 1.25rem;
}

.lg\:gap-y-0 {
    row-gap: 0;
}

.gap-x-5 {
    column-gap: 1.25rem;
}

.gap-x-2 {
    column-gap: .75rem;
}

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

/* Miscellaneous */
.bg-\[\#FFF6F3\] {
    background-color: #FFF6F3;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.max-w-7xl {
    max-width: 80rem; /* 1280px */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
