html {
    scroll-behavior: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
span {
    font-family: 'Aller', 'sans-serif' !important;
}

p {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-filter {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #1f305c99, #1f305c80, #00000099);
}

/* Scrollbar */

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Container */

.section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container {
    max-width: 1440px !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

@media (min-width: 768px) {

    .container {
        padding: 0 1.5rem !important;
    }
}

/* Line clamp */

.line-clamp {
    --number: 2;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--number);
}

/* Text */

h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    line-height: calc(2.5 / 2.25);
    margin-bottom: 1rem;
}

h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: calc(1.75 / 1.125);
}

.underline {
    width: 6rem;
    height: 0.25rem;
    background-color: #f39200;
    border-radius: 9999px;
}

@media (min-width: 768px) {

    h1 {
        font-size: 4.5rem;
        line-height: 1;
    }

    h2 {
        font-size: 3rem;
        line-height: 1;
    }
}

/* Badge */

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f3920020;
    border: 1px solid #f39200;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.badge span {
    color: #f39200;
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* Column */

.column-2 {
    display: grid;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.column-2 .first-second {
    order: 1;
}

.column-2 .second-first {
    order: 2;
}

@media (min-width: 1024px) {
    .column-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .column-2 .second-first {
        order: 1;
    }

    .column-2 .first-second {
        order: 2;
    }
}

/* Spacing */

.space-y {
    --gap: 0.25rem;

    display: flex;
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
    justify-content: center;
}

.space-x {
    --gap: 0.25rem;

    display: flex;
    flex-direction: row;
    gap: var(--gap);
    align-items: center;
    justify-content: start;
}