html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* End Reset */

/* === Variables ==== */

:root {
    --blue-shade-900: #060609;
    --blue-shade-800: #0c0c11;
    --blue-shade-700: #0f0f16;
    --blue-shade-600: #15151e;
    --blue-shade-500: #1b1b27;
    --blue-shade-400: #34343f;
    --blue-shade-300: #4e4e57;
    --blue-shade-200: #67676f;
    --blue-shade-100: #808087;

    --neutral-100: #F9F9F9;
    --neutral-200: #EFF0F2;
    --neutral-300: #DCDFE4;
    --neutral-400: #B3B9C4;
    --neutral-500: #8590A2;
    --neutral-600: #596773;
    --neutral-700: #454F59;
    --neutral-800: #38414A;
    --neutral-900: #2C333A;
    --neutral-1000: #293035;
    --neutral-1100: #22272B;
    --neutral-1200: #1E2327;

    --blue-100: #E4EFFB;
    --blue-200: #ADCFF3;
    --blue-300: #77AFEB;
    --blue-400: #408FE3;
    --blue-500: #0B71DD;
    --blue-600: #0853A4;
    --blue-700: #05386E;
    --blue-800: #042A52;
    --blue-900: #022041;

    --pink-shade-900: #341416;
    --pink-shade-800: #4f1e21;
    --pink-shade-700: #833338;
    --pink-shade-600: #b8474e;
    --pink-shade-500: #ec5a64;
    --pink-shade-400: #e05f67;
    --pink-shade-300: #d4636a;
    --pink-shade-200: #c8676d;
    --pink-shade-100: #bc6b70;

    --grey: #808087;
    --off-white: #f0edf2;

    --white: #fff;
}



/* End Vaiables */

body {
    background-color: var(--blue-shade-500);
    color: aliceblue;
}


body,
p,
ul,
li {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    color: var(--neutral-800);
}

h1 {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #34343f;
    font-size: 4rem;
    line-height: 4.25rem;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: var(--blue-shade-400);
}


h2 {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
}

h2:before {
    position: absolute;
    content: '';
    padding: 4px 40px;
    background-color: var(--blue-400);
    border-radius: 60px;
    bottom: 0;
    left: calc(50% - 40px);
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 2rem;
}

p {
    color: var(--neutral-1200);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

a {
    color: var(--blue-500);
    /* cursor: pointer; */
}

section {
    padding: 60px;
}

.btn-primary {
    --bs-btn-color: var(--off-white);
    --bs-btn-bg: var(--blue-500);
    --bs-btn-border-color: var(--blue-500);
    --bs-btn-hover-color: var(--off-white);
    --bs-btn-hover-bg: var(--blue-600);
    --bs-btn-hover-border-color: var(--blue-600);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--off-white);
    --bs-btn-active-bg: var(--blue-600);
    --bs-btn-active-border-color: var(--blue-600);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--off-white);
    --bs-btn-disabled-bg: var(--blue-800);
    --bs-btn-disabled-border-color: var(--blue-800);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: none;

}

.btn-primary:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, .25);
    transition: .5s;
}

.btn-secondary {
    --bs-btn-color: var(--neutral-600);
    --bs-btn-bg: var(--neutral-100);
    --bs-btn-border-color: var(--neutral-300);
    --bs-btn-hover-color: var(--neutral-600);
    --bs-btn-hover-bg: var(--neutral-200);
    --bs-btn-hover-border-color: var(--neutral-300);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--off-white);
    --bs-btn-active-bg: var(--blue-600);
    --bs-btn-active-border-color: var(--blue-600);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--off-white);
    --bs-btn-disabled-bg: var(--blue-800);
    --bs-btn-disabled-border-color: var(--blue-800);
}

header {
    width: 100%;
    padding: 20px 24px;
    position: absolute;
    top: 0;
    z-index: 2;

}

.header-logo {
    align-content: center;
    margin-right: 40px;
}

.logo {
    max-width: 200px;
    width: 100%;
}

header nav {
    max-width: 300px;
}

header nav ul {
    display: flex;
    flex-direction: row;
}

header nav ul li {
    padding: 12px 20px;
    color: var(--off-white);
}

header nav ul li:hover {
    cursor: pointer;
    border-radius: 50px;
    background: rgba(0, 0, 0, .25);
    color: var(--pink-shade-500);
    transition: .5s;
}

header nav ul li a {
    color: var(--off-white);
    text-decoration: none;
}

header nav ul li:hover a {
    transition: .5s;
    color: var(--blue-500);
}

/* =============== */
/* Mobile Menu CSS */
/* =============== */

.overlay-bg {
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    right: 0;
    height: 100vh;
    width: 100%;
    display: none;
    transition: .25s linear;
}

.offcanvas-nav {
    z-index: 3;
    position: absolute;
    background: var(--neutral-100);
    height: 100vh;
    max-width: 300px;
    width: 0;
    right: 0;
    /* transition: .25s ease-in; */
    overflow: hidden;

    .menu-header {
        display: flex;
        flex-direction: row;
        justify-content: end;
        padding: 20px;
    }
}

.offcanvas-nav ul {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
}

.offcanvas-nav ul li {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--neutral-600);
    transition: .25s;
}

.offcanvas-nav ul li:hover {
    cursor: pointer;
    background: var(--neutral-300);
    color: var(--neutral-600);
    transition: .25s;
}

.offcanvas-nav ul li a {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--neutral-600);
    transition: .15s;
}

.offcanvas-nav ul li:hover a {
    color: var(--neutral-600);
    transition: .25s;
}

.show-menu {
    right: 0;
    /* transition: .25s ease-out; */
}

.fade-overlay {
    display: block;
    transition: .25s opacity linear;
}

.overflow-hidden {
    overflow: hidden;
}




#hero {
    display: flex;
    position: relative;
    padding: 250px 0;
    height: 80vh;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        color: var(--off-white);
    }

    p {
        line-height: 2rem;
    }
}

#hero p {
    font-size: 1.5rem;
    padding: 1rem 0;
}


.vid-container {
    position: relative;
    height: 100%;
}

#intro-vid {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: .2;
}

#hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-content {
    background-color: var(--white);
}

section#about {
    padding: 0;
}

#about .container {
    top: -32px;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

#about .container .card {
    padding: 20px 32px;
}

.feature {
    width: 500px;
    display: flex;
    flex-direction: column;

    h4 {
        padding: 1rem 0;
    }
}

.card {
    background-origin: var(--neutral-100);
    padding: 20px;
    border: 1px solid var(--neutral-400);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.card.dark {
    background: var(--blue-shade-500);
}

.icon-container {
    max-width: 100px;
    width: 100%;
    padding: 8px;
}

.feature h2,
.feature h4 {
    font-weight: 600;
}

.width-100 {
    width: 100%;
    transition: .5s ease-in;
}

#contact {
    background: var(--neutral-200);
}

#contact .form-container {
    margin: 0 auto;
    max-width: 768px;
}

/* ======= */
/* Footer */
/* ======= */
#page-footer {
    padding: 12px 0;
    background: var(--blue-shade-500);

    p {
        font-size: 12px;
        color: var(--off-white);
        text-align: center;
    }
}




/* UTILITIES */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}