body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0px;
    padding: 0px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    background-color: var(--body-bg-color);
}

body * {
    box-sizing: border-box;
}

a {
    transition: color .3s;
}

p {
    margin: 0;
}

p + * {
    margin-top: 1rem;
}

.ff-special {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

strong,
.fw-700 {
    font-weight: 700;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-tertiary {
    color: var(--tertiary);
}

.text-center {
    text-align: center;
}

.p-5 {
    padding: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.2;
    font-size: 1.125rem;
    padding: .75rem 1.5rem;
    border-radius: .25rem;
    border: 1px solid;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-lg {
    gap: .625rem;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
}

.btn-primary {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    color: white;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-tertiary {
    color: white;
    background-color: var(--tertiary);
    border-color: var(--tertiary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
    color: white;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.container {
    width: 100%;
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    margin: 0;
    font-size: 2rem;
}

h2 + * {
    margin-top: 1.25rem;
}

.header {
    padding: 1rem 0;
    background-color: var(--header-bg-color);
}

.header > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
}

.header .logo img {
    max-width: 100%;
    height: auto;
}

.header-text {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.875rem;
    color: white;
    font-weight: 300;
    line-height: .9;
}

.header-text > strong {
    text-transform: uppercase;
    letter-spacing: -.6px;
}

.header-text > span {
    font-size: 1.5rem;
}

.navbar {
    padding: 1rem 0;
    background-color: var(--navbar-bg-color);
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    row-gap: .5rem;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--main-bg-color);
}

.main > .container {
    display: flex;
    align-items: center;
}

.verification {
    width: 100%;
    max-width: 60rem;
    margin: 2rem auto;
    border-radius: .5rem;
    background-color: var(--navbar-bg-color);
}

.verification-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
}

.verification-video::after {
    content: '';
    width: 7rem;
    height: 7rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E %3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E %3Cpath d='M6.271 5.055a.5.5 0 0 1 .52.038l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445'/%3E %3C/svg%3E");
    background-size: 100% auto;
    opacity: .7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .5s;
}

.verification-video.video-play::after {
    opacity: 0;
}

.verification-video > video {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.tech-help {
    padding: 2rem;
    text-align: center;;
    background-color: #1c1c1c;
    color: white;
    font-size: .75rem;
}

.tech-help a {
    color: var(--primary);
}

.tech-help a:hover {
    color: var(--secondary);
}

.footer {
    padding: 1rem 0;
    background-color: var(--footer-bg-color);
    font-size: .75rem;
    color: var(--footer-text-color);
}

.footer p + * {
    margin-top: .75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    position: relative;
    color: var(--footer-text-color);
}

.footer-links a:not(:last-of-type)::after {
    content: '';
    width: .25rem;
    height: .25rem;
    background-color: var(--footer-text-color);
    border-radius: 50%;
    position: absolute;
    left: calc(100% + .375rem);
    top: 50%;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--footer-text-color-hover);
}

/* RESPONSIVE CSS */

@media only screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }

    .logo {
        max-width: 23rem;
    }
}

@media only screen and (max-width: 768px) {
    .header > .container {
        flex-direction: column;
        row-gap: 1rem;
    }

    .logo {
        max-width: 20rem;
    }
}

@media only screen and (max-width: 577px) {
    .header-text {
        font-size: 1.5rem;
    }
    
    .header-text > strong {
        text-transform: uppercase;
        letter-spacing: -.4px;
    }
    
    .header-text > span {
        font-size: 1.2rem;
    }

    .navbar-nav .btn {
        min-width: 16rem;
        text-align: center;
        justify-content: center;
    }

    .verification-text {
        padding: 2rem 1rem;
    }

    .footer {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
    
    .footer-links a:not(:last-of-type)::after {
        display: none;
    }
}