/* ----------------------------------------------------- */
/* -------------- Some CSS Classes I Use --------------- */
/* ----------------------------------------------------- */

html, body {
    font-weight: normal;
    font-family: "Lato", sans-serif;
    color: #00104A;
    background-color: #f7f7ff;
    padding: 0;
    margin: 0;
}

/* ---------- Font ---------- */
.d-font {
    font-weight: normal;
    font-family: "Lato", sans-serif;
    color: #00104A;
    text-decoration: none;
    font-size: 12px
}

    /* Default Font Size: Extra Small  */
    .d-font.xs {
        font-size: 10px;
    }

    /* Default Font Size: medium  */
    .d-font.md {
        font-size: 14px
    }

    /* Default Font Size: large  */
    .d-font.lg {
        font-size: 16px
    }

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.light {
    font-weight: 300;
    color: rgba(0, 16, 74, 0.5)
}

.thin {
    font-weight: 300;
}

/* ---------- Positioning ---------- */

/* Align and Justify a div within another div */
.cc {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Align Left and Justify a div within another div */
.lc {
    display: flex;
    align-items: center;
    justify-content: left;
}

/* Align Right and Justify a div within another div */
.rc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* ---------- Absolute Positioning ---------- */

.top-right {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 10px 0 0;
}

.top-left {
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px 0 0 10px;
}

.right-center {
    position: absolute;
    right: 0;
    margin: auto 10px auto 0;
}

.left-center {
    position: absolute;
    left: 0;
    margin: auto 0 auto 10px;
}

.bottom-center {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 10px auto;
    text-align: center;
}

.bottom-right {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0 15px 15px 0;
}

.bottom-left {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 0 15px 15px;
}



/* ----------------------------------------------------- */
/* -------------------- Luke's Page -------------------- */
/* ----------------------------------------------------- */

.luke-header {
    width: 100%;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.logo-tagline{
    height: 52px;
    padding: 0 30px;
}

.header-logo{
    height: 47px;
    margin-right: 20px;
    cursor: pointer;
}

/* Gradient Seperator */
.gradient-seperator{
    width: 100%;
    height: 10px;
    z-index: 2;
    position: relative;
    background: transparent linear-gradient(270deg, #00104A 0%, #6600FF 48%, #1FEFFF 100%) 0% 0% no-repeat padding-box;
}

.about-btn{
    padding-right: 35px;
    background-color: #ffffff;
    cursor: pointer;
    z-index: 2;
}
    .about-btn:hover{
        color: #6600ff;
    }
