@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: rgba(0, 0, 0, 0.5);

    position: relative;
    z-index: 100;

    width: 100%;
    height: auto;

    padding: 20px 0 20px 0;
}
    .navigation .logo {
        position: relative;

        color: #fff;
    }
    .navigation .logo_text a {
        font-family: "Playfair Display", sans-serif;
        font-size: 24px;
        font-weight: 900;
    }
    .navigation .logo_text a:hover {
        color: #b4a67f;
        text-decoration: none;
    }
    .navigation .logo_text span {
        display: block;

        font-size: 14px;
        font-weight: 500;

        margin-bottom: -10px;
    }

    .navigation .logo img {
        width: 38px;
        height: auto;
    }

    .navigation a {
        color: #ffffff;
        text-decoration: none;
    }

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

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

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

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

    .navigation li a {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;

        margin: 0;
        padding: 8px 20px;

        display: block;

        transition: 0.1s;
    }
        .navigation li a:hover {
            color: #6736de;

            text-decoration: none;

            transition: 0.1s;
        }

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

        background: rgba(0, 0, 0, 0.9);

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

        transition: top 0.4s;
    }

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

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

    color: #fff;

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

    color: #fff;

    position: relative;
    z-index: 20;
}

/* */
.background-img-wrapper {
    background: #000;

    overflow: hidden;

    width: 100%;
    height: calc(100vh - 92px);
}
    .background-img-wrapper img {
        position: absolute;
        bottom: 0;
        right: 0;

        width: 100%;
        height: 100vh;
    }
    .background-img-wrapper .banner-row {
        height: calc(100vh - 80px);

    }
    .background-img-wrapper h1 {
        font-size: 62px;
        font-weight: 700;
        color: #fff;
    }
    .background-img-wrapper h2 {
        font-family: "Urbanist", sans-serif;
        font-size: 22px;
        font-weight: 400;
        color: #fff;
    }

/* */
.container-01 {
    background: #fff;
}
.container-02 {
    background: #000;
}
.container-03 {
    background: #121212;
}
.container-04 {
    background: #b4a67f;
}

.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-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-reviews {
    position: relative;
}
    .container-reviews::before {
        font-family: "Font Awesome 5 Free";
        font-size: 32px;
        font-weight: 900;
        color: #000;
        content: "\f10d";

        position: absolute;
        top: 0;
        left: 15px;
    }
    .container-reviews::after {
        font-family: "Font Awesome 5 Free";
        font-size: 32px;
        font-weight: 900;
        color: #000;
        content: "\f10e";

        position: absolute;
        bottom: 0;
        right: 15px;
    }

.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;
    }

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

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

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

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

            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 #222222;

    	width: 100%;

    	margin: 30px 0 15px 0;
    }
