@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Base */
body {
    font-family: "Roboto", sans-serif;
    font-size: 0;
}

body.unscrollable {
  height: 100%;
  overflow: hidden;
}

/* Bar */
.bar {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    display: flex;
    position: relative;
    margin: 16px auto;

    @media(min-width: 1024px) { /* Desktop */
        border-radius: 32px;
    }
}

.bar-links {
    border-left: 1.5px solid rgba(0,0,0,0.1);
    padding: 0 24px 0 0;

    @media(min-width: 1024px) { /* Desktop */
        padding: 0 32px 0 0;
    }
}

.bar-links a {
    color: rgb(191,191,191);
    font-size: 16px;
    line-height: 48px;
    margin: 0 0 0 24px;

    @media(min-width: 1024px) { /* Desktop */
        font-size: 18px;
        line-height: 64px;
        margin: 0 0 0 32px;
    }
}

.bar-links a:hover {
    color: #000;
}

.bar-links a i {

}

.bar-logo {
    display: flex;
    justify-content: flex-start;
    padding: 0 24px 0;

    @media(min-width: 1024px) { /* Desktop */
        padding: 0 32px 0;
    }
}

.bar-logo-image {
    padding: 12px 0 0;

    @media(min-width: 1024px) { /* Desktop */
        padding: 16px 0 0;
    }
}

.bar-logo-image img {
    width: 24px;

    @media(min-width: 1024px) { /* Desktop */
        width: 32px;
    }
}

.bar-logo-text {

}

.bar-logo-text h1 {
    font-size: 18px;
    font-weight: 600;
    line-height: 48px;
    padding: 0 0 0 8px;

    @media(min-width: 1024px) { /* Desktop */
        font-size: 24px;
        line-height: 64px;
        padding: 0 0 0 16px;
    }
}

.bar-logo-text h1 a {
    line-height: 48px;

    @media(min-width: 1024px) { /* Desktop */
        line-height: 64px;
    }
}

.bar-menu {
    display: flex;
    margin: 32px auto 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: -100vh;
    /* top: 32px */
    z-index: -1;
    transition: 0.1s;

    @media(min-width: 1024px) { /* Desktop */
        display: none;
    }
}

.bar-menu-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    padding: 16px;
    position: relative;
    transition: 0.1s;
}

.bar-menu-container a {
    display: block;
    font-size: 18px;
    line-height: 48px;
    padding: 8px;
}

.bar-menu-container a.active,
.bar-menu-container a.active i {
    color: #f00;
}

.bar-menu-container a i {
    color: rgb(191,191,191);
    padding: 0 8px 0 0;
}

.bar-menu-button {
    border-left: 1.5px solid rgba(0,0,0,0.1);
    display: block;

    @media(min-width: 1024px) { /* Desktop */
        display: none;
    }
}

.bar-menu-button button {
    color: rgb(191,191,191);
    font-size: 16px;
    line-height: 48px;
    margin: 0 24px;
    width: 16px;
}

.bar-menu-button button:active {
    color: #000;
}

.bar-menu-button button i {

}

.bar-menu-desktop {
    display: none;

    @media(min-width: 1024px) { /* Desktop */
        border-left: 1.5px solid rgba(0,0,0,0.1);
        display: block;
        padding: 0 24px;
        position: relative;
    }
}

.bar-menu-desktop a {
    color: rgb(127,127,127);
    font-size: 16px;
    height: 64px;
    line-height: 64px;
    margin: 0 16px;
}

.bar-menu-desktop a i {
    display: none;
    padding: 0 8px 0 0;
}

.bar-menu-desktop a:hover {
    color: #000;
}

.bar-menu-desktop a.active {
    color: rgb(255,0,0);
}

.bar-menu-indicator {
    display: none;

    @media(min-width: 1024px) { /* Desktop */
        display: block;
        position: relative;
        width: 100%;
    }
}

.bar-menu-indicator-line {
    background: #f00;
    height: 4px;
    left: 0;
    position: absolute;
    top: -4px;
    transition: left ease .25s, width ease .25s;
    width: 0;
}

#bar_tint {
    background: rgba(0,0,0,0.25);
    display: none;
    height: calc(100vh + 16px);
    left: -24px;
    position: fixed;
    top: -16px;
    width: 100vw;
    z-index: -1;
}

.bar-wrapper {
    align-items: center;
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;

    @media(min-width: 1024px) { /* Desktop */

    }
}

.hl-ballast {
    height: 96px;
}

.hl-cell-l {
    text-align: left;
}

.hl-cell-c {
    text-align: center;
}

.hl-cell-r {
    text-align: right;
}

.hl-cells-separator {
    background: rgba(0,0,0,0.1);
    width: 1.5px;
}

.hl-row-top {
    border-bottom: 1.5px solid rgba(0,0,0,0.1);
    height: 32px;
}

.hl-row-top-links {
    padding: 0 8px;
}

.hl-row-top-links a {
    color: rgb(127,127,127);
    font-size: 14px;
    line-height: 32px;
    margin: 0 8px;
}

.hl-row-top-links a:hover {
    color: #000;
}

.hl-row-top-links a i {
    padding: 0 8px 0 0;
}

.hl-row-wrapper {
    display: flex;
    justify-content: space-between;

    @media(min-width: 1024px) { /* Desktop */

    }
}

/* Box */
.box {
    border-radius: 32px;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    min-height: 64px;
    position: relative;
    width: 100%;
}

.box-description {
    font-size: 16px;
    line-height: 1.5em;
    padding: 16px 16px 0;
    text-shadow: 0 0 8px rgba(0,0,0,1);
}

.box-image {

}

.box-image img {
    border-radius: 32px;
}

.box-text {
    color: #fff;
    position: absolute;
}

.box-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
    padding: 16px 16px 0;
}

/* Details */
.detail {
    padding: 8px;
}

.detail-title {

}

.detail-title h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
}

.detail-text {

}

.detail-text p {
    font-size: 18px;
    line-height: 1.5em;
}

.details {
    padding: 8px;
}

/* Feature */
.feature {

}

.feature-container {
    padding: 8px;
}

.feature-container div {
    padding: 8px;
}

.feature-icon {

}

.feature-icon i {
    color: #f00;
    font-size: 32px;
}

.feature-text {

}

.feature-text p {
    font-size: 18px;
    line-height: 1.5em;
}

.feature-title {

}

.feature-title h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
}

/* FLEX */
.F_GRID {
    _padding: 8px;

    @media(min-width: 1024px) { /* Desktop */
        display: flex;
        margin: 0 auto;
        max-width: 1280px;
    }
}

.F_CELL {
    padding: 16px;

    @media(min-width: 1024px) { /* Desktop */
        width: 50%;
    }
}

.F_ROW {
    padding: 16px;
    width: 100%;

    @media(min-width: 1024px) { /* Desktop */
        margin: 0 auto;
        max-width: 1280px;
    }
}

/* Footer */
.footer {

}

.footer-text {
    padding: 8px;
}

.footer-text p {
    color: rgb(127,127,127);
    font-size: 16px;
    padding: 8px;

    @media(min-width: 1024px) { /* Desktop */
        margin: 0 auto;
        max-width: 1280px;
        padding: 8px 16px;
    }
}

/* Lead */
.lead {
    padding: 16px 0;
}

.lead-buttons {

}

.lead-buttons a {
    background: rgba(0,0,0,0.1);
    border-radius: 32px;
    font-size: 16px;
    line-height: 1.5em;
    margin: 16px 16px 0 0;
    padding: 16px 32px;
    text-transform: uppercase;
}

.lead-buttons a:hover {
    background: #fff;
    color: #000;
}

.lead-buttons a i {
    padding: 0 8px 0 0;
}

.lead-container {
    padding: 8px;
}

.lead-container div {
    padding: 8px;
}

.lead-tag {

}

.lead-tag p {
    color: rgb(127,127,127);
    font-size: 16px;
    text-transform: uppercase;
}

.lead-title {

}

.lead-title h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5em;
}

.lead-image {

}

.lead-image img {
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    border-radius: 32px;
}

.lead-text {

}

.lead-text p {
    font-size: 18px;
    line-height: 1.5em;
}

.lead-list {

}

.lead-list ul {

}

.lead-list ul li {
    font-size: 18px;
    line-height: 1.5em;
}

.lead-list ul li i {
    color: #f00;
    padding: 0 16px 0 0;
}

/* Section */
.section {
    padding: 32px 0;
}

.section:first-child {
    margin: 64px 0 0;
    padding: 16px 0 32px;

    @media(min-width: 1024px) { /* Desktop */
        margin: 96px 0 0;
    }
}

.section:last-child {
    @media(min-width: 1024px) { /* Desktop */
        min-height: calc(100vh - 112px);
    }
}

.section-box {
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    border-radius: 32px;
    margin: 0 16px;
}

.section-flex {
    @media(min-width: 1024px) { /* Desktop */
        display: flex;
    }
}

.section-flex-cell-33 {
    @media(min-width: 1024px) { /* Desktop */
        width: calc(100vw / 3);
    }
}

.section-flex-cell-50 {
    @media(min-width: 1024px) { /* Desktop */
        width: 50%;
    }
}

.section-wrapper {
    @media(min-width: 1024px) { /* Desktop */
        margin: 0 auto;
        max-width: 1280px;
    }
}

.sections-container {

}
