.banner-slider {
    position: relative;
}

.banner-slider .slide-item {
    width: 100%;
    height: 460px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-item .content {
    display: flex;
    justify-content: center;
}

.content .slogan {
    padding-top: 120px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .slogan h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.content .slogan .banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 62px;
    flex-shrink: 0;
    border: 2px solid #FFF;
    text-transform: capitalize;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.content .slogan .banner-btn:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.content .slogan .banner-btn:hover:after {
    height: 100%;
}


.category {
    margin: 50px 0;
}

.category .category-title {
    font-weight: 700;
    font-size: 56px;
    color: var(--primary-color);
    text-align: center;
    margin: 50px 0;
    text-transform: uppercase;
}


.category-image img {
    width: 100%;
}

.category-image.col-lg-2 img {
    height: 100%;
    object-fit: cover;
}

.category .category-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.category-text p {
    line-height: 28px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 30px;
}

.category .category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    text-transform: capitalize;
    height: 60px;
    padding: 0 20px;
    font-weight: 500;
    font-size: 18px;
    margin-top:10px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .4s ease;
    position: relative;
    margin-top:100px;
    z-index: 1;
}

.category .category-btn:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.category .category-btn:hover:after {
    height: 100%;
}

.category .category-btn:hover {
    color: #fff !important;
}

.category:nth-child(3) .category-title,
.category:nth-child(3) .category-text p,
.category:nth-child(3) .category-btn {
    border-color: #0492E2;
    color: #0492E2;
}

.category:nth-child(3) .category-btn:after {
    background-color: #0492E2;
}

.category:nth-child(4) .category-title,
.category:nth-child(4) .category-text p,
.category:nth-child(4) .category-btn {
    border-color: #75049D;
    color: #75049D;
}

.category:nth-child(4) .category-btn:after {
    background-color: #75049D;
}

.category:nth-child(5) .category-title,
.category:nth-child(5) .category-text p,
.category:nth-child(5) .category-btn {
    border-color: #049D26;
    color: #049D26;
}

.category:nth-child(5) .category-btn:after {
    background-color: #049D26;
}

.category:nth-child(3) .category-title,
.category:nth-child(3) .category-text p,
.category:nth-child(3) .category-btn {
    border-color: #0492E2;
    color: #0492E2;
}

.category:nth-child(3) .category-btn:after {
    background-color: #0492E2;
}

.instruction {
    margin: 90px 0;
}

.instruction .instruction-title {
    font-size: 32px;
    text-align: center;
    margin: 30px 0;
    font-weight: 700;
    color: #303030;
}

.instruction .content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.content .single-item {
    width: 180px;
    border: 2px solid var(--primary-color);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.single-item img {
    height: 106px;
    object-fit: contain;

}

.single-item:nth-child(1) img {
    width: 75px;
}

.single-item:nth-child(2) img {
    width: 83px;
}

.single-item:nth-child(3) img {
    width: 110px;
}

.instruction p {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #303030;
    margin: 50px 0;
    line-height: 28px;
}

.partners {
    margin: 50px 0 30px;
}

.partners .single-item-partner {
    width: 200px;
    height: 70px;
    display: flex;
    margin: 0 auto;

}

.partners .single-item-partner img {
    width: 100%;
    height: 100%;
}

.products-category {
    margin: 10px 0 70px;
}

.products-category .products-row {
    justify-content: space-between;
    align-items: center;
}

.products-category .product-item {
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    padding: 50px;
    position: relative;
    border-radius:5px;
    z-index: 1;
    height: 450px;

}

.products-category .product-item:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.549);
    content: '';
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all .6s ease;
}

.product-item .product-content {
    transform: translateX(-100px);
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease;
}

.product-item:hover .product-content {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
    position:relative;
    height:100%;
}

.product-item:hover:after {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.products-category .product-title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.products-category ul li.pr-li {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #303030;
    margin-bottom: 20px;

}
.products-category ul li.pr-li a{
    transition: all .6s ease;
}
.products-category ul li.pr-li a:hover{
    color:var(--primary-color);
}
.products-category ul li.pr-li .select {
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-color);

}

.pr-li .dropdown-list {
    margin-top: 5px;
    display: none;
    padding-left: 20px;
}

.pr-li .dropdown-list li {
    position: relative;
    margin-bottom: 10px;
}
.pr-li .dropdown-list li a{
   transition: 0.4s;
}
.pr-li .dropdown-list li a:hover{
  color: var(--primary-color);
}

.pr-li .dropdown-list li:before {
    content: ".";
    left: -15px;
    top: -8px;
    width: 20px;
    height: 20px;
    font-size: 30px;
    color: var(--primary-color);
    position: absolute;
    font-weight: bold;
}
.products-category .more{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#fff;
    width: 210px;
    height: 55px;
    border-radius:5px;
    border: 1px solid var(--primary-color);
    text-transform: capitalize;
    color:  var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    position:relative;
    margin-top:80px;
    z-index: 1;
}
.products-category .more i{
    margin-left:5px;
}
.products-category .more:after{
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}
.products-category .more:hover:after{
    height:100%;
}
.products-category .more:hover{
    color:#fff;
}
.contact {
    padding: 40px 0 100px;
}

.contact .contact-content {
    display: flex;
    justify-content: space-between;
}



.contact-item li {
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;

}

.contact-item li i {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 10px;

}

.contact-item li strong {
    color: #303030;
    margin-right: 5px;
    font-weight: 600;
}

.contact-item a:hover {
    transition: all 0.4s ease;
    color: var(--primary-color);
}

.media .media-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.media .media-item {
    display: flex;
    margin-bottom: 40px;
}

.media-item .media-img {
    width: 360px;
    margin-bottom: 20px;
    height: 210px;
    overflow: hidden;
}

.media-item .media-img img {
    width: 100%;
    transition: .4s ease;
    height: 100%;
}

.media-item .media-img img:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.media-item .date {
    padding-top: 10px;
    margin-right: 30px;
    border-top: 3px solid var(--primary-color);
}

.media-item .date span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.media-item .media-title {
    font-weight: 600;
    font-size: 14px;
    width: 360px;
    line-height: 1.5;
    transition: .3s;
}

.media-item .media-title:hover {
    color: var(--primary-color);
}

.media-item:hover .media-title {
    color: var(--primary-color);
}

.media-item .read-more-btn {
    width: 180px;
    height: 52px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 5px;
    margin-top: 10px;
    border-radius: 40px;
    transition: .3s;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.media-item .read-more-btn i {
    margin-left: 10px;
}

.media-item .read-more-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.media-inner {
    margin: 10px 0 50px;
}

.media-inner .media-inner-img {
    margin-bottom: 30px;
    width: 100%;
}

.media-inner .media-inner-img img {
    width: 100%;
}

.media-inner .media-content-title {
    color: #303030;
    font-size: 25px;
    font-weight: 600;
    line-height: 31px;
    margin-bottom: 30px;
}

.media-inner .media-action {
    display: flex;
    margin-bottom: 30px;
    gap: 30px;
    font-size: 14px;
    align-items: center;
    font-weight: 400;
    line-height: 18px;
    color: #5B5B5B;

}

.media-action img {
    width: 18px;
    margin-right: 5px;
    height: 18px;
}

.media-action div {
    display: flex;
    align-items: center;
}

.media-action .view img {
    width: 22px;
    height: 18px;
}

.media-inner .info-text {
    margin-bottom: 30px;
}

.media-inner .info-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.social-media-icon {
    align-items: center;
    display: flex;
    gap: 30px;
}

.social-media-icon a {
    display: flex;
    width: 35px;
    height: 35px;
    transition: .4s;
}

.social-media-icon a:hover {
    opacity: 0.8;
}

.social-media-icon a img {
    width: 100%;
    height: 100%;
}

.product-detail {
    margin-bottom: 30px;
}

.product-detail-content {
    display: flex;
    justify-content: space-between;
}

.product-detail .product-img {
    width: 480px;
    height: 480px;
}

.product-detail .product-img img {
    width: 100%;
    height: 100%;
}

.product-detail .product-text {
    width: 630px;
}

.product-detail .heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #303030;
    margin-bottom: 20px;
}

.product-detail li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
}

.product-detail .weight {
    margin-top: 10px;
    align-items: center;
    gap: 20px;
    display: flex;
}

.product-detail .weight ul {
    display: flex;
    align-items: center;
    gap: 20px;

}

.product-detail .weight ul li {
       margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    /* padding: 3px 5px; */
    background-color: var(--primary-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products {
    margin: 70px 0;
    width: 100%;
}

.products-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 28px;
    color: #303030;
    text-transform: capitalize;
}

.products .products-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.products .product-single-item {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        border-radius:4px;
    padding: 10px 0;
    width: 270px;
}

.products .product-single-item .pr-img {
    width: 270px;
    height: 270px;
    margin-bottom: 30px;
}

.product-single-item .pr-img img {
    width: 100%;
    height: 100%;
}

.product-single-item .pr-name {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
}

.product-single-item a {
    transition: all 0.4s ease;
}

.product-single-item a:hover {
    color: var(--primary-color);

}

.top-filter {
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    color: #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 462px;
    font-size: 15px;

}

.top-filter .top-filter-item {
    width: 50%;
    padding: 0 20px;
    position: relative;

}

.top-filter .top-filter-item:first-child {
    border-right: 1px solid #EFEFEF;
}

.top-filter .f-head {
    height: 56px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.top-filter .f-head:hover {
    color: var(--primary-color);
}

.top-filter .f-body {

    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    z-index: 3;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    display: none;

}

.top-filter .f-body.show {
    display: flex;
}

.top-filter .f-body span {
    padding: 15px 10px;
}

.all-products .all-products-content {
    display: flex;
    justify-content: space-between;

}

.all-products .products {
    margin: 0;
}

.all-products .products-content {
    margin: 30px 0;
}

.all-products .filter-menu {
    width: 224px;
    height: 192px;
    overflow-y: scroll;
    border: 1px solid #EFEFEF;
}

.all-products .filter-menu::-webkit-scrollbar {
    background-color: var(--primary-color);
    width: 3px;
}

.all-products .filter-menu .filter-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.all-products .filter-menu .filter-item:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.all-products .product-single-item {
    margin-bottom: 50px;
}

.filter-submenu {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    width: 300px;
    z-index: 33;
    height: 100vh;
    background-color: #fff;
    transition: all 0.4s ease;
    transform: translateX(-40000px);
}

.filter-submenu.show {
    transform: translateX(0);
}

.filter-submenu .submenu-head {
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: flex-end;
}

.filter-submenu .submenu-head {
    cursor: pointer;
}

.filter-submenu .filter-menu {
    height: auto;
    overflow-y: hidden;
    width: 100%;
    font-size: 18px;
    border: none;
}

.filter-btn {
    width: 100%;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.filter-btn:hover {
    opacity: 0.8;
}

.filter-form button {
    width: 224px;
    height: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    margin-top: 30px;
    background-color: #fff;
    transition: all 0.4s ease;
}

.filter-form button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.products-category-2 {
    margin-bottom: 40px;
}

.products-category-2 .s-item .img {
    width: 370px;
    height: 300px;

}

.products-category-2 .s-item .img img {
    width: 100%;
    height: 300px;
}

.products-category-2 .txt {
    z-index: 1;
    width: 370px;
    height: 200px;
    padding: 20px;
    position: relative;
}

.products-category-2 .txt:after {
    height: 0;
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    transition: all 0.6s ease;
    z-index: -1;
    background-color: var(--primary-color);

}

.products-category-2 .txt .title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 30px;
    line-height: 28px;

}

.products-category-2 .txt .btn {
    width: 182px;
    height: 52px;
    border: 1px solid #303030;
    color: #303030;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    justify-content: space-between;
}

.products-category-2 .s-item:hover .txt .btn {
    border-color: #fff;
    color: #fff;
}

.products-category-2 .s-item:hover .txt:after {
    height: 100%;
}

.products-category-2 .s-item:hover .txt .title {
    color: #fff;
}

.about {
    margin: 30px 0;
}

.about .text-about {
    line-height: 35px;
    font-size: 16px;
    font-weight: 400;
}

.about-row {
    margin-bottom: 30px;
}

.about-row:nth-child(even) {
    flex-direction: row-reverse;
}

.certificates {
    margin: 60px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.certificates .title {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.certificates .title:after {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    content: "";
    height: 3px;
    background-color: var(--primary-color);
}

.single-item-certificate img {
    width: 100%;
}

.faq,
.security {
    height: 50vh;
}

.accordion-button {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../assets/icon/chevron.svg);
}

.security .text {
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;
}

.why-us {
    background-image: url(../assets/icon/u.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    justify-content: center;

}

.why-us .single_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-us .single_item .img {
    width: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.why-us .single_item .img img {
    width: 56px;

    height: 56px;
}

.why-us .single_item .item-title {
    margin-top: 30px;
    font-weight: 600;
    font-size: 20px;
}

.breadcrumb-title.largebr-title{
    color: #F28C00 !important;
    font-size: 22px !important;
}

.cat_title_altcontent{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}
.cat_title_altcontent .text{
    color: #F28C00;
    margin-bottom: 20px;
    line-height: 22px;
}
.cat_title_altcontent .image{
    width: 100%;
}
.cat_title_altcontent .image img{
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 992px){
    .breadcrumb-title.largebr-title{
        font-size: 60px !important;
    }
    .cat_title_altcontent .text{
        font-size: 18px;
    }
}
@media screen and (min-width: 1200px){
    .breadcrumb-title.largebr-title{
        font-size: 70px !important;
        margin-top: 25px !important;
    }
}
