﻿:root {
    --color-primary: #3577f0;
    --light-primary: #8c71db;
    --color-secondary: #ff497c;
    --color-tertiary: #FAB8C4;
    --color-white: #ffffff;
    --color-dark: #27272E;
    --color-black: #000000;
    --color-light: #CBD3D9;
    --color-lighter: #F6F7FB;
    --color-lightest: #C4C4C4;
    --color-chart01: #896BA7;
    --color-chart02: #BADEFF;
    --color-chart03: #E76458;
    --color-heading: #292930;
    --color-body: #777777;
    --color-border-light: #E3E6E9;
    --color-border-dark: #42424A;
    --color-gray: #999FAE;
    --color-midgray: #878787;
    --color-extra01: #999FAE;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --radius: 6px;
    --radius-big: 16px;
    --radius-small: 6px;
    --border-width: 2px;
    --border-thin: 1px;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-bold: 700;
    --s-black: 900;
    --shadow-primary: 0px 4px 10px rgba(37, 47, 63, 0.1);
    --shadow-light: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
    --shadow-dark: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    --transition: 0.3s;
    --font-primary: "iranyekan", sans-serif;
    --font-secondary: "vazir", sans-serif;
    --font-awesome: "Font Awesome 5 Pro";
    --font-size-b1: 16px;
    --font-size-b2: 14px;
    --font-size-b3: 12px;
    --line-height-b1: 1.7;
    --line-height-b2: 1.65;
    --line-height-b3: 1.6;
    --h1: 46px;
    --h2: 36px;
    --h3: 28px;
    --h4: 24px;
    --h5: 20px;
}


.single-poster {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

    .single-poster a {
        display: block;
    }

        .single-poster a img {
            transition: .5s;
            width: 100%;
        }

    .single-poster:hover img {
        transform: scale(1.1);
    }

    .single-poster:hover .inner .title {
        transition: all .3s;
        color: rgba(255, 255, 255, .8);
    }

    .single-poster .poster-content {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 2;
        padding-right: 100px;
        pointer-events: none;
        width: 50%;
    }

    .single-poster .inner .title {
        line-height: 1;
        margin-bottom: 20px;
        font-size: 40px;
    }

    .single-poster .poster-content.content-left .title {
        margin-bottom: 0;
        margin-top: 8px;
    }



    .single-poster .inner .sub-title {
        font-size: 16px;
        line-height: 24px;
        position: relative;
        color: rgba(255, 255, 255, .4);
        transition: all .3s ease-in-out;
    }

    .single-poster .poster-content.content-left .sub-title {
        color: rgba(255, 255, 255, .6);
        transition: all .3s ease-in-out;
    }

    .single-poster .inner .sub-title {
        font-size: 16px;
        line-height: 24px;
        position: relative;
        color: rgba(255, 255, 255, .8);
        transition: all .3s ease-in-out;
    }

    .single-poster .inner .title {
        transition: all .3s;
        line-height: 1.5;
        margin-bottom: 20px;
        font-size: 28px;
        color: rgba(255, 255, 255, .6);
    }

    .single-poster .poster-content.content-left {
        right: auto;
        left: 0;
        padding-right: 0;
        padding-left: 60px;
    }


.service-box {
    background-color: var(--color-white);
    border: 1px solid #f1f1f1;
    padding: 15px 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 6px;
    position: relative;
    transition: all .3s ease-in-out;
}

    .service-box::before {
        content: "";
        height: 100%;
        width: 90%;
        border: 1px solid #f1f1f1;
        border-radius: 6px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .service-box .icon {
        margin-bottom: 20px;
    }

        .service-box .icon img {
            max-height: 60px;
        }

    .service-box .title {
        font-size: 16px;
        line-height: 26px;
        font-weight: 700;
        margin-bottom: 0;
    }

.section-title-wrapper {
    padding-right: 0;
    padding-left: 100px;
}

.title-highlighter.highlighter-primary {
    color: var(--light-primary);
}

.title-highlighter {
    font-size: 14px;
    font-weight: var(--s-bold);
    line-height: 1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .title-highlighter.highlighter-primary i {
        background-color: var(--light-primary);
        color: var(--color-white);
    }

    .title-highlighter i {
        margin-right: 0;
        margin-left: 10px;
    }

    .title-highlighter i {
        height: 24px;
        width: 24px;
        line-height: 24px;
        border-radius: 50%;
        font-size: 12px;
        text-align: center;
    }

.section-title-wrapper .title {
    font-size: 26px;
}

.slick-initialized .slick-slide {
    outline: none;
    margin-bottom: 0;
}

.slick-layout-wrapper--15 .slick-single-layout, .slick-layout-wrapper--15 .slick-slide {
    padding: 0 15px;
}

.slick-initialized .slick-slide {
    margin-bottom: -10px;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}


.axil-product.product-style-four {
    text-align: center;
}

.axil-product {
    position: relative;
}

    .axil-product > .thumbnail {
        position: relative;
        display: block;
    }

        .axil-product > .thumbnail > a {
            display: block;
            background-color: #f7f7f7;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }

            .axil-product > .thumbnail > a img {
                border-radius: 6px;
                width: 100%;
                transition: .3s;
            }

    .axil-product .product-hover-action {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .axil-product .cart-action {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -5px;
    }

        .axil-product .cart-action li {
            margin: 5px;
        }

    .axil-product:hover .thumbnail a img {
        transform: scale(1.1);
    }

    .axil-product .product-content {
        margin-top: 25px;
        position: relative;
        margin-bottom: 30px;
    }

        .axil-product .product-content .inner {
            transition: .3s;
        }

        .axil-product .product-content .title {
            color: #757474;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            transition: .3s;
        }

            .axil-product .product-content .title a {
                transition: .3s;
            }

    .axil-product.product-style-four .product-content .product-price-variant {
        justify-content: center;
    }

    .axil-product .product-content .product-price-variant {
        margin: -4px;
        transition: .3s;
        transition-delay: .1s;
    }

        .axil-product .product-content .product-price-variant span.price.old-price {
            color: #d6d6d6;
            text-decoration: line-through;
            margin-left: 0;
        }


        .axil-product .product-content .product-price-variant span.price.old-price {
            color: #d6d6d6;
            text-decoration: line-through;
            margin-left: 0;
        }

        .axil-product .product-content .product-price-variant span.price {
            margin: 4px;
            color: #232328;
            font-weight: 700;
            font-size: 20px;
        }

    .axil-product > .thumbnail .label-block.label-right {
        left: auto;
        right: -10px;
    }

    .axil-product > .thumbnail .label-block {
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 2;
    }

        .axil-product > .thumbnail .label-block .product-badget {
            background-color: #3477f0;
            line-height: 1;
            padding: 6px 10px 5px;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            border-radius: 4px;
            box-shadow: 0 8px 16px 0 rgba(53, 119, 240, .3);
        }

    .axil-product .cart-action li.select-option a {
        position: relative;
        height: 40px;
        line-height: 39px;
        padding: 0 18px;
        display: block;
        border-radius: 4px;
        font-weight: 700;
        font-size: 14px;
        color: #fdfbfb;
        background-color: #fd4679;
        transition: .3s;
        box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
        position: relative;
        z-index: 1;
    }

    .axil-product:hover .product-hover-action {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
        transition-delay: .2s;
    }

    .axil-product .cart-action {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -5px;
    }

        .axil-product .cart-action ul li {
            line-height: 1;
            margin-top: 8px;
            margin-bottom: 8px;
            color: #757474;
        }

        .axil-product .cart-action li.wishlist a, .axil-product .cart-action li.quickview a {
            width: 40px;
            height: 40px;
            line-height: 42px;
            border-radius: 4px;
            background-color: var(--color-white);
            display: block;
            text-align: center;
            transition: .3s;
            position: relative;
            font-size: 14px;
            box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
            position: relative;
            z-index: 1;
        }

            .axil-product .cart-action li.wishlist a::before, .axil-product .cart-action li.quickview a::before {
                content: "";
                height: 100%;
                width: 100%;
                background-color: #fdfcfc;
                border-radius: 4px;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: -1;
                transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

.widget-product .owl-carousel .owl-nav .owl-next {
    left: 0 !important;
    top: -40px !important;
    box-shadow: 0.5px 0 4px 3px rgba(0, 0, 0, .15);
    border-radius: 5px 5px 5px 5px;
}

.widget-product .owl-carousel .owl-nav .owl-prev {
    left: 60px !important;
    top: -40px !important;
    right: unset;
    box-shadow: 0.5px 0 4px 3px rgba(0, 0, 0, .15);
    border-radius: 5px 5px 5px 5px;
}

.axil-product.product-style-two .thumbnail a {
    width: 276px;
    height: 276px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.buttons-preview {
    position: relative;
}

    .buttons-preview .btn, .buttons-preview .btn-group {
        margin-bottom: 10px;
        margin-right: 10px;
    }

.btn-labeled {
    display: inline-block;
    position: relative;
    padding: 0;
    height: 36px;
    min-width: 150px;
}

.btn-palegreen, .btn-palegreen:hover, .btn-palegreen:focus, .btn-palegreen:active {
    background-color: #fff;
    padding: 3px 5px 3px 45px;
    border: 1px solid #a0d468;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #333;
    text-align: center;
}

.btn-labeled {
    margin: 15px;
}

    .btn-labeled .btn-label {
        border: 1px solid #ddd;
        border-radius: 4px 0 0 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 35px;
        height: 35px;
        background-color: #a0d468;
        color: #6f7767;
        line-height: 15px;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
    }

    .btn-labeled:hover {
        cursor: pointer;
    }



























@media only screen and (min-width:650px) and (max-width: 1420px) {
    .axil-product.product-style-four .product-content .product-price-variant {
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}



@media only screen and (min-width:0px) and (max-width: 650px) {

    .single-poster .content-w-100 {
        top: 65%;
        width: 70%;
    }

        .single-poster .content-w-100 .inner .title {
            font-size:14px;
        }

    .single-poster .content-w-100-l .inner .title {
        font-size: 14px;
    }

    .single-poster .content-w-100-l {
        top: 45%;
        width: 70%;
    }

    .axil-product.product-style-four .product-content .product-price-variant {
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .axil-product .product-content .product-price-variant span.price {
        margin: 0;
    }

    .single-poster .poster-content {
        padding-right: 30px;
    }

    .single-poster .inner .title {
        line-height: 1.6;
        font-size: 17px;
    }
}
