@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap";
@import "https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap";

@keyframes rotaed360 {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(-360deg);
    }
}

@keyframes moveright {
    0%, 100% {
        transform: translate(0)
    }

    50% {
        transform: translate(-20px)
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes leftani {
    0% {
        transform: translateX(-80px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(80px);
    }
}

@keyframes updown {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0%, 35% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes animatin {
    0% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes updown {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes imageChange {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes line {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

.success-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.5);
    display: block;
}

.content-container {
    background: #ffffff;
    max-width: 500px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 260px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.content-text {
    font-weight: 500;
}

.success-checkmark {
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .success-checkmark .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
    }

        .success-checkmark .check-icon::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }

        .success-checkmark .check-icon::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }

        .success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #FFFFFF;
            transform: rotate(-45deg);
        }

        .success-checkmark .check-icon .icon-line {
            height: 5px;
            background-color: #0083FF;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
        }

            .success-checkmark .check-icon .icon-line.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }

            .success-checkmark .check-icon .icon-line.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }

        .success-checkmark .check-icon .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(0, 131, 255, 0.5);
        }

        .success-checkmark .check-icon .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #FFFFFF;
        }

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-family: open sans, sans-serif;
    color: #000;
}

a {
    display: inline-block;
    transition: all 0.5s;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #293a5c;
    }

    a:focus {
        text-decoration: none;
    }

button {
    outline: 0 !important;
    box-shadow: none;
    border: none;
}

    button:focus {
        box-shadow: none;
    }

.h1 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.h2 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.h3 {
    color: #ec1e25;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.h4 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.h5 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.h6 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

h1 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

h2 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

h3 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.5;
}

h4 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

h5 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

h6 {
    color: #293a5c;
    font-family: catamaran, sans-serif;
    font-weight: 700;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    font-size: 15px;
    margin-bottom: 15px;
}

    p:last-child {
        /*margin-bottom: 0;*/
    }

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-control {
    height: 40px;
    color: #293a5c;
    border: 1px solid #e8e8e8;
    background-color: transparent;
    border-radius: 4px;
    padding: 0;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 8px;
}

.submit-checkout {
    text-align: center;
    width: 100%
}

.button-buy-submit-cart {
    width: 55%;
    text-align: center;
    border: none;
    line-height: 40px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    background: #0066b3
}

.subtotal {
    display: none !important;
}

.red {
    color: #ff3333;
}

.pd-counter {
    display: flex;
    align-items: center;
    margin: 8px 0px 8px 0px;
    overflow: hidden;
}

.box-cart-total-price {
    width: 100%;
    float: right;
    margin-bottom: 10px;
    overflow: hidden
}

    .box-cart-total-price p {
        width: 100%;
        float: right;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 15px 10px 10px;
        border-bottom: solid 1px #e1e1e1;
        font-size: 14px;
        margin: 0
    }

        .box-cart-total-price p:nth-child(3) {
            border: none;
            padding-bottom: 5px
        }

        .box-cart-total-price p span.red-b {
            font-size: 16px;
            font-weight: 700;
            color: #ee2724
        }

    .box-cart-total-price .cart-vat {
        width: 100%;
        float: left;
        padding: 10px 15px 10px 10px;
        text-align: right;
        font-size: 14px
    }

.voucher {
    width: 100%;
    float: left
}

.filter-used-list.active {
    height: auto !important;
}

.button-buy-other-send-cart-continue {
    width: 350px;
    line-height: 48px;
    border-radius: 5px;
    background: #d92128;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    justify-content: center
}

.voucher-ct {
    width: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

    .voucher-ct input#discount_code {
        width: calc(100% - 73px);
        float: left;
        height: 36px;
        outline: 0;
        padding: 0 10px;
        border: 1px solid #e1e1e1;
        border-right: none;
        border-radius: 3px 0 0 3px
    }

    .voucher-ct a.button.button-check-discount.js-apply-discount-code {
        width: 75px;
        padding: 0;
        line-height: 36px;
        text-align: center;
        float: right;
        border: none;
        border-radius: 0 3px 3px 0;
        font-weight: 500
    }

a.button.button-check-discount.js-apply-discount-code {
    width: calc(100% - 75% - 10px);
    border: 0;
    font-size: 13px;
    display: inline;
    cursor: pointer;
    background: #0066b3;
    color: #fff;
    padding: 12px;
    margin: 0;
    border-radius: 3px;
    text-align: center
}

.order-success {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-cart-address #js-voucher-message {
    width: 100%;
    float: left;
    margin-top: 5px
}

.form-control::-moz-placeholder {
    color: #495057;
    font-size: 13px;
}

.form-control::placeholder {
    color: #495057;
    font-size: 13px;
}

.form-control:focus {
    color: #000;
    background-color: transparent;
    box-shadow: unset;
    outline: 0;
    border: 1px solid var(--bs-primary);
    box-shadow: unset;
}

.form-control:hover:focus {
    box-shadow: unset;
}

textarea.form-control {
    height: auto;
    height: 250px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-70 {
    padding-top: 70px;
}

.ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pb-70 {
    padding-bottom: 70px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-minus-70 {
    margin-top: -70px;
}

.mb-minus-70 {
    margin-bottom: -70px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.bg-color {
    background: #e9ecef;
}

.go-top {
    position: fixed;
    cursor: pointer;
    top: 93%;
    right: -10%;
    background-color: #ec2d2d;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    transition: 0.9s;
}

    .go-top i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        color: #fff;
        transition: 0.5s;
        font-size: 20px;
    }

        .go-top i:last-child {
            opacity: 0;
            visibility: hidden;
            top: 60%;
        }

    .go-top::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #ec2d2d;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .go-top:hover {
        color: #fff;
        background-color: #293a5c;
    }

        .go-top:hover::before {
            opacity: 1;
            visibility: visible;
        }

        .go-top:hover i:first-child {
            opacity: 0;
            top: 0;
            visibility: hidden;
        }

        .go-top:hover i:last-child {
            opacity: 1;
            visibility: visible;
            top: 50%;
        }

    .go-top:focus {
        color: #fff;
    }

        .go-top:focus::before {
            opacity: 1;
            visibility: visible;
        }

        .go-top:focus i:first-child {
            opacity: 0;
            top: 0;
            visibility: hidden;
        }

        .go-top:focus i:last-child {
            opacity: 1;
            visibility: visible;
            top: 50%;
        }

    .go-top.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        right: 3%;
        top: 93%;
    }

.section-title {
    position: relative;
    max-width: 695px;
    margin: -8px auto 60px;
    text-align: center;
}

    .section-title span {
        color: #ec2d2d;
        font-size: 14px;
        position: relative;
        display: inline-block;
        margin-bottom: 8px;
    }

    .section-title h2 {
        font-size: 40px;
        text-transform: capitalize;
        color: #293a5c;
        margin-bottom: 20px;
    }

.box-btn {
    font-size: 13px;
    color: #fff;
    padding: 15px 20px;
    line-height: 1;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #ec2d2d;
    border: 1px solid #ec2d2d;
}

    .box-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 50%;
        background-color: #8b8888;
        z-index: -1;
        transition: all 0.5s;
    }

    .box-btn::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 100%;
        width: 100%;
        height: 50%;
        background-color: #8b8888;
        z-index: -1;
        transition: all 0.5s;
    }

    .box-btn:hover {
        color: #fff;
    }

        .box-btn:hover::before {
            left: 0;
        }

        .box-btn:hover::after {
            right: 0;
        }

    .box-btn.border-btn {
        background-color: transparent;
        border: 1px solid #fff;
    }

.line-bnt {
    font-size: 14px;
    color: #293a5c;
    font-weight: 600;
    line-height: 1;
}

    .line-bnt:hover {
        letter-spacing: 1px;
        color: #293a5c;
    }

.loader-content {
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    text-align: center;
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        transform: scale(1.1) rotateZ(90deg);
    }

        .sk-folding-cube .sk-cube2::before {
            animation-delay: 0.3s;
        }

    .sk-folding-cube .sk-cube3 {
        transform: scale(1.1) rotateZ(180deg);
    }

        .sk-folding-cube .sk-cube3::before {
            animation-delay: 0.6s;
        }

    .sk-folding-cube .sk-cube4 {
        transform: scale(1.1) rotateZ(270deg);
    }

        .sk-folding-cube .sk-cube4::before {
            animation-delay: 0.9s;
        }

.header-area {
    position: relative;
    padding: 15px 0;
    background: #fff;
}

    .header-area .header-content-right {
        position: relative;
        display: inline-flex;
        float: right;
    }

        .header-area .header-content-right .header-contact {
            padding: 0;
            margin: 0;
            position: relative;
        }

            .header-area .header-content-right .header-contact li {
                display: inline-block;
                position: relative;
                font-size: 15px;
                margin-right: 20px;
                font-weight: 500;
            }

                .header-area .header-content-right .header-contact li a {
                    color: var(--bs-red);
                }

                    .header-area .header-content-right .header-contact li a i {
                        position: relative;
                        top: 2px;
                        margin-right: 5px;
                        font-size: 16px;
                        color: var(--bs-red);
                    }

                    .header-area .header-content-right .header-contact li a:hover {
                        color: #ec2d2d;
                    }

                .header-area .header-content-right .header-contact li:last-child {
                    margin-right: 0;
                }

            .header-area .header-content-right .header-contact::before {
                position: absolute;
                width: 1px;
                height: 24px;
                content: "";
                background: #ec2d2d;
                right: -62px;
                top: 2px;
            }

        .header-area .header-content-right .header-social {
            padding: 0;
            margin: 0;
            margin-left: 10px;
        }

            .header-area .header-content-right .header-social li {
                display: inline-block;
                position: relative;
                padding-left: 10px;
            }

                .header-area .header-content-right .header-social li a {
                    font-size: 0.8rem;
                    /*color: #ec2d2d;*/
                }

                    .header-area .header-content-right .header-social li a:hover {
                        color: #3d59fa;
                        transform: translateY(-2px);
                    }

            .header-area .header-content-right .header-social::before {
                display: none !important;
            }

.header-2 {
    background: #3d59fa;
}

    .header-2 .text-left {
        text-align: left;
    }

    .header-2 .text-right {
        text-align: right;
    }

    .header-2 .header-content-right {
        float: unset;
    }

        .header-2 .header-content-right .header-contact li {
            display: inline-block;
            position: relative;
            padding-left: 25px;
            font-size: 16px;
            margin-right: 20px;
        }

            .header-2 .header-content-right .header-contact li a {
                color: #fff;
            }

                .header-2 .header-content-right .header-contact li a i {
                    position: absolute;
                    display: inline-block;
                    left: 0;
                    top: 4px;
                    color: #fff;
                    font-size: 18px;
                }

                .header-2 .header-content-right .header-contact li a:hover {
                    color: #fff;
                }

        .header-2 .header-content-right .header-contact::before {
            display: none;
        }

        .header-2 .header-content-right .header-social {
            padding: 0;
            margin: 0;
            margin-left: 10px;
            float: right;
        }

            .header-2 .header-content-right .header-social li {
                display: inline-block;
                position: relative;
                padding-left: 10px;
            }

                .header-2 .header-content-right .header-social li a {
                    font-size: 18px;
                    color: #fff;
                    width: 35px;
                    height: 35px;
                    border: 1px solid #fff;
                    border-radius: 50%;
                    line-height: 37px;
                    text-align: center;
                    transition: 0.3s;
                    transition: 0.3s;
                }

                    .header-2 .header-content-right .header-social li a:hover {
                        background: #fff;
                        color: #1e2a55;
                    }

                .header-2 .header-content-right .header-social li:first-child {
                    padding-left: 0;
                }

    .header-2.three {
        background: #000b2f;
    }

.buy-now-btn {
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: #fff;
    background-color: #82b440;
    padding: 10px 20px 10px 42px;
    box-shadow: 0 1px 20px 1px #82b440;
    font-size: 13px;
    font-weight: 600;
}

    .buy-now-btn img {
        top: 50%;
        left: 20px;
        width: 15px;
        position: absolute;
        transform: translateY(-50%);
    }

    .buy-now-btn:hover {
        background-color: #03abeb;
        color: #fff;
    }

.navbar-area {
    background-color: transparent;
    transition: 0.3s;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
}

    .navbar-area .main-nav {
        background: 0 0;
        transition: 0.4s;
    }

        .navbar-area .main-nav .navbar {
            transition: 0.4s;
            padding-right: 0;
            padding-top: 0;
            padding-left: 0;
            padding-bottom: 0;
        }

            .navbar-area .main-nav .navbar ul {
                padding-left: 0;
                list-style-type: none;
                margin-bottom: 0;
            }

            .navbar-area .main-nav .navbar .navbar-nav {
                margin-right: 0;
            }

                .navbar-area .main-nav .navbar .navbar-nav .nav-item {
                    position: relative;
                    padding-top: 15px;
                    padding-bottom: 15px;
                    padding-left: 0;
                    padding-right: 0;
                }

                    .navbar-area .main-nav .navbar .navbar-nav .nav-item a {
                        font-size: 16px;
                        font-weight: 600;
                        color: black;
                        text-transform: capitalize;
                        padding-left: 0;
                        padding-right: 0;
                        padding-top: 0;
                        padding-bottom: 0;
                        margin-left: 0;
                        margin-right: 30px;
                    }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item a:hover {
                            color: red;
                        }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item a:focus {
                            color: red;
                        }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item a i {
                            font-size: 16px;
                            position: relative;
                            top: 2px;
                            margin-left: 1px;
                        }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item a.active {
                            color: var(--nav-hover);
                        }

                    .navbar-area .main-nav .navbar .navbar-nav .nav-item:hover a {
                        color: var(--nav-hover);
                    }

                    .navbar-area .main-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        top: 50px;
                        max-height: 500px;
                        overflow: auto;
                    }

                    .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu {
                        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
                        background: #fff;
                        position: absolute;
                        border: none;
                        top: 80px;
                        left: 0;
                        width: 240px;
                        z-index: 99;
                        display: block;
                        opacity: 0;
                        visibility: hidden;
                        border-radius: 0;
                        transition: all 0.3s ease-in-out;
                        padding-top: 0;
                        padding-left: 0;
                        padding-right: 0;
                        padding-bottom: 0;
                    }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu::before {
                            position: absolute;
                            width: 0;
                            height: 0;
                            content: "";
                            border-top: 0;
                            border-right: 8px solid transparent;
                            border-bottom: 8px solid #fff;
                            border-left: 8px solid transparent;
                            top: -8px;
                            left: 20px;
                            z-index: -11;
                        }

                        .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
                            padding: 0;
                            position: relative;
                            overflow: hidden;
                        }

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li::before {
                                position: absolute;
                                content: "";
                                top: 0;
                                left: 0;
                                width: 0;
                                height: 100px;
                                background: #ec2d2d;
                                transition: 0.5s all ease;
                                z-index: -1;
                            }

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
                                text-transform: capitalize !important;
                                padding: 2px 10px !important;
                                margin: 0 !important;
                                color: #181818 !important;
                                border-bottom: 1px dashed #eee !important;
                                font-size: 15px !important;
                            }

                                .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
                                    color: #ec2d2d;
                                }

                                .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus {
                                    color: #ec2d2d;
                                }

                                .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
                                    color: #ec2d2d;
                                }

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover a {
                                color: #fff;
                            }
/*
                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                                top: -15px;
                            }*/

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover::before {
                                width: 100%;
                            }

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
                                border-bottom: none;
                            }

                            .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
                                color: #ec2d2d;
                            }
/*
                    .navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
                        content: "+";
                        margin-left: 0.355em;
                        vertical-align: 0;
                        border-top: none;
                        border-right: none;
                        border-bottom: 0;
                        border-left: none;
                        transition: 0.3s all;
                    }*/

                    .navbar-area .main-nav .navbar .navbar-nav .nav-item.active a {
                        color: #70a1ff;
                    }

    .navbar-area .box-btn::before {
        background: #fff;
    }

    .navbar-area .box-btn::after {
        background: #fff;
    }

    .navbar-area .box-btn:hover {
        color: #132460;
    }

    .navbar-area .nav-btn {
        margin-left: 20px;
        position: relative;
        top: 3px;
        width: 191px;
    }

    .navbar-area .nav-right {
        display: inline-flex;
        width: 100%;
        position: relative;
        top: -3px;
        max-width: 16%;
    }

        .navbar-area .nav-right::-moz-placeholder {
            color: #f5faf5;
            opacity: 1;
        }

        .navbar-area .nav-right::placeholder {
            color: #f5faf5;
            opacity: 1;
        }

        .navbar-area .nav-right input.search {
            background: 0 0;
            border: none;
            border-bottom: 1px solid #f5faff;
            position: relative;
            color: var(--nav-color);
            padding-left: 0;
            border-radius: 0;
        }

            .navbar-area .nav-right input.search:focus {
                box-shadow: none;
            }

        .navbar-area .nav-right button {
            background: 0 0;
            border: none;
            color: #f5faff;
            font-size: 20px;
            position: absolute;
            top: 12px;
            right: 0;
            cursor: pointer;
            transition: all 0.5s;
            z-index: 1;
        }

            .navbar-area .nav-right button:hover {
                color: #ec2d2d;
            }

    .navbar-area.three .main-nav {
        background-color: #8b8888;
    }

.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    animation: fadeInDown 500ms ease-in-out;
    transition: 0.3s;
    box-shadow: 0 1px 10px rgba(221, 221, 221, 0.2);
    background: #ffffff !important;
}

.main-nav {
    --nav-hover: #fff;
    --nav-color: rgba(255, 255, 255, 0.515);
}

    .main-nav.is-sticky {
        --nav-hover: #d9232d;
        --nav-color: #000;
    }

.banner-area {
    position: relative;
    background: url(../images/home-bg-2.png);
    background-size: cover;
    overflow: hidden;
    width: 100%;
    height: 800px;
    z-index: 1;
}

    .banner-area .banner-content {
        margin-top: 30px;
    }

        .banner-area .banner-content h1 {
            font-size: 55px;
            color: #fff;
            margin: 0 0 30px;
        }

        .banner-area .banner-content p {
            color: #fff;
            padding-right: 0%;
        }

        .banner-area .banner-content .banner-btn {
            margin-top: 45px;
        }

            .banner-area .banner-content .banner-btn .box-btn {
                margin-right: 20px;
            }

                .banner-area .banner-content .banner-btn .box-btn::before {
                    background: #fff;
                }

                .banner-area .banner-content .banner-btn .box-btn::after {
                    background: #fff;
                }

                .banner-area .banner-content .banner-btn .box-btn:hover {
                    color: #132460;
                }

    .banner-area .banner-img {
        animation: pulse 7s infinite;
        margin-right: -100px;
    }

    .banner-area .home-shape .shape1 {
        position: absolute;
        top: 55%;
        left: 2%;
        animation: animationFramesOne 15s linear infinite;
        z-index: -1;
    }

    .banner-area .home-shape .shape2 {
        position: absolute;
        top: 19%;
        left: 3%;
        animation: pulse 4s infinite;
        z-index: -1;
    }

    .banner-area .home-shape .shape3 {
        position: absolute;
        bottom: 13%;
        left: 40%;
        animation: rotaed360 6s infinite linear;
        z-index: -1;
    }

    .banner-area .home-shape .shape4 {
        position: absolute;
        top: 15%;
        left: 35%;
        animation: rotaed360 6s infinite linear;
        z-index: -1;
    }

    .banner-area .home-shape .shape5 {
        position: absolute;
        top: 15%;
        left: 62%;
        animation: animationFramesOne 15s linear infinite;
        z-index: -1;
    }

    .banner-area .home-shape .shape6 {
        position: absolute;
        bottom: 30%;
        right: 4%;
        animation: animationFramesOne 15s linear infinite;
        z-index: -1;
    }

.slider-area-2 {
    position: relative;
    z-index: 1;
}

    .slider-area-2 .home-slider .single-slider {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border-bottom-left-radius: 90px;
        height: 100vh;
        border-bottom-right-radius: 90px;
    }

        .slider-area-2 .home-slider .single-slider::before {
            position: absolute;
            content: "";
            background: #000;
            opacity: 0.6;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-bottom-left-radius: 90px;
            border-bottom-right-radius: 90px;
        }

        .slider-area-2 .home-slider .single-slider .slider-content {
            position: relative;
            max-width: 700px;
            margin: auto;
        }

            .slider-area-2 .home-slider .single-slider .slider-content h1 {
                font-size: 60px;
                color: #fff;
                margin-bottom: 20px;
            }

            .slider-area-2 .home-slider .single-slider .slider-content p {
                color: #fff;
                margin-bottom: 35px;
            }

        .slider-area-2 .home-slider .single-slider .slider-btn .box-btn {
            margin-right: 10px;
            border-radius: 50px;
        }

        .slider-area-2 .home-slider .single-slider .slider-btn .border-btn {
            border-radius: 50px;
        }

            .slider-area-2 .home-slider .single-slider .slider-btn .border-btn:hover {
                color: #ec2d2d;
            }

                .slider-area-2 .home-slider .single-slider .slider-btn .border-btn:hover::before {
                    background-color: #fff;
                }

                .slider-area-2 .home-slider .single-slider .slider-btn .border-btn:hover::after {
                    background-color: #fff;
                }

    .slider-area-2 .owl-item.active .slider-content.one h1 {
        animation: 1s 0.2s fadeInUpBig both;
    }

    .slider-area-2 .owl-item.active .slider-content.one p {
        animation: 1.5s 0.3s fadeInUpBig both;
    }

    .slider-area-2 .owl-item.active .slider-content.one a {
        animation: 2s 0.4s fadeInUpBig both;
    }

    .slider-area-2 .owl-nav button.owl-next {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        font-size: 16px;
        line-height: 50px;
        top: 50%;
        position: absolute;
        right: 1%;
        background: #ec2d2d;
        font-weight: 700;
        transition: 0.3s;
        color: #fff;
        transform: translateY(-50px);
    }

        .slider-area-2 .owl-nav button.owl-next i {
            margin-left: 3px;
        }

        .slider-area-2 .owl-nav button.owl-next:hover {
            background: #cdcbcb;
            color: #fff;
        }

    .slider-area-2 .owl-nav button.owl-prev {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        font-size: 16px;
        line-height: 50px;
        left: 1%;
        top: 50%;
        position: absolute;
        color: #fff;
        font-weight: 700;
        background: #ec2d2d;
        transition: 0.3s;
        transform: translateY(-50px);
    }

        .slider-area-2 .owl-nav button.owl-prev i {
            margin-right: 3px;
        }

        .slider-area-2 .owl-nav button.owl-prev:hover {
            background: #cdcbcb;
            color: #fff;
        }

    .slider-area-2 .single-slider-bg-1 {
        background: url(../images/home-bg-3.jpg);
    }

    .slider-area-2 .single-slider-bg-2 {
        background: url(../images/home-bg-4.jpg);
    }

    .slider-area-2 .single-slider-bg-3 {
        background: url(../images/home-bg-5.jpg);
    }

.info-area {
    position: relative;
}

    .info-area .single-info {
        position: relative;
        transition: 0.3s;
        z-index: 1;
        margin-bottom: 30px;
    }

        .info-area .single-info .info-img img {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
        }

        .info-area .single-info .content {
            position: relative;
            max-width: 85%;
            margin: auto;
            background: #ffffff;
            padding: 30px;
            text-align: center;
            margin-top: -75px;
            border-radius: 4px;
            transition: 0.3s;
            z-index: 1;
            box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
        }

            .info-area .single-info .content h3 {
                margin-bottom: 0;
                color: #cdcbcb;
                font-size: 20px;
            }

                .info-area .single-info .content h3 i {
                    color: #3d59fa;
                    margin-right: 10px;
                }

            .info-area .single-info .content::before {
                position: absolute;
                content: "";
                bottom: 100%;
                left: 0;
                right: 0;
                background-color: #8b8888;
                overflow: hidden;
                width: 100%;
                height: 0;
                transition: 0.5s ease;
                z-index: -1;
            }

            .info-area .single-info .content .arrow {
                position: absolute;
                width: 35px;
                height: 35px;
                background: #3d59fa;
                color: #fff;
                border-radius: 50%;
                line-height: 35px;
                text-align: center;
                left: 50%;
                top: 110%;
                transform: translate(-50%, -50%);
                opacity: 0;
                transition: 0.3s;
            }

                .info-area .single-info .content .arrow a {
                    color: #fff;
                }

                .info-area .single-info .content .arrow i {
                    position: relative;
                    left: 1px;
                    font-weight: 400;
                }

        .info-area .single-info:hover .content::before {
            bottom: 0;
            height: 100%;
        }

        .info-area .single-info:hover .content h3 {
            color: #fff;
        }

            .info-area .single-info:hover .content h3 i {
                color: #fff;
            }

        .info-area .single-info:hover .content .arrow {
            opacity: 1;
            top: 95%;
        }

.single-service {
    position: relative;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.5s;
    border-radius: 4px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

    .single-service .service-img {
        margin-bottom: 20px;
    }

        .single-service .service-img img {
            height: 200px;
        }

    .single-service .service-content .service-title {
        height: 60px;
    }

        .single-service .service-content .service-title h3 {
            margin-bottom: 5px;
        }

    .single-service .service-content p {
        margin-bottom: 10px;
    }

    .single-service::before {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #aab3bb;
        z-index: -1;
        transition: all 0.5s;
    }

    .single-service::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: 100%;
        width: 100%;
        height: 100%;
        background: url(../images/service/hover.png) no-repeat;
        z-index: -1;
        transition: all 0.5s;
    }
    /**/
    .single-service:hover {
        transform: translateY(-10px);
    }

        .single-service:hover h3 {
            color: #fff;
        }

        .single-service:hover p {
            color: #fff;
        }

        .single-service:hover::before {
            left: 0;
        }

        .single-service:hover::after {
            right: -47px;
        }

        .single-service:hover .service-content .line-bnt {
            color: #fff;
        }

.home-company-area {
    padding-top: 130px;
    padding-bottom: 130px;
    overflow: hidden;
}

    .home-company-area .company-content {
        margin-top: -8px;
        margin-bottom: -8px;
        margin-right: 30px;
    }

        .home-company-area .company-content .company-tittle span {
            color: #ec2d2d;
            font-size: 14px;
            margin-bottom: 8px;
            display: inline-block;
        }

        .home-company-area .company-content .company-tittle h2 {
            margin-bottom: 20px;
            font-size: 40px;
        }

        .home-company-area .company-content .box-btn {
            margin-top: 35px;
        }

    .home-company-area .company-img {
        position: relative;
        z-index: 1;
    }

        .home-company-area .company-img::before {
            position: absolute;
            content: "";
            width: 350px;
            height: 100px;
            background: #e6335a;
            z-index: -1;
            left: -30px;
            top: -30px;
            border-radius: 4px;
        }

        .home-company-area .company-img::after {
            position: absolute;
            content: "";
            width: 350px;
            height: 100px;
            background: #cdcbcb;
            z-index: -1;
            right: -30px;
            bottom: -30px;
            border-radius: 4px;
        }

.choose-area .choose-content .faq-accordion .accordion {
    padding: 0;
    margin: 0;
}

    .choose-area .choose-content .faq-accordion .accordion .accordion-item {
        display: block;
        margin-bottom: 20px;
        position: relative;
        box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    }

        .choose-area .choose-content .faq-accordion .accordion .accordion-item:last-child {
            margin-bottom: 0;
        }

        .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-title {
            padding: 15px 60px 15px 70px;
            color: #cdcbcb;
            position: relative;
            border-radius: 2px;
            font-size: 18px;
            font-weight: 600;
            display: block;
            background-color: #fff;
            box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
        }

            .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-title i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: #cdcbcb;
                transition: 0.5s;
                font-size: 16px;
            }

            .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-title.active {
                background-color: #8b8888;
                color: #fff;
            }

                .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-title.active i::before {
                    content: "\ec4e";
                    color: #fff;
                }

        .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-content {
            display: none;
            background-color: #fff;
            margin-bottom: 0;
            padding: 15px 30px;
            font-size: 16px;
            z-index: 1;
            color: #50607f;
            position: relative;
        }

            .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-content::before {
                content: "";
                width: 75%;
                height: 2px;
                background: #7a7e9a;
                top: 5px;
            }

            .choose-area .choose-content .faq-accordion .accordion .accordion-item .accordion-content.show {
                display: block;
            }

    .choose-area .choose-content .faq-accordion .accordion .icon {
        position: absolute;
        z-index: 2;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #f5ebff;
        text-align: center;
        font-size: 25px;
        color: #cdcbcb;
        top: 11.2px;
        left: 12px;
    }

.home2-choose-area .single-choose {
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.item-cart:hover .header-cart-hover {
    transition: .2s all;
    top: 110%;
    opacity: 1;
    visibility: visible;
}

.header-cart-hover {
    border-radius: 10px;
    overflow: hidden;
    color: #222;
    padding: 10px 0 0 0;
    transition: .2s all;
    position: absolute;
    right: 0;
    z-index: 9999;
    top: calc(100% + 30px);
    box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.2);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    width: 400px;
    text-align: left;
}

    .header-cart-hover * {
        line-height: 20px;
    }

    .header-cart-hover .cart-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .header-cart-hover .cart-item {
        padding: 19px 12px;
        border-bottom: 1px solid #e1e1e1;
        display: flex;
        flex-wrap: wrap;
    }

        .header-cart-hover .cart-item:last-child {
            border: 0;
        }

    .header-cart-hover .cart-items-holder {
        max-height: 330px;
        overflow: auto;
        margin: 0 0 12px 0;
    }

    .header-cart-hover .cart-item .cart-img {
        width: 85px;
        margin-right: 12px;
    }

    .header-cart-hover .cart-item .cart-text {
        width: calc(100% - 97px);
        font-weight: lighter;
    }

    .header-cart-hover .cart-item a {
        display: block;
        color: #222;
    }

    .header-cart-hover .cart-item .cart-text a {
        margin-bottom: 10px;
        display: -webkit-box;
        max-height: 3.2rem;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 2;
        line-height: 1.6rem;
        font-weight: 600;
        font-size: 0.8rem
    }

    .header-cart-hover .cart-price-hover {
        padding: 12px 20px 15px 15px;
        -webkit-box-shadow: 0px -4px 10px 0px #e9e9e9;
        box-shadow: 0px -4px 10px 0px #e9e9e9;
    }

        .header-cart-hover .cart-price-hover .btn-goCart {
            border-radius: 5px;
            background: #0066b3;
            font-weight: bold;
            line-height: 42px;
            width: 100%;
            margin: 8px 0px 0px 8px;
        }

    .header-cart-hover .cart-empty {
        margin: 24px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

.home2-choose-area .single-choose .icon {
    background: #fff;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    margin: auto;
    box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
    padding: 10px 20px;
}

    .home2-choose-area .single-choose .icon i {
        font-size: 80px;
        color: #cdcbcb;
        transition: 0.3s;
    }

.home2-choose-area .single-choose h3 {
    text-align: center;
    color: #293a5c;
    margin-bottom: 0;
    padding: 10px 5px;
    font-size: 17px;
    background-color: #f1f1f1;
}

.home2-choose-area .single-choose:hover {
    transform: translateY(-10px);
}

    .home2-choose-area .single-choose:hover .icon i {
        color: #3d59fa;
    }

.home2-choose-area .choose-c {
    position: relative;
    margin-top: 75px;
}

    .home2-choose-area .choose-c .content {
        max-width: 600px;
        margin-left: 30px;
    }

        .home2-choose-area .choose-c .content h3 {
            font-size: 30px;
            color: #293a5c;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .home2-choose-area .choose-c .content p {
            color: #293a5c;
            margin-bottom: 10px;
        }

            .home2-choose-area .choose-c .content p:last-child {
                margin-bottom: 0;
            }

        .home2-choose-area .choose-c .content .box-btn {
            border-radius: 50px;
            margin-top: 15px;
        }

.home-process-area {
    background-color: #8b8888;
}

    .home-process-area .section-title span {
        color: #fff;
    }

    .home-process-area .section-title h2 {
        color: #fff;
    }

    .home-process-area .section-title p {
        color: #fff;
    }

    .home-process-area .single-process {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

        .home-process-area .single-process .icon {
            background: #1e2a55;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 56px;
            margin-bottom: 30px;
            border-radius: 3px;
            position: relative;
        }

        .home-process-area .single-process .content h3 {
            color: #fff;
        }

        .home-process-area .single-process .content p {
            color: #fff;
            margin-bottom: 0;
            font-size: 14px;
        }

        .home-process-area .single-process span {
            position: absolute;
            z-index: 1;
        }

            .home-process-area .single-process span::before {
                content: "";
                position: absolute;
                content: "";
                height: 170px;
                border-right: 1px dashed #f5faff;
                transform: rotate(90deg);
                top: -55px;
                left: 122px;
                z-index: -1;
            }

            .home-process-area .single-process span img {
                max-width: 100px;
                margin-left: 100px;
                animation: leftani 5s infinite linear;
            }

.home-case .case {
    position: relative;
}

    .home-case .case .all-case {
        padding-bottom: 5px;
        border-bottom: 1px solid #7a7e9a;
        text-align: center;
        margin-bottom: 40px;
        line-height: 1;
    }

        .home-case .case .all-case li {
            display: inline-block;
            margin-right: 30px;
            margin-bottom: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
        }

            .home-case .case .all-case li span {
                color: #50607f;
            }

            .home-case .case .all-case li:last-child {
                margin-right: 0;
            }

        .home-case .case .all-case .active {
            position: relative;
        }

            .home-case .case .all-case .active::before {
                position: absolute;
                width: 100%;
                height: 5px;
                background: #3d59fa;
                content: "";
                bottom: -14px;
            }

            .home-case .case .all-case .active span {
                color: #3d59fa;
            }

.home-case .case-list .single-case {
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 11px 11px 20px;
    position: relative;
    transition: all 0.5s;
}

.home-case .home-categories {
    margin-bottom: 30px;
    background: white;
    border-radius: 0.5em;
    box-shadow: var(--boxShadow)
}

    .home-case .home-categories .header-block {
        text-align: center !important;
        font-size: 1.6em;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        /* position:relative; */
        background-size: cover;
        /* background:linear-gradient(0deg,#bb0015,#e7001a 100%,#d70018 0,#d70018 0,#fff 0); */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

        .home-case .home-categories .header-block span {
            margin: 15px 0;
            text-transform: uppercase;
            color: #fff;
            font-family: Signika,sans-serif;
            filter: drop-shadow(0 3px 0 var(--primaryColor));
            text-shadow: 3px 0 var(--primaryColor),-2px 0 var(--primaryColor),0 2px var(--primaryColor),0 -2px var(--primaryColor),-2px -2px var(--primaryColor),3px 2px var(--primaryColor),-2px 2px var(--primaryColor),3px -2px var(--primaryColor);
        }

        .home-case .home-categories .header-block span {
            margin: 15px 0;
            text-transform: uppercase;
            color: #fff;
            font-family: Signika,sans-serif;
            filter: drop-shadow(0 3px 0 var(--primaryColor));
            text-shadow: 3px 0 var(--primaryColor),-2px 0 var(--primaryColor),0 2px var(--primaryColor),0 -2px var(--primaryColor),-2px -2px var(--primaryColor),3px 2px var(--primaryColor),-2px 2px var(--primaryColor),3px -2px var(--primaryColor);
        }

    .home-case .home-categories .lst-cate-title {
        margin: 0;
        color: white;
        background: linear-gradient(0deg, #ff0005, #e7001a 100%, #d70018 0, #ff0005 0, #fff 0);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .home-case .home-categories .lst-cate .lst-cate-grid {
        flex-wrap: wrap;
        display: flex;
    }

        .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item {
            display: table-cell;
            position: relative;
            float: left;
            width: 10%;
            margin-top: 5px;
            padding: 10px !important;
        }

            .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item .home-categories-item-title {
                font-size: 0.8rem;
                font-weight: 500;
                text-align: center;
                text-transform: capitalize;
                color: #000
            }

            .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item:hover .home-categories-item-title {
                color: var(--bs-primary);
            }

            .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item:hover img {
                transform: scale(1.16);
            }

            .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item:nth-child(n) {
                width: 10%;
                text-align: center;
                display: block;
                color: #3f3f3f;
                padding-bottom: 1.5em;
                border-radius: 0.5em;
                transition: 0.3s;
                text-align: -webkit-center;
            }

            .home-case .home-categories .lst-cate .lst-cate-grid .home-categories-item .home-categories-item-image {
                width: 6em;
                height: 6em;
                background: #f1f1f1;
                padding: 1.2em;
                border-radius: 50%;
                display: flex;
                align-items: center;
                place-content: center;
                margin-bottom: 16px;
            }

img.home-categories-item-image-images {
    object-fit: contain;
    will-change: transform;
    transition: transform .64s ease;
}

.home-case .home-box-group {
    margin: 20px 0;
    background: #fff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--boxShadow)
}

    .home-case .home-box-group .box-title-group {
        padding: 17px 12px;
        border-bottom: 1px solid #F5F5F5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .home-case .home-box-group .title {
        margin: 0;
        font-weight: 800;
        font-size: 0.8rem;
        text-transform: uppercase
    }

    .home-case .home-box-group .box-title-group * {
        line-height: 38px;
        float: left;
    }

.p-item {
    background: #FFF;
    border-radius: 15px;
    padding: 11px 11px 0px;
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
}

    .p-item .p-img {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        padding-bottom: 100%;
        margin-bottom: 12px
    }

    .p-item:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    .p-item a {
        display: block;
        color: #000
    }

    .p-item img {
        border-radius: 15px;
        -webkit-transition: .4s all;
        transition: .4s all;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

.p-percent {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 256 100"><title>Asset 1</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><image width="256" height="100" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAABkCAYAAABpYO6eAAAN+0lEQVR4nO3dCXBd1X0G8O+ce+9bJVt61mZJlmQ5trAD3hcgYE/BJVAgmY6hqQnUuCnEU5LMlDbNMiRpQpJu6TbNDJ3S6UzjJJOGaScZGjJA3cQbRsQYO5Z34d3Wgna99W6nc65kYccGyXjTe+/7zZwZYMC8+6Tz3f9Z7rki07oTRlkZcm/uhr2nDSJRBvf4qTnOoSOf9rreWQLXq1aZjIBh+CCiiVFKiHDINRLlKb9/sEdFI4MyHuuxGmcc8JOpXUbjjPbQrKY+r6MLxsxG+J1d8Hr6ACEg4lEYNdWwDxyGgIJQCioeR3j5Erh72uANDAKmCaO6QvdVGPW1cA61I7ryNsTWfAx+bz+UP7HuasLzoQAYDfXwN2+bmn31lz/qPXD43n4fiAogDKBEAL7gD57ocmQU0HX8DKrlyH+k+1Ro5x7UCkDEYyodCR8zqqs2m/PmvGomEi/JRNmg7thB51XqunzXpm9IGIkyONt2fLj9P368dUihfE7IRJlpXLcPQVSI9M2z7LzrGvtrfUdPZ8RgKt1s9/Q3Z/YdWt8Qi2SMmqodRt30H4WXLdpo1E7Pyq5uqL5+qGvYD83Qovmw39hVsf+pL2yygfKWeAS4jglEVHR0mR+yxgJBCAE/k42eOnryLu/oybsa9uz7J2vhzRtlovy7odnNe2E78HK5a/Itmf6JUxh45pvPnfZRvXxKDMp1+QtJdB3pO7wIh1AnRBAOznAyemDz609WCzxZ+eGWF8362j8P37HioFlVAdf3oZSPqzUiN4df+MktB3bsemhpyGDnJ7qRdNWtFKxwCHN1GHgezuw79KC979CDTSdP/0yY5h8bM+pO+o4DlbOvygeVTuuutcMKQUlCRJOEDgMpURMNoyFs4cD+I/d3ffmbJ1I/felrIhyGTIwMIK60EpBuR+f8mP5TJrhsQETXkQ4CIXBTaQwGgLYtrX8x/G8bj3td3bOMykpAT9ZfQd+VKpWun8olPqJJTQ/P9dCgJRZG73CqsXPjC+2ZlzdtMMrLIWLRYK+A+ADz9hKOIyMMAKL8oBQqYhHEABz62abnkv/53xtFJAI5LQG9p+dySQjpc8WPKI/4PqxoBE0hE/vPdD+afP57u/2u7risqRrZY3AZHVry506Uh/S435CYVxrDsbdPLNj54qv7AFVvVVUGk4eB0WXF92sMAKI8pucGGqNhPSRo7PncF3ektrxWaVQkxpYUx2sMAKJ8pxRmTYnjYN9Q/ZZ7Ht6ceeUXU6zZzUAmCzjO+zaTP3yi/KccJxgO7BpKz+37s6/83Gxq+IhRXQn39FkI8727OSsAogKhhwOLp8axs2fw9t71n3lBJNOQej6gfxBq4NKNAUBUQHQlsCweRuux0w8NfOs7zxjVVRCW+Z47BhkARAVosQFs/8nLz6Zf/PlKOasJSlcClnVRYwAQFRqlYMZjSAig/6t/tdHv7olZzU3B8z4iEr6gMQCICpCeD5hZGsObjt8w8O2/fzbYN5BMA0PJCxoDgKhA6RBYagCtr2x5OrfzrcXhVbcH5wcaDXVjjcuARAVMxmPAUBoD//Dc3xp10+92z3YG5wycwwqAqIDpKmCRXhVoO3xXZtPm+6N3r4Q5sxFmc1PQGABERUAfUJrb/NoXkEqPPBugT/9yXQYAUcFTCvPjYbzxxp47B//uux/XIeAeOQqn/SjnAIiKSa792GNTmhp+CsMINgexAiAqBkphgSnQta11TfrlTTcpffpwTy8DgKhYyEgYJz0g9/rOx8wZdTCnJRgAREXD91EpAWd32725rTvg/HofA4ComNSHTAweP7k4t3vvIsSjDACagHOnylD+Mwwc8QCVydwTXraEAUAToJ8k003w+OjLdqnz+G4kpaBfA2C/uecB/WpyLgPSuIRhBP/K2DvnWQ1MnD6vXwiMfWPnAuAGfod1BuB1dM51T5yMMQBoXGp077j+1WXXv3wXHNM9+qafoN2gELAg4AwlpwGYzSEATZjiXMDVce57vEHDAWmZ6FCAvXffAgYAjSv4NWXHv/pu1HcqBHwdAAePLGQA0LjY9QuU69UxAGh8vPsXHCkAP52pYgDQu7jMVzSqJfSx4FMZAPQu3umLhqOCycASBgBREYojGAJEGABExUi/LsxxTQYAURHSm7uUgM8AICpCWSjIkniOAUBUhEJ6M6LjphkAREWoR68ClJYMMgCIitCgfhShbGofA4CoWJlGBwOAqAjZuv/X1x5hABAVGeX50E8BWTfPfY0BQFRkfNdFIhJ2hTSOMQCIisw7egUgUXbYrJvOOQCioiIEunzAbJn9f2Z9LU8FJioqSqFEAKHZs/5XDQ4zAIiKyUDOxqyqxFlr2aKXPNtmABAVDSGCdwNazY2bjRl1DnyP7wUgKhpKIazL/5vn/VB1dME7c5YBQFQsTmRtzG2qb4vdt/p/lOPCrK/jEICoGAjTRLcPWIvnf8+sq4Wy7eBkUFYAREVgOJXG0lioL3Lr0uezu38NP5kOLpoBQFTopESbB6x+ct1fl33u0wP228fGToBmABAVMiHQn85ihSm6Q0sW/kv6F1vh9/aPBQDnAIgKXLsPxJ947JnQvJYh/51eCCmDNxbrxgqAqFBJiT3JLFbMrG+dsv7R573hJGRF4oKLZQAQFSIh4Gay0C92L/vGl/40NG8O7EPt+hSgCy6WAUBUoHZ6wKo1v/O16OpV27O79wK+f9GFcg6AqMAIy8KvUjnc1jh9S8XffP0bfk8f4PkjE3+/0VgBEBUS08T+oRQaJLqqf/Cvv2vWVME5egJWVcUlL5IBQFQopEQylYYLYM4//+Wa8LLFffbBIxCGERwDdikcAhAVAL3V18lkscsFVqz/xO+V/dEfbM8dPQ4lJXTXf6/GCoAo30mJVDqNgx5w3+c3PDb1iXUv2O1HoTLZcS+MFQBRHtN3/oFMFu0usOpLn32i4ltf+b6eB1BDSQhfjdtYARDlKynRr8f8Clhy57JPlK5b+2Pn+En4g8P6pR8TuigGAFG+Gd3HfzyV1Qd8eB/asG6VLC3Z7hw8AnN2s37tN8QEL4kBQJRPpIac5tDmKcyfUbOrZO2aj1ozm3pyO98CfHXZF8IAIMoHoxt4zqSzyClg0e1LvlPyyYc/LxwXbmcnlO9N/LZ/HgYA0SQXLPGl0tjvAbckSrumPP7Ix825c1r1k31+Og1YH7wbMwCIJind8e1UGm1pGwssicV3LPtq/IGPPmvWTodz9BhUzoYwrmwhjwFANNlIiXQ2i9MZG7PDJpYtaPn3yJKFX7aWL+7Sd33vbAeUUsGZfleKAUA0CejDOXzHxYDroVsBLVPi2Ztqqn5Y+qlHv241NZ7MbX8dbkcnYDswy8uv2gdmABDdCEJAeR5s10WHflmHAKoFMK2xfktVc+MP4qtXfV9lsmljWiKY5POHhyGnlUNchbv++d43AIS4+H+mXA+Xv9hAVFx0zwn6iesChhE8i+8qhRyAXhW8owNlEihPlA00V1XuNmqqXg7Na9mohDhjzagDwiG4J06PHOChx/mX6ItXw0UBIEaXG/S5YcE4Q6ngQvTf64tJey6i0rhmH4ioEJy7SeoHbqTuT9GIa4VDPaFwqKesdvpeo6bqDWN6zVvG9KptVsMMz+3qDib9cgcOwevogqEf3xW45v3sggAIOrkQGPJcdLg5DCp/5EKUCkqVaMU0d+lv3fOgdersEUQi04IPx3KA6GKOLUR5mR+9e6WTbX0zKQxj0Kqs6FMCnjH7QxCjN1YMDMAfHILf2wdEIiOlgbh09X0tmOd6sDRNpFwH+zwbHb6LrPJhQox9kC7PRZ1r294jD7WW7G7rz23Z8bZRkYDS6cafP9GFsjnImmqEFy+Ae+oMlH4RRywKlUxB9fbBy2UhIxH4uRwMy7phX15QAegXBvZ5DrY5aWSUwhQpERUmfPXu7b0cEtFMzlSpdCh390qguwfe7r0QifKRMY5iKUB0jl6jRzoNT2/WSaWBXBbI5YKJv6CnTJIhtDRME0mlsM0eOUmkXEgIhQs6/znBpoNkCshkYT9wD7DwFvh9/YDncU6AKA/pCkC85ttw9IykMHDpg4POo0v+dAbw3CAEQkBQCchEeXD0ECsBovwhuxwbncrHlIl0/nPkaAhkMkEIiNFKQLESIMorZqfylH55gKF3Il3O3Vu/XiidCcYz9v2/DUuPbfbuB1gJEOUNMwUldBk/wc4v4HlCbwaCbvofDCWDzUHOfath6RcP7D0AVCQYAkR5QGaUMsITWMjzRzY3KCMe862SEsh4bKSVlgTVgxmy4D+yBli+CH53D4cDRHnAacKRwWEo1IzzWb2RXYKekUh4IlEG4zfPHNN3/2gU6g8/CWkY8Le+DqOmikuERJOYtEpLDjrqMtYl9Z39Uk138sGhkXmBx9dC3HkrvK53uERINInJykULXzIErs5dWm8lHk4CeuPD42sh71gBr7ObIUA0ScnGe1f/101TSw8fsh3ICR4l/L7OCwFWAkSTm4zX1WLBZzZ8dlgBA5ncyANBV+pSlQBDgGjSkWYshiVffPqV9U8/9Sdv+wqnsvbYI8FXZDQEgocfGAJEk5LUhw3olwrevOFT//jgvXd9rD5kegdzNrpzTvAIsBpacT1NoPcA+L4Izgjw/fGbnlvUlUAyBX/d70N+ZPnInIDvMwSIJgH9yB/cTAbDx0+hvKXlxerbbo00HTj4VMcvtz7s5XINvuvqhwXdmnSmzIzFOoVheHqTj358eKJUKh0sDepKwAiH4f/qLYhY9OoMN4jogwHw/35dC3VrPyaLAAAAAElFacSuQmCC"/></g></g></svg>') 50% no-repeat;
    height: 31px;
    left: -10px;
    position: absolute;
    top: -1px;
    width: 100px
}

.p-percent-detail {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin: 3px 0 0;
    text-align: center;
    width: 100%
}

.p-item .p-qty {
    font-size: 12px;
    line-height: 15px;
    color: red;
    margin-bottom: 7px
}

.p-item .p-sku {
    font-size: 0.7rem;
    line-height: 15px;
    color: #777;
    margin-bottom: 7px
}

.p-item .p-qty.conhang {
    color: #2cc067;
}

.p-item .p-action {
    font-size: 13px;
    margin-top: -14px;
    display: inline-block;
    width: 100%
}

    .p-item .p-action .p-buy {
        background: url(../../../../images/icons/icons8-cart-96-black.png) no-repeat center;
        float: right;
        margin-top: -3px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-size: 24px;
        background-color: #DDDDDD;
    }

        .p-item .p-action .p-buy:hover {
            background: url(../../../../images/icons/icons8-cart-96.png) no-repeat center;
            background-size: 24px;
            background-color: #0066b3;
        }

.p-item .p-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 15px;
    margin-bottom: 10px;
    height: 45px;
    text-transform: uppercase;
}

    .p-item .p-name * {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.3;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.p-item .p-price-container {
    height: 42px;
    position: relative
}

.p-item .p-old-price {
    color: #888;
    line-height: 18px;
    display: block
}

.p-item .p-price {
    color: #ec2d2d;
    font-weight: 800;
    font-size: 1rem;
    line-height: 23px;
    display: block
}

.p-item .p-mprice {
    height: 20px;
    color: #666;
    font-size: 15px;
    text-decoration: line-through;
    overflow: hidden
}

.p-item .p-btn-cart {
    background: url(../images/p-cart.png) no-repeat center;
    background-size: 20px;
    background-color: #CFEAC1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 0;
    -webkit-transition: .2s all;
    transition: .2s all
}

    .p-item .p-btn-cart:hover {
        background-color: #29A07E
    }


.home-case .home-box-group .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    line-height: 50px;
    top: 50%;
    position: absolute;
    right: 0.5%;
    background: #cdcbcb !important;
    font-weight: 700;
    transition: 0.3s;
    color: #fff;
    transform: translateY(-50px);
}

    .home-case .home-box-group .owl-next i {
        margin-left: 3px;
    }

    .home-case .home-box-group .owl-next:hover {
        background: #ec2d2d !important;
        color: #fff;
    }

.home-case .home-box-group .owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    line-height: 50px;
    left: 0.5%;
    top: 50%;
    position: absolute;
    color: #fff;
    font-weight: 700;
    background: #cdcbcb !important;
    transition: 0.3s;
    transform: translateY(-50px);
}

    .home-case .home-box-group .owl-prev i {
        margin-right: 3px;
    }

    .home-case .home-box-group .owl-prev:hover {
        background: #ec2d2d !important;
        color: #fff;
    }

.product-page .p-filter {
    margin-bottom: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 12px
}

.product-filter-container .filter-list.show-filter {
    overflow: unset;
    height: auto !important;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.product-filter-container .filter-used {
    padding: 18px 0px 18px 0px;
    font-size: 16px;
    border-bottom: 1px solid #F4F4F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.button-show-filter {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    font-size: 16px;
    border: 2px none
}


.product-filter-container a {
    color: #000;
    border: 1px solid #e1e1e1;
    padding: 6px 16px;
    margin: 8px 10px 0 0;
    display: inline-block;
}

.filter-content {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

    .filter-content.collapsed {
        max-height: 180px;
        overflow: hidden;
    }

.filter-show-more {
    display: block;
    text-align: center;
    padding: 10px;
    color: #0066b3;
    cursor: pointer;
    font-weight: 500;
    background: #fff;
}

    .filter-show-more:hover {
        text-decoration: underline;
    }

    .filter-show-more.hidden {
        display: none;
    }

.product-filter-container .toggle-filter {
    color: #000;
    font-size: 20px;
    width: 45px;
    height: 35px;
    line-height: 24px;
    text-align: center;
    display: block;
    margin: auto 0 auto auto;
}

    .product-filter-container .toggle-filter.active {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.product-filter-container .filter-list {
    overflow: hidden;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.product-page .product-holder-group {
    background: #fff;
    border-radius: 8px
}

.product-page .sort-by-group {
    border-bottom: 1px solid #F4F4F4
}

.product-page .p-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}



.p-container-list .p-item {
    width: calc(100% / 2 - 6px);
    display: flex;
    flex-wrap: wrap
}

    .p-container-list .p-item:nth-child(2n) {
        margin-right: 0
    }

    .p-container-list .p-item .p-img {
        width: 40%;
        padding-bottom: 40%;
        margin: 0 12px 0 0
    }

    .p-container-list .p-item .p-text {
        width: calc(100% - 40% - 12px)
    }

    .p-container-list .p-item .p-name {
        display: block;
        height: auto
    }

.product-page .static-html-group {
    border-top: 1px solid #F4F4F4;
    padding: 16px 12px
}

.product-page .sort-by-group {
    padding: 18px 12px;
    font-size: 16px;
    border-bottom: 1px solid #F4F4F4;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.product-page .sort-by-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px
}

    .product-page .sort-by-list a {
        color: #000;
        border: 1px solid #e0e0e0;
        text-align: center;
        line-height: 34px;
        margin-right: 10px;
        padding: 0 8px 0 8px
    }

        .product-page .sort-by-list a:last-child {
            margin: 0
        }

        .product-page .sort-by-list a:hover, .product-page .sort-by-list a.current {
            color: #fff;
            background: #0066b3;
        }

.product-page .choose-price-holder {
    margin-right: 10px
}

    .product-page .choose-price-holder .price-range {
        width: 115px;
        height: 36px;
        color: #777;
        border: 1px solid #D9D9D9;
        text-align: center
    }

    .product-page .choose-price-holder .submit-filter {
        margin-left: 6px;
        width: 58px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        background: #0066b3;
        border-radius: 5px;
        color: #FFF
    }

.product-page .sort-select-item {
    width: 165px;
    height: 42px;
    font-size: 16px;
    padding-left: 10px;
    border-radius: 8px;
    border-color: #dedede;
}

.mobile-filter-btn {
    display: none;
}

.product-detail-page .pd-box-group {
    background: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 16px 16px 100px 16px;
}

.product-detail-page .pd-spec-group {
    max-height: 725px;
}

.product-detail-page .pd-box-group .box-title {
    border-bottom: 1px solid #F5F5F5;
    padding: 0 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 58px;
    margin: 0;
    text-transform: uppercase;
    display: block;
    color: #000
}

.product-detail-page .pd-info-group {
    padding: 12px
}

.product-detail-page .pd-box-left {
    margin-right: 24px;
    width: 36%;
}

.product-detail-page .pd-box-middle {
    font-size: 16px;
    margin-left: 25px;
    width: 60%;
}

.product-detail-page .pd-box-right {
    width: 290px;
    padding-top: 10px;
    padding-right: 10px;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.product-detail-page .big-image-holder {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 12px;
    /*padding-bottom: 100%;*/
    display: block;
    border: 1px solid #e8e8e8;
}

.product-detail-page .pd-img-gallery a {
    margin: 0 7px 10px 0;
    height: 5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    opacity: .5;
    -webkit-transition: .1s all;
    transition: .1s all;
    display: block;
}

.pd-des-spec {
    padding-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
}

.product-detail-page .pd-img-gallery a:nth-child(5n) {
    margin-right: 0
}

.product-detail-page .pd-img-gallery a:hover {
    opacity: 1
}

.product-detail-page .pd-img-gallery .current {
    -webkit-box-shadow: 0 0 0 1px #29A07E;
    box-shadow: 0 0 0 1px #2a2a2a;
    opacity: 1
}

.product-detail-page .pd-img-gallery .owl-stage-outer {
    padding: 1px
}

.product-detail-page .pd-img-gallery .owl-nav button {
    background: unset !important;
    color: #000 !important;
    margin: 0 5px !important
}

    .product-detail-page .pd-img-gallery .owl-nav button .arrow {
        width: 30px;
        height: 30px;
        display: block;
        background-size: 12px 20px
    }

    .product-detail-page .pd-img-gallery .owl-nav button .arrow-left {
        transform: rotate(180deg);
        background-position: center 5px
    }

.product-detail-page .pd-name {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 30px;
    text-transform: uppercase;
    margin-top: 20px;
}

.product-detail-page .pd-sku-rating-group {
    border-bottom: 1px solid #F5F5F5;
    margin: 10px 0;
    padding-bottom: 8px;
    font-size: 0.8rem;
    line-height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .product-detail-page .pd-sku-rating-group a {
        color: #000
    }

.product-detail-page .pd-summary-group {
    border-bottom: 1px solid #F5F5F5;
    margin: 0 0 12px;
    padding-bottom: 12px
}

    .product-detail-page .pd-summary-group .title {
        display: block;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 6px
    }

    .product-detail-page .pd-summary-group .item {
        font-weight: 300;
        font-size: 13px;
        line-height: 22px;
        position: relative;
        padding-left: 14px
    }

        .product-detail-page .pd-summary-group .item::before {
            content: '\f111';
            font-family: 'FontAwesome';
            font-weight: 900;
            font-size: 4px;
            position: absolute;
            top: 0;
            left: 0;
            color: #D9D9D9
        }

        .product-detail-page .pd-summary-group .item:nth-child(n+4) {
            display: none
        }

.product-detail-page .pd-summary-list {
    margin-bottom: 10px;
    margin-left: 10px;
}

.product-detail-page .pd-btn-summary a {
    font-size: 13px;
    line-height: 16px;
    display: none;
    color: #db0006
}

.product-detail-page .pd-variant-group {
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 7px;
    margin-bottom: 12px
}

    .product-detail-page .pd-variant-group .title {
        display: block;
        font-weight: 700;
        line-height: 18px;
        margin-bottom: 12px
    }

.product-detail-page .pd-variant-group-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .product-detail-page .pd-variant-group-holder.active .item:nth-child(n+9) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .product-detail-page .pd-variant-group-holder .item {
        margin: 0 8px 8px 0;
        border: 1px solid #D9D9D9;
        border-radius: 8px;
        width: calc(100% / 4 - 6px);
        text-align: center;
        color: #000;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 5px 0;
        -webkit-transition: .1s all;
        transition: .1s all
    }

        .product-detail-page .pd-variant-group-holder .item:hover {
            border-color: #29A07E
        }

        .product-detail-page .pd-variant-group-holder .item:nth-child(4n) {
            margin-right: 0
        }

        .product-detail-page .pd-variant-group-holder .item:nth-child(n+9) {
            display: none
        }

    .product-detail-page .pd-variant-group-holder .current {
        border-color: #29A07E
    }

        .product-detail-page .pd-variant-group-holder .current .price::after {
            color: #29A07E
        }

    .product-detail-page .pd-variant-group-holder .name {
        display: block;
        margin-bottom: 2px;
        width: 100%
    }

    .product-detail-page .pd-variant-group-holder .price {
        width: 100%;
        font-weight: 700;
        font-size: 18px;
        line-height: 23px;
        color: #29A07E;
        display: block;
        position: relative;
        letter-spacing: -0.7px;
    }

        .product-detail-page .pd-variant-group-holder .price::after {
            content: '\f111';
            font-family: 'Font Awesome 5 Pro';
            font-weight: 900;
            color: #D9D9D9;
            font-size: 7px;
            vertical-align: middle;
            margin-left: 4px
        }

.product-detail-page .pd-variant-holder .variant-color {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 15px 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px #fff;
    line-height: 60px;
    text-align: center;
    color: #000;
    font-weight: 600;
}

    .product-detail-page .pd-variant-holder .variant-color img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%)
    }

    .product-detail-page .pd-variant-holder .variant-color.js-variant-selected {
        box-shadow: 0px 0px 0px 3px #29A07E
    }

.product-detail-page .pd-variant-holder .variant-normal {
    border-radius: 5px;
    color: #000;
    text-align: center;
    margin: 0 10px 10px 0;
    width: calC(100% / 3 - 7px);
    padding: 5px;
    font-size: 13px;
    box-shadow: 0 0 0 1px #000
}

    .product-detail-page .pd-variant-holder .variant-normal.js-variant-selected {
        color: #29A07E;
        border-color: #29A07E;
        font-weight: 700;
        box-shadow: 0 0 0 2px #29A07E
    }

    .product-detail-page .pd-variant-holder .variant-normal:nth-child(3n) {
        margin-right: 0
    }

    .product-detail-page .pd-variant-holder .variant-normal * {
        display: block
    }

    .product-detail-page .pd-variant-holder .variant-normal.js-variant-selected .name {
        font-size: 14px
    }

    .product-detail-page .pd-variant-holder .variant-normal .price {
        color: #E94E1B;
        font-weight: 700
    }

.product-detail-page .pd-btn-variant {
    margin-top: 5px
}

    .product-detail-page .pd-btn-variant a {
        font-size: 13px;
        line-height: 16px;
        color: #00A07D;
        display: none
    }

.product-detail-page .pd-variant {
    line-height: 18px;
    margin: 12px 0
}

    .product-detail-page .pd-variant .title {
        font-weight: 700;
        margin-right: 6px
    }

.product-detail-page .pd-variant-holder {
    margin: 14px 0;
    display: flex;
    flex-wrap: wrap;
}

.product-detail-page .pd-price-group {
    margin: 12px 0 20px;
    background: linear-gradient(270deg, #ff0000 2.54%, #fb1919 86.96%);
    border-radius: 10px;
    padding: 9px 20px;
    line-height: 20px;
    color: #fff
}

    .product-detail-page .pd-price-group td {
        padding: 8px 0;
        vertical-align: baseline
    }

        .product-detail-page .pd-price-group td:nth-child(1) {
        }

.product-detail-page .pd-old-price {
    font-size: 16px;
    color: #888
}

.product-detail-page .pd-price {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #FFF
}

.product-detail-page .square-trade {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 55px 10px 15px 10px;
    margin-bottom: 20px
}

.ribbon, .ribbon2 {
    color: white;
    position: absolute;
    width: 100%;
    background: #ff0a0a;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-bottom: 1px solid #dddddd;
    border-radius: 5px 5px 0 0;
    top: 0;
    left: 0
}

.product-detail-page .pd-discount {
    color: #29A07E
}

.product-detail-page .pd-offer-group {
    -webkit-box-shadow: 0 0 0 1px #FF5C00;
    box-shadow: 0 0 0 1px #FF5C00;
    border-radius: 15px;
    margin: 30px 0 12px;
    padding: 35px 18px 18px;
    position: relative
}

    .product-detail-page .pd-offer-group .title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #FF5C00;
        border-radius: 21px;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 40px;
        padding: 0 15px;
        margin: 0;
        position: absolute;
        top: -19px
    }

    .product-detail-page .pd-offer-group .icon-gift {
        width: 24px;
        height: 40px;
        background-position: -6px -287px
    }

.product-detail-page .pd-offer-list {
    line-height: 20px
}

    .product-detail-page .pd-offer-list .item {
        margin-bottom: 18px;
        position: relative;
        padding-left: 14px
    }

        .product-detail-page .pd-offer-list .item::before {
            content: '\f111';
            font-family: 'Font Awesome 5 Pro';
            font-weight: 900;
            font-size: 6px;
            position: absolute;
            top: 0;
            left: 0;
            color: #000
        }

        .product-detail-page .pd-offer-list .item:last-child {
            margin: 0
        }

    .product-detail-page .pd-offer-list a {
        text-decoration: underline
    }

.product-detail-page .pd-btn-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .product-detail-page .pd-btn-cart a {
        margin: 0 8px 8px 0;
        width: calc(100% / 2 - 4px);
        border-radius: 10px;
        line-height: 56px;
        text-align: center;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #FFF;
        background: red;
        -webkit-transition: .3s all;
        transition: .3s all
    }

        .product-detail-page .pd-btn-cart a:hover {
            -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
            box-shadow: 0 0 8px 0 rgba(0,0,0,0.3)
        }

        .product-detail-page .pd-btn-cart a:nth-child(2) {
            margin-right: 0;
            background: #FFF;
            color: red;
            border: 1px solid red
        }

.product-detail-page .static-item {
    margin-bottom: 12px;
    -webkit-box-shadow: 0 0 0 1px #D9D9D9;
    box-shadow: 0 0 0 1px #D9D9D9;
    border-radius: 10px;
    overflow: hidden
}

    .product-detail-page .static-item .title {
        background: #ed1b24;
        font-weight: bold;
        font-size: 14px;
        margin: 0;
        text-align: center;
        line-height: 36px;
        border-bottom: 1px solid #D9D9D9;
        color: #FFF
    }

    .product-detail-page .static-item .item-list {
        padding: 12px 10px;
        font-weight: 400
    }

        .product-detail-page .static-item .item-list .item {
            margin: 0;
            color: #000;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin: 8px
        }

    .product-detail-page .static-item .icons {
        width: 35px;
        height: 40px;
        background-size: 330px 400px
    }

    .product-detail-page .static-item span {
        width: calc(100% - 35px)
    }

    .product-detail-page .static-item .icon-card {
        background-position: -48px -349px
    }

    .product-detail-page .static-item .icon-shield {
        background-position: -99px -353px
    }

    .product-detail-page .static-item .icon-box {
        background-position: -141px -351px
    }

    .product-detail-page .static-item .icon-truck {
        background-position: -185px -349px
    }

    .product-detail-page .static-item .icon-phone {
        background-position: -293px -35px
    }

.product-detail-page .pd-tab-group {
    border-bottom: 1px solid #F5F5F5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .product-detail-page .pd-tab-group a {
        color: #000;
        line-height: 40px;
        font-weight: 600;
        font-size: 1rem;
        margin-right: 30px;
        position: relative;
    }

        .product-detail-page .pd-tab-group a:last-child {
            margin: 0
        }

        .product-detail-page .pd-tab-group a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #000;
            height: 1px;
            width: 0;
            -webkit-transition: .25s all;
            transition: .25s all
        }

        .product-detail-page .pd-tab-group a:hover::after, .product-detail-page .pd-tab-group a.active::after {
            background: #ec2d2d;
            width: 100%;
            -webkit-transform: .25s all;
            transform: .25s all
        }

.product-detail-page .pd-btn-desc {
    position: absolute;
    bottom: 35px;
    width: 96%;
    text-align: center;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.91) 50%,#fff 55%);
    background: -webkit-gradient(left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.91)),color-stop(55%,#fff));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.91) 50%,#fff 55%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.91) 50%,#fff 55%);
    background: -ms-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.91) 50%,#fff 55%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,.91) 50%,#fff 55%)
}

#pd-decs {
    max-height: 800px;
    overflow: hidden;
}

.product-detail-page .pd-btn-desc a {
    display: block;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    color: #ec2d2d;
    max-width: 140px;
    margin: auto;
    border-radius: 5px;
    border: 1px solid #ec2d2d;
}

.product-detail-page .pd-video-holder {
    padding: 24px;
    text-align: center
}

.product-detail-page .pd-comment-group {
    padding: 26px 15px 18px 34px
}

.product-detail-page .pd-btn-spec {
    display: block;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: #29a07e;
    border-radius: 8px;
    margin: 8px auto 0;
    width: calc(100% - 20px)
}

.product-detail-page .pd-spec-group table {
    width: 100% !important;
}

    .product-detail-page .pd-spec-group table p {
        font-weight: 500 !important;
        font-size: 16px;
        font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif
    }

.product-detail-page .pd-spec-holder {
    padding: 13px 10px 18px
}

    .product-detail-page .pd-spec-holder tr:nth-child(n+7) {
        display: none
    }

.product-detail-page .pd-spec-btn {
    text-align: center;
    font-size: 15px;
    line-height: 45px;
    border-radius: 5px;
    width: calc(100% - 22px);
    margin: auto;
    display: block;
    margin-top: -10px;
}

.pd-spec-holder.fancybox-content {
    padding: 13px 10px 18px
}

.pd-spec-holder * {
    border: 0;
    font-size: inherit !important
}

.pd-spec-holder tr:nth-child(even) {
    background: #EFF8F5;
    border-radius: 8px
}

.pd-spec-holder tr td {
    padding: 14px 15px !important
}

.pd-spec-holder p {
    margin: 0
}

.pd-related-holder .p-item {
    padding: 15px 12px;
    border-bottom: 1px solid #F5F5F5;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .pd-related-holder .p-item:last-child {
        border: 0
    }

    .pd-related-holder .p-item .p-img {
        width: 135px;
        height: 135px;
        padding: 0;
        margin: 0 17px 0 0
    }

        .pd-related-holder .p-item .p-img img {
            border-radius: 10px
        }

    .pd-related-holder .p-item .p-text {
        width: calc(100% - 152px)
    }

    .pd-related-holder .p-item .p-name {
        display: block
    }

    .pd-related-holder .p-item .p-btn-cart {
        width: 38px;
        height: 38px;
        background-size: 24px
    }

.pd-history-group .box-title {
    font-weight: 900 !important
}

.pd-history-group .p-container {
    padding: 10px 12px 5px
}

.product-detail-page .pd-history-group .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    line-height: 50px;
    top: 50%;
    position: absolute;
    right: 0.5%;
    background: #cdcbcb !important;
    font-weight: 700;
    transition: 0.3s;
    color: #fff;
    transform: translateY(-50px);
}

    .product-detail-page .pd-history-group .owl-next i {
        margin-left: 3px;
    }

    .product-detail-page .pd-history-group .owl-next:hover {
        background: #ec2d2d !important;
        color: #fff;
    }

/* Product item hover effect for all pages */
.p-item {
    transition: all 0.3s ease;
    position: relative;
}

    .p-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .p-item .p-img {
        overflow: hidden;
        position: relative;
    }

        .p-item .p-img img {
            transition: transform 0.3s ease;
        }

    .p-item:hover .p-img img {
        transform: scale(1.05);
    }

    .p-item .p-name {
        transition: color 0.3s ease;
    }

    .p-item:hover .p-name {
        color: #ec2d2d;
    }

    .p-item .p-price {
        font-weight: 600;
        color: #ec2d2d;
    }

.product-detail-page .pd-history-group .owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    line-height: 50px;
    left: 0.5%;
    top: 50%;
    position: absolute;
    color: #fff;
    font-weight: 700;
    background: #cdcbcb !important;
    transition: 0.3s;
    transform: translateY(-50px);
}

    .product-detail-page .pd-history-group .owl-prev i {
        margin-right: 3px;
    }

    .product-detail-page .pd-history-group .owl-prev:hover {
        background: #ec2d2d !important;
        color: #fff;
    }





.home-case .case-list .single-case .case-img img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.home-case .case-list .single-case .content {
    background: #fff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

    .home-case .case-list .single-case .content h3 {
        margin-bottom: 10px;
        transition: all 0.5s;
    }

    .home-case .case-list .single-case .content p {
        margin-bottom: 12px;
    }

.home-case .case-list .single-case:hover {
    transform: translateY(-3px);
}

    .home-case .case-list .single-case:hover h3 {
        color: #ec2d2d;
    }

.cart-page {
    margin-bottom: 10px;
    max-width: 1650px;
    display: flex;
    justify-content: space-between;
}

    .cart-page .cart-col-1 {
        width: 70%;
        text-align: left;
    }

    .cart-page .cart-col-2 {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: flex-end
    }

    .cart-page .cart-col-3 {
        width: 170px;
    }

    .cart-page .cart-col-4 {
        width: 150px;
    }

    .cart-page .cart-col-5 {
        width: 115px;
    }

    .cart-page .cart-col-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: nowrap;
        text-align: center;
    }

    .cart-page .cart-left {
        width: 48%;
        position: relative;
        float: left;
        overflow: hidden;
    }

        .cart-page .cart-left .box {
            border-radius: 5px;
            background: #fff;
            border-top: none;
            border: 1px solid #f2f2f2;
            margin-bottom: 20px;
            padding: 15px;
        }

    .cart-page .cart-item-header {
        background: #fff;
        overflow: hidden;
        margin: 0 -15px 10px;
        border-bottom: 1px solid #e6e6e6;
    }

    .cart-page .product-item {
        border-bottom: 1px dashed #e6e6e6;
    }

    .cart-page a {
        color: #222;
    }

    .cart-page .item-header p {
        font-size: 20px;
    }

    .cart-page .col-header {
        border-top: 1px solid #f7f7f7;
    }

    .cart-page .col-header, .cart-page .item-header-title {
        padding: 0 15px;
        line-height: 46px;
    }

    .cart-page .goHome {
        margin-right: 40px;
        position: relative;
    }

        .cart-page .goHome::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 15px;
            background-position: -260px -321px;
            margin-right: 10px;
            vertical-align: sub;
        }

.cart-items-container {
    width: calc(52% - 20px);
    position: relative;
    background: #fff;
    float: right;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    border-top: none;
    padding: 15px;
    margin-bottom: 20px;
}

.cart-item-body .product-item {
    margin: 8px 0;
    padding: 15px 15px;
    overflow: unset;
    display: flex;
    align-items: center
}

.cart-item-body .img {
    width: 100px;
    margin-right: 20px;
    float: left;
}

.cart-item-body .text {
    width: calc(100% - 120px);
    float: left;
}

.cart-item-body .p-info {
    position: relative;
    padding-left: 15px;
    line-height: 1.9;
}

    .cart-item-body .p-info::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #a5a5a5;
    }

.cart-item-body .item-offer {
    display: inline-block;
    position: relative;
    padding-right: 10px;
}

    .cart-item-body .item-offer:hover .item-offer-content {
        display: block;
    }

    .cart-item-body .item-offer .title {
        color: #0d699e;
        padding-left: 15px;
        font-weight: 400;
        position: relative;
        cursor: pointer;
    }

        .cart-item-body .item-offer .title::before {
            content: '';
            width: 12px;
            height: 12px;
            background-position: -308px -322px;
            position: absolute;
            left: 0;
            top: 3px;
        }

.cart-item-body .item-offer-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0d699e;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(13, 105, 158, 0.2);
    box-shadow: 0px 0px 11px 0px rgba(13, 105, 158, 0.2);
    padding: 12px;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 1;
    width: 420px;
    display: none;
}

    .cart-item-body .item-offer-content span, .cart-item-body .item-offer-content p {
        display: block;
        position: relative;
        padding-left: 15px;
        line-height: 1.9;
        margin: 0;
    }

        .cart-item-body .item-offer-content span::before, .cart-item-body .item-offer-content p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #a5a5a5;
        }

.cart-item-body .fa-trash-o {
    font-size: 16px;
}

.cart-item-body .quantity-change {
    width: 34px;
    height: 34px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

    .cart-item-body .quantity-change:first-child {
        background: #eee;
    }

    .cart-item-body .quantity-change:last-child {
        background: #eee;
    }

.cart-item-body .quantity-buy {
    width: 32px;
    float: right;
    border: 0;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #818181;
    height: 40px;
}

.cart-customer-container {
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

    .cart-customer-container::before {
        content: '';
        background-repeat-y: no-repeat;
        background-position: -55px 0px;
        height: 4px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }

    .cart-customer-container .title {
        position: relative;
        padding-left: 36px;
        margin-bottom: 15px;
        color: #000;
        font-weight: 700
    }

        .cart-customer-container .title::before {
            content: '\f09d';
            font-family: 'FontAwesome';
            width: 30px;
            height: 24px;
            position: absolute;
            left: 0;
            top: -6px;
            font-size: 20px;
        }

    .cart-customer-container .customer-left {
        width: 65%;
        margin-right: 15px;
        float: left;
        border-radius: 10px;
        background: #fff;
        -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
        padding: 24px 48px 24px 48px;
    }

        .cart-customer-container .customer-left .title::before {
            content: '\f5a0';
        }

/*end*/
.feature-area .feature-tittle {
    margin-bottom: 20px;
}

    .feature-area .feature-tittle span {
        color: #ec2d2d;
        display: inline-block;
        margin-top: -8px;
        margin-bottom: 8px;
    }

    .feature-area .feature-tittle h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

.feature-area .contnet ul {
    padding: 0;
    margin: 0;
}

    .feature-area .contnet ul li {
        position: relative;
        padding-left: 30px;
        color: #cdcbcb;
        font-size: 18px;
        margin-bottom: 10px;
    }

        .feature-area .contnet ul li:last-child {
            margin-bottom: 0;
        }

        .feature-area .contnet ul li i {
            position: absolute;
            display: inline-block;
            left: 0;
            top: 0;
            color: #ec2d2d;
            font-size: 18px;
        }

.feature-area .contnet .box-btn {
    margin-top: 30px;
}

.feature-area .feature-img {
    animation: updown 5s infinite linear;
    text-align: center;
}

.home-team-area .single-team {
    position: relative;
    margin-bottom: 30px;
    transition: 0.5s;
}

    .home-team-area .single-team .team-img {
        position: relative;
        overflow: hidden;
    }

        .home-team-area .single-team .team-img .social {
            position: absolute;
            text-align: center;
            margin: 0;
            padding: 0;
            z-index: 3;
            bottom: -200px;
            transition: 0.5s;
            position: absolute;
            width: 100%;
            left: 0;
        }

            .home-team-area .single-team .team-img .social li {
                display: inline-block;
                margin: 0 5px;
            }

                .home-team-area .single-team .team-img .social li a {
                    width: 35px;
                    height: 35px;
                    background: #fff;
                    border-radius: 50%;
                    line-height: 37px;
                    text-align: center;
                    transition: 0.3s;
                    color: #ec2d2d;
                    transition: 0.3s;
                }

                    .home-team-area .single-team .team-img .social li a i {
                        font-size: 17px;
                    }

                    .home-team-area .single-team .team-img .social li a:hover {
                        background: #ec2d2d;
                        color: #fff;
                    }

    .home-team-area .single-team .content {
        padding: 20px;
        background-color: #f5faff;
        position: relative;
        z-index: 2;
    }

        .home-team-area .single-team .content h3 {
            color: #cdcbcb;
            margin-bottom: 0;
            transition: all 0.5s;
        }

        .home-team-area .single-team .content p {
            margin-bottom: 0;
            font-size: 14px;
            transition: all 0.5s;
        }

        .home-team-area .single-team .content::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 0;
            bottom: -50px;
            background: #cdcbcb;
            opacity: 0.95;
            transition: 0.5s;
            z-index: -1;
            bottom: 0;
            left: 0;
        }

    .home-team-area .single-team:hover .content::before {
        height: 150px;
    }

    .home-team-area .single-team:hover .social {
        bottom: 8px;
    }

    .home-team-area .single-team:hover h3 {
        color: #fff;
    }

    .home-team-area .single-team:hover p {
        color: #fff;
    }

.home-team-area .owl-dots {
    position: relative;
    margin-top: 20px;
    text-align: center;
    line-height: 1;
}

    .home-team-area .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        background: #d0d0d0;
        border-radius: 50%;
        margin: 0 5px;
    }

    .home-team-area .owl-dots button.owl-dot.active {
        background: #3d59fa;
    }

.client-area.c-bg {
    background-image: url(../../assets/img/client/client-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.autocomplete-suggestions {
    position: absolute;
    width: 100%;
    border: solid 1px #ddd;
    right: 0;
    margin-top: 2px;
    max-height: 300px;
    overflow: auto;
    display: none;
    background: #fff;
    z-index: 9;
    width: 472px;
}

    .autocomplete-suggestions a {
        display: block;
        padding: 10px;
        overflow: hidden
    }

        .autocomplete-suggestions a img {
            width: 60px;
            float: left
        }

        .autocomplete-suggestions a .info {
            display: block;
            margin-left: 65px
        }

            .autocomplete-suggestions a .info .name {
                display: block;
                color: #333
            }

            .autocomplete-suggestions a .info .price {
                color: #ec1c24
            }

        .autocomplete-suggestions a:hover {
            background-color: #f5f5f5
        }

    .autocomplete-suggestions::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
        background-color: #f1f1f1;
        border-radius: 10px
    }

    .autocomplete-suggestions::-webkit-scrollbar {
        width: 6px;
        background-color: #f1f1f1
    }

    .autocomplete-suggestions::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #ccc
    }

.client-area .top-title {
    color: #293a5c;
}

.client-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    opacity: 0.8;
}

.client-area .owl-carousel .owl-item img {
    display: block;
    width: auto;
}

.single-client {
    background-color: #fff;
    padding: 30px;
    position: relative;
    text-align: center;
    margin-top: 30px;
}

    .single-client img {
        position: absolute;
        top: -30px;
        left: 0;
        right: 0;
        border: 1px solid #ec2d2d;
        border-radius: 4px;
        margin: auto;
    }

    .single-client p {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .single-client h3 {
        margin-bottom: 0;
    }

.home-blog-area {
    position: relative;
}

    .home-blog-area .single-blog {
        background: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
        transition: 0.5s;
        box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
        z-index: 1;
        width: 100%;
    }

        .home-blog-area .single-blog .blog-img img {
            height: 220px;
        }

        .home-blog-area .single-blog .content {
            padding: 30px;
        }

            .home-blog-area .single-blog .content ul {
                padding: 0;
                margin: 0;
            }

                .home-blog-area .single-blog .content ul li {
                    font-size: 13px;
                    display: inline-block;
                }

                    .home-blog-area .single-blog .content ul li a {
                        position: relative;
                        margin-left: 25px;
                    }

                        .home-blog-area .single-blog .content ul li a::before {
                            position: absolute;
                            content: "";
                            width: 2px;
                            height: 15px;
                            left: -16px;
                            top: 3px;
                            background: #7a7e9a;
                        }

            .home-blog-area .single-blog .content span {
                color: #293a5c;
                font-weight: 500;
            }

            .home-blog-area .single-blog .content h3 {
                transition: all 0.5s;
                margin-bottom: 0;
                margin-top: 10px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .home-blog-area .single-blog .content p {
                margin-top: 10px;
                transition: all 0.5s;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .home-blog-area .single-blog .content .line-bnt {
                color: #cdcbcb;
            }

        .home-blog-area .single-blog::after {
            position: absolute;
            content: "";
            background: #aab3bb;
            opacity: 0.8;
            bottom: 0;
            left: 100%;
            right: 0;
            width: 0;
            transition: 0.5s;
            z-index: -1;
            height: 100%;
        }

        .home-blog-area .single-blog:hover::before {
            width: 100%;
            left: 0;
        }

        .home-blog-area .single-blog:hover::after {
            width: 100%;
            left: 0;
        }

        .home-blog-area .single-blog:hover span {
            color: #fff;
        }

        .home-blog-area .single-blog:hover h3 {
            color: #fff;
        }

        .home-blog-area .single-blog:hover p {
            color: #fff;
        }

        .home-blog-area .single-blog:hover ul li {
            color: #fff;
        }

            .home-blog-area .single-blog:hover ul li a {
                color: #fff;
            }

        .home-blog-area .single-blog:hover .line-bnt {
            color: #fff;
        }

    .home-blog-area .blog-btn {
        margin-top: 20px;
    }

        .home-blog-area .blog-btn p {
            font-size: 17px;
            color: #293a5c;
            margin-bottom: 0;
        }

            .home-blog-area .blog-btn p a {
                color: #3d59fa;
                text-decoration: underline;
            }

.technology-area .technology-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.technology-area .technology-content .box-btn {
    margin-top: 10px;
}

.technology-area .choose-img {
    position: relative;
    text-align: center;
}

    .technology-area .choose-img .technology-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }

.video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    color: #ec2d2d;
    position: relative;
    top: 3px;
    z-index: 1;
    background-color: #ec2d2d;
}

    .video-btn i {
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        position: absolute;
        top: 0;
        left: 3px;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        height: 100%;
    }

    .video-btn::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        border-radius: 50%;
        background-color: #ec2d2d;
        animation: ripple 1.6s ease-out infinite;
    }

    .video-btn::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        border-radius: 50%;
        background-color: #ec2d2d;
        animation: ripple 1.6s ease-out infinite;
    }

    .video-btn:hover {
        background-color: #ec2d2d;
    }

        .video-btn:hover i {
            color: #fff;
        }

.about-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .about-area .section-tittle {
        max-width: 850px;
    }

    .about-area img {
        border-radius: 10px;
    }

    .about-area .about-img {
        position: relative;
        margin-top: 40px;
    }

        .about-area .about-img .video-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

            .about-area .about-img .video-btn .video-pop {
                margin-top: 26px;
                font-size: 16px;
                color: #3d59fa;
            }

                .about-area .about-img .video-btn .video-pop .video {
                    display: inline-block;
                    width: 60px;
                    height: 60px;
                    line-height: 60px;
                    position: relative;
                    text-align: center;
                    border-radius: 50%;
                    color: #fff;
                    background: #3d59fa;
                    box-shadow: 0 0 20px 8px rgba(228, 221, 221, 0.363);
                    transition: 0.5s;
                    margin: 0 10px;
                }

                    .about-area .about-img .video-btn .video-pop .video i {
                        font-size: 40px;
                        position: relative;
                        top: 9px;
                        left: 3px;
                    }

                    .about-area .about-img .video-btn .video-pop .video::before {
                        animation: animatin 1.2s ease-out infinite;
                        content: "";
                        display: block;
                        position: absolute;
                        top: 0;
                        right: 0;
                        z-index: -1;
                        bottom: 0;
                        left: 0;
                        border-radius: 50%;
                        border: 10px solid #3d59fa;
                        animation: animatin 1.5s linear infinite;
                    }

                    .about-area .about-img .video-btn .video-pop .video::after {
                        animation: animatin 1.2s ease-out infinite;
                        content: "";
                        display: block;
                        position: absolute;
                        top: 0;
                        right: 0;
                        z-index: -1;
                        bottom: 0;
                        left: 0;
                        border-radius: 50%;
                        border: 10px solid #3d59fa;
                        animation: animatin 2s linear 1s infinite;
                    }

    .about-area .content {
        margin-top: 50px;
    }

        .about-area .content .about-content p {
            color: #50607f;
        }

            .about-area .content .about-content p:last-child {
                margin-bottom: 0;
            }

.solution-img {
    margin-bottom: 30px;
}

.solutions-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .solutions-area .section-tittle {
        max-width: 850px;
    }

    .solutions-area .single-solutions {
        position: relative;
        text-align: center;
        padding: 30px 20px;
        background: #fff;
        margin-top: 30px;
        border-radius: 5px;
        z-index: 1;
        overflow: hidden;
        transition: all 0.5s;
        box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
    }

        .solutions-area .single-solutions .solutions-img {
            margin-bottom: 20px;
        }

        .solutions-area .single-solutions .solutions-content h3 {
            color: #cdcbcb;
            margin-bottom: 10px;
        }

        .solutions-area .single-solutions .solutions-content p {
            color: #50607f;
            margin-bottom: 10px;
        }

        .solutions-area .single-solutions .solutions-content .line-bnt {
            color: #ec2d2d;
            font-size: 14px;
        }

        .solutions-area .single-solutions::before {
            content: "";
            position: absolute;
            top: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            opacity: 0.8;
            background-color: #8b8888;
            z-index: -1;
            transition: all 0.5s;
        }

        .solutions-area .single-solutions::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 100%;
            width: 100%;
            height: 100%;
            background: url(../images/service/hover-img.png);
            z-index: -2;
            transition: all 0.5s;
        }

        .solutions-area .single-solutions .solutions-back {
            position: absolute;
            transform: translateY(40px);
            padding-right: 20px;
        }

        .solutions-area .single-solutions:hover {
            transform: translateY(-10px);
        }

            .solutions-area .single-solutions:hover h3 {
                color: #fff;
                transform: translateY(-50px);
                opacity: 1;
            }

            .solutions-area .single-solutions:hover p {
                color: #e9e9e9;
                opacity: 1;
                transform: translateY(-35px);
            }

            .solutions-area .single-solutions:hover .line-bnt {
                color: #e6335a;
                text-decoration: underline;
                opacity: 1;
                transform: translateY(-25px);
            }

            .solutions-area .single-solutions:hover .solutions-img {
                opacity: 0;
            }

            .solutions-area .single-solutions:hover::before {
                left: 0;
            }

            .solutions-area .single-solutions:hover::after {
                right: 0;
            }

.facilities-area {
    padding-top: 60px;
    border-top: 1px solid rgba(238, 238, 238, 0.9333333333);
    position: relative;
}

    .facilities-area .mt-40 {
        margin-top: 40px;
    }

    .facilities-area .section-tittle {
        max-width: 850px;
    }

        .facilities-area .section-tittle p {
            color: #181818;
        }

    .facilities-area .content h3 {
        color: #293a5c;
        margin-bottom: 10px;
    }

    .facilities-area .content p {
        font-size: 16px;
        line-height: 1.9;
        color: #181818;
    }

    .facilities-area .content .box-btn {
        margin-top: 10px;
        padding: 15px 40px;
        border-radius: 50px;
    }

.solutions-details-area {
    position: relative;
}

    .solutions-details-area .single-solutions {
        position: relative;
    }

        .solutions-details-area .single-solutions img {
            border-radius: 10px;
        }

        .solutions-details-area .single-solutions .content {
            margin-bottom: 25px;
        }

            .solutions-details-area .single-solutions .content h2 {
                font-size: 25px;
                color: #121e4c;
                margin: 15px 0;
            }

            .solutions-details-area .single-solutions .content p {
                color: #181818;
                padding-right: 10px;
            }

        .solutions-details-area .single-solutions .social {
            position: absolute;
            text-align: center;
            margin: 0;
            padding: 0;
            z-index: 3;
            position: relative;
            display: inline-block;
        }

            .solutions-details-area .single-solutions .social p {
                display: inline-block;
                font-size: 20px;
                margin-right: 10px;
                margin-bottom: 0;
            }

            .solutions-details-area .single-solutions .social li {
                display: inline-block;
            }

                .solutions-details-area .single-solutions .social li a {
                    width: 35px;
                    height: 35px;
                    background: #121e4c;
                    border-radius: 50%;
                    line-height: 39px;
                    text-align: center;
                    transition: 0.3s;
                    color: #fff;
                    transition: 0.3s;
                }

                    .solutions-details-area .single-solutions .social li a i {
                        font-size: 17px;
                    }

                    .solutions-details-area .single-solutions .social li a:hover {
                        background: #3d59fa;
                        color: #fff;
                        transform: translateY(-10px);
                    }

    .solutions-details-area .right-content {
        position: relative;
    }

        .solutions-details-area .right-content .serarch {
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

            .solutions-details-area .right-content .serarch h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 20px;
            }

            .solutions-details-area .right-content .serarch .search-form {
                position: relative;
                max-width: 90%;
                margin: auto;
            }

                .solutions-details-area .right-content .serarch .search-form input#search {
                    height: 50px;
                }

                    .solutions-details-area .right-content .serarch .search-form input#search:focus {
                        box-shadow: none;
                    }

                .solutions-details-area .right-content .serarch .search-form button.box-btn {
                    position: absolute;
                    top: 0;
                    right: 0;
                    border: none;
                    height: 100%;
                    padding: 0 17px;
                    font-size: 20px;
                }

        .solutions-details-area .right-content .recent-post {
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
        }

            .solutions-details-area .right-content .recent-post h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 20px;
            }

            .solutions-details-area .right-content .recent-post .post {
                padding: 20px;
            }

                .solutions-details-area .right-content .recent-post .post .item {
                    overflow: hidden;
                    margin-bottom: 10px;
                    padding-bottom: 10px;
                    border-bottom: 1px dashed #efefef;
                }

                    .solutions-details-area .right-content .recent-post .post .item a {
                        float: left;
                        overflow: hidden;
                        position: relative;
                        margin-right: 15px;
                    }

                .solutions-details-area .right-content .recent-post .post:last-child {
                    border-bottom: none;
                }

                .solutions-details-area .right-content .recent-post .post .info {
                    overflow: hidden;
                    margin-top: 20px;
                }

                    .solutions-details-area .right-content .recent-post .post .info time {
                        font-size: 13px;
                        color: #929292;
                        display: block;
                        margin-bottom: 4px;
                    }

                    .solutions-details-area .right-content .recent-post .post .info h4 a {
                        color: #cdcbcb;
                        margin-bottom: 0;
                        line-height: 1.5;
                        font-size: 14px;
                        font-weight: 600;
                    }

                        .solutions-details-area .right-content .recent-post .post .info h4 a:hover {
                            transform: translateX(10px);
                        }

        .solutions-details-area .right-content .features {
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
        }

            .solutions-details-area .right-content .features h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 0;
            }

            .solutions-details-area .right-content .features .feature-list {
                margin: 0;
                padding: 30px;
            }

                .solutions-details-area .right-content .features .feature-list li {
                    position: relative;
                    padding-bottom: 10px;
                    margin-bottom: 10px;
                    color: #181818;
                    padding-left: 23px;
                    font-size: 16px;
                    border-bottom: 1px dashed #efefef;
                    font-weight: 500;
                }

                    .solutions-details-area .right-content .features .feature-list li::before {
                        background: #121e4c;
                        position: absolute;
                        height: 8px;
                        width: 8px;
                        content: "";
                        left: 0;
                        top: 9px;
                        transform: rotate(45deg);
                        animation: rotaed360 4s infinite linear;
                    }

.case-area {
    position: relative;
}

    .case-area .case {
        position: relative;
    }

        .case-area .case .all-case {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #7289b8;
        }

            .case-area .case .all-case li {
                display: inline-block;
                margin-right: 30px;
                margin-bottom: 6px;
            }

                .case-area .case .all-case li span {
                    color: #50607f;
                }

                .case-area .case .all-case li:last-child {
                    margin-right: 0;
                }

            .case-area .case .all-case .active {
                position: relative;
            }

                .case-area .case .all-case .active::before {
                    position: absolute;
                    width: 100%;
                    height: 5px;
                    background: #3d59fa;
                    content: "";
                    bottom: -9px;
                }

                .case-area .case .all-case .active span {
                    color: #3d59fa;
                }

    .case-area .case-list {
        position: relative;
    }

        .case-area .case-list .single-case {
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            transition: 0.5s;
            z-index: 1;
            box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
        }

            .case-area .case-list .single-case .case-img img {
                border-top-left-radius: 6px;
                border-top-right-radius: 6px;
            }

            .case-area .case-list .single-case .content {
                background: #fff;
                padding: 30px 20px;
            }

                .case-area .case-list .single-case .content a h3 {
                    color: #cdcbcb;
                    transition: 0.5s;
                }

                .case-area .case-list .single-case .content .line-bnt {
                    margin-top: 10px;
                    z-index: 1;
                    position: relative;
                }

                .case-area .case-list .single-case .content p {
                    bottom: -200px;
                    position: absolute;
                    transition: 0.5s;
                    color: #f5faff;
                    padding-right: 14px;
                }

            .case-area .case-list .single-case::before {
                position: absolute;
                bottom: 0;
                content: "";
                background: #cdcbcb;
                overflow: hidden;
                width: 100%;
                height: 0;
                opacity: 0.95;
                transition: 0.5s;
            }

            .case-area .case-list .single-case:hover p {
                bottom: 65px;
            }

            .case-area .case-list .single-case:hover::before {
                height: 65%;
            }

            .case-area .case-list .single-case:hover a h3 {
                transform: translateY(-110px);
                color: #f5ebff;
            }

            .case-area .case-list .single-case:hover .line-bnt {
                color: #e6335a;
                text-decoration: underline;
                transform: translateY(-10px);
            }

    .case-area .dropdown {
        margin-top: 30px;
    }

        .case-area .dropdown p {
            color: #293a5c;
            margin-bottom: 5px;
        }

        .case-area .dropdown button {
            border: 1px solid #293a5c;
            background: 0 0;
            padding: 8px 30px;
            color: #293a5c;
            font-weight: 500;
        }

        .case-area .dropdown .dropdown-item {
            cursor: pointer;
        }

.case-details-area {
    position: relative;
}

    .case-details-area .single-case {
        position: relative;
    }

        .case-details-area .single-case img {
            border-radius: 10px;
        }

        .case-details-area .single-case .case-img {
            margin-bottom: 25px;
        }

        .case-details-area .single-case .content {
            margin-bottom: 25px;
        }

            .case-details-area .single-case .content h2 {
                font-size: 25px;
                color: #121e4c;
                margin: 15px 0 10px;
            }

            .case-details-area .single-case .content p {
                color: #181818;
                padding-right: 10px;
                margin-bottom: 10px;
            }

        .case-details-area .single-case .social {
            position: absolute;
            text-align: center;
            margin: 0;
            padding: 0;
            z-index: 3;
            position: relative;
            display: inline-block;
        }

            .case-details-area .single-case .social p {
                display: inline-block;
                font-size: 20px;
                font-weight: 500;
                margin-right: 10px;
                margin-bottom: 0;
            }

            .case-details-area .single-case .social li {
                display: inline-block;
            }

                .case-details-area .single-case .social li a {
                    width: 35px;
                    height: 35px;
                    background: #121e4c;
                    border-radius: 50%;
                    line-height: 37px;
                    text-align: center;
                    transition: 0.3s;
                    color: #fff;
                    transition: 0.3s;
                }

                    .case-details-area .single-case .social li a i {
                        font-size: 17px;
                    }

                    .case-details-area .single-case .social li a:hover {
                        background: #3d59fa;
                        color: #fff;
                        transform: translateY(-10px);
                    }

    .case-details-area .right-content {
        position: relative;
    }

        .case-details-area .right-content .serarch {
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

            .case-details-area .right-content .serarch h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 20px;
            }

            .case-details-area .right-content .serarch .search-form {
                position: relative;
                max-width: 90%;
                margin: auto;
            }

                .case-details-area .right-content .serarch .search-form input#search {
                    height: 50px;
                }

                    .case-details-area .right-content .serarch .search-form input#search:focus {
                        box-shadow: none;
                    }

                .case-details-area .right-content .serarch .search-form button.box-btn {
                    position: absolute;
                    top: 0;
                    right: 0;
                    border: none;
                    height: 100%;
                    padding: 0 17px;
                    font-size: 20px;
                }

        .case-details-area .right-content .recent-post {
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
        }

            .case-details-area .right-content .recent-post h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 20px;
            }

            .case-details-area .right-content .recent-post .post {
                padding: 20px;
            }

                .case-details-area .right-content .recent-post .post .item {
                    overflow: hidden;
                    margin-bottom: 10px;
                    padding-bottom: 10px;
                    border-bottom: 1px dashed #efefef;
                }

                    .case-details-area .right-content .recent-post .post .item a {
                        float: left;
                        overflow: hidden;
                        position: relative;
                        margin-right: 15px;
                    }

                .case-details-area .right-content .recent-post .post:last-child {
                    border-bottom: none;
                }

                .case-details-area .right-content .recent-post .post .info {
                    overflow: hidden;
                    margin-top: 20px;
                }

                    .case-details-area .right-content .recent-post .post .info time {
                        font-size: 13px;
                        color: #929292;
                        display: block;
                        margin-bottom: 4px;
                    }

                    .case-details-area .right-content .recent-post .post .info h4 a {
                        color: #cdcbcb;
                        margin-bottom: 0;
                        line-height: 1.5;
                        font-size: 14px;
                        font-weight: 600;
                    }

                        .case-details-area .right-content .recent-post .post .info h4 a:hover {
                            transform: translateX(10px);
                        }

        .case-details-area .right-content .features {
            margin-top: 30px;
            position: relative;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
            background: #fff;
        }

            .case-details-area .right-content .features h3 {
                padding: 15px 20px;
                color: #fff;
                background: #121e4c;
                margin-bottom: 0;
            }

            .case-details-area .right-content .features .feature-list {
                margin: 0;
                padding: 30px;
            }

                .case-details-area .right-content .features .feature-list li {
                    position: relative;
                    padding-bottom: 10px;
                    margin-bottom: 10px;
                    color: #181818;
                    padding-left: 23px;
                    font-size: 16px;
                    border-bottom: 1px dashed #efefef;
                    font-weight: 500;
                }

                    .case-details-area .right-content .features .feature-list li::before {
                        background: #121e4c;
                        position: absolute;
                        height: 8px;
                        width: 8px;
                        content: "";
                        left: 0;
                        top: 9px;
                        transform: rotate(45deg);
                        animation: rotaed360 4s infinite linear;
                    }

.blog-area {
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

    .blog-area .single-blog {
        background: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        position: relative;
        margin-top: 30px;
        overflow: hidden;
        transition: 0.5s;
        box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
        z-index: 1;
    }

        .blog-area .single-blog .content {
            padding: 30px;
        }

            .blog-area .single-blog .content ul {
                padding: 0;
                margin: 0;
            }

                .blog-area .single-blog .content ul li {
                    font-size: 13px;
                    display: inline-block;
                }

                    .blog-area .single-blog .content ul li a {
                        position: relative;
                        margin-left: 25px;
                    }

                        .blog-area .single-blog .content ul li a::before {
                            position: absolute;
                            content: "";
                            width: 2px;
                            height: 15px;
                            left: -16px;
                            top: 2px;
                            background: #cdcbcb;
                        }

            .blog-area .single-blog .content span {
                color: #293a5c;
                font-weight: 500;
            }

            .blog-area .single-blog .content h3 {
                color: #cdcbcb;
                margin-top: 10px;
            }

            .blog-area .single-blog .content p {
                margin-top: 10px;
                color: #50607f;
            }

            .blog-area .single-blog .content .line-bnt {
                color: #cdcbcb;
            }

        .blog-area .single-blog::after {
            position: absolute;
            content: "";
            background: #cdcbcb;
            opacity: 0.8;
            bottom: 0;
            left: 100%;
            right: 0;
            width: 0;
            transition: 0.5s;
            z-index: -1;
            height: 100%;
        }

        .blog-area .single-blog:hover::before {
            width: 100%;
            left: 0;
        }

        .blog-area .single-blog:hover::after {
            width: 100%;
            left: 0;
        }

        .blog-area .single-blog:hover span {
            color: #f5ebff;
        }

        .blog-area .single-blog:hover h3 {
            color: #f5ebff;
        }

        .blog-area .single-blog:hover p {
            color: #fff;
        }

        .blog-area .single-blog:hover ul li {
            color: #cbcbcb;
        }

.blog-details-area .blog-details-desc .article-image {
    position: relative;
    background-color: #293a5c;
}

.blog-details-area .blog-details-desc .article-content {
    margin-top: 30px;
}

    .blog-details-area .blog-details-desc .article-content .entry-meta {
        margin-bottom: -10px;
    }

        .blog-details-area .blog-details-desc .article-content .entry-meta ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
        }

            .blog-details-area .blog-details-desc .article-content .entry-meta ul li {
                position: relative;
                display: inline-block;
                color: #ec2d2d;
                font-size: 14px;
            }

                .blog-details-area .blog-details-desc .article-content .entry-meta ul li span {
                    display: inline-block;
                    color: #ec2d2d;
                    font-weight: 500;
                }

                .blog-details-area .blog-details-desc .article-content .entry-meta ul li a {
                    display: inline-block;
                    color: #666;
                    font-size: 13px;
                }

                    .blog-details-area .blog-details-desc .article-content .entry-meta ul li a:hover {
                        color: #ec2d2d;
                    }

                .blog-details-area .blog-details-desc .article-content .entry-meta ul li i {
                    color: #ec2d2d;
                    margin-right: 2px;
                }


                .blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child {
                    margin-right: 0;
                }

                    .blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child::before {
                        display: none;
                    }

    .blog-details-area .blog-details-desc .article-content h3 {
        margin-bottom: 13px;
        margin-top: 25px;
        font-size: 30px;
    }

    .blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 {
        padding-left: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin-right: -10px;
        margin-left: -10px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

        .blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
            padding-right: 10px;
            padding-left: 10px;
        }

            .blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
                margin-bottom: 0;
            }

.blog-details-area .blog-details-desc .article-footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

    .blog-details-area .blog-details-desc .article-footer .article-tags {
        flex: 0 0 50%;
        max-width: 50%;
    }

        .blog-details-area .blog-details-desc .article-footer .article-tags span {
            display: inline-block;
            color: #ec2d2d;
            font-size: 20px;
            margin-right: 5px;
            position: relative;
            top: 4px;
        }

        .blog-details-area .blog-details-desc .article-footer .article-tags a {
            display: inline-block;
            color: #666;
            font-weight: 600;
        }

            .blog-details-area .blog-details-desc .article-footer .article-tags a:hover {
                color: #ec2d2d;
            }

    .blog-details-area .blog-details-desc .article-footer .article-share {
        flex: 0 0 50%;
        max-width: 50%;
    }

        .blog-details-area .blog-details-desc .article-footer .article-share .social {
            padding-left: 0;
            list-style-type: none;
            text-align: right;
            margin-bottom: 0;
        }

            .blog-details-area .blog-details-desc .article-footer .article-share .social li {
                display: inline-block;
            }

                .blog-details-area .blog-details-desc .article-footer .article-share .social li span {
                    display: inline-block;
                    margin-right: 2px;
                    font-weight: 500;
                    color: #666;
                }

                .blog-details-area .blog-details-desc .article-footer .article-share .social li a {
                    display: block;
                    color: #fff;
                    width: 32px;
                    height: 32px;
                    line-height: 33px;
                    border-radius: 50%;
                    background-color: #ec2d2d;
                    text-align: center;
                    font-size: 14px;
                }

                    .blog-details-area .blog-details-desc .article-footer .article-share .social li a:hover {
                        animation: rubberBand 1s linear;
                    }

.blog-details-area .blog-details-desc .post-navigation {
    margin-top: 30px;
}

.blog-details-area blockquote {
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 50px !important;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

    .blog-details-area blockquote p {
        color: #293a5c;
        line-height: 1.6;
        margin-bottom: 0;
        font-style: italic;
        font-weight: 600;
        font-size: 17px !important;
        text-align: center;
    }

    .blog-details-area blockquote cite {
        display: none;
    }

    .blog-details-area blockquote::before {
        color: #ec2d2d;
        content: "\ee34";
        position: absolute;
        left: 50px;
        top: -50px;
        z-index: -1;
        font-family: boxicons;
        font-size: 140px;
        font-weight: 900;
        opacity: 0.5;
    }

    .blog-details-area blockquote::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: #ec2d2d;
        margin-top: 20px;
        margin-bottom: 20px;
    }

.blog-details-area .post-navigation {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .blog-details-area .post-navigation .navigation-links {
        display: flex;
        flex-wrap: wrap;
    }

        .blog-details-area .post-navigation .navigation-links .nav-previous {
            flex: 0 0 50%;
            max-width: 50%;
        }

            .blog-details-area .post-navigation .navigation-links .nav-previous a i {
                margin-right: 0;
                font-size: 20px;
                position: relative;
                top: 4px;
            }

        .blog-details-area .post-navigation .navigation-links .nav-next {
            flex: 0 0 50%;
            max-width: 50%;
            text-align: right;
        }

            .blog-details-area .post-navigation .navigation-links .nav-next a i {
                margin-left: 0;
                font-size: 20px;
                position: relative;
                top: 4px;
            }

        .blog-details-area .post-navigation .navigation-links div a {
            display: inline-block;
            font-weight: 600;
            color: #293a5c;
        }

            .blog-details-area .post-navigation .navigation-links div a:hover {
                color: #ec2d2d;
            }

.blog-details-area .comments-area {
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    background-color: #fff;
}

    .blog-details-area .comments-area .comments-title {
        position: relative;
        margin-bottom: 30px;
        line-height: initial;
        font-size: 22px;
    }

        .blog-details-area .comments-area .comments-title::before {
            content: "";
            height: 25px;
            width: 3px;
            left: -25px;
            position: absolute;
            background: #ec2d2d;
            top: 50%;
            transform: translateY(-50%);
        }

    .blog-details-area .comments-area ol {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .blog-details-area .comments-area ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .blog-details-area .comments-area .comment-list {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .blog-details-area .comments-area .children {
        margin-left: 40px;
    }

    .blog-details-area .comments-area .comment-body {
        border-bottom: 1px solid #eee;
        padding-left: 65px;
        font-size: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

        .blog-details-area .comments-area .comment-body .reply {
            margin-top: 15px;
        }

            .blog-details-area .comments-area .comment-body .reply a {
                border: 1px solid #ded9d9;
                color: #293a5c;
                display: inline-block;
                padding: 5px 20px;
                border-radius: 30px;
                text-transform: uppercase;
                position: relative;
                z-index: 1;
                font-size: 13px;
                font-weight: 600;
            }

                .blog-details-area .comments-area .comment-body .reply a:hover {
                    color: #fff;
                    background-color: #ec2d2d;
                    border-color: #ec2d2d;
                }

    .blog-details-area .comments-area .comment-meta {
        margin-bottom: 0.8em;
    }

    .blog-details-area .comments-area .comment-author {
        font-size: 16px;
        margin-bottom: 0.4em;
        position: relative;
        z-index: 2;
    }

        .blog-details-area .comments-area .comment-author .avatar {
            height: 50px;
            left: -65px;
            position: absolute;
            width: 50px;
            border-radius: 50%;
        }

        .blog-details-area .comments-area .comment-author .fn {
            font-weight: 600;
            color: #293a5c;
            font-size: 18px;
        }

        .blog-details-area .comments-area .comment-author .says {
            display: none;
        }

    .blog-details-area .comments-area .comment-metadata {
        color: #666;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
    }

        .blog-details-area .comments-area .comment-metadata a {
            color: #666;
            font-size: 11px;
        }

            .blog-details-area .comments-area .comment-metadata a:hover {
                color: #ec2d2d;
            }

    .blog-details-area .comments-area .comment-content p {
        font-size: 14px;
    }

    .blog-details-area .comments-area .comment-respond {
        margin-top: 30px;
    }

        .blog-details-area .comments-area .comment-respond .comment-reply-title {
            margin-bottom: 15px;
            position: relative;
            font-size: 22px;
        }

            .blog-details-area .comments-area .comment-respond .comment-reply-title::before {
                content: "";
                height: 25px;
                width: 3px;
                left: -25px;
                position: absolute;
                background: #ec2d2d;
                top: 50%;
                transform: translateY(-50%);
            }

            .blog-details-area .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
                display: inline-block;
            }

        .blog-details-area .comments-area .comment-respond .comment-form {
            overflow: hidden;
        }

        .blog-details-area .comments-area .comment-respond .comment-form-comment {
            margin-bottom: 30px;
            float: left;
            width: 100%;
        }

        .blog-details-area .comments-area .comment-respond label {
            display: block;
            font-weight: 500;
            color: #293a5c;
            margin-bottom: 5px;
        }

        .blog-details-area .comments-area .comment-respond input[type=datetime-local] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=datetime-local]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=week] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=week]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=month] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=month]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=text] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=text]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=email] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=email]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=url] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=url]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=password] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=password]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=search] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=search]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=tel] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=tel]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond input[type=number] {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond input[type=number]:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond textarea {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            border: 1px solid #eee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: 0.5s;
        }

            .blog-details-area .comments-area .comment-respond textarea:focus {
                border-color: #ec2d2d;
            }

        .blog-details-area .comments-area .comment-respond .comment-form-author {
            float: left;
            width: 50%;
            padding-right: 10px;
            margin-bottom: 20px;
        }

        .blog-details-area .comments-area .comment-respond .comment-form-email {
            float: left;
            width: 50%;
            padding-left: 12px;
            margin-bottom: 20px;
        }

        .blog-details-area .comments-area .comment-respond .comment-form-url {
            float: left;
            width: 100%;
            margin-bottom: 20px;
        }

        .blog-details-area .comments-area .comment-respond .comment-form-cookies-consent {
            width: 100%;
            float: left;
            position: relative;
            padding-left: 20px;
            margin-bottom: 20px;
        }

            .blog-details-area .comments-area .comment-respond .comment-form-cookies-consent input {
                position: absolute;
                left: 0;
                top: 6px;
            }

            .blog-details-area .comments-area .comment-respond .comment-form-cookies-consent label {
                display: inline-block;
                margin: 0;
                color: #666;
                font-weight: 400;
            }

        .blog-details-area .comments-area .comment-respond .form-submit {
            float: left;
            width: 100%;
        }

            .blog-details-area .comments-area .comment-respond .form-submit input {
                background: #ec2d2d;
                border: none;
                color: #fff;
                padding: 14px 30px 12px;
                display: inline-block;
                cursor: pointer;
                outline: 0;
                border-radius: 0;
                text-transform: uppercase;
                transition: 0.5s;
                font-weight: 500;
                font-size: 14px;
            }

                .blog-details-area .comments-area .comment-respond .form-submit input:hover {
                    color: #fff;
                    background-color: #293a5c;
                }

                .blog-details-area .comments-area .comment-respond .form-submit input:focus {
                    color: #fff;
                    background-color: #ec2d2d;
                }

.blog-details-area .widget-area .widget {
    margin-top: 35px;
    background-color: #fff;
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
}

    .blog-details-area .widget-area .widget .post-wrap {
        padding: 20px;
    }

    .blog-details-area .widget-area .widget:first-child {
        margin-top: 0;
    }

    .blog-details-area .widget-area .widget .widget-title {
        text-transform: capitalize;
        position: relative;
        font-size: 20px;
        margin-bottom: 0;
        background-color: #ececec;
        padding: 10px 20px;
        color: #293a5c;
        position: relative;
    }

        .blog-details-area .widget-area .widget .widget-title::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background-color: #ec2d2d;
        }

.blog-details-area .widget-area .widget_search form {
    position: relative;
}

    .blog-details-area .widget-area .widget_search form label {
        display: block;
        margin-bottom: 0;
    }

    .blog-details-area .widget-area .widget_search form .screen-reader-text {
        display: none;
    }

    .blog-details-area .widget-area .widget_search form .search-field {
        background-color: transparent;
        height: 50px;
        padding: 6px 15px;
        border: 1px solid #eee;
        width: 100%;
        display: block;
        outline: 0;
        transition: 0.5s;
    }

        .blog-details-area .widget-area .widget_search form .search-field:focus {
            border-color: #ec2d2d;
        }

    .blog-details-area .widget-area .widget_search form button {
        position: absolute;
        right: 0;
        outline: 0;
        bottom: 0;
        height: 50px;
        width: 50px;
        border: none;
        color: #fff;
        background-color: #ec2d2d;
        transition: 0.5s;
        cursor: pointer;
    }

        .blog-details-area .widget-area .widget_search form button:hover {
            background-color: #293a5c;
        }

.blog-details-area .widget-area .widget-peru-posts-thumb {
    position: relative;
    overflow: hidden;
}

    .blog-details-area .widget-area .widget-peru-posts-thumb .item {
        overflow: hidden;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #efefef;
    }

        .blog-details-area .widget-area .widget-peru-posts-thumb .item:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }

        .blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb {
            float: left;
            height: 80px;
            overflow: hidden;
            position: relative;
            width: 80px;
            margin-right: 15px;
        }

            .blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
                width: 80px;
                height: 80px;
                display: inline-block;
                background-size: cover !important;
                background-repeat: no-repeat;
                background-position: center center !important;
                position: relative;
                background-color: #293a5c;
            }


        .blog-details-area .widget-area .widget-peru-posts-thumb .item .info {
            overflow: hidden;
        }

            .blog-details-area .widget-area .widget-peru-posts-thumb .item .info span {
                display: block;
                color: #666;
                text-transform: uppercase;
                margin-top: 5px;
                margin-bottom: 5px;
                font-size: 12px;
                font-weight: 500;
            }

            .blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title {
                margin-bottom: 0;
                line-height: 1.5;
                font-size: 14px;
                font-weight: 600;
            }

                .blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a {
                    display: inline-block;
                    color: #474c40;
                }

                    .blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a:hover {
                        color: #ec2d2d;
                    }

.blog-details-area .widget-area .widget_recent_entries ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .blog-details-area .widget-area .widget_recent_entries ul li {
        position: relative;
        margin-bottom: 12px;
        color: #666;
        padding-left: 17px;
        line-height: 1.5;
        font-size: 15px;
        font-weight: 600;
    }

        .blog-details-area .widget-area .widget_recent_entries ul li:last-child {
            margin-bottom: 0;
        }

        .blog-details-area .widget-area .widget_recent_entries ul li::before {
            background: #ec2d2d;
            position: absolute;
            height: 7px;
            width: 7px;
            content: "";
            left: 0;
            top: 7px;
        }

        .blog-details-area .widget-area .widget_recent_entries ul li .post-date {
            display: block;
            font-size: 13px;
            color: #666;
            margin-top: 4px;
        }

.blog-details-area .widget-area .widget_categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .blog-details-area .widget-area .widget_categories ul li {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
        color: #666;
        padding-left: 20px;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid #efefef;
    }

        .blog-details-area .widget-area .widget_categories ul li:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .blog-details-area .widget-area .widget_categories ul li::before {
            background: #ec2d2d;
            position: absolute;
            height: 10px;
            width: 10px;
            content: "";
            left: 0;
            top: 9px;
            -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .blog-details-area .widget-area .widget_categories ul li a {
            display: block;
            color: #666;
            font-weight: 400;
            font-size: 14px;
        }

            .blog-details-area .widget-area .widget_categories ul li a span {
                float: right;
                font-size: 13px;
            }

            .blog-details-area .widget-area .widget_categories ul li a:hover {
                color: #ec2d2d;
            }

        .blog-details-area .widget-area .widget_categories ul li .post-count {
            float: right;
        }

.blog-details-area .widget-area .widget_meta ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .blog-details-area .widget-area .widget_meta ul li {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
        color: #666;
        padding-left: 17px;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #efefef;
    }

        .blog-details-area .widget-area .widget_meta ul li a {
            color: #7a7e9a;
        }

            .blog-details-area .widget-area .widget_meta ul li a:hover {
                color: #ec2d2d;
            }

        .blog-details-area .widget-area .widget_meta ul li:last-child {
            margin-bottom: 0;
        }

        .blog-details-area .widget-area .widget_meta ul li::before {
            background: #ec2d2d;
            position: absolute;
            height: 10px;
            width: 10px;
            content: "";
            left: 0;
            top: 9px;
            -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

.blog-details-area .widget-area .widget_tag_cloud .widget-title {
    margin-bottom: 0;
}

.blog-details-area .widget-area .tagcloud a {
    display: inline-block;
    color: #666;
    font-weight: 400;
    font-size: 14px !important;
    padding: 7px 10px;
    border: 1px dashed #eee;
    margin-top: 10px;
    margin-right: 10px;
    text-transform: capitalize;
}

    .blog-details-area .widget-area .tagcloud a:hover {
        background-color: #ec2d2d;
        color: #fff;
    }

    .blog-details-area .widget-area .tagcloud a:focus {
        background-color: #ec2d2d;
        color: #fff;
        border-color: #ec2d2d;
    }

.blog-details-area .widget-area .widget_services_list ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    background-color: #fff;
}

    .blog-details-area .widget-area .widget_services_list ul li a {
        display: block;
        position: relative;
        border-bottom: 1px solid #eee;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 35px;
        color: #5d6576;
        z-index: 1;
        font-weight: 500;
    }

        .blog-details-area .widget-area .widget_services_list ul li a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: #252920;
            transition: 0.5s;
            opacity: 0;
            visibility: hidden;
        }

        .blog-details-area .widget-area .widget_services_list ul li a i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .blog-details-area .widget-area .widget_services_list ul li a:hover {
            background-color: #ec2d2d;
            color: #fff;
            padding-left: 20px;
        }

            .blog-details-area .widget-area .widget_services_list ul li a:hover::before {
                opacity: 1;
                visibility: visible;
                width: 5px;
            }

        .blog-details-area .widget-area .widget_services_list ul li a.active {
            background-color: #ec2d2d;
            color: #fff;
            padding-left: 20px;
        }

            .blog-details-area .widget-area .widget_services_list ul li a.active::before {
                opacity: 1;
                visibility: visible;
                width: 5px;
            }

    .blog-details-area .widget-area .widget_services_list ul li:last-child a {
        border-bottom: none;
    }

.blog-details-area .widget-area .widget_download ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    background-color: #fff;
}

    .blog-details-area .widget-area .widget_download ul li a {
        display: block;
        position: relative;
        border-bottom: 1px solid #eee;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 35px;
        color: #5d6576;
        z-index: 1;
        font-weight: 500;
    }

        .blog-details-area .widget-area .widget_download ul li a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: #252920;
            transition: 0.5s;
            opacity: 0;
            visibility: hidden;
        }

        .blog-details-area .widget-area .widget_download ul li a i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .blog-details-area .widget-area .widget_download ul li a:hover {
            background-color: #ec2d2d;
            color: #fff;
            padding-left: 20px;
        }

            .blog-details-area .widget-area .widget_download ul li a:hover::before {
                opacity: 1;
                visibility: visible;
                width: 5px;
            }

        .blog-details-area .widget-area .widget_download ul li a.active {
            background-color: #ec2d2d;
            color: #fff;
            padding-left: 20px;
        }

            .blog-details-area .widget-area .widget_download ul li a.active::before {
                opacity: 1;
                visibility: visible;
                width: 5px;
            }

    .blog-details-area .widget-area .widget_download ul li:last-child a {
        border-bottom: none;
    }

.blog-details-area .widget-area .info time {
    font-size: 13px;
    color: #929292;
    display: block;
    margin-bottom: 4px;
}

.faq-area {
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.07);
}

    .faq-area .section-tittle {
        text-align: center;
    }

        .faq-area .section-tittle h2 {
            margin-bottom: 30px;
        }

    .faq-area .faq-accordion .accordion {
        padding: 0;
        margin: 0;
    }

        .faq-area .faq-accordion .accordion .accordion-item {
            display: block;
            margin-bottom: 12px;
            position: relative;
        }

            .faq-area .faq-accordion .accordion .accordion-item:last-child {
                margin-bottom: 0;
            }

            .faq-area .faq-accordion .accordion .accordion-item .accordion-title {
                padding: 15px 60px 15px 70px;
                color: #cdcbcb;
                position: relative;
                background: #fff;
                border-radius: 2px;
                font-size: 18px;
                font-weight: 600;
                display: block;
            }

                .faq-area .faq-accordion .accordion .accordion-item .accordion-title i {
                    position: absolute;
                    right: 30px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: #cdcbcb;
                    transition: 0.5s;
                    font-size: 16px;
                }

                .faq-area .faq-accordion .accordion .accordion-item .accordion-title.active {
                    background-color: #fff;
                }

                    .faq-area .faq-accordion .accordion .accordion-item .accordion-title.active i::before {
                        content: "\ec4e";
                    }

            .faq-area .faq-accordion .accordion .accordion-item .accordion-content {
                display: none;
                background-color: #fff;
                margin-bottom: 0;
                padding: 15px 60px 15px 30px;
                font-size: 16px;
                z-index: 1;
                color: #50607f;
                position: relative;
            }

                .faq-area .faq-accordion .accordion .accordion-item .accordion-content::before {
                    content: "";
                    width: 75%;
                    height: 2px;
                    background: #7a7e9a;
                    top: 5px;
                }

                .faq-area .faq-accordion .accordion .accordion-item .accordion-content.show {
                    display: block;
                }

        .faq-area .faq-accordion .accordion .icon {
            position: absolute;
            z-index: 2;
            width: 40px;
            height: 40px;
            background: #f5ebff;
            text-align: center;
            font-size: 25px;
            line-height: 40px;
            color: #cdcbcb;
            top: 10px;
            left: 15px;
        }

.signup-area .signup-form {
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    padding: 40px;
    max-width: 540px;
    background: #fff;
    border-radius: 10px;
    margin: auto;
}

    .signup-area .signup-form .form-control {
        border-radius: 4px;
        height: 50px;
        padding: 10px 20px;
    }

        .signup-area .signup-form .form-control:focus {
            box-shadow: none;
        }

    .signup-area .signup-form .box-btn {
        margin-bottom: 30px;
    }

        .signup-area .signup-form .box-btn i {
            position: relative;
            top: 1px;
        }

    .signup-area .signup-form .google {
        padding: 15px 25px;
        background: #dd4b39;
    }

    .signup-area .signup-form .facebook {
        padding: 15px 17px;
        background: #3b5999;
    }

    .signup-area .signup-form .twitter {
        padding: 15px 25px;
        background: #55acee;
    }

    .signup-area .signup-form .signup-btn {
        padding: 15px 50px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

.signup-area .privecy-txt {
    font-size: 14px;
}

.signup-area p.al-acc {
    margin-bottom: 0;
    font-size: 14px;
}

.signup-area .section-tittle {
    margin-bottom: 30px;
}

.signup-area .form-group {
    margin-bottom: 30px;
}

.price-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .price-area .single-price {
        text-align: center;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-radius: 5px;
        transition: 0.3s;
    }

        .price-area .single-price .price-head {
            padding: 50px 0 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            border-radius: 5px;
            background: #cdcbcb;
        }

            .price-area .single-price .price-head h2 {
                font-size: 25px;
                margin-bottom: 0;
                color: #fff;
            }

            .price-area .single-price .price-head p {
                font-size: 35px;
                font-weight: 700;
                color: #fff;
                margin-bottom: 0;
            }

                .price-area .single-price .price-head p span {
                    font-size: 16px;
                }

        .price-area .single-price .price-list {
            text-align: center;
            margin: 0;
            padding: 20px 0;
        }

            .price-area .single-price .price-list li p {
                margin-bottom: 0;
                padding: 3px 0;
                color: #616161;
            }

        .price-area .single-price .box-btn {
            background: #cdcbcb;
            color: #fff;
            margin-top: 0;
            margin-bottom: 30px;
            border: 1px solid transparent;
        }

        .price-area .single-price:hover {
            transform: translateY(-10px);
        }

            .price-area .single-price:hover .box-btn {
                border: 1px dashed #ec2d2d;
                color: #ec2d2d;
                background: #fff;
            }

                .price-area .single-price:hover .box-btn:hover {
                    color: #fff;
                }

.testimonials-area .section-tittle {
    margin-bottom: 50px;
}

    .testimonials-area .section-tittle p {
        margin: 0 15%;
    }

.testimonials-area .single-testimonials {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: relative;
    text-align: left;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.5s;
}

    .testimonials-area .single-testimonials .testimonials-head .testimonials-img {
        border: 1px solid #ec2d2d;
        padding: 6px;
        overflow: hidden;
    }

    .testimonials-area .single-testimonials .testimonials-head .content {
        margin-top: 0;
        position: relative;
        top: 2px;
    }

        .testimonials-area .single-testimonials .testimonials-head .content h2 {
            color: #181818;
            font-family: poppins, sans-serif;
            position: relative;
            font-size: 21px;
            margin-bottom: 5px;
        }

        .testimonials-area .single-testimonials .testimonials-head .content .rate {
            padding: 0;
            margin: 0;
        }

            .testimonials-area .single-testimonials .testimonials-head .content .rate li {
                display: inline-block;
            }

                .testimonials-area .single-testimonials .testimonials-head .content .rate li i {
                    font-size: 15px;
                    color: #ffc107;
                }

        .testimonials-area .single-testimonials .testimonials-head .content span {
            font-size: 15px;
        }

    .testimonials-area .single-testimonials .testimonials-foot p {
        margin-bottom: 0;
        color: #616161;
    }

    .testimonials-area .single-testimonials:hover {
        transform: translateY(-5px);
    }

    .testimonials-area .single-testimonials hr {
        margin-top: 18px !important;
        margin-bottom: 8px !important;
    }

.terms-area {
    position: relative;
    overflow: hidden;
}

    .terms-area h2 {
        color: #cdcbcb;
        margin-bottom: 15px;
        font-size: 30px;
    }

.privecy-area {
    position: relative;
    overflow: hidden;
}

.fit-img, .p-item img, .product-page .cat-list-group .cat-img img, .product-detail-page .pd-img-gallery img {
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

.privecy-area h2 {
    color: #cdcbcb;
    margin-bottom: 15px;
    font-size: 30px;
}

.gallery-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .gallery-area .single-gall {
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
    }

        .gallery-area .single-gall .gall-img {
            height: 400px;
            border-radius: 5px;
            overflow: hidden;
            transition: 0.3s;
        }

            .gallery-area .single-gall .gall-img img {
                border-radius: 5px;
            }

        .gallery-area .single-gall .gall-content {
            position: absolute;
            text-align: center;
            background: #fff;
            padding: 10px 20px;
            bottom: 20px;
            transition: 0.5s;
            bottom: -100px;
        }

            .gallery-area .single-gall .gall-content h3 {
                color: #181818;
                margin-bottom: 0;
                line-height: normal;
            }

        .gallery-area .single-gall:hover .gall-content {
            bottom: 0;
        }

        .gallery-area .single-gall:hover .gall-img {
            transform: scale(1.1);
        }

.team-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .team-area .section-tittle {
        text-align: center;
        margin-bottom: 30px;
    }

        .team-area .section-tittle p {
            margin: 0 15%;
        }

    .team-area .single-team {
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: all 0.5s;
    }

        .team-area .single-team .team-img {
            height: 400px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            overflow: hidden;
            transition: 0.3s;
            background: #121e4c;
        }

            .team-area .single-team .team-img img {
                border-radius: 5px;
                transition: 0.3s;
            }

        .team-area .single-team .team-content {
            padding: 20px;
        }

            .team-area .single-team .team-content h3 {
                color: #121e4c;
                text-align: center;
                margin-bottom: 5px;
            }

            .team-area .single-team .team-content p {
                text-align: center;
                color: #181818;
                margin-bottom: 10px;
            }

            .team-area .single-team .team-content .social {
                text-align: center;
                margin: 0;
                padding: 0;
                width: 100%;
                transition: 0.3s;
            }

                .team-area .single-team .team-content .social li {
                    display: inline-block;
                    margin-right: 10px;
                }

                    .team-area .single-team .team-content .social li a {
                        width: 30px;
                        height: 30px;
                        background: #121e4c;
                        border-radius: 50%;
                        line-height: 32px;
                        text-align: center;
                        transition: 0.3s;
                        color: #f5faff;
                        transition: 0.3s;
                    }

                        .team-area .single-team .team-content .social li a i {
                            font-size: 15px;
                        }

                        .team-area .single-team .team-content .social li a:hover {
                            transform: translateY(-3px);
                        }

        .team-area .single-team:hover {
            transform: translateY(-5px);
        }

.error-area {
    position: relative;
    text-align: center;
    height: 100vh;
    max-width: 650px;
    margin: auto;
    padding: 50px 0;
}

    .error-area h3 {
        color: #e6335a;
        margin-top: 20px;
    }

.home-contact-area .contact-img {
    animation: updown 5s infinite linear;
    text-align: center;
}

.home-contact-area .content {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 4px;
    padding: 30px;
}

    .home-contact-area .content input.form-control {
        height: 55px;
        border: 1px solid #eee;
        margin-bottom: 20px;
        padding-left: 25px;
        background-color: #f9f9f9;
    }

        .home-contact-area .content input.form-control:focus {
            box-shadow: none;
            border-color: var( --bs-primary);
        }

    .home-contact-area .content textarea.form-control {
        width: 100%;
        border: 1px solid #eee;
        max-height: 170px;
        min-height: 170px;
        box-shadow: none;
        padding-left: 25px;
        padding-top: 15px;
        margin-bottom: 20px;
        background-color: #f9f9f9;
    }

        .home-contact-area .content textarea.form-control:focus {
            box-shadow: none;
            border-color: var(--bs-primary);
        }

    .home-contact-area .content button {
        border: none;
        padding: 15px 35px;
        display: table;
        text-align: center;
        margin: 0 auto -8px;
    }

.home-contact-area .list-unstyled {
    color: #dc3545;
    margin-top: -13px;
    margin-bottom: -8px;
    font-size: 13px;
}

.home-contact-area .text-danger {
    color: #dc3545 !important;
    margin-top: 15px;
}

.home-contact-area .text-success {
    color: green !important;
}

.home-contact-area #msgSubmit {
    text-align: center;
}

.home-contact-area .form-group {
    margin-bottom: 30px;
}

.home-2-contact .content {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 4px;
}

    .home-2-contact .content input.form-control {
        border-radius: 4px;
    }

    .home-2-contact .content textarea.form-control {
        border-radius: 4px;
    }

.home-2-contact .contact-img {
    background: url(../images/contact-img2.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    animation: none;
}

    .home-2-contact .contact-img img {
        display: none;
    }

.contact-area .single-contact {
    max-height: 210px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.5s;
    margin-bottom: 30px;
}

    .contact-area .single-contact .icon {
        width: 45px;
        height: 45px;
        background-color: #ec2d2d;
        color: #fff;
        transition: 0.3s;
        border-radius: 50%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

        .contact-area .single-contact .icon i {
            font-size: 23px;
            line-height: 45px;
        }

    .contact-area .single-contact:hover {
        transform: translateY(-5px);
    }

.footer-area {
    position: relative;
    overflow: hidden;
    background: url(../images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

    .footer-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image: url(../images/footer-bg1.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        animation: imageChange 1s linear 1s infinite;
    }

    .footer-area .content {
        margin-bottom: 30px;
    }

        .footer-area .content p {
            margin-top: 0px;
        }

        .footer-area .content .subscribe {
            position: relative;
            max-width: 100%;
        }

            .footer-area .content .subscribe h4 {
                font-size: 24px;
                color: #f5faff;
            }

            .footer-area .content .subscribe input#emails {
                position: relative;
                height: 50px;
                padding-left: 20px;
                border-radius: 4px;
                color: #fff;
                margin: 20px 0;
                margin-bottom: 10px;
            }

                .footer-area .content .subscribe input#emails::-moz-placeholder {
                    color: #fff;
                }

                .footer-area .content .subscribe input#emails::placeholder {
                    color: #fff;
                }

                .footer-area .content .subscribe input#emails:focus {
                    box-shadow: none;
                }

            .footer-area .content .subscribe .newsletter-form {
                position: relative;
            }

            .footer-area .content .subscribe button {
                position: absolute;
                top: 0;
                right: 0;
                border: none;
                height: 50px;
            }

                .footer-area .content .subscribe button::before {
                    background-color: #fff;
                }

                .footer-area .content .subscribe button::after {
                    background-color: #fff;
                }

                .footer-area .content .subscribe button:hover {
                    background-color: #ec2d2d;
                    color: #ec2d2d;
                }

            .footer-area .content .subscribe #validator-newsletter {
                display: inline-block;
                color: #e6335a;
            }

        .footer-area .content .social {
            margin: 0;
            padding: 0;
        }

            .footer-area .content .social li {
                display: inline-block;
                margin-right: 10px;
            }

                .footer-area .content .social li a {
                    width: 35px;
                    height: 35px;
                    background: #ec2d2d;
                    border-radius: 5px;
                    line-height: 40px;
                    text-align: center;
                    transition: 0.3s;
                    color: #f5faff;
                    transition: 0.3s;
                }

                    .footer-area .content .social li a i {
                        font-size: 18px;
                    }

                    .footer-area .content .social li a:hover {
                        transform: translateY(-3px);
                    }

        .footer-area .content h3 {
            font-size: 25px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

            .footer-area .content h3::before {
                position: absolute;
                content: "";
                width: 3px;
                height: 100%;
                background: #e6335a;
                left: -15px;
                z-index: -1;
            }

            .footer-area .content h3::after {
                position: absolute;
                content: "";
                background: #cdcbcb;
                width: 7px;
                height: 7px;
                left: -15px;
                top: 0;
                right: 0;
                overflow: hidden;
                animation: line 8s infinite;
            }

        .footer-area .content .footer-list {
            margin: 0;
            padding: 0;
        }

            .footer-area .content .footer-list li {
                line-height: 1.8;
                margin-bottom: 8px;
                position: relative;
            }

                .footer-area .content .footer-list li a {
                    color: #000;
                    font-size: 15px;
                    transition: 0.3s;
                }

                    .footer-area .content .footer-list li a i {
                        position: absolute;
                        top: 4px;
                        left: 0;
                        color: #fff;
                        display: inline-block;
                        font-size: 15px;
                    }

                    .footer-area .content .footer-list li a:hover {
                        letter-spacing: 0.02em;
                    }

        .footer-area .content .foot-social {
            position: relative;
        }

            .footer-area .content .foot-social li {
                position: relative;
                padding-left: 48px;
                color: #000;
                font-size: 16px;
                margin-bottom: 20px;
            }

                .footer-area .content .foot-social li i {
                    position: absolute;
                    display: inline-block;
                    left: 0;
                    top: 4px;
                    width: 30px;
                    height: 30px;
                    background: #ec2d2d;
                    border-radius: 5px;
                    line-height: 31px;
                    text-align: center;
                    transition: 0.3s;
                    color: #f5faff;
                }

    .footer-area .copy-area {
        background: #cdcbcb;
        padding: 20px 0px 30px 0px;
        text-align: center
    }

        .footer-area .copy-area .menu {
            margin: 0;
            padding: 0;
        }

            .footer-area .copy-area .menu li {
                display: inline-block;
                margin-right: 25px;
                font-size: 15px;
            }

                .footer-area .copy-area .menu li a {
                    color: #f5faff;
                }

                .footer-area .copy-area .menu li:last-child {
                    margin-right: 0;
                }

        .footer-area .copy-area p {
            font-size: 15px;
            color: #000;
            margin-bottom: 0;
        }

            .footer-area .copy-area p a {
                color: #e6335a;
                font-size: 16px;
                font-weight: 600;
            }

                .footer-area .copy-area p a:hover {
                    color: #7a7e9a;
                }

        .footer-area .copy-area .right {
            float: right;
        }

            .footer-area .copy-area .right i {
                position: relative;
                top: 1px;
            }

.footer-area-2 {
    background: #ddd;
    position: relative;
    z-index: 1;
    color: var(--bs-body-color) !important;
}

    .footer-area-2::before {
        display: none;
    }

.page-title-area {
    position: relative;
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: 150px;
    text-align: center;
    height: 100%;
    z-index: 1;
}

    .page-title-area::before {
        position: absolute;
        content: "";
        background-color: black;
        opacity: 0.3;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .page-title-area .page-title-content h2 {
        margin-bottom: 15px;
        color: #fff;
        font-size: 40px;
        font-weight: 700;
    }

    .page-title-area .page-title-content ul {
        padding-left: 0;
        list-style-type: none;
        margin-top: 10px;
        margin-bottom: 0;
    }

        .page-title-area .page-title-content ul li {
            display: inline-block;
            position: relative;
            font-size: 15px;
            font-weight: 500;
            padding-right: 15px;
            padding-left: 15px;
            color: #fff;
        }

            .page-title-area .page-title-content ul li::before {
                content: "";
                position: absolute;
                top: 10px;
                right: -7px;
                background-color: #70a1ff;
                width: 8px;
                height: 8px;
            }

            .page-title-area .page-title-content ul li:last-child::before {
                display: none;
            }

            .page-title-area .page-title-content ul li a {
                color: #fff;
            }

                .page-title-area .page-title-content ul li a:hover {
                    color: #ec2d2d;
                }

        .page-title-area .page-title-content ul .active {
            color: #70a1ff;
        }

    .page-title-area .page-shape .shape1 {
        position: absolute;
        top: 55%;
        left: 5%;
        animation: animationFramesOne 20s linear infinite;
    }

    .page-title-area .page-shape .shape6 {
        position: absolute;
        bottom: 27%;
        right: 22%;
        animation: animationFramesOne 15s linear infinite;
    }

    .page-title-area .page-shape .shape3 {
        position: absolute;
        left: 25%;
        bottom: 15%;
        animation: rotaed360 6s infinite linear;
    }

    .page-title-area .page-shape .shape4 {
        position: absolute;
        top: 27%;
        left: 48%;
        animation: rotaed360 6s infinite linear;
    }

    .page-title-area .page-shape .shape5 {
        position: absolute;
        top: 15%;
        right: 3%;
        animation: rotaed360 6s infinite linear;
    }

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    margin: 12px 0 12px 0
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

    .page-link:hover {
        z-index: 2;
        color: #0056b3;
        text-decoration: none;
        background-color: #e9ecef;
        border-color: #dee2e6
    }

    .page-link:focus {
        z-index: 2;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25)
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem
}


.page-link {
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 0;
    min-width: 2rem;
    line-height: 2rem;
    height: 2rem;
    margin: 0px 5px;
    color: #53535f;
    background-color: transparent;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out
}

    .page-link:hover {
        color: #3f87f5;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent
    }

    .page-link:focus {
        box-shadow: none
    }

.page-item.disabled .page-link {
    color: #9292a0;
    border-color: transparent
}

.page-item.active .page-link {
    background: #3f87f5;
    border-color: transparent
}

.pagination .page-item.active .page-link {
    background: #0066b3;
    border-color: transparent
}

    .pagination .page-item.active .page-link:hover {
        color: #fff
    }

.pagination .page-item .page-link:hover {
    color: #3f87f5
}

#filter-nav.show {
    display: block !important;
    -webkit-animation-duration: .21s;
    animation-duration: .21s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: moveright;
    animation-name: moveright;
}

.project-area-six {
    text-align: center;
}

    .project-area-six .single-project {
        position: relative;
        overflow: hidden;
        transition: all 0.5s;
        margin-bottom: 30px;
    }

        .project-area-six .single-project .project-image {
            position: relative;
            transition: all 0.5s;
            height: 380px;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
        }

            .project-area-six .single-project .project-image img {
                transition: all 9s;
            }

            .project-area-six .single-project .project-image.bg-1 {
                background-image: url(../../assets/images/gallery/1.jpg);
            }

            .project-area-six .single-project .project-image.bg-2 {
                background-image: url(../../assets/images/gallery/2.jpg);
            }

            .project-area-six .single-project .project-image.bg-3 {
                background-image: url(../../assets/images/gallery/3.jpg);
            }

            .project-area-six .single-project .project-image.bg-4 {
                background-image: url(../../assets/images/gallery/4.jpg);
            }

            .project-area-six .single-project .project-image.bg-5 {
                background-image: url(../../assets/images/gallery/5.jpg);
            }

        .project-area-six .single-project .project-content {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 15px;
            transition: all 0.5s;
            z-index: 2;
            text-align: center;
            width: 93%;
            height: 90%;
            justify-content: center;
            align-items: center;
            display: flex;
            background-color: rgba(37, 36, 94, 0.9);
            transform: scaleY(0);
        }

            .project-area-six .single-project .project-content span {
                color: #fff;
                font-weight: 500;
                display: block;
                margin-bottom: 6px;
            }

            .project-area-six .single-project .project-content h3 {
                margin-bottom: 4px;
                transition: all 0.5s;
            }

                .project-area-six .single-project .project-content h3:hover a {
                    text-decoration: underline;
                    color: #fff;
                }

                .project-area-six .single-project .project-content h3 a {
                    color: #fff;
                }

            .project-area-six .single-project .project-content .read-more:hover {
                color: #fff;
            }

        .project-area-six .single-project:hover .project-content {
            transform: scaleY(1);
        }

        .project-area-six .single-project:hover .project-image {
            transform: scale(2.2) rotate(4deg);
        }

.single-pricing {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 50px 0 50px 0;
    transition: all 0.5s;
}

    .single-pricing .pricing-top-heading {
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

        .single-pricing .pricing-top-heading h3 {
            font-size: 25px;
        }

        .single-pricing .pricing-top-heading p {
            font-weight: 600;
            font-size: 14px;
        }

    .single-pricing span {
        font-size: 30px;
        font-family: catamaran, sans-serif;
        color: #293a5c;
        font-weight: 700;
        display: block;
        line-height: 1;
        margin: 0 auto 20px;
        background-color: #fff;
        box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
        width: 120px;
        height: 120px;
        line-height: 120px;
        border-radius: 50%;
    }

        .single-pricing span sub {
            font-size: 14px;
            color: #7a7e9a;
        }

    .single-pricing ul {
        text-align: left;
        max-width: 200px;
        margin: 0 auto 25px;
    }

        .single-pricing ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            font-weight: 600;
        }

            .single-pricing ul li:last-child {
                margin-bottom: 0;
            }

            .single-pricing ul li i {
                font-size: 12px;
                display: inline-block;
                width: 20px;
                height: 20px;
                background-color: #daf6fd;
                line-height: 20px;
                border-radius: 50%;
                text-align: center;
                position: absolute;
                top: 5px;
                left: 0;
                color: #1dd3f8;
            }

    .single-pricing .default-btn {
        padding: 15px 35px;
    }

    .single-pricing:hover {
        transform: translateY(-5px);
    }

.popular {
    position: absolute;
    top: -15px;
    right: -50px;
    z-index: 1;
    background-color: red;
    color: #fff;
    padding: 35px 40px 10px 35px;
    transform: rotate(45deg);
}

.tab.quote-list-tab {
    text-align: center;
}

    .tab.quote-list-tab .tabs {
        border-radius: 10px;
        display: inline-block;
        border: 1px solid #ec2d2d;
        margin-bottom: 30px;
    }

        .tab.quote-list-tab .tabs li {
            display: inline-block;
            padding: 0 10px;
            font-family: catamaran, sans-serif;
            color: #293a5c;
            font-size: 20px;
            font-weight: 700;
        }

            .tab.quote-list-tab .tabs li a {
                color: #ec2d2d;
                padding: 10px 20px;
            }

        .tab.quote-list-tab .tabs .current {
            background-color: #ec2d2d;
            border-radius: 10px;
        }

            .tab.quote-list-tab .tabs .current a {
                color: #fff;
            }

.tab .tabs_item {
    display: none;
}

    .tab .tabs_item:first-child {
        display: block;
    }

.services-details-area .scrives-item-3 .social-link {
    line-height: 1;
}

    .services-details-area .scrives-item-3 .social-link li {
        display: inline-block;
        margin-right: 5px;
    }

        .services-details-area .scrives-item-3 .social-link li a {
            width: 30px;
            height: 30px;
            line-height: 38px;
            background-color: #ec2d2d;
            color: #fff;
            border-radius: 50%;
            text-align: center;
        }

            .services-details-area .scrives-item-3 .social-link li a i {
                font-size: 20px;
            }

            .services-details-area .scrives-item-3 .social-link li a:hover {
                transform: translateY(-3px);
            }

.services-details-area .scrives-item-3 .share {
    float: right;
}

    .services-details-area .scrives-item-3 .share a {
        font-size: 20px;
        font-weight: 600;
    }

        .services-details-area .scrives-item-3 .share a i {
            font-size: 20px;
            position: relative;
            top: 3px;
        }

.services-details-area .services-img.mb {
    margin-bottom: 30px;
}

.services-details-area .services-item-wrap {
    margin-bottom: 30px;
}

.services-details-area .services-details-text h2 {
    font-size: 35px;
}

.main-banner-three {
    background-color: #f5faff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .main-banner-three .container-fluid {
        padding-right: 0;
    }

    .main-banner-three .main-banner-content {
        width: 100%;
        height: 100%;
    }

        .main-banner-three .main-banner-content .content {
            max-width: 640px;
            margin-left: auto;
            margin-top: 90px;
        }

            .main-banner-three .main-banner-content .content h1 {
                font-size: 55px;
                margin-bottom: 15px;
            }

            .main-banner-three .main-banner-content .content p {
                margin-bottom: 35px;
            }

            .main-banner-three .main-banner-content .content .default-btn {
                margin-top: 20px;
            }

            .main-banner-three .main-banner-content .content .slider-btn-wrap .box-btn.border-btn {
                border: 1px solid #ec2d2d;
                color: #ec2d2d;
                margin-left: 20px;
            }

                .main-banner-three .main-banner-content .content .slider-btn-wrap .box-btn.border-btn:hover {
                    color: #fff;
                    border-color: #293a5c;
                }

    .main-banner-three .banner-image-slider .banner-image {
        height: 100vh;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
    }

        .main-banner-three .banner-image-slider .banner-image.banner-slider-bg-1 {
            background-image: url(../../assets/images/home-three/banner-img.jpg);
        }

        .main-banner-three .banner-image-slider .banner-image.banner-slider-bg-2 {
            background-image: url(../../assets/images/home-three/banner-img-2.jpg);
        }

    .main-banner-three .banner-image-slider .owl-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
    }

        .main-banner-three .banner-image-slider .owl-dots .owl-dot span {
            width: 20px;
            height: 10px;
            transition: all 0.5s;
        }

        .main-banner-three .banner-image-slider .owl-dots .owl-dot:hover span {
            background-color: #ec2d2d;
        }

        .main-banner-three .banner-image-slider .owl-dots .owl-dot.active span {
            background-color: #ec2d2d;
            width: 25px;
        }

    .main-banner-three .banner-image-slider .owl-prev {
        background-color: #ec2d2d !important;
        position: absolute;
        bottom: 50%;
        left: 0;
        transition: all 0.5s;
        transform: translateY(35px);
        opacity: 0;
    }

        .main-banner-three .banner-image-slider .owl-prev i {
            font-size: 20px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            color: #fff;
            display: inline-block;
        }

        .main-banner-three .banner-image-slider .owl-prev:hover {
            background-color: #8b8888;
        }

            .main-banner-three .banner-image-slider .owl-prev:hover i {
                color: #fff;
            }

    .main-banner-three .banner-image-slider .owl-next {
        background-color: #ec2d2d !important;
        position: absolute;
        bottom: 50%;
        right: 0;
        transition: all 0.5s;
        transform: translateY(35px);
        opacity: 0;
    }

        .main-banner-three .banner-image-slider .owl-next i {
            font-size: 20px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            color: #fff;
            display: inline-block;
        }

        .main-banner-three .banner-image-slider .owl-next:hover {
            background-color: #8b8888 !important;
        }

            .main-banner-three .banner-image-slider .owl-next:hover i {
                color: #fff;
            }

    .main-banner-three .banner-image-slider:hover .owl-prev {
        opacity: 1;
    }

    .main-banner-three .banner-image-slider:hover .owl-next {
        opacity: 1;
    }

/*# sourceMappingURL=style.css.map */
