@font-face {
    font-family: "Glober";
    font-style: normal;
    font-weight: 400;
    src: url(fonts/glober/29F889_D_0.eot?#iefix)format("embedded-opentype"),
        url(fonts/glober/29F889_D_0.woff)format("woff"),
        url(fonts/glober/29F889_D_0.ttf)format("truetype");
}

@font-face {
    font-family: "GloberBold";
    font-style: normal;
    src: url(fonts/glober/29F889_3_0.eot?#iefix)format("embedded-opentype"),
        url(fonts/glober/29F889_3_0.woff)format("woff"),
        url(fonts/glober/29F889_3_0.ttf)format("truetype");
}

@font-face {
    font-family: "Logo";
    src: url("/fonts/logo/logo.eot");
    src: url("/fonts/logo/logo.eot?#iefix")format("embedded-opentype"),
        url("/fonts/logo/logo.svg")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Glober', sans-serif;
    font-weight: 400;
    color: #212529 !important;
}

.container-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
    font-family: 'Logo', serif;
    font-size: 3.9rem;
}

.logo-container svg {
    height: 64px;
    width: auto;
}

#logoPlus {
    display: inline-block;
    width: 1ch;
    text-align: center;
    font-family: 'Publico Text Web', serif;
}

#autoSlash {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
}

hr {
    height: 1px;
    background-color: #000;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 1;
}

.blueBg {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
    background-color: #c3d5e947;
}

.coming-soon {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 500;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.address-block {
    padding-top: 18px;
}

.address-block h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Logo', serif;
}

.address-block p {
    line-height: 1.6;
}

.two-column-container {
    position: relative;
}

.column-left {
    position: relative;
}

.column-right {
    position: relative;
}

/* Create divider within the column area and extend to viewport bottom */
.vertical-line-extension {
    position: fixed;
    width: 1px;
    background-color: #000;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.column-left {
    border-right: 1px solid #000;
}

a {
    /* text-decoration: none !important; */
    color: #212529 !important;
}

@media (max-width: 767px) {
    .logo-container {
        margin-bottom: 1rem;
        padding-top: 1.5rem;
    }

    .blueBg {
        padding-left: 15px;
        padding-right: 15px;
    }

    .address-block {
        padding-left: 20%;
    }

    .container-content>.d-md-none>div:first-child {
        padding-top: 1.8rem;
    }

    .container-content>.d-md-none>div:first-child p {
        margin-bottom: 0;
    }

    .container-content>.d-md-none>div:last-child p {
        margin-bottom: 3rem;
    }
}

.slash-line {
    display: inline-block;
    /* shrink to content */
    white-space: nowrap;
    /* keep slashes on one line */
    overflow: hidden;
    /* hide unrevealed chars */
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.3rem;
    /* ensure characters line up with ch unit */
    width: 0ch;
    /* start fully hidden (0 characters) */
    --count: 20;
    /* default number of characters */
    --duration: 2s;
    /* default animation time */
    --iteration: 1;
    /* default iterations (1 = once) */
    animation: slash-reveal var(--duration) steps(var(--count), end) var(--iteration) forwards;
    -webkit-animation: slash-reveal var(--duration) steps(var(--count), end) var(--iteration) forwards;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* center the element horizontally */
}