:root {
    --mdc-theme-primary: #0443A0;
    --theme-off-white: #FAFAFA;
    --theme-color-secondary: #ED6F2D;
    --theme-color-body: #808080;
    --theme-color-body-light: #B4B7C1;
    --theme-color-header: #303030;
    --theme-color-card: #FAFAFA;
    --theme-color-background-dark: #101010;
    --theme-color-primary-dark: #2393FB;
    background-color: #ffffff;
    font-family: 'Roboto Flex', sans-serif;

    --md-ref-typeface-brand: 'Roboto Flex';
    --md-ref-typeface-plain: 'Roboto Flex';
}

body {}

/* add 2 to not conflict with bootstrap */
.row2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column2 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    /* flex: 1; */
}


.flex3 {
    display: flex;
    flex-wrap: wrap;
}

.flexr {
    display: flex;
}



@media screen and (max-width: 767px) {

    /* Use this to hide and show elements for desktop vs mobile */
    .mobile {
        display: unset;
    }

    .desktop {
        display: none;
    }

    .flexr {
        /* for flex responsive */
        flex-direction: column;
    }

    .flex3 {
        flex-direction: column;
    }
    .gap-112-64-32 {
        gap: 64px;
    }


}

@media screen and (min-width: 768px) {

    /* Use this to hide and show elements for desktop vs mobile */
    .mobile {
        display: none;
    }

    .desktop {
        display: unset;
    }

    .column2 {
        flex: 1;
    }

    .flexr {
        /* for flex reponsive */
        flex-direction: row;
    }
}


.flex {
    display: flex;
}

.flexw {
    display: flex;
    flex-wrap: wrap;
}

.dark-area {
    background-color: var(--theme-color-background-dark);
    color: white;
}

.dark-area a {
    color: #2393FB;
    font-weight: 600;
}

.dark-area .blue {
    color: #2393FB;
}

.lightblue-area {
    background-color: #F3F6FF;

}

h1,
.h1 {
    font-weight: 700;
    font-size: 5rem;
    /* line-height: 1; */
}

.h1,
.h2,
h1,
h2 {
    /* font-family: 'Roboto Flex', sans-serif; */
    /* line-height: 3.3rem; */
}

.h3,
.h4,
.h5,
.h6,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 4rem;
    }
}


.bold {
    font-weight: 600;
}

.btn-custom-primary {
    --bs-btn-border-radius: 2px;
    --bs-btn-padding-y: .4rem;
    --bs-btn-padding-x: 1.8rem;
    --bs-btn-border-color: var(--mdc-theme-primary);
    --bs-btn-bg: var(--mdc-theme-primary);
    font-weight: 600;
    font-size: 20px;
}

.btn-custom-secondary {
    --bs-btn-border-radius: 2px;
    --bs-btn-padding-y: .4rem;
    --bs-btn-padding-x: 1.8rem;
    --bs-btn-border-color: var(--theme-color-secondary);
    --bs-btn-hover-bg: var(--theme-color-secondary);
    --bs-btn-hover-border-color: var(--theme-color-secondary);
    --bs-btn-bg: var(--theme-color-secondary);
    --btn-box-shadow: 5px 4px 4px var(--theme-color-body-light);
    font-weight: 600;
    font-size: 20px;
}

.pool-logo {
    height: 50px;
}

.search-bar {
    width: 50%;
}

.extra-margin {
    margin: 0 5rem
}

.legal li {
    list-style: disc;
}

.legal h4 {
    margin-top: 2.5rem
}


/* mobile devices and smaller */
@media (max-width: 768px) {
    .pool-logo {
        height: 30px;
    }

    .search-bar {
        width: 100%;
    }

    .extra-margin {
        margin: 0
    }

}

ul {
    list-style: none;
}

li {
    margin-top: .5rem;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.list-unstyled a {
    /* color: var(--theme-color-body-light); */
    text-decoration: none;
}

.footer-wrapper {
    /* color: var(--theme-color-body-light); */
    height: auto;
    /* background-color: var(--theme-color-header); */
    padding-top: 4rem;
    font-size: 16px;
}

.footer-header {
    color: #999FAE !important;
    /* Body */
    font-size: 16px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
}

.footer-content {
    color: #292930;
    font-size: 14px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;

}

.footer-content li {
    margin-top: 0px !important;
}

.gap-112-64-32 {
    gap: 112px;
}

.footer-footer {
    color: #999FAE;
    font-size: 12px;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.3px;
}

.layout-body {
    margin-top: 3rem;
    margin-bottom: 4rem;
    min-height: 600px;
    /* calc(100vh - 300px); */
}

div.banner-message {
    margin-top: 80px;
    padding: 30px;
    background-color: #F3F6FF;
    display: flex;
    gap: 8px;
    /* z-index: 10; */
    /* position: relative; */
    align-items: center;
    justify-content: center;
    /* font-size: 80%; */
}

.title-link-font {
    font-size: 3rem;
    font-family: Inter
}

/* mobile devices and smaller */
@media only screen and (max-width: 576px) {

    .gap-112-64-32 {
        gap: 32px;
    }

    div.banner-message {
        /* margin-top: 100px; */
        display: none;
    }

    .footer-center {
        margin: 0;
        text-align: center;
    }

    .layout-body {
        /* margin: 8rem 0; */
        /* min-height: calc(100vh - 400px); */
        min-width: 400px;
    }

    .footer-wrapper {
        padding-top: 2rem;
        margin: 0;
    }

    .title-link-font {
        font-size: 36px !important;
    }
}

/* NEW DESIGN */
.gradient-blue-reverted {
    background: linear-gradient(267.95deg, #0443A0 22.07%, #54DBF9 62.63%, #3CAADF 79.87%, #0443A0 100.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.gradient-blue {
    /* // -webkit-linear-gradient(#0443A0, #00B6FF);*/
    background: linear-gradient(91.3deg, #0443A0 -4.45%, #54DBF9 77.29%);
    /* background: linear-gradient(162.38deg, #0443A0 14.44%, #54DBF9 34.15%, #3CAADF 42.52%, #0443A0 52.68%); */
    /* background: linear-gradient(91.3deg, #0443A0 -4.45%, #54DBF9 35.99%, #0443A0 77.29%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.card {
    background-color: #23262F;
    border-radius: 12px;
    border: 1px solid #33363F;
    padding: 12px;
    color: white;
}