@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;
}
.padding-xl {
    padding-top: 240px;
    padding-bottom: 240px;
}

.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: #fff;

    position: relative;
    z-index: 500;

    width: 100%;
    height: 100%;

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

        color: #3C3C4F;
    }

    .navigation .logo img {
        width: 75px;
        height: auto;

        margin-top: -8px;
    }
        .navigation .logo_text a {
            font-family: "DecoStyle", sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: #000;
        }
            .navigation .logo_text a:hover {
                color: #000;
                text-decoration: underline;
            }

    .navigation a {
        color: #3C3C4F;
        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: #d31722;
            border-radius: 4px;

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

    .navigation li a {
        font-size: 16px;
        font-weight: 500;
        color: #3C3C4F;
        text-decoration: none;

        margin: 0;
        padding: 8px 20px;

        display: block;

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

            color: #fff;

            text-decoration: none;

            transition: 0.1s;
        }

    .navigation .dropdown-menu {
        background: #fff;
        border: none;
        border-radius: 4px;

        margin: 2px 0 0 0;
        padding: 0;
    }
        .navigation .dropdown-menu ul {
            margin: 0;
            padding: 0;
        }
        .navigation .dropdown-menu li {
            display: block;
        }
        .navigation .dropdown-menu li a {
            color: #3C3C4F;

            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: #d31722;

            color: #fff;
        }

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

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

        transition: top 0.4s;
    }

/* */
.filter-panel {
    background: #fff;

    position: fixed;
    top: 0px;
    left: -999px;

    z-index: 10005;

    transition: left 0.4s;
}
.filter-panel .filter-panel-content {
    width: 400px;
    height: 100vh;

    overflow-y: scroll;
    overflow-x: hidden;

    padding: 20px 28px 160px 20px;
}
.filter-panel .filter-panel-btn-close {
    position: absolute;

    top: 10px;
    right: -60px;
}
.filter-panel .filter-panel-btn-submit {
    background: #fff;
    border-top: 1px solid #dee2e6;

    position: sticky;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 15px;

    width: 100%;
    height: auto;
}
.filter-panel.open {
    left: 0;

    transition: left 0.4s;
}

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

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

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

    color: #fff;

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

    color: #fff;

    position: relative;
    z-index: 20;
}

/* */
.background-stripe-img {
    position: relative;

    width: 100%;
	height: auto;

	text-align: center;
}
    .background-stripe-img img {
        position: absolute;
		top: -60px;
		left: 0;
		right: 0;

		margin: 0 auto;

		width: 100%;
		height: auto;

		object-fit: cover;

        filter: brightness(0.4);
    }
    .background-stripe-img h1 {
        color: #fff;
    }
    .background-stripe-img h2 {
        font-size: 52px;

        color: #fff;

        margin-bottom: 30px;
    }

/* */
.container-01 {
    background: #000000;
}

.container-02 {
    background: #ffffff;
}

.container-03 {
    background: #f5f5f5;
}

.container-04 {
    background: #d31722;
}

.container-05 {
    background: #44AC8E;
}

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

.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;
    width: 40px;
    height: 40px;

    line-height: 40px;
}

/* */
.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: #d31722;

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

    	width: 100%;

    	margin: 30px 0 15px 0;
    }
