@font-face {
    font-family: 'RRPioneer';
    src: url('../fonts/RRPioneer-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RRPioneer';
    src: url('../fonts/RRPioneer-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'RRPioneer';
    src: url('../fonts/RRPioneer-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RRPioneer';
    src: url('../fonts/RRPioneer-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'RRPioneer', Helvetica, Arial, sans-serif;
    font-weight: 500; /* Optional: default to medium */
    font-size: 16px;
    line-height: 24px;
}


ol, ol ol, ul, ul ul {
    padding: 0 0 0 0;
}

.float_right {
    position: fixed;
    top: 80%;
    right: 0;
    z-index: 99;
    width: 50px;
    height: 120px;
}

.footer-copyright {
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0;
}

p.footer-copyright.text-center a {
    color: #b3bec5;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}


.scroll-btn {
    line-height: 46px;
}


/* banner Slider */
.slider {
    width: 100%;
    margin: auto;
    position: relative;
}

.slide {
    /* height: 480px; */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.slide-content {
    position: absolute;
    bottom: 70px;
    left: 60px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    max-width: 60%;
}

.slide-content h1 {
    margin: 0 0 10px;
    font-size: 28px;
}

.slide-content p {
    margin: 0;
    font-size: 16px;
}

/* Custom Arrows */
.slick-prev,
.slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    top: 45%;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px;
    color: white;
}

/* Positioning arrows */
.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

/* Custom Dots */
.slick-dots {
    bottom: 15px;
}

.slick-dots li button:before {
    font-size: 14px;
    color: white;
    opacity: 0.6;
}

.slick-dots li.slick-active button:before {
    color: #ffd700;
    opacity: 1;
}




.contact-form textarea.input-white {
    padding-top: 16px;
    min-height: 150px;
}


.prdt-detail .prdt-detail-head .custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 200px;
    float: right;
}

.prdt-detail .prdt-detail-head .custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: #394a6d;
    height: auto;
    padding: 0;
}

.prdt-detail .prdt-detail-head .custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 300;
    color: #3b3b3b;
    height: 45px;
    line-height: 50px;
    background: #ffffff;
    cursor: pointer;
    border-width: 2px 0 2px 0;
    border-style: solid;
    border-color: #394a6d;
}

.prdt-detail .prdt-detail-head .custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #394a6d;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    overflow-y: auto;
    max-height: -webkit-fill-available;
}

.prdt-detail .prdt-detail-head .custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow-y: auto;
    max-height: 50vh;
}

.prdt-detail .prdt-detail-head .custom-option {
    position: relative;
    display: block;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.5s;
    border-bottom: 1px solid #ebebeb;
}

.prdt-detail .prdt-detail-head .custom-option:hover {
    cursor: pointer;
    background-color: #b2b2b2;
}

.prdt-detail .prdt-detail-head .custom-option.selected {
    color: #ffffff;
    background-color: #305c91;
}

.prdt-detail .prdt-detail-head .arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.prdt-detail .prdt-detail-head .arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.prdt-detail .prdt-detail-head .arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: #394a6d;
}

.prdt-detail .prdt-detail-head .arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
}

.prdt-detail .prdt-detail-head .open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}

.prdt-detail .prdt-detail-head .open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}

/* @media (max-width: 600px) {
            .prdt-detail .prdt-detail-head .custom-select-wrapper {
                padding-top: 20px;
            }
        } */


.accordion-style-1 .card-header h5 span.left-icon i {
    left: 6px !important;
    top: 8px;
    color: #fff;
    transform: rotate(0deg);
}

.accordion-style-1 .card-header h5 span.left-icon {
    padding: 6px 15px;
    background-color: #223747;
    position: relative;
    text-align: center;
    line-height: 1px;
    border-radius: 3px;
    margin-right: 12px;
}

.accordion-style-1 .card-header {
    border-top: 0px solid;
    border-bottom: 1px solid;
    border-left: 0px solid;
    border-right: 0px solid;
    border-radius: 0px;
    margin-bottom: 15px;
    box-shadow: none;
    position: relative;
    padding: 17px 16px;
    cursor: pointer;
    margin-bottom: 0;
}

.accordion-style-1 .card-body {
    padding: 21px;
    padding-top: 12px;
    line-height: 26px;
}
.search-form button.btn.btn-primary {
    border: 0px;
}

/* .hot-product .owl-nav button {
    width: 38px;
    height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    color: #243b4ddb !important;
    font-size: 22px !important;
    border: 2px solid #243b4ddb !important;
    font-weight: 700 !important;
} */

.post-item .post-category {
    background-color: #425665;
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
}
.shop-prdt-img img {
    background-color: #fff;
}

.post-images img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.inner-banner-360 {
    padding-top: 360px !important;
}

section.engine-hero .banner-content {
    padding: 77px 0;
    color: #fff;
}
.engine-hero h1 {
    font-size: 28px;
    text-transform: uppercase;
}

.highlight-mtu {
    text-transform: lowercase !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-style: italic;
}

.post-description ol, .post-description ol ol, .post-description ul, .post-description ul ul {
    padding: 0 0 12px 24px;
}

.post-description  li {
    list-style: disc;
}


/* // Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


/* // Extra large devices (large desktops)
// No media query since the extra-large breakpoint has no upper bound on its width */

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .slide {
        height: 300px;
    }

    .slide-content {
        position: absolute;
        bottom: 40px;
        left: 10px;
        max-width: 95%;
    }

    .slide-content h1 {
        font-size: 24px !important;
    }
    .hot-product .owl-nav button {
        top: 26% !important;
    }
    .prdt-detail .prdt-detail-head .custom-select-wrapper {
        position: inherit;
        width: 100%;
        padding-top: 20px;
        float: unset;
    }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}
