@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: 10px 0;
}
    .navigation .logo {
        position: relative;
    }
        .navigation .logo img {
            width: 60px;
            height: auto;
        }

    .navigation .logo_text {
        margin-top: 8px;
        line-height: 18px;
    }
        .navigation .logo_text a {
            font-family: "Kaushan Script", sans-serif;
            font-size: 28px;
            color: #fff;

            text-decoration: none;
        }

    .navigation .logo_text div {
        font-family: "Urbanist", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #967a48;

        text-align: right;
    }

    .navigation a {
        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: #222;
            border-radius: 4px;

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

    .navigation li a {
        position: relative;

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

        margin: 0;
        padding: 8px 20px;

        display: block;

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

            color: #fff;

            text-decoration: none;

            transition: 0.1s;
        }

    .navigation .dropdown-menu {
        background: #000;
        border: none;
        border-radius: 6px;

        margin: 2px 0 0 0;
        padding: 0;

        width: auto;
    }
        .navigation .dropdown-menu ul {
            margin: 0;
            padding: 0;
        }
        .navigation .dropdown-menu li {
            display: block;
        }
        .navigation .dropdown-menu li a {
            padding: 12px 20px;
        }
        .navigation .dropdown-menu li:first-child a {
            border-radius: 4px 4px 0 0;
        }
        .navigation .dropdown-menu li:last-child a {
            border-radius: 0 0 4px 4px;
        }
        .navigation .dropdown-menu li a {
            border-radius: 0;
        }
        .navigation .dropdown-menu li a:hover {
            background: #967a48;

            color: #fff;
        }

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

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

        transition: top 0.4s;
    }

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

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

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

    color: #fff;

    position: relative;
    z-index: 20;
}

/* */
.background-img-wrapper {
    position: relative;
    overflow: hidden;

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

        width: 100%;
        height: 100%;

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

        filter: brightness(70%);
    }
    .background-img-wrapper h1 {
        font-size: 72px;
        color: #ffffff;
    }
    .background-img-wrapper h2 {
        font-size: 24px;
        font-weight: 300;
        color: #ffffff;
    }

.profile-img-wrapper {
    background: #000;

    position: relative;
    top: -98px;
    overflow: hidden;

    width: 100%;
    height: 100%;

    padding-top: 98px;
    margin-bottom: -98px;
}
    .profile-img-wrapper img {
        position: absolute;
        top: 98px;
        right: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        filter: brightness(75%);
    }
    .profile-img-wrapper h1 {
        font-size: 52px;
        color: #fff;
    }

/* */
.container-01 {
    background: #000;
}
.container-02 {
    background: #222;
}
.container-03 {
    background: #fff;
}
.container-04 {
    background: #967a48;
}
.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-reviews {
    position: relative;
    padding: 30px;
}
    .container-reviews::before {
        font-family: "Font Awesome 5 Free";
        font-size: 22px;
        font-weight: 900;
        color: #606060;
        content: "\f10d";

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

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

/* */
.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 */
.favourites {
	position: absolute;
	top: 6px;
	right: 6px;
}
.banner-row {
    height: calc(100vh - 260px);
}

/* */
.star-rating-panel {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: row-reverse;
}
.rating-input {
  position: fixed;

  opacity: 0;

  pointer-events: none;
}
.rating-label {
  font-size: 0;
  color: #d5d5d5;

  width: auto;

  cursor: pointer;

  transition: color 0.1s ease-in-out;
}

.rating-label:before {
  position: relative;

  display: inline-block;

  font-size: 32px;
  font-family: 'FontAwesome', serif;
  content: "\f005";

  margin-left: 5px;
}
.rating-input:checked ~ .rating-label {
    color: #967a48;
}

.rating-label:hover, .rating-label:hover ~ .rating-label {
    color: #967a48;
}

.rating-input:checked + .rating-label:hover,
.rating-input:checked + .rating-label:hover ~ .rating-label,
.rating-input:checked ~ .rating-label:hover,
.rating-input:checked ~ .rating-label:hover ~ .rating-label,
.rating-label:hover ~ .rating-input:checked ~ .rating-label {
    color: #967a48;
}

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

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

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

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

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

    	width: 100%;

    	margin: 30px 0 15px 0;
    }
