:root {
    --bluecolor: #0008C1;
    --blackcolor: #101010;
    --textcolor: #7F8891;
    --graycolor: #EFEFEF;
    --lightcolor: #F5F5F5;
    --whitecolor: #FFFFFF;
    --textfont: Barlow, IRANSans;
    --titlefont: Teko, IRANSans;
    --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
}

/*---------------------- Public Style ---------------------*/

body {
    background-color: var(--whitecolor);
    margin: 0;
    padding: 0;
    direction: ltr;
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-align: left;
}

body.theme-rtl {
    direction: rtl;
    text-align: right;
}

    body.overhide {
        overflow: hidden;
    }

* {
    font-family: var(--textfont);
    outline: medium none !important;
    text-decoration: none !important;
}

.container {
    max-width: 100%;
    padding: 0 200px;
}

::selection {
    background-color: var(--blackcolor);
    color: var(--whitecolor);
}

button {
    box-shadow: none;
    border: none;
}

.mgt-150 {
    margin-top: 150px;
}

.head-content-matco {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.title-sec-matco {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-left: 5px solid var(--graycolor);
    padding: 105px 0 10px 70px;
    margin: 0;
    font-size: 50px;
    font-weight: 400;
    line-height: 45px;
    text-transform: uppercase;
    color: var(--blackcolor);
    flex-shrink: 0;
    white-space: nowrap;
}

    .title-sec-matco::before {
        content: "";
        background-color: var(--graycolor);
        width: 50px;
        height: 72%;
        position: absolute;
        left: 0;
        bottom: 0;
        clip-path: polygon(100% 0, calc(100% - 15px) 0, 100% 28.5px, 100% 100%, 0 100%, 0 0);
    }

    .title-sec-matco.small-title::before {
        height: 66%;
    }

    .title-sec-matco::after {
        content: "";
        background: url('../images/site/star.svg') no-repeat center center / 40px;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 12px;
        left: 15px;
    }

    .title-sec-matco span,
    .title-sec-matco strong {
        font-family: var(--titlefont);
    }

    .title-sec-matco strong {
        color: var(--bluecolor);
        font-weight: 900;
        margin-right: 10px;
        margin-left: 10px;
    }

        .title-sec-matco strong:first-child {
            margin-left: 0px;
        }

.btn-more-matco {
    position: relative;
    background-color: var(--lightcolor);
    padding: 0 25px 0 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 16px;
    font-weight: 400;
    color: var(--blackcolor);
    text-transform: uppercase;
    clip-path: polygon(13.6px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 13.6px) 100%, 0 100%, 0 25px);
    transition: all 0.4s;
}

    .btn-more-matco:hover {
        background-color: var(--bluecolor);
        color: var(--whitecolor);
        clip-path: polygon(0 0, calc(100% - 13.6px) 0, 100% 25px, calc(100% - 13.6px) 100%, 0 100%, 0 50%);
    }

    .btn-more-matco > i {
        font-size: 22px;
        margin-left: 10px;
        opacity: 0.2;
        padding-top: 1px;
        transition: all 0.4s;
    }

    .btn-more-matco:hover > i {
        margin-left: 5px;
        opacity: 0.4;
    }

.text-desc-matco {
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    color: var(--textcolor);
    text-align: justify;
    margin: 0;
}

/*---------------------- Tooltip ---------------------*/

.tooltip {
    z-index: 99999;
}

.tooltip-inner {
    background-color: var(--blackcolor);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 0;
}

.tooltip .arrow::before {
    border-bottom-color: var(--blackcolor);
    border-top-color: var(--blackcolor);
}

/*---------------------- /Tooltip ---------------------*/

/*---------------------- Header Main ---------------------*/

.header-main {
    position: absolute;
    z-index: 9999;
    right: 0;
    left: 0;
}

    .header-main .container-affix {
        transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }

        .header-main .container-affix.affix {
            padding: 0;
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 9999;
        }

    .header-main .navbar-matco-header {
        position: relative;
        background-color: transparent;
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        margin-top: 40px;
        transition: all 0.3s;
    }

    .header-main .container-affix.affix .navbar-matco-header {
        margin-top: 0;
        box-shadow: 0px 10px 25px -10px rgba(0, 0, 0, 0.1);
    }

    .header-main .navbar-matco-header::before {
        content: "";
        background-color: var(--whitecolor);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 30px) 100%, 0 100%, 0 50px);
        transition: all 0.3s;
    }

    .header-main .container-affix.affix .navbar-matco-header::before {
        clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }

    .header-main .navbar-matco-header .navbar-menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 10;
    }

    .header-main .navbar-matco-header .navbar-brand {
        margin-right: 80px;
    }

        .header-main .navbar-matco-header .navbar-brand > img {
            width: 120px;
        }

    .header-main .navbar-matco-header .navbar-nav .nav-item:not(:last-child) {
        margin-right: 40px;
    }

    .header-main .navbar-matco-header .navbar-nav .nav-link {
        position: relative;
        font-size: 16px;
        font-weight: 400;
        color: var(--blackcolor);
        text-transform: uppercase;
        padding: 40px 0;
        transition: all 0.4s;
    }

        .header-main .navbar-matco-header .navbar-nav .nav-link:hover,
        .header-main .navbar-matco-header .navbar-nav .dropdown.show .nav-link {
            color: var(--bluecolor);
        }

        .header-main .navbar-matco-header .navbar-nav .nav-link::before,
        .footer-main .about-footer .list-links li a::before,
        .footer-main .copyright-footer .creator > a::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            display: block;
            bottom: 35px;
            right: 0;
            background: currentColor;
            -webkit-transition: opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
            transition: opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
            transition: transform .4s var(--easeoutcubic), opacity .4s var(--easeoutcubic);
            transition: transform .4s var(--easeoutcubic), opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transform-origin: center right;
            transform-origin: center right;
        }

        .header-main .navbar-matco-header .navbar-nav .nav-link:hover::before,
        .footer-main .about-footer .list-links li a:hover::before,
        .footer-main .copyright-footer .creator > a:hover::before,
        .header-main .navbar-matco-header .navbar-nav .dropdown.show .nav-link::before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transform-origin: center left;
            transform-origin: center left;
        }

    .header-main .navbar-matco-header .navbar-nav .dropdown-toggle::after {
        content: "\e900";
        font-family: 'icomoon';
        border: none;
        margin-left: 4px;
        vertical-align: -2px;
        font-size: 18px;
        line-height: 1;
        transition: all 0.3s;
    }

    .header-main .navbar-matco-header .navbar-nav .dropdown-toggle:hover::after,
    .header-main .navbar-matco-header .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: scaleY(-1);
    }

    .header-main .navbar-matco-header .navbar-nav .dropdown .dropdown-menu {
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        position: absolute;
        background: var(--whitecolor);
        padding: 5px 0;
        border-radius: 0;
        z-index: 1022;
        top: 0;
        left: 0;
        border: none;
        transform: scaleY(0);
        min-width: 250px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 13.6px) 100%, 0 100%, 0 0);
        /* box-shadow: 3px 3px 3px #000; */
    }

    .header-main .navbar-matco-header .navbar-nav .dropdown.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100px;
        transform: scaleY(1);
    }

    .header-main .navbar-matco-header .navbar-nav .dropdown-menu .dropdown-item {
        font-size: 14px;
        font-weight: 300;
        color: var(--textcolor);
        padding: 10px 15px;
        border-radius: 0;
        text-transform: uppercase;
        transition: all 0.4s;
    }

        .header-main .navbar-matco-header .navbar-nav .dropdown-menu .dropdown-item:hover {
            background-color: var(--lightcolor);
            color: var(--bluecolor);
            font-weight: 700;
        }

    .header-main .navbar-matco-header .btn-change-lang {
        position: relative;
        background-color: transparent;
        padding: 0 25px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 400;
        color: var(--blackcolor);
        text-transform: uppercase;
        vertical-align: 2px;
        cursor: pointer;
    }

        .header-main .navbar-matco-header .btn-change-lang::before {
            content: "";
            background-color: var(--graycolor);
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            clip-path: polygon(13.6px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 13.6px) 100%, 0 100%, 0 25px);
        }

        .header-main .navbar-matco-header .btn-change-lang > img {
            height: 20px;
            margin-right: 10px;
        }

        .header-main .navbar-matco-header .btn-change-lang > * {
            position: relative;
        }

        .header-main .navbar-matco-header .btn-change-lang > span {
            padding-bottom: 1px;
        }

        .header-main .navbar-matco-header .btn-change-lang .dropdown-lang {
            position: absolute;
            background-color: var(--white);
            border-radius: 0;
            box-shadow: 0px 0 25px -10px rgba(0, 0, 0, 0.15);
            top: 0;
            right: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 13.6px) 100%, 0 100%, 0 0);
            transform: scaleY(0);
            transition: 0.3s ease;
        }

        .header-main .navbar-matco-header .btn-change-lang.show .dropdown-lang {
            top: 60px;
            opacity: 1;
            visibility: visible;
            transform: scaleY(1);
        }

        .header-main .navbar-matco-header .btn-change-lang .list-lang {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .header-main .navbar-matco-header .btn-change-lang .list-lang a {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                font-size: 14px;
                font-weight: 400;
                color: var(--blackcolor);
                padding: 10px;
                border-radius: 0;
                text-transform: uppercase;
                transition: all 0.4s;
            }

                .header-main .navbar-matco-header .btn-change-lang .list-lang a:hover {
                    background-color: var(--blackcolor);
                    color: var(--white);
                    padding-right: 10px;
                }

                .header-main .navbar-matco-header .btn-change-lang .list-lang a.active {
                    background-color: var(--lightcolor);
                    padding-right: 10px;
                    color: var(--blackcolor);
                }

                .header-main .navbar-matco-header .btn-change-lang .list-lang a.rtl {
                    text-align: right;
                    justify-content: space-between;
                }

            .header-main .navbar-matco-header .btn-change-lang .list-lang img {
                height: 20px;
                margin-right: 10px;
            }

    .header-main .navbar-matco-header .btns-head {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .header-main .navbar-matco-header .btns-head .box-icon-menu {
            position: relative;
            background-color: var(--blackcolor);
            width: 55px;
            height: 35px;
            display: none;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            clip-path: polygon(0px 0px, calc(100% - 8px) 1px, 100% 15px, 100% 100%, 100% 100%, 8px 100%, 0px calc(100% - 15px), 0px 0px);
        }

        .header-main .navbar-matco-header .btns-head .hamburger {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-main .navbar-matco-header .btns-head .hamburger-box {
            width: 22px;
            height: 22px;
        }

    .header-main .hamburger--slider .hamburger-inner {
        top: 7px;
    }

    .header-main .hamburger-inner,
    .header-main .hamburger-inner::before,
    .header-main .hamburger-inner::after {
        width: 22px;
        height: 2px;
        background-color: var(--whitecolor);
        border-radius: 0;
    }

    .header-main .hamburger--slider .hamburger-inner::before {
        top: 6px;
    }

    .header-main .hamburger--slider .hamburger-inner::after {
        top: 12px;
    }

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--whitecolor);
}

.header-main .hamburger.is-active:hover {
    opacity: 1;
}

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 6px, 0) rotate(45deg);
}

    .hamburger--slider.is-active .hamburger-inner::after {
        transform: translate3d(0, -13px, 0) rotate(-90deg);
    }

/*---------------------- /Header Main ---------------------*/

/*---------------------- Content Main ---------------------*/

/*---------------------- Slideshow Main ---------------------*/

.content-main .slideshow-matco {
    background-color: var(--graycolor);
    width: 100%;
    height: 900px;
    padding-top: 160px;
}

    .content-main .slideshow-matco .swiper-slide {
        position: relative;
        height: 700px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

        .content-main .slideshow-matco .swiper-slide.text-left {
            justify-content: flex-start;
        }

        .content-main .slideshow-matco .swiper-slide .img-sldie {
            height: 700px;
            opacity: 0;
            transform: translateX(200px) scale(0.8);
            transition: all 1.5s;
        }

    .content-main .slideshow-matco .swiper-slide-active .img-sldie {
        transition-delay: 0.2s;
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    .content-main .slideshow-matco .swiper-slide .content-slide {
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 100;
    }

    .content-main .slideshow-matco .swiper-slide.text-left .content-slide {
        left: auto;
        right: 0;
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .title-main {
        position: relative;
        font-size: 130px;
        font-weight: 600;
        line-height: 90px;
        color: var(--blackcolor);
        text-transform: uppercase;
        text-align: left;
        margin: 0;
    }

        .content-main .slideshow-matco .swiper-slide .content-slide .title-main::before {
            content: "";
            background: url('../images/site/star.svg') no-repeat center center / 125px;
            width: 125px;
            height: 125px;
            position: absolute;
            top: 30px;
            right: -80px;
            opacity: 0;
            transform: scale(0) rotate(360deg);
            filter: brightness(0) invert(1);
            transition: all 1s;
        }

    .content-main .slideshow-matco .swiper-slide.text-left .content-slide .title-main::before {
        right: auto;
        left: -80px;
    }

    .content-main .slideshow-matco .swiper-slide-active .content-slide .title-main::before {
        transition-delay: 1.6s;
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .title-main > span {
        position: relative;
        font-family: var(--titlefont);
        opacity: 0;
        z-index: 10;
        transition: all 1.5s;
    }

    .content-main .slideshow-matco .swiper-slide-active .content-slide .title-main > span:nth-child(1) {
        transition-delay: 0.5s;
        opacity: 1;
    }

    .content-main .slideshow-matco .swiper-slide-active .content-slide .title-main > span:nth-child(2) {
        transition-delay: 1s;
        opacity: 1;
    }

    .content-main .slideshow-matco .swiper-slide-active .content-slide .title-main > span:nth-child(3) {
        transition-delay: 1.5s;
        opacity: 1;
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .title-main > span:first-child {
        display: block;
        font-size: 170px;
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .title-main > span:last-child {
        color: var(--bluecolor);
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .desc {
        font-size: 34.5px;
        font-weight: 300;
        line-height: 40px;
        text-transform: uppercase;
        text-align: left;
        width: 550px;
        color: var(--textcolor);
        margin: 20px 0 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s;
    }

    .content-main .slideshow-matco .swiper-slide-active .content-slide .desc {
        transition-delay: 1.8s;
        opacity: 1;
        transform: translateY(0);
    }

    .content-main .slideshow-matco .options-swiper .swiper-button {
        width: 40px;
        height: 150px;
        position: absolute;
        top: 43%;
        display: flex;
        align-items: center;
        z-index: 100;
        overflow: hidden;
        transition: all 0.8s;
    }

        .content-main .slideshow-matco .options-swiper .swiper-button:hover {
            width: 240px;
        }

    .content-main .slideshow-matco .swiper-button.swiper-slider-next {
        right: 40px;
        flex-direction: row-reverse;
    }

    .content-main .slideshow-matco .swiper-button.swiper-slider-prev {
        left: 40px;
    }

    .content-main .slideshow-matco .swiper-button > i {
        display: flex;
        width: 40px;
        height: 150px;
        background-color: rgba(16, 16, 16, 0.1);
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: rgba(16, 16, 16, 0.4);
        flex-shrink: 0;
        transition: all 0.4s;
    }

    .content-main .slideshow-matco .swiper-button:hover > i {
        background-color: var(--bluecolor);
        color: var(--whitecolor);
    }

    .content-main .slideshow-matco .swiper-button.swiper-slider-next > i {
        clip-path: polygon(100% 0, calc(100% - 12px) 0, 100% 22.75px, 100% 100%, 0 100%, 0 0);
    }

    .content-main .slideshow-matco .swiper-button.swiper-slider-prev > i {
        clip-path: polygon(12px 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 22.75px);
    }

    .content-main .slideshow-matco .swiper-button .view-slide {
        background-color: var(--whitecolor);
        width: 200px;
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        font-family: var(--titlefont);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        white-space: nowrap;
        flex-shrink: 0;
        transform: translate3d(100px);
        opacity: 0;
        transition: all 0.8s;
    }

    .content-main .slideshow-matco .swiper-button:hover .view-slide {
        transition-delay: 0.2s;
        transform: translate3d(0);
        opacity: 1;
    }

    .content-main .slideshow-matco .swiper-button .view-slide > img {
        height: 80px;
        margin-bottom: 15px;
    }

/*---------------------- /Slideshow Main ---------------------*/

/*---------------------- About Matco ---------------------*/

.content-main .about-matco .image-about .box-image {
    position: relative;
    background-color: var(--lightcolor);
    width: 100%;
    height: 850px;
    clip-path: polygon(55px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 105px);
}

    .content-main .about-matco .image-about .box-image::after {
        content: "";
        background: url('../images/logo/logo-main.svg') no-repeat center center / 200px;
        width: 200px;
        height: 70px;
        position: absolute;
        bottom: 40px;
        right: 0;
        left: 0;
        margin: 0 auto;
        z-index: 10;
        filter: brightness(0) invert(1);
        opacity: 0.4;
        mix-blend-mode: soft-light;
    }

    .content-main .about-matco .image-about .box-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.content-main .about-matco .content-about {
    padding-left: 115px;
}

    .content-main .about-matco .content-about .text-desc-matco {
        margin-top: 40px;
    }

.content-main .about-matco .box-statistics {
    background-color: var(--lightcolor);
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    clip-path: polygon(35px 0, 100% 0, 100% calc(100% - 67px), calc(100% - 35px) 100%, 0 100%, 0 67px);
}

    .content-main .about-matco .box-statistics .item-stat {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 75px;
    }

        .content-main .about-matco .box-statistics .item-stat:not(:last-child)::before {
            content: "";
            background-color: var(--whitecolor);
            width: 5px;
            height: 50px;
            transform: rotate(28deg);
            position: absolute;
            right: 0;
            top: 15%;
        }

        .content-main .about-matco .box-statistics .item-stat .count {
            font-family: var(--titlefont);
            font-size: 70px;
            font-weight: 400;
            line-height: 0.8;
            text-transform: uppercase;
            color: var(--bluecolor);
            width: 100px;
        }

        .content-main .about-matco .box-statistics .item-stat .title {
            font-size: 20px;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
            color: var(--textcolor);
        }

/*---------------------- /About Matco ---------------------*/

/*---------------------- Packaging Matco ---------------------*/

.content-main .packaging-matco .head-content-matco {
    margin-bottom: 80px;
}

.content-main .packaging-matco .text-desc-matco {
    padding-left: 150px;
    padding-bottom: 10px;
}

.content-main .packaging-matco .box-pack-style {
    position: relative;
    background-color: var(--lightcolor);
    width: 100%;
    height: 400px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: all 0.4s;
}

.content-main .packaging-matco .item-pack:nth-child(odd) .box-pack-style {
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 67px, 100% 100%, 100% 100%, 0 100%, 0 100%);
}

.content-main .packaging-matco .item-pack:nth-child(even) .box-pack-style {
    clip-path: polygon(35px 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 67px);
}

    .content-main .packaging-matco .item-pack:nth-child(odd) .box-pack-style:hover,
    .content-main .packaging-matco .item-pack:nth-child(even) .box-pack-style:hover {
        clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
    }

.content-main .packaging-matco .box-pack-style .img-pack {
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    transition: all 0.6s;
}

.content-main .packaging-matco .box-pack-style:hover .img-pack {
    transform: scale(0.9);
}

.content-main .packaging-matco .item-pack.col-lg-7 .img-pack {
    height: 350px;
}

.content-main .packaging-matco .item-pack.col-lg-5 .img-pack {
    height: 250px;
}

.content-main .packaging-matco .box-pack-style .content-pack .title {
    margin: 0;
}

    .content-main .packaging-matco .box-pack-style .content-pack .title > a {
        font-family: var(--titlefont);
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
        text-transform: uppercase;
        color: var(--blackcolor);
        margin: 0;
        transition: all 0.4s;
    }

        .content-main .packaging-matco .box-pack-style .content-pack .title > a:hover {
            color: var(--bluecolor);
        }

.content-main .packaging-matco .box-pack-style .content-pack .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--textcolor);
    margin: 0;
}

/*---------------------- /Packaging Matco ---------------------*/

/*---------------------- Products Pack ---------------------*/

.content-main .products-pack {
    background-color: var(--graycolor);
    padding: 80px 0;
    overflow: hidden;
}

    .content-main .products-pack .title-sec-matco {
        border-color: var(--whitecolor);
        margin-right: 80px;
    }

        .content-main .products-pack .title-sec-matco::before {
            background-color: var(--whitecolor);
        }

    .content-main .products-pack .list-pack-icons {
        position: relative;
        width: 100%;
        height: 210px;
        overflow: hidden;
    }

        .content-main .products-pack .list-pack-icons .row-list {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }

            .content-main .products-pack .list-pack-icons .row-list:nth-child(1) {
                top: 0;
                -webkit-animation: marquee 15s linear infinite;
                animation: marquee 15s linear infinite;
            }

            .content-main .products-pack .list-pack-icons .row-list:nth-child(2) {
                bottom: 0;
                -webkit-animation: marquee-inverse 15s linear infinite;
                animation: marquee-inverse 15s linear infinite;
            }

            .content-main .products-pack .list-pack-icons .row-list:nth-child(1):hover {
                animation-play-state: paused;
            }

            .content-main .products-pack .list-pack-icons .row-list:nth-child(2):hover {
                animation-play-state: paused;
            }

@-webkit-keyframes marquee {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

@keyframes marquee {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

@-webkit-keyframes marquee-inverse {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marquee-inverse {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.content-main .products-pack .list-pack-icons .row-list:last-child {
    margin-bottom: 0;
}

.content-main .products-pack .list-pack-icons .row-list .box-pack {
    background-color: var(--whitecolor);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.4s;
}

    .content-main .products-pack .list-pack-icons .row-list .box-pack:hover {
        background-color: var(--bluecolor);
    }

.content-main .products-pack .list-pack-icons .row-list:nth-child(1) .box-pack:nth-child(odd),
.content-main .products-pack .list-pack-icons .row-list:nth-child(2) .box-pack:nth-child(even) {
    clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 13px) 100%, 0 100%, 0 25px);
}

.content-main .products-pack .list-pack-icons .row-list:nth-child(1) .box-pack:nth-child(even),
.content-main .products-pack .list-pack-icons .row-list:nth-child(2) .box-pack:nth-child(odd) {
    clip-path: polygon(0px 0px, calc(100% - 13px) 1px, 100% 25px, 100% 100%, 100% 100%, 13px 100%, 0px calc(100% - 25px), 0px 0px);
}

.content-main .products-pack .list-pack-icons .row-list .box-pack > img {
    width: 50px;
    transition: all 0.4s;
}

.content-main .products-pack .list-pack-icons .row-list .box-pack:hover > img {
    filter: brightness(0) invert(1);
}

/*---------------------- /Products Pack ---------------------*/

/*---------------------- Machines Matco ---------------------*/

.content-main .machines-matco .swiper-machines {
    margin-top: 80px;
}

.content-main .machines-matco .box-machine {
    position: relative;
    background-color: var(--lightcolor);
    width: 100%;
    height: 450px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

    .content-main .machines-matco .box-machine .img-machine {
        width: 100%;
        transition: all 0.6s;
    }

    .content-main .machines-matco .box-machine:hover .img-machine {
        transform: scale(0.9);
    }

    .content-main .machines-matco .box-machine .title {
        margin: 0;
    }

        .content-main .machines-matco .box-machine .title > a {
            font-family: var(--titlefont);
            font-size: 30px;
            font-weight: 600;
            line-height: 40px;
            text-transform: uppercase;
            position: absolute;
            bottom: 30px;
            right: 0;
            left: 0;
            width: 100%;
            text-align: center;
            color: var(--blackcolor);
            transition: all 0.4s;
        }

            .content-main .machines-matco .box-machine .title > a:hover {
                color: var(--bluecolor);
            }

.content-main .machines-matco .swiper-slide:nth-child(even) .box-machine {
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 67px, 100% 100%, 100% 100%, 0 100%, 0 100%);
}

.content-main .machines-matco .swiper-slide:nth-child(odd) .box-machine {
    clip-path: polygon(35px 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 67px);
}

    .content-main .machines-matco .swiper-slide:nth-child(odd) .box-machine:hover,
    .content-main .machines-matco .swiper-slide:nth-child(even) .box-machine:hover {
        clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
    }

.content-main .machines-matco .swiper-pagination-machines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

    .content-main .machines-matco .swiper-pagination-machines .swiper-pagination-bullet {
        background-color: var(--graycolor);
        width: 15px;
        height: 15px;
        margin: 0 5px;
        border-radius: 0;
        opacity: 1;
        clip-path: polygon(3.75px 0, 100% 0, 100% calc(100% - 5.75px), calc(100% - 3.75px) 100%, 0 100%, 0 5.75px);
        transition: all 0.4s;
    }

    .content-main .machines-matco .swiper-pagination-machines .swiper-pagination-bullet-active {
        background-color: var(--bluecolor);
        width: 60px;
    }

/*---------------------- /Machines Matco ---------------------*/

/*---------------------- Support Matco ---------------------*/

.content-main .support-matco {
    background-color: var(--graycolor);
}

    .content-main .support-matco .image-support > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content-main .support-matco .image-support::after {
        content: "";
        background: url('../images/logo/logo-main.svg') no-repeat center center / 200px;
        width: 200px;
        height: 70px;
        position: absolute;
        bottom: 40px;
        right: 0;
        left: 0;
        margin: 0 auto;
        z-index: 10;
        filter: brightness(0) invert(1);
        opacity: 0.4;
        mix-blend-mode: soft-light;
    }

    .content-main .support-matco .content-support {
        padding: 80px 130px 80px 200px;
    }

    .content-main .support-matco .title-sec-matco {
        border-color: var(--whitecolor);
        margin-bottom: 60px;
    }

        .content-main .support-matco .title-sec-matco::before {
            background-color: var(--whitecolor);
        }

    .content-main .support-matco .item-spt {
        padding: 20px 30px;
    }

        .content-main .support-matco .item-spt .title-spt {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .content-main .support-matco .item-spt .title-spt > .spt-icon {
                width: 60px;
                margin-right: 20px;
            }

            .content-main .support-matco .item-spt .title-spt .title {
                font-family: var(--titlefont);
                font-size: 25px;
                font-style: normal;
                font-weight: 900;
                line-height: 0.8;
                text-transform: uppercase;
                color: var(--blackcolor);
                margin: 0;
            }

            .content-main .support-matco .item-spt .title-spt .sub-title {
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                text-transform: uppercase;
                color: var(--blackcolor);
                margin: 0;
            }

        .content-main .support-matco .item-spt .desc-spt {
            font-size: 16px;
            font-weight: 400;
            line-height: 25px;
            color: var(--textcolor);
            margin-top: 20px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
        }

    .content-main .support-matco .certificates {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 60px;
    }

        .content-main .support-matco .certificates img {
            width: 65px;
            opacity: 0.1;
        }

/*---------------------- /Support Matco ---------------------*/

/*---------------------- News Matco ---------------------*/

.content-main .news-matco .head-content-matco {
    margin-bottom: 80px;
}

.content-main .news-matco .box-news {
    cursor: pointer;
    background-color: var(--lightcolor);
    width: 100%;
    clip-path: polygon(40.42px 0, 100% 0, 100% calc(100% - 78px), calc(100% - 40.42px) 100%, 0 100%, 0 78px);
}

    .content-main .news-matco .box-news .image {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

        .content-main .news-matco .box-news .image > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 1s;
        }

    .content-main .news-matco .box-news:hover .image > img {
        transform: scale(1.2);
    }

    .content-main .news-matco .box-news .content {
        width: 100%;
        padding: 40px;
        text-align: right;
    }

        .content-main .news-matco .box-news .content .title {
            font-family: var(--titlefont);
            font-size: 30px;
            font-weight: 600;
            line-height: 25px;
            text-transform: uppercase;
            color: var(--blackcolor);
            margin: 0;
            text-align: left;
            transition: all 0.4s;
        }

    .content-main .news-matco .box-news:hover .content .title {
        color: var(--bluecolor);
    }

    .content-main .news-matco .box-news .content .sub-title {
        display: block;
        font-size: 16px;
        font-weight: 400;
        line-height: 25px;
        text-transform: uppercase;
        margin: 0;
        color: var(--textcolor);
        text-align: left;
    }

    .content-main .news-matco .box-news .content .desc {
        overflow: hidden;
        text-align: justify;
        font-size: 18px;
        font-weight: 400;
        line-height: 35px;
        text-transform: uppercase;
        color: var(--blackcolor);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin: 30px 0 0;
    }

    .content-main .news-matco .box-news .content .btn-more-matco {
        display: inline-flex;
        background-color: var(--whitecolor);
        margin-left: auto;
        margin-top: 50px;
    }

        .content-main .news-matco .box-news .content .btn-more-matco:hover {
            background-color: var(--bluecolor);
        }

/*---------------------- /News Matco ---------------------*/

/*---------------------- /Content Main ---------------------*/

/*---------------------- Footer Main ---------------------*/

.footer-main {
    position: relative;
    background-color: var(--graycolor);
    padding-top: 80px;
    overflow: hidden;
}

    .footer-main::before {
        content: "";
        background: url("../images/logo/matco.svg") no-repeat center center / cover;
        width: 100%;
        height: 250px;
        position: absolute;
        bottom: -63px;
        right: 0;
        left: 0;
        margin: 0 auto;
        opacity: 0.02;
    }

    .footer-main .contact-footer {
        background-color: var(--whitecolor);
        width: 100%;
        height: 100px;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 30px) 100%, 0 100%, 0 50px);
    }

        .footer-main .contact-footer .image-star {
            width: 50px;
        }

        .footer-main .contact-footer .title {
            font-family: var(--titlefont);
            font-size: 35px;
            font-weight: 500;
            line-height: 35px;
            text-transform: uppercase;
            margin: 0;
            color: var(--bluecolor);
        }

        .footer-main .contact-footer .btn-more-matco {
            background-color: var(--graycolor);
            padding: 0 15px 0 20px;
        }

            .footer-main .contact-footer .btn-more-matco:hover {
                background-color: var(--bluecolor);
            }

            .footer-main .contact-footer .btn-more-matco > i {
                margin-left: 5px;
            }

    .footer-main .about-footer {
        padding: 80px 0;
    }

        .footer-main .about-footer .logo-about {
            display: flex;
            align-items: flex-end;
            margin-bottom: 80px;
        }

            .footer-main .about-footer .logo-about .logo-main {
                height: 50px;
                margin-right: 10px;
            }

            .footer-main .about-footer .logo-about .matco {
                height: 25px;
            }

        .footer-main .about-footer .item-info:not(:last-child) {
            margin-bottom: 40px;
        }

        .footer-main .about-footer .item-info .title-box {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 25px;
            font-weight: 600;
            line-height: normal;
            text-transform: uppercase;
            color: var(--bluecolor);
        }

            .footer-main .about-footer .item-info .title-box > i {
                font-size: 35px;
                margin-right: 20px;
                color: var(--blackcolor);
            }

            .footer-main .about-footer .item-info .title-box > span {
                position: relative;
                top: 4px;
                font-family: var(--titlefont);
            }

        .footer-main .about-footer .item-info .desc {
            display: inline-block;
            font-size: 24px;
            font-weight: 400;
            line-height: normal;
            color: var(--blackcolor);
            margin: 5px 0 0;
        }

        .footer-main .about-footer .item-info .address {
            font-size: 20px;
            font-weight: 400;
            line-height: normal;
            color: var(--blackcolor);
            margin: 15px 0 0;
        }

        .footer-main .about-footer .quick-access {
            padding-left: 100px;
        }

        .footer-main .about-footer .title-list {
            font-family: var(--titlefont);
            font-size: 35px;
            font-weight: 600;
            line-height: normal;
            text-transform: uppercase;
            color: var(--blackcolor);
            margin: 15px 0 0;
        }

        .footer-main .about-footer .list-links {
            padding: 0;
            margin: 60px 0 0;
            list-style: none;
        }

            .footer-main .about-footer .list-links li:not(:last-child) {
                margin-bottom: 26px;
            }

            .footer-main .about-footer .list-links li a {
                position: relative;
                font-size: 22px;
                font-weight: 400;
                line-height: normal;
                color: var(--blackcolor);
                transition: all 0.4s;
            }

                .footer-main .about-footer .list-links li a:hover {
                    color: var(--bluecolor);
                }

                .footer-main .about-footer .list-links li a::before {
                    bottom: -10px;
                }

        .footer-main .about-footer .map-matco {
            padding-left: 100px;
        }

            .footer-main .about-footer .map-matco .box-map {
                position: relative;
                background-color: var(--whitecolor);
                width: 100%;
                height: 480px;
                clip-path: polygon(35px 0, 100% 0, 100% calc(100% - 67px), calc(100% - 35px) 100%, 0 100%, 0 67px);
            }

                .footer-main .about-footer .map-matco .box-map .btn-more-matco {
                    position: absolute;
                    bottom: 40px;
                    right: 40px;
                    z-index: 100;
                    background-color: var(--whitecolor);
                }

                    .footer-main .about-footer .map-matco .box-map .btn-more-matco:hover {
                        background-color: var(--bluecolor);
                    }

                .footer-main .about-footer .map-matco .box-map iframe {
                    width: 100%;
                    height: 100%;
                }

                    .footer-main .about-footer .map-matco .box-map iframe + div {
                        display: none !important;
                    }

    .footer-main .copyright-footer {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 0;
        border-top: 1px solid rgba(16, 16, 16, 0.1);
        z-index: 100;
    }

        .footer-main .copyright-footer .policy {
            font-size: 14px;
            font-weight: 500;
            line-height: normal;
            /* text-transform: uppercase; */
            color: var(--textcolor);
            margin: 0;
        }

        .footer-main .copyright-footer .company .fullname {
            font-family: var(--titlefont);
            font-size: 25px;
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
            color: var(--blackcolor);
            margin: 0;
        }

        .footer-main .copyright-footer .creator {
            font-size: 16px;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
            color: var(--textcolor);
            margin: 0;
        }

            .footer-main .copyright-footer .creator > a {
                position: relative;
                color: var(--textcolor);
                transition: all 0.4s;
            }

                .footer-main .copyright-footer .creator > a:hover {
                    color: var(--bluecolor);
                }

                .footer-main .copyright-footer .creator > a::before {
                    bottom: -5px;
                    height: 2px;
                }

/*---------------------- /Footer Main ---------------------*/

/*---------------------- Responsives ---------------------*/

@media only screen and (min-width:1700px) and (max-width: 1800px) {
    .container {
        padding: 0 100px;
    }
}

@media only screen and (min-width:1300px) and (max-width: 1700px) {
    .container {
        padding: 0 30px;
    }

    .header-main .navbar-matco-header .navbar-brand > img {
        width: 110px;
    }

    .header-main .navbar-matco-header .navbar-brand {
        margin-right: 40px;
    }

    .header-main .navbar-matco-header .navbar-nav .nav-item:not(:last-child) {
        margin-right: 25px;
    }

    .header-main .navbar-matco-header .navbar-nav .nav-link {
        font-size: 15px;
    }

    .header-main .navbar-matco-header .btn-change-lang {
        padding: 20px;
        font-size: 14px;
    }

        .header-main .navbar-matco-header .btn-change-lang > img,
        .header-main .navbar-matco-header .btn-change-lang .list-lang img {
            height: 18px;
        }

        .header-main .navbar-matco-header .btn-change-lang .list-lang a {
            font-size: 12px;
        }

    .content-main .slideshow-matco .swiper-slide .img-sldie {
        height: 550px !important;
    }

    .content-main .slideshow-matco .swiper-slide .content-slide .title-main {
        font-size: 100px;
    }

        .content-main .slideshow-matco .swiper-slide .content-slide .title-main > span:first-child {
            font-size: 140px;
        }

    .content-main .slideshow-matco .swiper-slide .content-slide .desc {
        font-size: 25px;
    }

    .content-main .about-matco .content-about {
        padding-left: 30px;
    }

    .content-main .about-matco .box-statistics .item-stat {
        padding: 0 60px;
    }

    .content-main .packaging-matco .text-desc-matco {
        padding-left: 50px;
    }

    .content-main .packaging-matco .item-pack.col-lg-7 .img-pack {
        height: 320px;
    }

    .content-main .packaging-matco .item-pack.col-lg-5 .img-pack {
        height: 220px;
    }

    .content-main .support-matco .content-support {
        padding: 80px 30px 80px 60px;
    }

    .footer-main .about-footer .quick-access,
    .footer-main .about-footer .map-matco {
        padding-left: 30px;
    }
}

/*---------------------- /Responsives ---------------------*/

.item-product-filin .box-image-product {
    position: relative;
    background-color: #f7f7f7;
    border-radius: 20px 20px 0 0;
    height: 320px;
    border: 4px solid #fff;
    border-bottom: 0;
    overflow: hidden;
    max-height: 100%;
}

    .item-product-filin .box-image-product .auction {
        background-color: var(--red);
        padding: 2px 15px 5px;
        border-radius: 4px;
        position: absolute;
        top: 15px;
        left: 15px;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        z-index: 10;
    }

    .item-product-filin .box-image-product .img-product {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s;
    }

    .item-product-filin .box-image-product .img-second {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.5);
    }

.item-product-filin:hover .box-image-product .img-second {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.item-product-filin .box-image-product .options-product {
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 5%;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(-50%);
    transform: translateY(0%);
    right: 5%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 2;
}

.item-product-filin:hover .box-image-product .options-product {
    opacity: 1;
    visibility: visible;
}

.item-product-filin .box-image-product .options-product .item-option, .content-main .filin-influencers .box-iln-image .list-options .item-opt a {
    transform: scale(0);
    background: var(--white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--gray-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 0;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.item-product-filin:hover .box-image-product .options-product .item-option {
    transform: scale(1);
}

.item-product-filin .box-image-product .options-product .item-option:hover {
    background-color: var(--orange-color);
    color: var(--white);
}

.item-product-filin .box-image-product .btn-viw-product {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: var(--orange-color);
    border-radius: 0;
    padding: 8px;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.item-product-filin:hover .box-image-product .btn-viw-product {
    opacity: 1;
    visibility: visible;
}

.item-product-filin .info-product {
    background-color: var(--white);
    padding: 5px 20px 20px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    transition: all 0.5s;
}

    .item-product-filin .info-product .starts-product {
        display: flex;
        justify-content: center;
    }

        .item-product-filin .info-product .starts-product > i {
            font-size: 14px;
            color: var(--gray-color);
            margin: 0 3px;
        }

            .item-product-filin .info-product .starts-product > i.active {
                color: var(--orange);
            }

    .item-product-filin .info-product .title-product {
        font-size: 16px;
        font-weight: bold;
        margin: 15px 0 5px;
        line-height: 1.6;
    }

        .item-product-filin .info-product .title-product a {
            color: var(--gray-color);
            transition: all 0.4s;
        }

.item-product-filin:hover .info-product .title-product a {
    color: var(--orange-color);
}

.item-product-filin .info-product .prices {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .item-product-filin .info-product .prices .toman {
        font-style: normal;
        font-size: 12px;
        color: var(--gray-color);
        margin: 0 12px;
    }

    .item-product-filin .info-product .prices .price-main {
        font-weight: bold;
        color: var(--gray-color);
    }

    .item-product-filin .info-product .prices .price-off {
        font-weight: normal;
        color: var(--light-color);
        text-decoration: line-through !important;
        margin-left: 15px;
    }

    .item-product-filin .info-product .prices .price-pro {
        font-weight: bold;
    }

        .item-product-filin .info-product .prices .price-pro .toman {
            margin: 0;
        }

.item-product-filin .countdown_exciting {
    top: auto;
    bottom: 35px;
    z-index: 10;
    transition: all 0.3s;
}

.item-product-filin:hover .countdown_exciting {
    opacity: 0;
    visibility: hidden;
}

.item-product-filin .countdown_exciting .number .title {
    top: auto;
    bottom: -20px;
}
