@charset "utf-8";
/* CSS Document */

/* */
.padding-s {
    padding-top: 60px;
    padding-bottom: 60px;
}
.padding-m {
    padding-top: 100px;
    padding-bottom: 100px;
}
.padding-l {
    padding-top: 160px;
    padding-bottom: 160px;
}

.margin-s {
    margin-top: 60px;
    margin-bottom: 60px;
}
.margin-m {
    margin-top: 100px;
    margin-bottom: 100px;
}
.margin-l {
    margin-top: 160px;
    margin-bottom: 160px;
}

/* */
.navigation {
    background: #000;

    position: relative;
    z-index: 100;

    width: 100%;
    height: 100%;

    padding: 16px 0;
}
    .navigation .logo {
        position: relative;
        top: -2px;
        left: 10px;

        font-family: "Barriecito", system-ui;
        font-weight: 400;
        font-style: normal;
        font-size: 26px;
    }
    .navigation a {
        color: #fff;
        text-decoration: none;
    }
        .navigation a:hover {
            color: #fff;
            text-decoration: none;
        }

    .navigation ul {
        margin: -2px 0 0;
        padding: 0;

        list-style: none;
    }
    .navigation li {
        margin: 0;
        padding: 0;

        display: inline-block;
    }
        .navigation li.show {
            background: #323232;
            border-radius: 4px;

            color: #fff;
        }
        .navigation li.show a {
            color: #fff;
        }

    .navigation li a {
        position: relative;

        font-size: 15px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;

        margin: 0;
        padding: 6px 15px;

        display: block;

        transition: 0.1s;
    }
        .navigation li a:hover {
            background: #323232;
            border-radius: 4px;

            color: #fff;

            text-decoration: none;

            transition: 0.1s;
        }
        .navigation li:last-child a {
            background: #404040;
            border-radius: 4px;

            color: #fff;

            text-decoration: none;

            transition: 0.1s;
        }

    /* */
    .navigation.show {
        position: sticky;
        top: -1px;

        transition: top 0.4s;
    }
    .navigation.hide {
        position: sticky;
        top: -70px;

        transition: top 0.4s;
    }

/* */
.background-stripe-01 {
    background: #fff;

    position: relative;
    z-index: 20;
}
.background-stripe-02 {
    background: #f1f1f1;

    position: relative;
    z-index: 20;
}
.background-stripe-03 {
    background: #f5f5f5;

    position: relative;
    z-index: 20;
}
.background-stripe-04 {
    background: #1a191a;

    position: relative;
    z-index: 20;
}

/* */
.container-01 {
    background: #000;
}
.container-02 {
    background: #f1f1f1;
}
.container-03 {
    background: #fff;
}
.container-04 {
    background: #970000;
}
.container-05 {
    background: #121212;
}
.container-06 {
    background: #606060;
}

.container-success {
    background: #d4edda;
    color: #155724;
}
    .container-success a {
        color: #155724;
    }
    .container-success a:hover {
        color: #155724;
    }
.container-alert {
    background: #f8d7da;
    color: #721c24;
}
    .container-alert a {
        color: #721c24;
    }
    .container-alert a:hover {
        color: #721c24;
    }
.container-info {
    background: #cce5ff;
    color: #004085;
}
    .container-info a {
        color: #004085;
    }
    .container-info a:hover {
        color: #004085;
    }

.container-dark {
    background: #656565;
}

.container-padding-s {
    padding: 20px;
}
.container-padding-m {
    padding: 40px;
}
.container-padding-l {
    padding: 60px;
}

.container-height-s {
    min-height: 80px;
}
.container-height-m {
    min-height: 120px;
}
.container-height-l {
    min-height: 180px;
}

.container-shadow {
    box-shadow: 0 5px 8px #e9e9e9 !important;
}
.container-border {
    border: 1px solid #eaedf2;
}
.container-rounded {
    border-radius: 12px;
}

.container-circle {
    border-radius: 50%;

    display: block;
}
    .container-circle.small {
        width: 35px;
    	height: 35px;
    	line-height: 35px;
    }
    .container-circle.medium {
        width: 45px;
    	height: 45px;
    	line-height: 45px;
    }
    .container-circle.large {
        width: 75px;
    	height: 75px;
    	line-height: 75px;
    }

/* */
.container-editor img {
    border-radius: 4px;

    width: 100% !important;

    object-fit: cover;
    object-position: top;

    margin-bottom: 20px;
}
.container-editor pre {
    background: #f5f5f5;
    padding: 10px 15px;
}
.container-editor h4 {
    font-size: 26px;
}
.container-editor h3 {
    font-size: 30px;
}
.container-editor h2 {
    font-size: 36px;
}
.container-editor h1 {
    font-size: 42px;
}
.container-editor figure {
    margin: 0;
}

/* Misc */
.banner-row {
    height: calc(100vh - 60px);
}

/* */
.footer-bar {
    background: #000;

    font-size: 16px;
    color: #fff;

    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
}
    .footer-bar a {
        color: #fff;
        text-decoration: none;

        transition: 0.2s;
    }
        .footer-bar a:hover {
            color: #f8f8f8;

            transition: 0.2s;
        }

    .footer-bar ul {
        list-style: none;

        padding: 0;
        margin: 0;
    }
        .footer-bar li {
            margin: 0;
            padding: 5px 0;
        }

    .footer-bar hr {
        background-image: none;
        border-top: 1px solid #323232;

    	width: 100%;

    	margin: 30px 0 15px 0;
    }
