:root {
    --bg: #090b12;
    --innerBg: #191b23;
    --innerBgLghter: #16171f;
    --innerBlackBg: #120e0b;
    --innerBlackLighterBg: #2e3038;

    --black50: #2a2a2d;
    --blackDarker: #1d1d1e;
    --darkBlue: #12151e;
    --darkBlue30: #1b1f2a;
    --darkBlue50: #2a2e39;
    --purple: #8f60ff;
    --yellow: #ffc278;
    --yellowLight: #ffc421;
    --yellowDarker: #ff8d04;
    --orange: #ff7d34;
    --orangeDarker: #ff6320;
    --red: #ff2020;
    --orangeLight: #fdf0ea;
    --lightOrange: #fdf0ea;
    --lightGray: #8b90a6;
    --lightGray10: #1c2132;
    --lightGray40: #595e71;
    --lightGray50: #71768b;
    --lightGray80: #c1c5dc;
    --lightGray95: #eef0ff;
    --darkGray10: #030406;
    --darkGray70: #0b0e17;
    --darkGray80: #0e111c;
    --Accent10: #7872fe;
    --accent20: #926cff;
    --accent30: #4e7cfe;

    --textMain: #f5f6f7;
    --textP: #8b90a6;
    --textPLighter: #d1d1d4;
    --textBtn: #fcfdfe;
    --brad: 12px;
    --bradMed: 24px;
    --bradMed2: 28px;
    --bradBig: 32px;
}
*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: none;
}
* {
    position: relative;
}
html {
    position: relative;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}
body {
    /* overflow: hidden; */
}

@media (max-width: 1340px) {
    body {
        overflow: hidden;
    }
}
body,
html {
    display: block;
    box-sizing: border-box;
    font-size: 18px;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    background-color: #fbfbfe;
    color: var(--textMain);
}
h2 > * {
    display: inline-block;
    vertical-align: middle;
}
body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-track {
    background: var(--darkGray80);
}
body::-webkit-scrollbar-thumb {
    background-color: #d90647;
    border-radius: var(--brad);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul,
li {
    padding: 0;
    list-style: none;
    marker: none;
}

.template__list {
    margin-left: 18px;
    color: var(--accent20);
}
.template__list > *:not(:last-child) {
    margin-bottom: 24px;
}
.template__list li p {
    display: inline-block !important;
    vertical-align: middle !important;
}
.template__list li {
    list-style-type: disc;
}
.template__list li p:first-child {
    color: white !important;
    margin-right: 12px;
}
.template__list li p:last-child {
    color: var(--lightGray) !important;
    margin-right: 12px;
}

.wrapper,
.wrapper_smaller {
    margin: 0 auto;
    height: 100%;
    width: 100%;
}
.wrapper {
    max-width: 1024px;
}
.wrapper_smaller {
    max-width: 960px;
}
.lableHeader {
    color: var(--lightGray50) !important;
    text-align: center;
}

a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    bottom: -2px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover::after {
    width: 100%;
}
a:has(img, div)::after {
    content: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600 !important;
    font-family: "Outfit", sans-serif;
    color: var(--m3C);
    line-height: 130% !important;
}
p,
a {
    font-family: "inter", sans-serif;
    color: var(--lightGray50) !important;
    font-weight: 400;
    line-height: 180% !important;
    font-size: 18px;
    position: relative;
}
p {
    font-size: 18px;
}

.hColorBlack {
    color: var(--lightGray10) !important;
}

p,
a {
    line-height: 160% !important;
}
.fz18 {
    font-size: 18px;
}
.fz124 {
    font-size: 124px;
}
.fz72 {
    font-size: 72px;
}
.fz64 {
    font-size: 64px;
}
.fz64 {
    font-size: 64px;
}
.fz56 {
    font-size: 56px;
}
.fz52 {
    font-size: 52px;
}
/* .fz48 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 900;
} */
.fz48 {
    font-size: 48px;
}
.fz42 {
    font-size: 42px;
    line-height: 120% !important;
}
.fz36 {
    font-size: 36px;
}
.fz30 {
    font-size: 30px;
}
.fz28 {
    font-size: 28px;
    text-transform: none;
}
.fz24 {
    font-size: 24px;
    text-transform: none;
}
.fz20 {
    font-size: 20px;
    /* font-weight: 600; */
}
.fz16 {
    font-size: 16px;
}
.fz14 {
    font-size: 14px;
}
.fz10 {
    font-size: 10px;
}
p > * {
    display: inline-block;
}
section {
    position: relative;
}
.width80 {
    max-width: 80%;
}
.width70 {
    max-width: 70%;
}
.width60 {
    max-width: 60%;
}
.width50 {
    max-width: 50%;
}
.width40 {
    max-width: 40%;
}
.width256 {
    max-width: 256px;
}
.title {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}
.taLeft {
    text-align: left !important;
}
.taCenter {
    text-align: center !important;
}
.ulMarkers li {
    margin-left: 7px;
}
.ulMarkers li p {
    margin-left: 8px;
}
.ulMarkers li::marker {
    content: "•";
}
.state_page {
    padding-top: 100px;
}
.listCircles li::before {
    position: absolute;
    content: "•";
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.listCircles p {
    margin-left: 18px;
}
.aspectRatio {
    aspect-ratio: 3/1;
    border-radius: var(--bradMed);
    overflow: hidden;
}
@media (max-width: 1024px) {
    .wrapper {
        max-width: 95%;
    }
    .fz124 {
        font-size: 12vw;
    }
}
@media (max-width: 960px) {
    .wrapper_smaller {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .state_page {
        padding-top: calc(100px / 2);
    }
    .width80,
    .width70,
    .width60,
    .width40,
    .width50 {
        max-width: 100%;
    }
    .padding {
        padding: 0 14px;
    }
    h2 {
        font-size: 6vw;
    }
    .fz72 {
        font-size: 52px;
    }
    .fz64 {
        /* font-size: 6vw; */
        font-size: 52px;
        width: 100%;
        max-width: max-content;
    }
    .fz56 {
        /* font-size: 6.4vw; */
        font-size: 40px;
    }
    .fz52 {
        font-size: 32px;
        /* font-size: 6.2vw; */
    }
    .fz48 {
        font-size: 4vw;
    }
    .fz42 {
        font-size: 36px;
    }
    .fz36 {
        font-size: 32px;
        /* font-size: 4.6vw; */
    }
    .fz30 {
        font-size: 26px;
        /* font-size: 4.2vw; */
    }
    .fz28 {
        font-size: 20px;
        /* font-size: 3.9vw; */
    }
    .fz24 {
        font-size: 20px;
        /* font-size: 3.8vw; */
    }
    .fz20 {
        font-size: 18px;
        /* font-size: 3.6vw; */
    }
    p,
    a,
    .fz18 {
        font-size: 16px;
        /* font-size: 2.6vw; */
    }
    .fz16 {
        font-size: 14px;
        /* font-size: 2.2vw; */
    }
    .wrapper {
        max-width: 92%;
    }
    .wrapper_smaller {
        max-width: 92%;
    }
}
@media (max-width: 425px) {
    .width256 {
        max-width: 100%;
    }
}
