:root {
    --wv-red: #ff2424;
    --wv-red-dark: #d71920;
    --wv-graphite: #3d4255;
    --wv-ink: #202331;
    --wv-muted: #6f7382;
    --wv-line: #e5e6eb;
    --wv-soft: #f5f6f8;
    --wv-white: #ffffff;
}

html,
body {
    background: var(--wv-white);
    color: var(--wv-ink);
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    color: var(--wv-red);
}

a:hover {
    color: var(--wv-red-dark);
}

.webvirtual-page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.webvirtual-page::before,
.webvirtual-page::after {
    content: "";
    position: fixed;
    pointer-events: none;
    transform: rotate(45deg);
    z-index: 1;
}

.webvirtual-page::before {
    border: 2px solid rgba(61, 66, 85, .08);
    height: 28rem;
    right: -13rem;
    top: 8rem;
    width: 28rem;
}

.webvirtual-page::after {
    border: 2px solid rgba(255, 36, 36, .08);
    bottom: -15rem;
    height: 24rem;
    left: -12rem;
    width: 24rem;
}

.webvirtual-accent {
    background: var(--wv-red);
    height: .35rem;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}

.webvirtual-waterpipe {
    bottom: 0;
    left: 0;
    opacity: .58;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 0;
}

.webvirtual-waterpipe canvas {
    height: 100% !important;
    width: 100% !important;
}

.webvirtual-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.webvirtual-navbar {
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--wv-line);
    padding: 1.4rem 0 1rem;
}

.webvirtual-logo {
    height: auto;
    max-height: 6.3rem;
    max-width: 19rem;
    width: 100%;
}

.navbar-light .navbar-toggler {
    border: 1px solid var(--wv-line);
    border-radius: .35rem;
    height: 3rem;
    padding: .55rem .75rem;
    width: 3.2rem;
}

.navbar-light .navbar-toggler:hover {
    border-color: var(--wv-red);
}

#main-content {
    display: flex;
    flex: 1;
}

.webvirtual-main {
    align-items: center;
    display: flex;
    padding: 3.5rem 0;
    width: 100%;
}

.webvirtual-kicker {
    align-items: center;
    color: var(--wv-graphite);
    display: flex;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.webvirtual-kicker-dot {
    background: var(--wv-red);
    display: inline-block;
    height: .55rem;
    margin-right: .65rem;
    transform: rotate(45deg);
    width: .55rem;
}

.webvirtual-main h1 {
    color: var(--wv-ink);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    max-width: 39rem;
}

.webvirtual-lead {
    color: var(--wv-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 38rem;
}

.webvirtual-status {
    align-items: center;
    border-left: .22rem solid var(--wv-red);
    display: flex;
    gap: 1rem;
    padding: .7rem 0 .7rem 1rem;
}

.webvirtual-status-icon {
    align-items: center;
    background: rgba(255, 36, 36, .1);
    border-radius: 50%;
    color: var(--wv-red);
    display: flex;
    flex: 0 0 2.8rem;
    height: 2.8rem;
    justify-content: center;
}

.webvirtual-status strong,
.webvirtual-status span {
    display: block;
}

.webvirtual-status strong {
    color: var(--wv-ink);
    font-size: .95rem;
}

.webvirtual-status div > span {
    color: var(--wv-muted);
    font-size: .78rem;
    margin-top: .2rem;
}

.webvirtual-countdown {
    background: var(--wv-graphite);
    border-radius: .45rem;
    box-shadow: 1rem 1rem 0 rgba(255, 36, 36, .12);
    color: var(--wv-white);
    margin-left: auto;
    max-width: 32rem;
    padding: 2.4rem 2rem 2rem;
    position: relative;
}

.webvirtual-countdown::before {
    background: var(--wv-red);
    content: "";
    height: .32rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 7rem;
}

.webvirtual-countdown-label {
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.webvirtual-countdown h2 {
    color: var(--wv-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: .55rem 0 2rem;
}

.webvirtual-countdown p {
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
    margin: 1.4rem 0 0;
    text-align: center;
}

.webvirtual-countdown .ts-count-down {
    color: var(--wv-white);
    font-size: 2.35rem;
    text-shadow: none;
}

.webvirtual-countdown .ts-count-down .ts-cc-number {
    color: var(--wv-white);
}

.webvirtual-countdown .ts-count-down .ts-cc-description {
    color: rgba(255, 255, 255, .58);
    font-size: .68rem;
}

.webvirtual-footer {
    align-items: center;
    border-top: 1px solid var(--wv-line);
    color: var(--wv-muted);
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0 1.5rem;
}

.webvirtual-footer .ts-social-icons a {
    color: var(--wv-graphite);
    margin-right: 1rem;
}

.webvirtual-footer .ts-social-icons a:hover {
    color: var(--wv-red);
}

.webvirtual-footer small {
    font-size: .68rem;
    text-align: right;
}

.webvirtual-bg-mark {
    bottom: -3.5rem;
    color: rgba(61, 66, 85, .025);
    font-size: 20rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    position: fixed;
    right: -1rem;
    z-index: 1;
}

.webvirtual-side-panel {
    border-left: .3rem solid var(--wv-red);
    color: var(--wv-ink);
}

.webvirtual-side-panel .ts-close-side-panel {
    color: var(--wv-graphite);
}

.webvirtual-side-panel section {
    border-bottom: 1px solid var(--wv-line);
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.webvirtual-section-label {
    color: var(--wv-red);
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1rem;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.webvirtual-side-panel .ts-title h2 {
    color: var(--wv-ink);
    font-size: 1.55rem;
    font-weight: 700;
}

.webvirtual-side-intro {
    color: var(--wv-muted);
    line-height: 1.8;
}

.webvirtual-director {
    align-items: center;
    background: var(--wv-soft);
    border-left: .22rem solid var(--wv-red);
    display: flex;
    gap: 1.4rem;
    margin-top: 2rem;
    padding: 1.3rem;
}

.webvirtual-director-photo {
    border-radius: 50%;
    flex: 0 0 6.5rem;
    height: 6.5rem;
    margin: 0;
    object-fit: cover;
    object-position: center 24%;
    position: static;
    width: 6.5rem;
}

.webvirtual-director span {
    color: var(--wv-red);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

.webvirtual-director h3 {
    color: var(--wv-ink);
    font-size: 1.35rem;
    font-weight: 700;
    margin: .25rem 0 .35rem;
}

.webvirtual-director p {
    color: var(--wv-muted);
    font-size: .78rem;
    margin: 0;
}

.webvirtual-services article {
    border-top: 2px solid var(--wv-line);
    margin-bottom: 2rem;
    min-height: 12rem;
    padding-top: 1.2rem;
}

.webvirtual-services article:hover {
    border-color: var(--wv-red);
}

.webvirtual-services i {
    color: var(--wv-red);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.webvirtual-services h3 {
    color: var(--wv-ink);
    font-size: .98rem;
    font-weight: 600;
}

.webvirtual-services p {
    color: var(--wv-muted);
    font-size: .82rem;
    line-height: 1.7;
}

.webvirtual-mission {
    border: 0;
    color: var(--wv-graphite);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    padding: 0 0 0 1.5rem;
    position: relative;
}

.webvirtual-mission::before {
    background: var(--wv-red);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: .22rem;
}

.webvirtual-contact {
    margin-bottom: 1.8rem;
}

.webvirtual-contact p {
    color: var(--wv-muted);
    margin-bottom: .75rem;
}

.webvirtual-contact i {
    color: var(--wv-red);
    margin-right: .65rem;
    text-align: center;
    width: 1rem;
}

.webvirtual-form .form-control {
    background: var(--wv-soft);
    border: 1px solid var(--wv-line);
    border-radius: .25rem;
    color: var(--wv-ink);
}

.webvirtual-form .form-control:focus {
    border-color: var(--wv-red);
    box-shadow: 0 0 0 .12rem rgba(255, 36, 36, .12);
}

.webvirtual-button {
    background: var(--wv-red);
    border: 1px solid var(--wv-red);
    border-radius: .25rem;
    color: var(--wv-white);
    font-weight: 600;
}

.webvirtual-button:hover {
    background: var(--wv-red-dark);
    border-color: var(--wv-red-dark);
    color: var(--wv-white);
}

.webvirtual-form .status-icon.valid {
    color: var(--wv-graphite);
}

.webvirtual-form .status-icon.invalid {
    color: var(--wv-red);
}

@media (max-width: 61.9375rem) {
    .webvirtual-main {
        padding: 2.5rem 0 3.5rem;
    }

    .webvirtual-main h1 {
        font-size: 2.15rem;
    }

    .webvirtual-countdown {
        margin: 3rem 0 0;
        max-width: none;
    }

    .webvirtual-bg-mark {
        font-size: 12rem;
    }
}

@media (max-width: 35.9375rem) {
    .webvirtual-navbar {
        padding-top: 1rem;
    }

    .webvirtual-logo {
        max-width: 13.5rem;
    }

    .webvirtual-main h1 {
        font-size: 1.8rem;
    }

    .webvirtual-countdown {
        box-shadow: .55rem .55rem 0 rgba(255, 36, 36, .12);
        padding: 2rem 1rem 1.5rem;
    }

    .webvirtual-countdown .ts-count-down {
        font-size: 2rem;
    }

    .webvirtual-countdown .ts-count-down .ts-cc-description {
        font-size: .56rem;
    }

    .webvirtual-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: .8rem;
    }

    .webvirtual-footer small {
        text-align: left;
    }

    .webvirtual-director {
        align-items: center;
        flex-direction: row;
    }

    .webvirtual-director-photo {
        flex-basis: 5rem;
        height: 5rem;
        width: 5rem;
    }
}
