/* Generic body style */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
    user-select: none;
    background-size: 100%;
    color: var(--generic-white);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: var(--primary-font);
    background-image: linear-gradient(to right bottom, #014137, #164d41, #26594c, #356657, #447362, #487765, #4c7b68, #507f6b, #4a7b67, #437763, #3d735f, #366f5b);
}

/* Side Gap */
[data-gap=side-gap] {
    margin: 0 auto;
    gap: 0 16px 0 16px;
    width: calc(100% - 32px);
}

@media screen and (min-width: 744px) {
    [data-gap=side-gap] {
        gap: 0 32px 0 32px;
        width: calc(100% - 64px);
    }
}

/* Padding Y */
[data-padding=y-axis] {
    padding: 72px 0 36px;
}

@media screen and (min-width: 720px) {
    [data-padding=y-axis] {
        padding: 96px 0 48px;
    }
}

@media screen and (min-width: 1240px) {
    [data-padding=y-axis] {
        padding: 164px 0 48px;
    }
}

[data-attr="content-wrapper"] {
    margin: 0 auto;
    max-width: 1440px;
}

/* Section Heading */
[data-attr=section-heading] {
    max-width: 880px;
    text-align: center;
    margin: 0 auto 48px;
}

[data-attr=section-heading] .heading-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
}

[data-attr=section-heading] .heading-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (min-width: 744px) {
    [data-attr=section-heading] {
        margin-bottom: 72px;
    }

    [data-attr=section-heading] .heading-title {
        font-size: 44px;
        line-height: 48px;
        margin-bottom: 22px;
    }

    [data-attr=section-heading] .heading-text {
        font-size: 15px;
        line-height: 22px;
    }
}

@media screen and (min-width: 1240px) {
    [data-attr=section-heading] .heading-title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 28px;
    }

    [data-attr=section-heading] .heading-text {
        font-size: 16px;
        line-height: 23px;
    }
}

/* P Text */
[data-attr=p-text] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

@media screen and (min-width: 744px) {
    [data-attr=p-text] {
        font-size: 15px;
        line-height: 22px;
    }
}

@media screen and (min-width: 1240px) {
    [data-attr=p-text] {
        font-size: 16px;
        line-height: 23px;
    }
}

/* Button */
[data-attr=btn] {
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    line-height: 16px;
    width: fit-content;
    text-align: center;
    padding: 12px 22px;
    white-space: nowrap;
    border-radius: 2px;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-attr=btn] img {
    width: 14px;
    height: 14px;
}

[data-attr=btn].fill-btn {
    color: var(--generic-white);
    background-color: var(--brand-col-2);
}

[data-attr=btn].infill-btn {
    line-height: 13px;
    color: var(--brand-col-2);
    background-color: transparent;
    border: 2px solid var(--brand-col-2);
}

@media screen and (min-width: 744px) {
    [data-attr=btn] {
        font-size: 16px;
        line-height: 20px;
    }

    [data-attr=btn].infill-btn {
        line-height: 16px;
    }
}


/* List */
ul {
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a:focus {
    border: 0;
    outline: none;
}

a:link, a:visited, a:active {
    text-decoration: none;
}

ul, li {
    list-style: none;
}

img, a {
    display: block;
}