/*.container, .row, [class*='col-']{
    border: 1px solid rgba(0, 0, 0, .5);
}*/



/**
 * import font
 * @type {[type]}
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

@font-face {
    font-family: UTM-Erie-Black;
    src: url('../fonts/UTM-Erie-Black.ttf');
}

/**
 * reset-css
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}
body,html{
    overflow-x: hidden;
}
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    object-fit: cover;
}
/**
 * variable
 */
:root {
    --main-color: #012044;
    --sub-color: #f89109;
    --h-color: #f8b409;
    --global-padding: 20px;
    --text-font: Roboto;
    --head-font: Roboto;
}
/**
 * scroll-bar
 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--sub-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 8px;
    border: 1px solid transparent;
    background-clip: content-box;
}
/**
 * header
 */
header {
    background-color: var(--main-color);
    color: #fff;
}

header a {
    color: #fff;
}

nav img,
header img {
    max-height: 70px;
    max-width: 160px;
}
.top-bar {
    border-bottom: 2px solid #fff;
    font-size: 13px;
    height: 95px;
}

.top-bar span {
    font-size: 10px;
}

.top-bar .container {
    padding-top: 0;
    padding-bottom: 0;
}

.top-bar .fa {
    font-size: 25px;
    background-color: #195da7;
    color: #fff;
    height: 40px;
    width: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

#logo-wrap {
    position: relative;
    text-align: center;
}

#logo-wrap img {
    height: 70px;
}

.button-1 {
    width: 80px;
    height: 30px;
    background-color: var(--sub-color);
    color: #fff;
    padding: 5px;
    margin: 10px auto !important;
    font-size: 15px;
    border: 0;
}

#triagle {
    top: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-left: 91px solid transparent;
    border-right: 91px solid transparent;
    border-top: 91px solid #fff;
}

nav {
    background: var(--main-color);
}

.container {
    padding: var(--global-padding);
}

.row {
    margin: 0;
    margin-left: calc(var(--global-padding)*-1);
    padding: 0;
}

[class*='col-'] {
    margin: 0;
    padding: 0;
    padding-left: var(--global-padding) !important;
}
nav {
    height: 95px;
}

nav .container {
    padding-top: 0;
    padding-bottom: 0;
}

nav ul {
    height: 100% !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    margin: 0;
}

nav li,
nav ul li a {
    height: 100% !important;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    display: flex;
    align-items: center;
}

a {
    transition: .5s;
}

.sub-nav {
    position: relative;
}

.sub-nav:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    display: block;
    right: 0;
    top: 20%;
}

.dropdown_stick {
    position: relative;
    background-color: var(--sub-color);
    height: 50px !important;
    padding: 10px 20px 10px 20px !important;
    border-radius: 10px;
}

.dropdown_stick>.dropdown-menu {
    top: 73px !important;
}

.dropdown_stick span {
    cursor: pointer;
}

.sub-nav>ul {
    position: absolute;
    display: none;
    top: 0;
    left: 100%;
    min-width: 250px !important;
}

.sub-nav:hover>ul {
    display: block;
}

.sub-nav>ul>li {
    width: 100%;
}

.dropdown2 {
    position: relative;
    display: none;
}

.dropdown2:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu {
    background: none;
    border: 0;
    padding: 0;
    border-radius: 0;
    top: 90px;
    z-index: 99;
    left: 0;
    min-width: 250px;
}

.dropdown-menu li {
    height: 48px !important;
    background-color: #fff;
    z-index: 99;
}

.dropdown-menu li a {
    color: black !important;
    width: 100% !important;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 14px;
    line-height: 48px;
    padding-left: 5px;
}

.dropdown-menu li a:hover {
    color: var(--main-color);
}

.dropdown-menu li:hover {
    background: var(--sub-color);
}

#logo img {
    height: 65px;
    margin: 0 10px 0 0;
}

#navbar li {
    height: 100%;
}

.menu-title {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    position: relative;
    text-shadow: -2px 1px 3px rgba(0, 0, 0, .5);
    font-weight: bold;
}

.menu-title:after {
    content: '';
    height: 4px;
    width: 80px;
    background: var(--main-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.product-wrap img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.product-wrap .product-info:before{
    content: '';
    height: 10px;
    width: 90%;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.product-wrap {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
    box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, .5);
}
.product-wrap:hover{
    transform: translateY(-10px)!important;
    transition: .1s;
}

.product-wrap a {
    color: var(--main-color);
}

.product-info {
    padding: 10px;
}

.product-wrap:hover {
    box-shadow: 1px 1px 6px 4px rgba(0, 0, 0, .5);
    transition: .3s;
}

.pagination {
    padding: 20px;
}

.pagination ul {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.pagination ul li {
    margin: 0 5px;
    background-color: #e9bd44;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
}

img {
    max-width: 100%;
}

.cur_page {
    background: black !important;
    color: #fff;
}

.dive {
    background: rgba(0, 0, 0, .2);
    border: 0 !important;
}

.title {
    font-size: 24px;
    font-family: var(--head-font);
    font-weight: bold;
    color: #f8b409;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    position: relative;
}

.title:after {
    content: '';
    height: 4px;
    width: 80px;
    display: block;
    background: var(--sub-color);
    position: absolute;
    bottom: -2px;
}

.breadcrumb-item a {
    color: black;
}

.breadcrumb-item.active a {
    font-weight: bold;
    pointer-events: none;
    cursor: default;
    color: var(--main-color);
}

.roll:hover {
    transform: rotate(360deg);
    transition: 1s;
    transition-timing-function: linear;
    cursor: pointer;
}

.prev {
    position: absolute;
    left: 20px;
    top: 70px;
    font-size: 70px;
    z-index: 100;
}

.next {
    position: absolute;
    right: 20px;
    top: 70px;
    font-size: 70px;
    z-index: 100;

}

.slick-slide {
    margin: 0;
}

.slick-dots {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 5px;
    margin: 0;
}

.slick-dots button {
    margin: 10px;
    background-color: #e9e1cc;
    color: #e9e1cc;
    height: 10px;
    width: 10px;
    font-size: 1px;
    border-radius: 100%;
    position: relative;
    border: 0;
}

.slick-dots li.slick-active button:after {
    content: '';
    height: 10px;
    width: 10px;
    font-size: 1px;
    border-radius: 100%;
    position: absolute;
    top: -0.5px;
    left: 0;
    display: block;
    transform: scale(1.5);
    border: 1px solid #e9e1cc;
}

.sidepanel {
    height: 100vh;
    /* Specify a height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1200;
    /* Stay on top */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidepanel */
}

._show {
    max-width: 85vw;
    width: 400px;
}

.btn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid #e74c3c;
    border-radius: 0.6em;
    color: #e74c3c;
    cursor: pointer;
    display: flex;
    align-self: center;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    height: 40px;
}

.btn:hover,
.btn:focus {
    outline: 0;
    color: #fff;
}

.main-btn {
    border-color: var(--main-color);
    color: black;
    background-image: linear-gradient(45deg, black 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 500ms ease-in-out;
}

.main-btn:hover {
    background-position: 0;
}




/**
 * footer
 */

footer{
    color: #fff;
}

.copyright{
    font-size: 14px;
    padding: 10px!important;
    position: relative;
}
.copyright:before{
    position: absolute;
    content: "";
    display: block;
    height: 1px;
    width: 90%;
    margin: auto;
    background-color: #fff;
    top: 0;
    left: 5%;
}

footer .sec1{
    background-color: #f8f8f8;
}

footer .sec2{
    background-color: var(--main-color);
}
footer a{
    color: #fff;
}
footer li{
    padding: 10px 0 10px 0;
}
footer a:hover{
    color: var(--sub-color);
}
.footer-content{
    margin-top: 20px;
}
.footer-content li a:before{
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
}
.footer-content iframe{
    width: 100%!important;
    height: 200px;
}

footer h5{
    text-transform: uppercase;
}

footer h5:after{
    content: '';
    height: 3px;
    width: 80px;
    display: block;
    background-color: #fff;
}
footer img{
    height: 150px!important;
    margin-bottom: 30px;
}
.social{
    background-color: #e9bd44;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    min-height: 420px;
    font-size: 30px;
    padding: 30px 0!important;
}
.social i{
    border: 2px solid #fff;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}