body {
    margin: 0;
    /*padding: 55px 0 0 0;*/
    font-size: 14px;
    width: 100%;
    font-family: 'Poppins';
    background-color: #f5f5f5;
    font-weight: 400;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:hover,
a:focus {
    color: #333;
    text-decoration: none;
}

:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button:focus {
    outline: none;
}



@font-face {
    font-family: 'Poppins';
    font-weight: 100;
    src: url('../fonts/Poppins-Thin.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 100;
    src: url('../fonts/Poppins-ThinItalic.ttf');
}


@font-face {
    font-family: 'Poppins';
    font-weight: 200;
    src: url('../fonts/Poppins-ExtraLight.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    src: url('../fonts/Poppins-ExtraLightItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: url('../fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/Poppins-LightItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Poppins-Italic.ttf');
}


@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/Poppins-MediumItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/Poppins-SemiBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: url('../fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/Poppins-BoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 800;
    src: url('../fonts/Poppins-ExtraBold.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/Poppins-ExtraBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 800;
    src: url('../fonts/Poppins-Black.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/Poppins-BlackItalic.ttf');
}


/*======== loader ========*/

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(252, 252, 253, 0.95);
}

.loader-wrapper img {
    position: absolute;
    width: 55px;
}

#loader-inner {
    position: relative;
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 3px solid #f97a7d;
    border-top-color: #964450;
    animation: spin 2s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*================ Custome Checkbox =============*/
.cust-check-bx {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    z-index: 9;
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    line-height: 25px;
}

.cust-check-bx input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cust-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    transition: all 0.3s;

}

.cust-check-bx input:checked~.cust-checkmark {
    background-color: #60b7b9;
    border-color: #60b7b9;
}

.cust-checkmark:after {
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cust-check-bx input:checked~.cust-checkmark:after {
    opacity: 1;
    visibility: visible;
}

.cust-check-bx input:focus~.cust-checkmark {
    opacity: 1;
    visibility: visible;
    border-color: #60b7b9;
    box-shadow: 0 0 0 0.2rem rgba(96, 183, 185, 0.45);
}

.cust-check-bx .cust-checkmark:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*================ Custome Radio button =============*/
.cust-radio-btn {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    z-index: 9;
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    line-height: 25px;
}

.cust-radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cust-rdo-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
}

.cust-radio-btn input:checked~.cust-rdo-checkmark {
    background-color: #60b7b9;
    border-color: #60b7b9;
}

.cust-rdo-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cust-radio-btn input:checked~.cust-rdo-checkmark:after {
    display: block;
}

.cust-radio-btn .cust-rdo-checkmark:after {
    top: 6px;
    left: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
}

.cust-radio-btn input:focus~.cust-rdo-checkmark {
    opacity: 1;
    visibility: visible;
    border-color: #60b7b9;
    box-shadow: 0 0 0 0.2rem rgba(96, 183, 185, 0.45);
}


::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #969696 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #969696 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #969696 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #969696 !important;
}

/*back to top*/
.backtop-main {
    position: fixed;
    bottom: 60px;
    right: 15px;
    width: 43px;
    height: 43px;
    background: #5cacae;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    line-height: 41px;
    font-size: 28px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
    display: none;
}

.backtop-main:hover {
    background: #f03d41;
    color: #fff;
}

.backtop-main i {
    position: relative;
    top: 0;
}

.backtop-main:hover i {
    top: -2px;
}

.heaser-fix {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    padding: 0 0;
    z-index: 99;
}

.header-wrapper {
    position: relative;
}

.stitchmax-logo {
    float: left;
    padding-top: 10px;
}

.stitchmax-logo a img {
    width: 320px;
    transition: all 0.3s;
}

.logo-mnu-fixed {
    display: none;
}

.logo-mnu-top {
    display: block;
}

.heaser-fix.header-fixed .logo-mnu-fixed {
    display: block;
}

.heaser-fix.header-fixed .logo-mnu-top {
    display: none;
}

.menu-toggle {
    float: right;
    margin: 15px 0;
    display: none;
}

.navicon-button {
    display: inline-block;
    position: relative;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
    opacity: 1;
}

.navicon-button:hover {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
}

.navicon-button:hover .navicon:before,
.navicon-button:hover .navicon:after {
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.navicon {
    position: relative;
    width: 30px;
    height: 3px;
    background: #fff;
    -webkit-border-radius: 2.5rem;
    -moz-border-radius: 2.5rem;
    border-radius: 2.5rem;
}

.navicon:before {
    width: 35px;
}

.navicon:after {
    width: 25px;
}

.navicon:before,
.navicon:after {
    display: block;
    content: "";
    height: 3px;
    background: #fff;
    z-index: 2;
    position: absolute;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.heaser-fix.header-fixed .navicon:before,
.heaser-fix.header-fixed .navicon:after,
.heaser-fix.header-fixed .navicon {
    background: #bb5360;
}

.navicon:before {
    top: 0.625rem;
}

.navicon:after {
    top: -0.625rem;
}

.menu-wrapper {
    float: right;
}

.menu-wrapper ul {}

.menu-wrapper ul li {
    display: inline-block;
}

.menu-wrapper ul li a {
    display: block;
    text-transform: uppercase;
    padding: 35px 15px 15px 15px;
    font-size: 15px;
    position: relative;
    transition: all 0.3s;
    color: #fff;
    font-weight: 500;
}

.menu-wrapper ul li a:hover {
    color: #fff;
}

.menu-wrapper ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #fff;
    bottom: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-top-left-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
}

.menu-wrapper ul li a:hover:before,
.menu-wrapper ul li.active a:before {
    height: 4px;
}

.heaser-fix.header-fixed {
    color: #000;
    background: rgba(255, 255, 255, 0.97);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.heaser-fix.header-fixed .menu-wrapper ul li a {
    color: #000;
}

.heaser-fix.header-fixed .stitchmax-logo a img {
    width: 280px;
}

.heaser-fix.header-fixed .menu-wrapper ul li a {
    padding: 20px 15px;
}

.heaser-fix.header-fixed .heard-login {
    padding: 11px 25px 0px 50px;
}

.heaser-fix.header-fixed .heard-login img {
    filter: brightness(0.3);
}

.heaser-fix.header-fixed .menu-wrapper ul li a:before {
    background: #5cacae;
}

.heaser-fix.header-fixed .stitchmax-logo {
    padding-top: 5px;
    padding-bottom: 5px;
}


.menu-dropdown-wrapper {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
    transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    top: 10px;
}

.menu-dropdown-wrapper ul {
    position: relative;
}

.otpdialogdiv {
    width: 400px;
}

.error_class {
    border: 1px solid red !important;
}

.error_class_blue {
    border: 1px solid #5cacae !important;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(252, 252, 253, 0.80);
}

.loader-wrapper img {
    position: absolute;
    width: 55px;
}

#loader-inner {
    position: relative;
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 3px solid #f97a7d;
    border-top-color: #964450;
    animation: spin 2s infinite linear;
}

.product-heading-main {
    padding: 10px 0 0 0;
    text-align: center;
}

.product-heading-main h3 {
    text-transform: capitalize;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 17px 0 20px 0;
    font-size: 32px;
}

.order-msg-wrapper {
    background: #fff;
    max-width: 660px;
    margin: 20px auto 50px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
    padding: 10px 0 30px 0;
}

.fa-check,
.fa-download,
.fa-spinner,
.fa-refresh {
    color: #00A65A;
}

.order-msg-img {
    text-align: center;
}

.order-discription h3 {
    font-size: 17px;
    text-align: center;
    color: #323232;
    border-bottom: 2px solid #f0f0f0;
    margin: 0 0 5px 0;
    padding: 0 20px 15px 20px;
}

.order-msg-img svg {
    width: 100px;
    display: block;
    margin: 20px auto 30px;
}


.heard-login:hover .menu-dropdown-wrapper {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0.99875);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0.99875);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0.99875);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0.99875);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0.99875);
}


.mbl-dropdown-open .menu-dropdown-wrapper {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 10, 0, 0, 1, 0.99875);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 10, 0, 1, 0.99875);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 10, 0, 1, 0.99875);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 10, 0, 1, 0.99875);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 10, 1, 0.99875);
    display: block;
}

.menu-dropdown-wrapper ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #e9363a;
    width: 225px;
    -webkit-box-shadow: -2px -2px 10px rgba(250, 250, 250, 0.4);
    -moz-box-shadow: -2px -2px 10px rgba(250, 250, 250, 0.4);
    box-shadow: -2px -2px 10px rgba(250, 250, 250, 0.4);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 5px 5px;
}

.menu-dropdown-wrapper ul li {
    width: 100%;
    /*border-bottom: 1px solid #de8c20;*/
    ;
}

.menu-dropdown-wrapper ul li a {
    display: block;
    color: #fff;
    padding: 7px;
    font-weight: 500;
    letter-spacing: 0.3px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-dropdown-wrapper ul li a:hover {
    color: #fff;
    background: #d83236;
}

.dropdown-arrow {
    -webkit-border-radius: solid transparent;
    -moz-border-radius: solid transparent;
    border: solid transparent;
    height: 0;
    width: 0;
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 0;
    border-bottom-color: #e9363a;
    border-width: 10px;
    left: auto;
    right: 35%;
}

.header-cart-main {
    position: relative;
}

.cart-counter {
    position: absolute;
    left: 28px;
    top: -5px;
    font-size: 11px;
    letter-spacing: 0.5px;
    background: #cf515b;
    color: #fff;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    z-index: 1;
}

.cart-counter:before {
    content: '';
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background: #71b4b4;
    opacity: 0;
    border-radius: 50%;
    transform-origin: 50% 50%;
    animation: ripple 2s ease-out infinite;
    z-index: 0;
}

.header-cart-main a {
    padding: 0 15px 0 5px !important;
}

.header-cart-main .header-cart-img {
    /*filter: brightness(1) brightness(10);*/
    display: none;
}

/*.heaser-fix.header-fixed .menu-wrapper ul li.header-cart-main .header-cart-img{
    filter: none;
}*/
.heaser-fix.header-fixed .header-cart-img-fix {
    display: none;
}

.heaser-fix.header-fixed .header-cart-img {
    display: inline-block;
}

.header-cart-main a:before {
    display: none;
}

img.header-cart-img,
img.header-cart-img-fix {
    width: 35px;
    position: relative;
}

@keyframes ripple {

    0%,
    35% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}


.header-cart-img.Animate {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-animation-name: hvr-icon-drop;
    animation-name: hvr-icon-drop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

@-webkit-keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%,
    100% {
        opacity: 1;
    }
}

@keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%,
    100% {
        opacity: 1;
    }
}



.heard-login {
    float: right;
    width: auto;
    padding: 25px 25px 15px 50px;
    margin-right: -15px;
    margin-left: 10px;
    position: relative;
    cursor: pointer;
}

.heard-login img {
    position: absolute;
    left: 0;
    top: 25px;
    width: 40px;
    height: 40px;
    transition: all 0.3s
}

.heard-login span {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.heard-login h6 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-overflow: ellipsis;
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
}

.heard-login i.carat-top {
    position: absolute;
    top: 50%;
    color: #fff;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
}

.heaser-fix.header-fixed .heard-login span {
    color: #000;
}

.heaser-fix.header-fixed .heard-login h6 {
    color: #5cacae;
}

.heaser-fix.header-fixed .heard-login img {
    top: 10px;
}

.heaser-fix.header-fixed .heard-login i.carat-top {
    color: #000;
}


.modl-comns {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    background: #fff;
    z-index: 100;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.3);
    transform: translate(90%, 0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.login-popup-open,
.signup-popup-open,
.forgot-popup-open {
    overflow: hidden;
}

.login-popup-open .login-modl-main {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.signup-popup-open .signup-modl-main {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.forgot-popup-open .forgot-modl-main {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.modl-header {
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}

.mdl-head-text {
    color: #60b7b9;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    padding: 0 0 0 20px;
    margin-bottom: 0;
}

.mdl-close {
    background: #e9363a;
    width: 65px;
    padding: 17px;
    height: 65px;
    cursor: pointer;
}

.mdl-close img {
    filter: invert(1);
}

.modl-inner {
    position: relative;
    height: calc(100vh - 65px);
    overflow: auto;
    padding: 0 0 0 0;
}

.modl-abs-cls {
    padding: 15px 20px 40px 20px;
    width: 100%;
    position: relative;
}

.lgn-inr-head {
    font-size: 20px;
    color: #323232;
    font-weight: 700;
    margin-bottom: 15px;
}

.lgn-inr-prgrf {
    font-size: 14px;
    color: #787878;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.6px;
}

.cust-form-group {
    position: relative;
    margin-bottom: 18px;
}

.cust-form-group label {
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.input-main {
    border-radius: 0;
    border-color: #dcdcdc;
    height: calc(2.75rem + 2px);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.input-main:focus {
    color: #495057;
    background-color: #fff;
    border-color: rgba(96, 183, 185, 0.6);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(96, 183, 185, 0.45);
}

.form-item {
    position: relative;
}

.formLabel {
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.35s;
    transform: translate(15px, -50%);
    opacity: 0.5;
    cursor: text;
}

.textareaLabel {
    top: 23px;
}

.formLabel.formTop {
    top: -10px;
    opacity: 1;
    transform: translate(12px, 0%);
    font-size: 13px;
    background: #fff;
    margin-bottom: 0;
    border-radius: 50px;
    overflow: hidden;
    padding: 0 2px;
    color: #888;
}

.form-style {
    height: calc(3rem + 0px);
}

.popup-full-button {}

.logn-sgup-button {
    border: 0;
    width: 100%;
    color: #fff;
    background: #60b7b9;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logn-sgup-button span {
    position: relative;
    z-index: 5;
}

.logn-sgup-button:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    z-index: 0;
    background: #537a82;
    right: 0;
    left: auto;
    bottom: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.logn-sgup-button:hover:before {
    bottom: 0;
    width: 100%;
    left: 0;
    right: auto;
}

.logn-sgup-button:focus {
    border-color: rgba(96, 183, 185, 0.6);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(96, 183, 185, 0.45);
}

.forgt-pass-link {
    width: 100%;
    color: #323232;
    font-size: 14px;
    text-align: right;
    font-weight: 600;
    cursor: pointer;
    margin: 15px 0 15px 0;
}

.popup-link-comns {
    left: 0;
    right: 0;
    position: absolute;
    /*    bottom: 15px;*/
    z-index: 5;
    text-align: center;
}

.popup-link-comns p {
    color: #60b7b9;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
    margin: 0;
    border: 0;
    background: transparent;
    padding: 0;
}

.popup-link-comns a {
    color: #60b7b9;
}

.fild-requid-str {
    color: #e93539;
    position: relative;
    top: -2px;
    font-style: normal;
    left: -3px;
}

.Referal-code {
    color: #ed6366;
    position: absolute;
    bottom: 11px;
    right: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.filter-src-backdroup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}



.home-sld-wrapper {
    overflow: hidden;
    position: relative;
}

.home-main-slider {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    z-index: 1;
}

.home-slider-item {
    position: relative;
}

.slid-ptn-image img {
    width: 100%;
}

.slider-top-part {}

.s-laptop-image {
    padding: 0 0;
}

.s-laptop-image img {
    width: 100%;
}

.top-content-main {
    color: #fff;
}

.s-top-content-head {
    text-align: center;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.s-top-content-inner {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.s-top-content-inr-prg {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 27px;
}

.button-csla {}

.round-button-main {
    background: #ce515b;
    border: 0;
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.5s;
}

.round-button-main span {
    position: relative;
    z-index: 1;
}

.round-button-main:hover {}

.round-button-main::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    z-index: 0;
    background: rgb(153, 201, 202);
    right: 0;
    left: auto;
    bottom: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*.round-button-main::after{
    content: '';
    position: absolute;
    background: #99c9ca;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    height: 0;
    transition: all 0.3s;
}*/

.round-button-main:hover::before {
    bottom: 0;
    width: 100%;
    left: 0;
    right: auto;
}

.home-main-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 3px;
}

.home-main-slider .slick-dots li button {
    background: #fff;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    margin: 0 auto;
    opacity: 0.7;
    border-radius: 50px;
    transition: all 0.3s;
}

.home-main-slider .slick-dots li button:before {
    display: none;
}

.home-main-slider .slick-dots li.slick-active button {
    width: 23px;
    opacity: 1;
}

.slid-image-height {
    object-fit: cover;
    object-position: bottom right;
}

.home-main-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 45%;
    right: 15px;
    width: auto;
}

.feature-row-wrapper {
    margin-top: -10px;
}

.section-head-wrapper {
    position: relative;
}

.sec-hed-line-1 {
    color: #595959;
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.sec-hed-pin-patn-row {
    position: relative;
}

.sec-hed-line-2 {
    color: #e9363a;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sec-hed-pin-inline {
    display: inline-block;
    background: url(../images/heading-bottom-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    padding: 0;
    margin: 0 0 15px 0;
}

.sec-hed-line-3 {
    color: #464646;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.why-stitchmax-iner {
    margin: 30px 0 30px 0;
}

.why-stitchmax-box-wrap {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s;
    top: 0;
    overflow: hidden;
    margin: 15px 0 30px 0;
}

.why-stitchmax-box-wrap:before {
    content: '';
    background: url(../images/background-ptn-cmn-2.png);
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    background-size: cover;
    height: 120px;
    opacity: 0.5;
    z-index: 1;
}

.why-stitchmax-box-wrap:hover {
    top: -5px;
    box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.10);

}

.why-stmax-icon img {
    width: 100px;
}

.why-stmax-discrption {
    padding: 25px 0 0 0;
}

.why-stmax-discrption h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #e9363a;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    position: relative;
}

.why-stmax-discrption h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #60b7b9;
    width: 50px;
    height: 2px;
}

.why-stmax-discrption p {
    color: #595959;
    line-height: 23px;
    margin-bottom: 0;
    min-height: 70px;
}


.advance-featur-video-row {
    background: url(../images/video-backgraound-ptn.png) #e9363a;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 50px;
}

.advance-featur-video-row .sec-hed-line-2,
.advance-featur-video-row .sec-hed-line-1,
.advance-featur-video-row .sec-hed-line-3 {
    color: #fff;
}

.advance-featur-video-row .sec-hed-pin-inline {
    background: url(../images/white-heading-bottom-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.featur-video-center {
    padding-left: 23px;
    padding-right: 23px;
}

.featur-video-thum {
    width: 120px;
    max-width: 120px;
    padding-left: 15px;
    padding-right: 15px;
}

.featur-video-thum ul {
    padding: 50% 0;
}

.featur-video-thum .tab-link {
    padding: 4px 4px;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.tab-hvr-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 172, 174, 0.85);
    transform: scale(0.4);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.tab-hvr-text h5 {
    margin: 0;
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 5px;
}

.featur-video-thum .tab-link:hover .tab-hvr-text,
.tab-link.current .tab-hvr-text {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.featur-video-thum .tab-link.current {
    background: #ff9711;
}

.tabactive-left:before,
.tabactive-right:before {
    content: '';
    position: absolute;
    width: 0;
    height: 8px;
    top: 50%;
    transition: all 0.2s;
}

.tabactive-left:before {
    left: 100%;
    background: url(../images/white-video-active-indicetor.png);
    background-size: cover;
}

.tabactive-right:before {
    right: 100%;
    background: url(../images/white-video-active-indicetor-1.png);
    background-size: cover;
}

.featur-video-thum .tab-link.current:before {
    width: 38px;
}

.cust-tab-pane {
    display: none;
    border: 2px dashed #fff;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    overflow: hidden;
}

.cust-tab-pane.current {
    display: block;
}


.aboutus-section-row {
    background: #f5f5f5;
    padding: 70px 0 50px 0;
}

.about-side-wrap {
    position: relative;
}

.about-side-wrap:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 80%;
    width: 7%;
    background: #f03d41;
}

.about-side-wrap:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 7%;
    width: 80%;
    background: #f03d41;
}

.abt-image-main {
    padding: 11% 6% 6% 11%;
    background: url(../images/dot-pattern-image.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 20px 15px;
}

.abot-content {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
}

.abot-content p {
    color: #595959;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 22px;
}

.border-btn a {
    display: inline-block;
    border: 2px solid #ed6366;
    color: #ed6366;
    font-weight: 600;
    padding: 10px 30px;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    transition: all 0.3s;
}

.border-btn a span {
    position: relative;
    z-index: 2;
}

.border-btn a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    z-index: 0;
    background: #ed6366;
    right: 0;
    left: auto;
    bottom: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.border-btn a:hover {
    color: #fff;
}

.border-btn a:hover::before {
    bottom: 0;
    width: 100%;
    left: 0;
    right: auto;
}

.our-prime-feature-row {
    background: url(../images/dot-pattern-image.png) #fff;
    padding: 55px 0 80px 0;
}

.our-prime-feature-row .sec-hed-line-2 {
    color: #1e1e1e;
}

.prime-feature-sld-wrap {
    padding: 15px 0 0 0;
}

.prime-feature-image {
    background: #fff;
    padding: 15px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 15px 15px;
    border-radius: 3px;
}

.prim-fetur-information {
    padding: 20px 0 0 0;
}

.prim-fetur-information h3 {
    position: relative;
    color: #323232;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
}

.prim-fetur-information h3:before {
    content: '';
    background: url(../images/prime-feature-needle-image.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 81px;
    height: 8px;
    background-size: cover;
    background-repeat: no-repeat;
}

.prim-fetur-information ul {}

.prim-fetur-information ul li {
    position: relative;
    padding: 0 0 15px 37px;
    color: #464646;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.list-ftr-needle {
    position: absolute;
    width: 30px;
    left: 0;
    top: 6px;
}

.prime-feature-slid-nav {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -40px;
}

.prime-feature-slid-nav ul li {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    color: #636363;
    padding: 0 15px;
    position: relative;
    border-right: 2px solid #b4b4b4;
    cursor: pointer;
    transition: all 0.3s;
}

.prime-feature-slid-nav ul li:last-child {
    border-right: 0;
}

.sld-img {
    width: 30px;
    margin: 0 5px;
    filter: grayscale(10);
    transition: all 0.3s;

}

.prime-feature-slid-nav ul li:hover {
    color: #60b7b9;
}

.prime-feature-slid-nav ul li:hover .sld-img {
    filter: none;
}


/*new css*/

/*alert css*/
.alert {
    background: white;
    width: 100%;
    display: flex;
    padding: 1rem;
    align-items: center;
    border-radius: .8rem;
    /*border: 2px solid;*/
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.04), 0px 12px 25px rgba(0, 0, 0, 0.07);
    -webkit-animation: transitionIn 200ms ease forwards;
    animation: transitionIn 200ms ease forwards;
    transition: all 200ms ease;
}

.alert-svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.alert__message {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.alert__close {
    /*width: 1.3rem;*/
    /*height: 1.3rem;*/
    /*line-height: 1.3rem;*/
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 0;
    right: 4%;
    cursor: pointer;
    border-radius: .4rem;
    font-size: 24px;
}

.alert__icon {
    margin-right: 1rem;
    width: 30px;
    height: 30px;
    -webkit-animation: fade 500ms linear forwards;
    animation: fade 500ms linear forwards;
}

.alert__icon-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-width: 4px;
    -webkit-animation: dash 1s ease forwards;
    animation: dash 1s ease forwards;
}

.alert__icon-path--type {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}

.alert--success {
    color: #ffffff;
    box-shadow: 2px 4px 4px 0px rgba(35, 35, 35, 0.25);
    background-color: #39D7B3;
}

.alert--warning {
    color: #ffffff;
    box-shadow: 2px 4px 4px 0px rgba(35, 35, 35, 0.25);
    background-color: #FFBA4B;
}

.alert--danger {
    color: #ffffff;
    box-shadow: 2px 4px 4px 0px rgba(35, 35, 35, 0.25);
    background-color: #FF4555;
}

@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.alert-wrapper {
    max-width: 400px;
    width: 100%;
    margin: auto;
    position: fixed;
    z-index: 99999;
    /*    right: 30px;*/
    right: 5px;
    top: 60px;
}

.alert-wrapper:before {
    content: '';
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*mobile-app-section*/
.mobile-app-row:after {
    content: '';
    background: url(../images/app-pattern-left.png);
    position: absolute;
    top: 0;
    width: 550px;
    background-size: cover;
    height: 300px;
    opacity: 0.2;
    z-index: 1;
}

.mobile-app-row:before {
    content: '';
    background: url(../images/app-pattern-right.png);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    background-size: 100% 100%;
    height: 160px;
    opacity: 0.2;
    z-index: 1;
    background-repeat: no-repeat;
}

.mobile-app-row {
    position: relative;
    background: url(data:image/png;base64,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) #f03d41;
}

.app-content ul li {
    position: relative;
    padding: 0 0 20px 40px;
    z-index: 2;
}

.app-content ul li .mbl-icon {
    position: absolute;
    width: 30px;
    left: 0;
    top: 0;
}

.app-content ul li .mbl-icon img {
    filter: brightness(100);
}

.app-content ul {
    padding-left: 25px;
    padding-right: 25px;
}

.app-content ul li h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.app-content ul li p {
    font-size: 14px;
    color: #f5f5f5;
    font-weight: 300;
    letter-spacing: 1px;
}

.app-image {
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.app-content {
    padding: 13% 0 6% 0px;
}

/*client-section*/
.client-section-row {
    background: #fff;
    padding: 55px 0 100px 0;
}

.client-slider {
    position: relative;
}

.client-image img {
    margin: 0 auto;
    border-radius: 100%;
    background-color: #60b7b9;
    padding: 5px;
}

.client-content h3 {
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 10px 0 5px 0;
}

.client-content span {
    font-size: 14px;
    color: #787878;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.client-content p {
    font-size: 14px;
    color: #464646;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin: 10px 0 0 0;
}

.client-ftr-inner {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    margin: 40px 0px 20px 0px;
}

.client-section-row .slick-slide {
    padding: 0 20px;
}

.client-feature-slid-nav {
    position: absolute;
    left: 0;
    bottom: -50px;
    right: 0;
    text-align: center;
}

.client-feature-slid-nav ul li {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    color: #636363;
    padding: 0 15px;
    position: relative;
    border-right: 2px solid #b4b4b4;
    cursor: pointer;
    transition: all 0.3s;
}

.client-feature-slid-nav ul li:last-child {
    border-right: 0;
}

.sld-img {
    width: 30px;
    margin: 0 5px;
    filter: grayscale(10);
    transition: all 0.3s;

}

.client-feature-slid-nav ul li:hover {
    color: #60b7b9;
}

.client-feature-slid-nav ul li:hover .sld-img {
    filter: none;
}

/*pricing section*/
.pricing-section-row {
    background: url(data:image/png;base64,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) #3c3c3c;
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
}

.pricing-section-row:after {
    content: '';
    background: url(../images/pricing-left-pattern.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    background-size: cover;
    height: 170px;
    opacity: 0.2;
    z-index: 1;
}

.pricing-section-row:before {
    content: '';
    background: url(../images/pricing-right-pattern.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    background-size: 100% 100%;
    height: 300px;
    opacity: 0.2;
    z-index: 1;
    background-repeat: no-repeat;
}

.pricing-section-row .section-head-wrapper {
    z-index: 2;
}

.pricing-section-row .sec-hed-line-2,
.pricing-section-row .sec-hed-line-1,
.pricing-section-row .sec-hed-line-3 {
    color: #fff;
}

.pricing-tab {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-tab .nav-tabs {
    border-bottom: none;
    text-align: center;
    background-color: #f03d41;
    padding: 5px;
    display: inline-flex;
    border-radius: 25px;
    margin: 20px 0 35px 0;
    position: relative;
}

.slder {
    display: inline-block;
    width: 30px;
    height: 41px;
    border-radius: 25px;
    background-color: #fff;
    position: absolute;
    z-index: 1;
    top: 5px;
    transition: all .25s linear;
}

.pricing-tab .nav-tabs .nav-item {
    margin-bottom: 0;
}

.pricing-tab .nav-tabs .nav-link {
    border: none;
    border-radius: 25px;
    padding: 10px 50px;
    color: #fff;
    font-weight: 600;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.pricing-tab .nav-tabs .nav-item.show .nav-link,
.pricing-tab .nav-tabs .nav-link.active {
    color: #f03d41;
    /*background-color: #fff;*/
}

.pricing-box .pricing-box-content {
    background-color: #fff;
    padding: 30px 25px 50px 25px;
    position: relative;
    z-index: 2;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pricing-box:hover .pricing-box-content {
    top: -5px;
}

.pricing-heading-inner {
    display: inline-block;
    background: url(../images/pricing-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    padding: 0;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
}

.pricing-rs {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pricing-box .pricing-box-content h3 {
    text-align: left;
    font-weight: 600;
    color: #323232;
    margin-bottom: 20px;
}

.pricing-box .pricing-rs h2 {
    text-align: center;
    font-weight: 700;
    color: #323232;
    display: contents;
}

.pricing-box .pricing-rs span {
    font-weight: 500;
    color: #787878;
}

.pricing-box .pricing-btn a {
    padding: 10px 30px;
    font-weight: 500;
    background-color: #5a5a5a;
    color: #fff;
    display: inline-block;
    transition: all 0.3s;
}

.paln-month-select {
    display: inline-block;
    margin: 0 10px 0 0;
}

.pricing-box .pricing-btn {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    padding: 0 25px;
    white-space: nowrap;
}

.pricing-box.pr-active .pricing-box-content h3 {
    color: #f03d41;
}

.pricing-box.pr-active .pricing-rs h2 {
    color: #f03d41;
}

.pricing-box.pr-active .pricing-rs span {
    color: #f03d41;
}

.pricing-box.pr-active .pricing-btn a {
    background-color: #65acac;
}

.pricing-box:hover .pricing-box-content h3 {
    color: #f03d41;
}

.pricing-box:hover .pricing-btn a {
    background-color: #65acac;
}

.pricing-box:hover .pricing-rs h2 {
    color: #f03d41;
}

.pricing-box:hover .pricing-rs span {
    color: #f03d41;
}

.pricing-box-content p {
    color: #5a5a5a;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

.pricing-box-content {
    text-align: left;
    position: relative;
}

.pricing-box-content ul li {
    padding: 0 0 10px 30px;
    position: relative;
    color: #323232;
    font-weight: 500;
}

.pricing-box-content ul li img {
    position: absolute;
    left: 0;
    top: 3px;
}

.pricing-box-content:before {
    content: '';
    background: url(../images/background-ptn-cmn-2.png);
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    background-size: cover;
    height: 120px;
    opacity: 0.5;
    z-index: 1;
}

.pricing-main-button img {
    width: 22px;
    position: absolute;
    left: 5px;
}

/*review section*/
.review-section-row {
    padding: 25px 0px;
    background-color: #fff;
}

.review-box {
    position: relative;
    padding-left: 70px;
    border-right: 1px solid #ddd;
}

.review-box img {
    width: 50px;
    position: absolute;
    top: 5px;
    left: 0;
}

.rw-content h3 {
    color: #1e1e1e;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
}

.rw-content p {
    color: #787878;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/*footer*/
.footer-section {
    background-color: #e9363a;
    padding: 35px 0 20px 0;
}

.footer-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #f4f4f4;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ftr-logo {
    padding: 50px 0;
}

.ftr-logo p {
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.ftr-quarter ul li {
    position: relative;
    padding: 0 0 15px 30px;
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
}

.ftr-quarter ul li img {
    width: 20px;
    filter: brightness(0) invert(1);
    position: absolute;
    left: 0;
}

.ftr-quarter ul li a {
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
}

.ftr-link ul li {
    padding: 0 0 15px 0;
}

.ftr-link ul li a {
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
}

.ftr-new p {
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.ftr-new form {
    display: flex;
    padding: 15px 0px;
}

.ftr-new form input {
    border: none;
    padding: 10px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin-right: 5px;
}

.ftr-new form button {
    border: none;
    width: 80px;
    background-color: #5cacae;
    color: #fff;
    padding: 10px 0;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.ftr-new button span {
    font-size: 14px;
}

.social-sec {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.social-sec ul {
    margin-left: 10px;
}

.social-sec ul li {
    display: inline-block;
}

.social-sec img {
    width: 17px;
    filter: brightness(0) invert(1);
}

.social-sec ul li a {
    background-color: #5cacae;
    border-radius: 100px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
}

.social-sec ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #537a82;
    z-index: 0;
    transition: all 0.3s;
}

.social-sec ul li a:hover:before {
    height: 40px;
}

.footer-end {
    background-color: #b91317;
    padding: 12px 0px;
}

.ftr-copyright p,
.ftr-copyright p a {
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/*========= pricing page css =========*/
.about-img {
    position: absolute;
    top: -5px;
    left: 55%;
    z-index: 10;
    transform: translate(50%, 0) rotate(-5deg);
    width: 200px;
}

.pricing-box {
    height: 100%;
}

.pricing-box-content {
    height: 100%;
}

.pricing-main-wrapper {
    padding-top: 40px;
    padding-bottom: 70px;
}

.pricing-main-wrapper .pricing-box-content {
    box-shadow: 0 10px 20px 0 rgba(58, 87, 135, .15);
    background-color: #fff;
}

.pricing-main-wrapper .pricing-box.pr-active .pricing-box-content {
    box-shadow: 0 10px 30px 0 rgba(58, 87, 135, .15);
    background-color: #fff;
}

.pricing-main-wrapper .pricing-box:hover .pricing-box-content {
    box-shadow: 0 10px 30px 0 rgba(58, 87, 135, .15);
    background-color: #fff;
}

.pricing-main-wrapper .pricing-box .pricing-main-button {
    padding-bottom: 30px;
    position: relative;
}

.pricing-main-wrapper .pricing-box .pricing-main-button a {
    padding: 10px 35px;
    font-weight: 500;
    background-color: #323232;
    color: #fff;
    transition: all 0.3s;
}

.pricing-main-wrapper .pricing-box.pr-active .pricing-main-button a {
    background-color: #e73339;
}

.pricing-main-wrapper .pricing-box:hover .pricing-main-button a {
    background-color: #e73339;
}

.pricing-main-wrapper .pricing-box-content ul ul {
    padding-top: 10px;
}

.review-main-wraper {
    padding: 25px 0px;
    border-top: 1px solid #eee;
}

.all-sec-image img {
    width: 100%;
    max-height: 155px;
    object-fit: cover;
    object-position: bottom center;
}

/*========= mycart page css =========*/
.cart-left-tbl {
    border: 0 solid #ddd;
    margin: 10px 0px;
    text-align: center;
}

.cart-wrapper {
    padding: 0px 0px;
}

.empty-img {
    display: inline-block;
    background: #fff;
    margin: 0 0 30px 0;
    padding: 10px 10px 20px 10px;
}

.tp-main-header {
    display: inline-block;
    padding: 20px 0;
}

.tp-main-header h3 {
    color: #e9363a;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.tp-main-header h1 {
    color: #e9363a;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.tp-main-header ol.breadcrumb {
    background-color: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
}

.tp-main-header ol li {}

.tp-main-header ol li h1 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    display: inline-block;
    color: #787878;
    text-transform: uppercase;
}

.tp-main-header ol li.active h1 {
    color: #000;
}

.cust-select-main {
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 25px 2px 13px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #E6E6E6;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-overflow: ellipsis;
    background: url(../images/select-dropdown-arrow.png) no-repeat right 5px center/13px 6px #fff;
}

.cust-select-main:focus {
    border-color: #ddd;
    outline: 0;
    box-shadow: none;
}

.focus-bdr:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px dotted #60b7b9;
}

.package .pkg-logo {
    display: inline-block;
    max-width: 120px;
}

.package .pkg-logo img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border: 2px solid #ddd;
    padding: 0;
    border-radius: 3px;
}

.package .pkg-content {
    margin-left: 15px;
    vertical-align: middle;
    display: inline-block;
}

/*.package .pkg-logo img{
    width: 100%;
    height: 100%;
}*/
.pkg-content h2 {
    color: #323232;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.pkg-content i {
    color: #ff2626;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.pkg-content span {
    color: #ff2626;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.cart-right-dtl {
    position: sticky;
    top: 70px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0 0 10px;
}

.cart-list-head h2 {
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 0;
    padding: 15px 10px;
    border-bottom: 1px solid #dee2e6;
}

.cart-right-dtl ul li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 5px 0px;
}

.cart-right-dtl ul li span:first-child {
    color: #5a5a5a;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.cart-right-dtl ul li span:last-child {
    color: #323232;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.cart-right-dtl .total-list ul li span:last-child {
    font-size: 18px;
}

.cart-right-dtl .cart-list-dtl {
    border-bottom: 1px solid #dee2e6;
    margin: 10px 10px 5px 10px;
}

.cart-right-dtl .total-list {
    border-bottom: 1px solid #dee2e6;
    margin: 5px 10px 10px 10px;
}

.cart-right-dtl .code-list {
    border-bottom: 1px solid #dee2e6;
    margin: 10px;
    padding-bottom: 10px;
    position: relative;
}

.cart-right-dtl .code-check {
    border-bottom: 1px solid #dee2e6;
    margin: 10px;
    padding: 10px 0px;
}

.cart-right-dtl .code-end-btn {
    margin: 10px;
}

.cart-right-dtl .code-radio-btn {
    margin: 10px;
}

.cart-right-dtl .code-list p {
    margin-bottom: 5px;
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 500;
}

.code-check .cust-check-bx p {
    color: #323232;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.code-check .cust-check-bx span {
    color: #787878;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
}

.cart-right-dtl .code-radio-btn ul li {
    display: inline-block;
    padding: 5px;
}

.apply-code {
    color: #5cacae;
    position: absolute;
    bottom: 23px;
    right: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.cart-left-tbl h2 {
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 5px;
}

.cart-left-tbl p {
    font-weight: 500;
}

.cart-left-tbl .col p {
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 0;
}

.res-head {
    display: none;
}

/*.col.my-cart-type {
    max-width: 350px;
}*/
.my-cart-price {
    max-width: 140px;
}

.col.my-cart-sub {
    max-width: 130px;
}

.col.my-cart-copi {
    max-width: 130px;
}

.my-cart-total {
    max-width: 140px;
}

.cart-left-tbl .tbl-head {
    padding: 15px 0px;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: 0;
}

.cart-left-tbl .tbl-body {
    border: 1px solid #dee2e6;
    padding: 15px 0;
    background: #fff;
    margin-bottom: 0;
}

.my-cart-type.text-left,
.my-cart-type {
    min-width: 283px;
}



.boxer {
    display: table;
    border-collapse: collapse;
    width: 100%;
    background: #fff;
}

/*.boxer .box-row {
  display: table-row;
}*/
.main-box-head .box-row {
    font-weight: 700;
}

.boxer .box {
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #e6e6e6;
    padding: 5px 5px;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-align: center;
}

.box-head .box {
    padding: 10px 5px;
}

.boxer .ebay {
    padding: 5px 1.5em;
}

.boxer .google {
    padding: 5px 1.5em;
}

.boxer .amazon {
    padding: 5px 1.5em;
}

.center {
    text-align: center;
}

.right {
    float: right;
}

.pln-imgs {
    width: 110px;
    display: inline-block;
}

.pln-imgs img {
    width: 100%;
}

.tbl-res-head {
    display: none;
}

.pln-renew-btn .logn-sgup-button {
    padding: 8px 0;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 3px;
}

.actn-col-btn li {
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}

.actn-col-btn li a {
    display: block;
    width: 40px;
    padding: 9px 9px;
    background: #f5f5f5;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.actn-col-btn li a img {
    transition: all 0.3s;
    opacity: 0.8;
}

.actn-col-btn li a:hover {
    background: #60b7b9;
}

.actn-col-btn li a:hover img {
    filter: grayscale(1) invert(1);
    opacity: 1;
}

.actn-col-btn li a.active-status {
    background-color: #008000;
}

.actn-col-btn li a.active-status:hover {
    background-color: #008000;
}

.actn-col-btn li a.active-status img {
    filter: grayscale(1) invert(1);
    opacity: 1;
}

.actn-col-btn li a.inactive-status {
    background-color: #ff0000;
}

.actn-col-btn li a.inactive-status:hover {
    background-color: #ff0000;
}

.actn-col-btn li a.inactive-status img {
    filter: grayscale(1) invert(1);
    opacity: 1;
}

.pln-text-resp {
    font-size: 14px;
    font-weight: 500;
    padding: 3px 0 2px 0;
    text-transform: uppercase;
}

.Subscription-col {
    width: 115px
}

.about-pg-head {
    padding: 10px 0 50px 0;
}

.about-pg-head .sec-hed-line-3 {
    font-size: 17px;
}

.about-pg-head p {
    font-size: 13px;
    letter-spacing: 0.3px;
    font-weight: 500;
    line-height: 23px;
    margin: 15px 0 0 0;
}

.inner-nidl-rmv .sec-hed-pin-inline {
    margin-bottom: 5px;
    background: none;
}

.inner-nidl-rmv .sec-hed-line-2 {
    margin-bottom: 5px;
}

.aboutpg-gray-row {
    background: #F5F5F5;
    padding: 40px 0 30px 0;
}

.aboutpg-gray-inner h5 {
    margin-bottom: 20px;
}

.aboutpg-gray-inner p {
    font-size: 13px;
    color: #787878;
    letter-spacing: 0.3px;
    line-height: 24px;
}

.white-clr-head .sec-hed-line-2,
.white-clr-head .sec-hed-line-1,
.white-clr-head .sec-hed-line-3 {
    color: #fff;
}

.our-team-row {
    position: relative;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦HwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==) #f03d41;
    overflow: hidden;
    padding-top: 50px;
}

.our-team-row:before {
    content: '';
    background: url(../images/app-pattern-right.png);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    background-size: 100% 100%;
    height: 160px;
    opacity: 0.2;
    z-index: 0;
}

.our-team-row:after {
    content: '';
    background: url(../images/app-pattern-left.png);
    position: absolute;
    top: 0;
    width: 550px;
    background-size: cover;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
}

.Our-team-slider {
    z-index: 9;
    padding-top: 30px;
    padding-bottom: 60px;
}

.Our-team-slider .slick-slide {
    padding: 0 10px;
}

.team-image-main {
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    cursor: pointer;
}

.team-image img {
    width: 100%;
    transition: all 0.5s;

}

.team-hvr-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.team-hvr-name h4 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    letter-spacing: 0.5px;
    transform: translate(-50%, -50%);
}

.team-image-main:hover .team-hvr-name {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.team-image-main:hover .team-image img {
    transform: scale(1.2);
}


.feature {
    margin-top: 10px;
}

.feature.map iframe {
    width: 100%;
    border: 0;
    /*filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");*/
    /* Firefox 10+ */
    /*filter: gray;*/
    /* IE6-9 */
    /*-webkit-filter: grayscale(99%);*/
    /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden;
    /* Fix for transition flickering */
}

.contactus-box-row {
    padding-top: 25px;
    padding-bottom: 25px;
}

.cnt-box-wrapper {
    background: #fff;
    border: 1px solid #E6E6E6;
    height: 100%;
    padding: 15px 20px;
}

.cnt-box-head {
    margin: 0 0 15px 0;
}

.cnt-box-head span {
    color: #ea373a;
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    top: 3px;
    text-transform: uppercase;
}

.cnt-icon {
    width: 32px;
}

.cnt-box-inner p {
    color: #595959;
    font-weight: 600;
    margin: 0 0 0 0;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.contactus-form-row {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 40px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
}

.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.btn--browse {
    border-left: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.btn--browse span {
    padding: 13px 15px;
    border: 1px solid #dcdcdc;
    background-color: #ccc;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #5A5A5A;

}

.f-input {
    height: 42px;
    background-color: white;
    border: 1px solid gray;
    width: 100%;
    max-width: 400px;
    float: left;
    padding: 0 14px;
}

.genrel-details-pnl .card {
    border-radius: 0;
    margin-bottom: 20px;
}

.genrel-details-pnl .card-header {
    background: #fff;
    padding: 0;
}

.genrel-details-pnl .card-header .btn-link {
    padding: 13px 15px;
    display: block;
    width: 100%;
    text-align: left;
    color: #323232;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.pnl-arrow-dwn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    background: #F5F5F5;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 36px;
    font-size: 26px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.genrel-details-pnl .card-header .btn-link i {
    transition: all 0.3s;
}

.genrel-details-pnl .card-header .btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.table-wrapper {
    background: #fff;
    overflow: auto;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.table-wrapper table {}

.table-wrapper table tr th {
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    color: #323232;
    letter-spacing: 0.2px;
    font-weight: 600;
    padding: 10px 10px;
}

.table-wrapper table tr td {
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
    color: #323232;
    padding: 5px 10px;
}

.table-wrapper table thead th {
    text-transform: capitalize;
    color: #262d47;
    padding: 10px 10px;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 13px;
}

.table-wrapper table tbody td {
    text-transform: uppercase;
    background: #fff;
    white-space: nowrap;
    border-top: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

table.dataTable.no-footer,
.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border: 0;
}

.tbl-image-col {
    text-align: center;
}

.tbl-image-col img {
    width: 100px;
}

.tbl-image-col p {
    margin: 2px 0 0 0;
    text-transform: uppercase;
    font-size: 13px;
    color: #323232;
}

.inner-rde-clr {
    color: #F23F45;
}

.table-wrapper .logn-sgup-button {
    padding: 8px 10px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 3px;
}

.gallery-box-wrapper {
    transition: all 0.3s;
    margin: 0 0 25px 0;
}

.gallery-box-img {
    overflow: hidden;
}

.gallery-box-img img {
    transition: all 0.3s;
}

.gallery-box-wrapper:hover .gallery-box-img img {
    transform: scale(1.1);
}

.gallery-box-wrapper:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.gallery-box-content {
    padding: 10px 10px 5px 10px;
}

.gallery-bx-head {
    color: #E93539;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}

.gallery-bx-parg {
    color: #787878;
    letter-spacing: 0.3px;
    font-size: 13px;
    font-weight: 500;
}


.cust-pagination {
    margin: 35px 0px 20px 0px;
}

.cust-pagination ul {
    display: block;
}

.cust-pagination li.page-item {
    margin: 0px 3px 6px;
    display: inline-block;
}

.cust-pagination .page-link {
    background-color: #fff;
    color: #333;
    border: 1px solid #fff;
    border-radius: 3px !important;
    font-size: 14px;
    font-weight: 600;
}

.cust-pagination .page-link i {
    font-size: 14px;
    font-weight: 500;
}

.cust-pagination .page-item.active .page-link {
    background-color: #60b7b9;
    color: #fff;
    border: 1px solid #60b7b9;
}

.cust-pagination .page-link:focus {
    /*    color: #fff;
    background-color: #60b7b9;*/
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}



/*Channel Partner page design*/
.chanel-sld-wrapper {
    margin-top: 80px;
    position: relative;
}

.chanel-sec-form {
    position: absolute;
    top: 0;
    right: 100px;
    width: 380px;
    background-color: #fff;
    border-top: 4px solid #5cacae;
    padding: 15px;
}

.form-head-text {
    text-align: center;
    padding-bottom: 15px;
    padding-top: 10px;
}

.form-head-text h5 {
    color: #60b7b9;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.form-head-text p {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.stitchmax-logo.partner-logo {
    float: none;
    padding-left: 0;
    padding-top: 10px;
}

.stitchmax-logo.partner-logo a img {
    margin: 0 auto;
    width: 150px;
}

.heaser-fix.header-fixed .stitchmax-logo.partner-logo a img {
    width: 150px;
    margin: 0 auto;
}

.benefit-desc-wrap {
    padding-top: 40px;
    padding-bottom: 70px;
}

.benefit-head-wrapper {
    padding: 30px 0;
    text-align: center;
}

.benefit-wrap-box {
    text-align: center;
}

.benefit-wrap-box .why-stmax-discrption h4 {
    color: #464646;
    font-weight: 600;
    font-size: 14px;
}

.benefit-wrap-box.why-stitchmax-box-wrap {
    margin: 0;
    height: 100%;
    padding: 25px 10px;
    background-color: #fff;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.05);
}

.benefit-wrap-box .why-stmax-icon {
    padding: 20px 0;
}

.benefit-wrap-box .why-stmax-icon img {
    width: auto;
}

.why-stitchmax-box-wrap.benefit-wrap-box:before {
    background: url(../images/benfit-patten.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 150px;
    opacity: 0.8;
}

.benefit-wrap-box .why-stmax-discrption p {
    color: #787878;
    line-height: 16px;
    margin-bottom: 0;
    min-height: auto;
    font-size: 13px;
}

.benefit-about-sectiom {
    padding: 50px 0;
    background-color: #fff;
}

.benefit-about-sectiom .about-head-content {
    text-align: center;
    padding-bottom: 50px;
}

.benefit-about-sectiom .about-right-sec .inner-content p {
    color: #787878;
    line-height: normal;
    font-size: 14px;
}

.benefit-about-sectiom .about-right-sec .inner-content li {
    position: relative;
    padding-left: 30px;
}

.benefit-about-sectiom .about-right-sec .inner-content li img {
    position: absolute;
    top: 3px;
    left: 0;
}

.benefit-check-sectiom {
    padding: 50px 0;
}

.benefit-check-sectiom .about-head-content {
    text-align: center;
    padding-bottom: 50px;
}

.benefit-ftr-sec .benefit-ftr-contetn p {
    position: relative;
    padding: 0 0 10px 0;
    color: #f4f4f4;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.benefit-social-icon {
    text-align: center;
}

.benefit-social-icon .social-sec {
    display: inline-block;
}

.benefit-social-icon span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    float: left;
    padding: 12px 10px 0 0;
}

.benefit-social-icon ul {
    float: right;
}

.benefit-ftr-sec {
    padding: 15px 0 0 0;
}

.benefit-social-icon .social-sec ul li a {
    height: 45px;
    width: 45px;
    line-height: 45px;
}

.benefit-social-icon .social-sec img {
    width: 20px;
}

.channel-video iframe {
    width: 100%;
    height: 100%;
}


.custom-popup-model .modal-dialog {
    max-width: 650px;
}

.custom-popup-model .modal-dialog .modal-body h3.popup-headin {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    padding: 15px;
    text-transform: uppercase;
    margin: 0;
    background-color: #577f87;
}

.custom-popup-model .modal-content {
    border: none;
    border-radius: 0;
}

.popup-left-pd {
    padding-left: 5px;
}

.popup-right-pd {
    padding-right: 5px;
}

.popup-cl-left {
    padding: 15px 15px 10px 15px;
}

.popup-cl-right {
    padding: 15px 15px 10px 15px;
}

.login-modal-close {
    position: absolute;
    right: -18px;
    top: -15px;
    opacity: 1 !important;
    background-color: #fff !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    z-index: 9;
    color: #577f87;
    font-size: 32px;
}

.switch label {
    cursor: pointer;
}

.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #818181;
    -webkit-border-radius: .9375rem;
    border-radius: .9375rem;
    margin-right: .625rem;
    vertical-align: middle;
    margin: 0 1rem;
    width: 2.5rem;
    height: .9375rem;
    -webkit-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}

.switch label input[type=checkbox]:checked+.lever {
    background-color: #577f87;
}

.switch label input[type=checkbox]:checked+.lever:after {
    background-color: #577f87;
    left: 1.5rem;
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #f1f1f1;
    -webkit-border-radius: 1.3125rem;
    border-radius: 1.3125rem;
    left: -.3125rem;
    top: -.1875rem;
    -webkit-box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, .4);
    box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, .4);
    width: 1.3125rem;
    height: 1.3125rem;
    -webkit-transition: left .3s ease, background .3s ease, -webkit-box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, -webkit-box-shadow 1s ease;
    -o-transition: left .3s ease, background .3s ease, box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, box-shadow 1s ease, -webkit-box-shadow 1s ease;
}


.custom-popup-model.modal.fade .modal-dialog {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}

.custom-popup-model.modal.show .modal-dialog {
    opacity: 1;
    transform: rotateY(0deg);
}

/*term and condition*/
.tc-main-box {
    background: #fff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
}

.tc-main {
    padding: 10px 0 0;
}

.tc-main h5 {
    color: #5cacae;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 10px;
}

.tc-main p {
    color: #595959;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 22px;
    list-style: disc;
    padding: 5px 0 5px 20px;
    margin: 0 0 0 0;
}

.box.pln-history-srno {
    max-width: 60px;
}

.bx-srno {
    max-width: 60px;
}

.box.pln-datecol {
    max-width: 110px;
}

.bx-date {
    max-width: 110px;
}

ul.actn-col-btn li span {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

.tp-main-header ol li,
.tp-main-header ol li a {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    display: inline-block;
    color: #787878;
    text-transform: uppercase;
}

.breadcrumb-item.active {
    color: #000;
}


/*20-1-20*/
.or-srno {
    max-width: 60px;
}

.inner-rde-clr {
    cursor: pointer;
}

.ordr-wdth {
    max-width: 140px;
}

.order-width .my-cart-tbl {
    border: 1px solid #e6e6e6;
}

.order-width .boxer .box {
    border: none;
    border-left: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.order-width .boxer .box:first-child {
    border-left: none;
}

.cnt-numbr li {
    position: relative;
    padding: 0 0 10px 30px;
    font-weight: 500;
    font-size: 14px;
}

.cnt-numbr li img {
    width: 18px;
    position: absolute;
    left: 0;
}

.partner-section-row {
    /*background: url(data:image/png;base64,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) #3c3c3c;*/
    /*background: url(../images/dot-pattern-image.png) #3c3c3c;*/
    background: #f5f5f5;
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
    -webkit-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
}

.section-head-wrapper {
    z-index: 2;
}

.partner-slider .slick-slider {
    z-index: 2;
}

.partner-section-row:after {
    content: '';
    background: url(../images/pricing-right-pattern.png);
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    background-size: cover;
    height: 220px;
    opacity: 0.2;
    z-index: 1;
}

.partner-section-row:before {
    content: '';
    background: url(../images/pricing-left-pattern.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    background-size: 100% 100%;
    height: 130px;
    opacity: 0.2;
    z-index: 1;
    background-repeat: no-repeat;
}

/*.partner-section-row .sec-hed-line-3{
  color: #fff;
}
.partner-section-row .sec-hed-line-2{
  color: #fff;
}*/
.partner-slider .slick-slide {
    margin: 0px 15px;
    text-align: center;
}

.chanel-partner-img {
    width: 100%;
    background: #fff;
    margin-top: 25px;
    padding: 10px 10px;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    text-align: center;
}

.chanel-partner-img img {
    margin: 0 auto;
}

.chnl-head {
    background: url(../images/heading-bottom-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    display: inline-block;
    padding: 0;
    margin: 0 0 20px 0;
}

.chnl-head .sec-hed-line-2 {
    margin-bottom: 25px;
}

.plan-wrapper .table-wrapper table tbody td:first-child {
    font-weight: 600;
}

.plan-wrapper th {
    font-size: 14px !important;
}

.plan-wrapper .pln-heading {
    color: #e9363a;
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.plan-rs {
    padding: 10px 0;
}

.plan-rs h2 {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    color: #323232;
    display: contents;
}

.plan-rs span {
    font-weight: 500;
    color: #787878;
}

.plan-wrapper tr th .plan-inr {
    font-weight: 600;
    color: #5a5a5a;
}

.compare-btn {
    padding-top: 60px;
}

.compare-btn a {
    color: #fff !important;
}

.home-main-slider .slick-next {
    z-index: 9;
    right: -45px;
    width: 45px;
    height: 45px;
    background: rgba(233, 54, 58, 0.9);
    border-radius: 50%;
    transition: all 0.2s;
}

.home-main-slider .slick-prev {
    left: -45px;
    z-index: 9;
    width: 45px;
    height: 45px;
    background: rgba(233, 54, 58, 0.9);
    border-radius: 50%;
    transition: all 0.2s;
}

.home-main-slider .slick-next:before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 33px;
    color: #fff;
    margin-right: -5px;
    opacity: 1;
}

.home-main-slider .slick-prev:before {
    content: '\f104';
    font-family: FontAwesome;
    font-size: 33px;
    color: #fff;
    margin-left: -5px;
    opacity: 1;
}

.home-main-slider:hover .slick-prev {
    left: 15px;
}

.home-main-slider:hover .slick-next {
    right: 15px;
}

/*6-2-20  feedback page css*/
.feedback-section-row {
    background: url(../images/dot-pattern-image.png) #fff 0 50%;
    padding-top: 40px;
    padding-bottom: 50px;
    position: relative;
    -webkit-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.15);
}

.feed-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.feed-box a img {
    width: 100%;
    object-fit: contain;
    height: 262px;
    transform: scale(1);
    transition: all .5s;
}

.feed-box:hover a img {
    transform: scale(1.1);
}

.feed-box a i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    color: #ffffff;
    background-color: rgba(92, 172, 174, 0.5);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    z-index: 9;
    transition: all .5s;
    cursor: pointer;
    text-align: center;
}

.load-more-btn {
    padding-top: 40px;
}

.feedback-section-row #advanced-feed {
    display: none;
    transition: all .5s;
}

.feedback-section-row.open #advanced-feed {
    display: flex;
}

.custom-popup-model .vdo-width {
    max-width: 800px;
}

.bx-action {
    min-width: 250px;
}

.pln-action-col {
    min-width: 250px;
}

.video-popup iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

/*10-2-20 download page css*/
.download-wrapper .list-ftr-needle {
    top: 0px;
}

.prim-fetur-information ul.fl-list li {
    padding: 0 0 10px 37px;
}

.prim-fetur-information ul.fl-list li ul.inerr-list li {
    padding: 0;
}

.inerr-list li h2 {
    margin: 0;
    line-height: 16px;
}

.inerr-list li h2 a {
    color: #5cacae;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
}

.inerr-list li p {
    padding: 0;
    color: #464646;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-wrapper .tc-main {
    border: 1px solid #ddd;
    border-radius: 16px;
    background-color: #fbf9f9;
    padding: 15px;
    margin: 10px 0 10px 0;
}

.download-wrapper .tc-main:last-child {
    border-bottom: none;
}



/*14-2-20 landing page css*/
.landng-aboutus-sec {
    padding: 0px 0 20px 0;
}

.landing-section-image {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #fff;
    position: relative;
}

.landing-section-image:before {
    content: '';
    background: url(../images/pricing-left-pattern.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    background-size: 100% 100%;
    height: 130px;
    opacity: 0.2;
    z-index: 1;
    background-repeat: no-repeat;
}

.landing-section-image:after {
    content: '';
    background: url(../images/pricing-right-pattern.png);
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    background-size: cover;
    height: 220px;
    opacity: 0.2;
    z-index: 1;
}

.landing-section-video {
    padding-top: 40px;
    padding-bottom: 80px;

}

.landing-section-image .slick-slide {
    margin: 0px 15px;
    text-align: center;
}

.landing-section-video .slick-slide {
    margin: 0px 15px;
    text-align: center;
}

.landng-ftr-inner {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
    padding: 10px 10px;
    margin: 10px 0px 10px 0px;
    background-color: #fff;
}

.landg-content {
    text-align: left;
}

.landing-image img {
    object-fit: contain;
    height: 230px;
    width: 100%;
}

.landing-video iframe {
    object-fit: contain;
    height: 230px;
    width: 100%;
    border: none;
}

.landg-content h3 {
    color: #e9363a;
    position: relative;
    padding: 0 0 10px 0;
    margin: 15px 0 5px 0;
}

.landg-content h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #60b7b9;
    width: 50px;
    height: 2px;
}

.landg-content p {
    color: #595959;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: normal;
}

.landing-sld {
    padding: 20px 0;
    z-index: 2;
}

.abot-content h3 {
    color: #e9363a;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0 0 10px 0;
    margin: 0 0 5px 0;
}

.abot-content h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #60b7b9;
    width: 50px;
    height: 2px;
}

.landng-aboutus-sec .abot-content p {
    line-height: normal;
}

.landing-section-image .client-feature-slid-nav {
    z-index: 2;
}

.ftb {
    font-weight: bold !important;
}

.ftn {
    font-weight: normal !important;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1370px;
    }
}

@media (min-width:1600px) {
    .container {
        max-width: 1460px;
    }
}

@media (max-width: 1290px) {
    .menu-wrapper ul li a {
        padding: 35px 8px 15px 8px;
    }

    /* Ashvin Malaviya (11-09-2025) */
    .stitchmax-logo a img {
        width: 150px;
    }

    .stitchmax-logo {
        padding: 30px 0px 0px 0px;
    }

    .heaser-fix.header-fixed .stitchmax-logo a img {
        width: 170px;
        padding: 12px 0 0;
    }

    .menu-wrapper ul li a {
        font-size: 13px;
    }

    /* Ashvin Malaviya (11-09-2025) */
}


@media (max-width: 1199px) {


    .menu-wrapper ul li a {
        padding: 35px 5px 15px 5px;
    }

    .header-cart-main a {
        padding: 0 5px 0 5px !important;
    }

    .heaser-fix.header-fixed .menu-wrapper ul li a {
        padding: 20px 7px;
    }

    .top-content-main {
        padding: 15px 0 0 0;
    }

    .button-csla {
        margin-top: 10px !important;
    }

    .featur-video-thum ul {
        padding: 0 0;
    }

    .prime-feature-slider {
        padding-bottom: 15px;
    }

    .prime-feature-slid-nav {
        bottom: -15px;
    }

    .social-sec {
        display: contents;
    }

    .social-sec ul {
        margin-left: 0;
    }

    .about-img {
        right: 60px;
    }

    .col.my-cart-type {
        max-width: 500px;
    }

    .col.my-cart-copi {
        max-width: 90px;
    }

    .package .pkg-content {
        margin-left: 0;
        display: block;
        margin-top: 5px;
    }

    .pkg-content h2 {
        margin-bottom: 5px !important;
    }

    .ftr-logo {
        max-width: 250px;
    }

    .my-cart-type.text-left,
    .my-cart-type {
        min-width: initial;
    }

    .bx-date {
        max-width: 80px;
    }

    .box.pln-datecol {
        max-width: 80px;
    }

}

@media (max-width: 991px) {

    /* Ashvin Malaviya (11-09-2025) */
    .stitchmax-logo {
        padding: 13px 5px 0px 5px;
    }

    .heaser-fix.header-fixed .stitchmax-logo a img {
        padding: 5px 5px;
    }

    /* Ashvin Malaviya (11-09-2025) */

    select,
    textarea,
    input {
        font-size: 16px !important;
    }

    .menu-wrapper {
        width: 300px;
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 99;
        left: -350px;
        visibility: hidden;
        /* -moz-opacity: 0;
        opacity: 0;*/
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .menu-wrapper.menu-open {
        left: 0;
        visibility: visible;
    }

    .menu-derk-bg {
        background: rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 5;
    }

    .menu-toggle {
        display: block;
        margin: 20px 0 0 0;
    }

    /*.header-cart-main .header-cart-img {
         filter: none !important; 
    }*/
    .heaser-fix.header-fixed .menu-toggle {
        margin: 15px 0 0 0;
    }

    .heard-login {
        padding: 15px 25px 0px 50px;
        margin-left: 20px;
    }

    .heard-login img {
        top: 15px;
    }

    .menu-wrapper ul li {
        border-bottom: 1px solid #f1f1f1;
        display: block;
    }

    .menu-wrapper ul li a,
    .heaser-fix.header-fixed .menu-wrapper ul li a {
        padding: 10px 15px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .header-wrapper .menu-wrapper ul li a {
        color: #000 !important;
        transition: all 0.3s;
    }

    .heaser-fix .menu-wrapper ul li a:before {
        background: transparent !important;
        content: none;
    }

    .heaser-fix.header-fixed .navicon-button {
        padding: 15px 0 6px 0;
    }

    .popup-link-comns {
        bottom: 0;
        position: relative;
    }

    .why-stmax-discrption p {
        min-height: auto;
    }

    .why-stitchmax-box-wrap {
        margin: 10px 0 15px 0;
    }

    .featur-video-center {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featur-video-thum {
        width: 100%;
        max-width: 100%;
    }

    .tabactive-left {
        margin-bottom: 35px;
    }

    .tabactive-right {
        margin-top: 35px;
    }

    .tabactive-left:before {
        top: 115%;
        transform: rotate(90deg);
        left: 30px;
        transition: none;
    }

    .tabactive-right:before {
        top: auto;
        transform: rotate(90deg);
        left: 30px;
        transition: none;
        bottom: 112%;
    }

    .prime-feature-slid-nav {
        transform: translate(-50%, 0);
    }

    .app-image {
        position: inherit;
    }

    .pricing-box {
        margin: 15px 0px;
    }

    .ftr-logo p {
        text-align: left;
    }

    .app-content ul {
        padding-left: 0;
        padding-right: 0;
    }

    .res-wdth {
        margin: auto;
    }

    .about-img {
        right: -30px;
    }

    .all-sec-image img {
        height: 105px;
        object-fit: cover;
        object-position: center left;
    }

    .boxer .box {
        border: 0;
        display: inline-block;
        flex-basis: auto;
    }

    .box-head .box {
        display: none;
    }

    .box-row-body .pln-history-srno {
        display: none;
    }

    .tbl-res-head {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .pln-imgs {
        width: 50%;
    }

    .box-row-body .pln-pcktype {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .box-row-body .pln-usrlnsdlt {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .box-row-body .pln-datecol {
        width: 33.33%;
    }

    .my-cart-tbl .box-row-body .pln-datecol {
        height: 80px;
    }

    .box-row-body .pln-renew-btn {
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .box-row-body .pln-action-col {
        width: 100%;
    }

    .pln-text-resp {
        font-size: 14px;
        font-weight: 600;
        padding: 8px 0 2px 0;
    }

    ul.actn-col-btn {
        padding: 0 0 5px 0;
    }

    .boxer .box-row {
        border-bottom: 20px solid whitesmoke;
    }

    .about-right-sec {
        padding-top: 30px;
    }

    .pln-imgs img {
        width: 150px;
        height: 150px;
        object-fit: contain;
    }

    /*20-1-20*/
    .order-width .boxer .box-row {
        border-bottom: none;
    }

    .order-width .boxer .box {
        border-left: none;
        text-align: left;
    }

    .order-width .boxer .inner-amt {
        flex-basis: 0;
    }

    .ordr-wdth {
        max-width: 50%;
    }

    .or-srno {
        max-width: 100%;
    }

    .order-width .tbl-res-head {
        font-weight: 600;
    }

    .order-width .boxer .pln-box {
        display: inline-block;
    }

    .order-width .boxer .tbl-res-head {
        display: inline-block;
        vertical-align: top;
        width: 50%;
    }

    .partner-section-row:after {
        width: 300px;
        height: 160px;
    }

    .partner-section-row:before {
        width: 250px;
        height: 120px;
    }

    .bx-date {
        max-width: 120px;
    }

    .box.pln-datecol {
        /*        max-width: 120px;*/
        max-width: 100%;
    }

    .header-cart-main .header-cart-img {
        display: inline-block !important;
    }

    .header-cart-main .header-cart-img-fix {
        display: none !important;
    }

    .stitchmax-logo a img {
        width: 300px !important;
    }
}

@media (max-width: 767px) {
    .menu-dropdown-wrapper {
        top: 55px;
    }

    .dropdown-arrow {
        right: 20px;
    }

    .heard-login i.carat-top {
        display: none;
    }

    .heard-login h6 {
        display: none;
    }

    .heard-login span {
        display: none;
    }

    .stitchmax-logo {
        padding-left: 0;
    }

    .heard-login {
        margin-left: 20px;
    }

    .s-top-content-head {
        font-size: 26px;
    }

    .s-top-content-inner {
        font-size: 16px;
    }

    .s-top-content-inr-prg {
        font-size: 13px;
        line-height: 20px;
    }

    .feature-row-wrapper {
        margin-top: 0;
    }

    .sec-hed-line-1 {
        font-size: 14px;
        margin: 0 0 5px 0;
    }

    .sec-hed-line-2 {
        font-size: 22px;
    }

    .sec-hed-line-3 {
        font-weight: 500;
        font-size: 14px;
    }

    .why-stmax-discrption h3 {
        font-size: 16px;
    }

    .featur-video-thum .tab-link {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 65px;
    }

    .tabactive-left:before,
    .tabactive-right:before {
        display: none;
    }

    .prime-feature-slid-nav {
        transform: none;
        width: 100%;
        text-align: center;
        left: 0;
    }

    .review-box {
        border-right: none;
        margin: 10px 0;
    }

    .ftr-logo {
        padding: 15px 0;
        max-width: 250px;
    }

    .mobile-app-row:after {
        width: 290px;
        height: 150px;
    }

    .pricing-box .pricing-box-content h3 {
        font-size: 22px;
    }

    .pricing-box .pricing-rs h2 {
        font-size: 24px;
    }

    .modl-comns {
        width: 300px;
    }

    .mdl-close {
        width: 50px;
        padding: 10px;
        height: 50px;
    }

    .modl-abs-cls {
        padding: 15px 15px 40px 15px;
    }

    .mdl-head-text {
        font-size: 18px;
    }

    .lgn-inr-prgrf {
        line-height: 18px;
        letter-spacing: 0.3px;
    }

    .lgn-inr-head {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .logn-sgup-button {
        font-size: 16px;
        padding: 10px 0;
    }

    .popup-link-comns p {
        font-size: 14px;
    }

    .round-button-main {
        font-size: 16px;
        padding: 10px 30px;
    }

    .pricing-tab .nav-tabs {
        margin: 15px 0 30px 0;
    }

    .about-img {
        display: none;
    }

    .cart-left-tbl .tbl-head {
        display: none;
    }

    .res-head {
        font-size: 14px;
        display: block;
        padding-bottom: 0;
        color: #989898 !important;
    }

    .cart-left-tbl .tbl-body {
        padding: 0 0;
        margin-bottom: 15px;
    }

    .cart-left-tbl {
        text-align: left;
        border-top: none;
    }

    .cart-left-tbl .tbl-body .col-md {
        padding-top: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid #f3f3f3;
        padding: 8px 15px;
    }

    .my-cart-copi,
    .my-cart-sub {
        max-width: 100% !important;
    }

    .package .pkg-content {
        margin-left: 15px;
        display: inline-block;
        margin-top: 0;
    }

    .tab-hvr-text h5 {
        font-size: 11px;
    }

    .pln-imgs {
        width: 100%;
    }

    .gallery-box-wrapper {
        margin: 0 0 10px 0;
    }

    .benefit-about-sectiom {
        padding: 20px 0;
    }

    .benefit-desc-wrap {
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .benefit-head-wrapper {
        padding: 20px 0 10px 0;
    }

    .benefit-check-sectiom .about-head-content {
        padding-bottom: 25px;
    }

    .benefit-check-sectiom {
        padding: 20px 0;
    }

    .custom-popup-model .modal-dialog {
        max-width: 500px;
    }

    .pln-imgs img {
        width: 110px;
        height: 110px;
    }

    /*.tc-main-box{
      padding: 10px;
    }*/
    .tc-main p {
        padding: 0;
    }

    .tc-main h5 {
        font-size: 16px;
    }

    .tp-main-header h3 {
        font-size: 24px;
    }

    .popup-right-pd {
        padding-right: 15px;
    }

    .popup-right-pd {
        padding-right: 15px;
    }

    .popup-left-pd {
        padding-left: 15px;
    }

    .popup-cl-right {
        padding: 0px 15px 10px 15px;
    }

    .partner-section-row:after {
        width: 230px;
        height: 120px;
    }

    .video-popup iframe {
        height: 100%;
    }

}

@media (max-width: 575px) {
    .stitchmax-logo a img {
        width: 200px !important;
        padding: 10px 0px !important;
    }

    .menu-wrapper {
        width: 250px;
    }

    .stitchmax-logo.partner-logo a img {
        width: 130px;
    }

    .pricing-tab .nav-tabs .nav-link {
        padding: 10px 35px;
    }

    .all-sec-image img {
        height: 100px;
    }

    .benefit-social-icon span {
        font-size: 14px;
        padding: 5px 5px 0 0;
    }

    .benefit-social-icon .social-sec ul li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }

    .benefit-social-icon .social-sec img {
        width: 16px;
    }

    .custom-popup-model .modal-dialog {
        max-width: 100%;
    }

    .login-modal-close {
        right: 0px;
        top: 6px;
        background-color: transparent !important;
        color: #fff;
        font-size: 32px;
    }

    .plan-wrapper .table-wrapper table tbody td {
        white-space: normal;
    }
}


.ref-list {
    /*    text-align: right;*/
    padding: 5px;
}

.ref-list span {
    color: #F23F45;
    font-weight: 700;
    font-size: 15px;
}

.ref-list span.txt {
    color: #555;
    font-weight: 500;
    font-size: 16px;
}

.dotsul ul {
    list-style-type: disc;
    padding-left: 20px;
}

.dotsul ul li {
    padding: 0 !important;
}

/*------------------------------------------sb-instagram.min.css Start*/

#sb_instagram,
#sb_instagram.sbi_fixed_height {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

#sb_instagram {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box
}

#sb_instagram:after {
    content: "";
    display: table;
    clear: both
}

#sb_instagram.sbi_fixed_height {
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box
}

#sb_instagram #sbi_images {
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#sb_instagram #sbi_images .sbi_item {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    padding: inherit !important;
    margin: 0 !important;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#sb_instagram.sbi_col_1 #sbi_images .sbi_item {
    width: 100%
}

#sb_instagram.sbi_col_2 #sbi_images .sbi_item {
    width: 50%
}

#sb_instagram.sbi_col_3 #sbi_images .sbi_item {
    width: 33.33%
}

#sb_instagram.sbi_col_4 #sbi_images .sbi_item {
    width: 25%
}

#sb_instagram.sbi_col_5 #sbi_images .sbi_item {
    width: 20%
}

#sb_instagram.sbi_col_6 #sbi_images .sbi_item {
    width: 16.66%
}

#sb_instagram.sbi_col_7 #sbi_images .sbi_item {
    width: 14.28%
}

#sb_instagram.sbi_col_8 #sbi_images .sbi_item {
    width: 12.5%
}

#sb_instagram.sbi_col_9 #sbi_images .sbi_item {
    width: 11.11%
}

#sb_instagram.sbi_col_10 #sbi_images .sbi_item {
    width: 10%
}

#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images .sbi_item {
    width: 100%
}

#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images .sbi_item {
    width: 50%
}

#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images .sbi_item {
    width: 33.33%
}

#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images .sbi_item {
    width: 25%
}

#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images .sbi_item {
    width: 20%
}

#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images .sbi_item {
    width: 16.66%
}

#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images .sbi_item {
    width: 14.28%
}

#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images .sbi_item {
    width: 12.5%
}

#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images .sbi_item {
    width: 11.11%
}

#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images .sbi_item {
    width: 10%
}

#sb_instagram .sbi_photo_wrap {
    position: relative
}

#sb_instagram .sbi_photo {
    display: block;
    text-decoration: none
}

#sb_instagram .sbi_photo img {
    width: 100%;
    height: auto
}

#sb_instagram a,
#sb_instagram a:active,
#sb_instagram a:focus,
#sb_instagram a:hover {
    outline: 0
}

#sb_instagram img {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    opacity: 1 !important
}

#sb_instagram .sbi_link {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.1
}

#sb_instagram .sbi_link a {
    padding: 0 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1
}

#sb_instagram .sbi_link .sbi_lightbox_link {
    padding-bottom: 5px
}

#sb_instagram .sbi_link a:focus,
#sb_instagram .sbi_link a:hover {
    text-decoration: underline
}

#sb_instagram .sbi_photo_wrap:focus .sbi_link,
#sb_instagram .sbi_photo_wrap:hover .sbi_link {
    display: block
}

#sb_instagram .sbi_type_video .sbi_playbtn {
    display: block !important;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -19px;
    padding: 0;
    font-size: 48px;
    color: #fff;
    color: rgba(255, 255, 255, .9);
    font-style: normal !important;
    text-shadow: 0 0 8px rgba(0, 0, 0, .8)
}

#sb_instagram .sbi_loader {
    position: relative;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: 10px 0 10px -8px;
    background: url(../img/loader.png) no-repeat
}

#sb_instagram .sb_instagram_header {
    float: left;
    clear: both;
    margin: 0 0 15px;
    padding: 0;
    line-height: 1.2;
    width: 100%
}

#sb_instagram .sb_instagram_header a {
    float: left;
    display: block;
    min-width: 100%\9;
    text-decoration: none
}

#sb_instagram .sbi_header_img {
    float: left;
    position: relative;
    width: 50px;
    margin: 0 0 0 -100% !important;
    overflow: hidden;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

#sb_instagram .sbi_header_img img {
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

#sb_instagram .sbi_header_img_hover {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, .75);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    border-radius: 40px;
    transition: opacity .2s
}

#sb_instagram .sb_instagram_header a:focus .sbi_header_img_hover,
#sb_instagram .sb_instagram_header a:hover .sbi_header_img_hover {
    opacity: 1
}

#sb_instagram .sbi_header_img_hover i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    overflow: hidden;
    background: url(../img/small-logo.png) no-repeat
}

#sb_instagram .sbi_header_text {
    float: left;
    width: 100%;
    padding-top: 5px
}

#sb_instagram .sbi_header_text .sbi_bio,
#sb_instagram .sbi_header_text h3 {
    float: left;
    clear: both;
    width: auto;
    margin: 0 0 0 60px !important;
    padding: 0 !important
}

#sb_instagram #sbi_load,
#sb_instagram .sb_instagram_error {
    width: 100%;
    text-align: center
}

#sb_instagram .sb_instagram_header h3 {
    font-size: 16px;
    line-height: 1.3
}

#sb_instagram .sb_instagram_header p {
    font-size: 13px;
    line-height: 1.3
}

#sb_instagram .sb_instagram_header h3.sbi_no_bio {
    padding-top: 9px !important
}

#sb_instagram .sbi_header_text img.emoji {
    margin-right: 3px !important
}

#sb_instagram #sbi_load {
    float: left;
    clear: both
}

#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    padding: 7px 14px;
    margin: 5px auto 0;
    background: #5cacae;
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#sb_instagram .sbi_follow_btn {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    text-align: center
}

#sb_instagram .sbi_follow_btn.sbi_top {
    display: block;
    margin-bottom: 5px
}

#sb_instagram .sbi_follow_btn a {
    background: #cf515b;
    color: #fff
}

#sb_instagram #sbi_load .sbi_load_btn:focus,
#sb_instagram #sbi_load .sbi_load_btn:hover,
#sb_instagram .sbi_follow_btn a:focus,
#sb_instagram .sbi_follow_btn a:hover {
    filter: alpha(opacity=85);
    opacity: .85
}

#sb_instagram #sbi_load .fa,
#sb_instagram .sbi_follow_btn .fa {
    margin-bottom: -1px;
    margin-right: 7px;
    font-size: 15px
}

#sb_instagram #sbi_load .sbi_follow_btn {
    margin-left: 5px
}

#sbi_mod_error {
    display: none;
    border: 1px solid #ddd;
    background: #eee;
    color: #333;
    margin: 0;
    padding: 10px 15px;
    font-size: 13px;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

#sbi_mod_error p {
    padding: 5px 0 !important;
    margin: 0 !important;
    line-height: 1.3 !important
}

#sbi_mod_error ol,
#sbi_mod_error ul {
    padding: 5px 0 5px 20px !important;
    margin: 0 !important
}

#sbi_mod_error li {
    padding: 1px 0 !important;
    margin: 0 !important
}

#sbi_mod_error span {
    font-size: 12px
}

#sb_instagram.sbi_medium .sbi_playbtn {
    font-size: 23px;
    margin-top: -12px;
    margin-left: -9px
}

#sb_instagram.sbi_small .sbi_playbtn {
    font-size: 18px;
    margin-top: -9px;
    margin-left: -7px
}

@media all and (max-width:640px) {

    #sb_instagram.sbi_col_3 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_4 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_5 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_6 #sbi_images .sbi_item {
        width: 50%
    }

    #sb_instagram.sbi_col_10 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_7 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_9 #sbi_images .sbi_item {
        width: 25%
    }

    #sb_instagram.sbi_width_resp {
        width: 100% !important
    }
}

@media all and (max-width:480px) {

    #sb_instagram.sbi_col_10 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_3 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_4 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_5 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_6 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_7 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_9 #sbi_images .sbi_item {
        width: 100%
    }
}

/*------------------------------------------sb-instagram.min.css End*/


/*Ashvin Gallery Page Css start (14-10-22)*/

.gall-wrapper .nav-tabs {
    margin-bottom: 20px;
    border: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gall-wrapper .nav-tabs li a {
    background-color: #5cacae;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.gall-wrapper .nav-tabs li a.active {
    background-color: #e9363a;
    color: #fff;
}

.gall-wrapper .nav-tabs li:first-child a {
    border-radius: 8px 0px 0px 8px;
}

.gall-wrapper .nav-tabs li:last-child a {
    border-radius: 0px 8px 8px 0px;
}


.addmapsec {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
    padding: 40px 0 40px 0;
}


.addmapsec .addresstitle {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    color: #e9363a;
    text-align: center;
}

.addmapsec .sec-hed-line-2 {
    color: #e9363a !important;
    font-size: 25px;
}

.addmapsec .sec-hed-pin-patn-row {
    text-align: center;
}

.addmapsec .cnt-box-wrapper {
    margin-bottom: 20px;
}

.addmapsec .cnt-icon {
    width: 22px;
}

.addmapsec .sec-hed-pin-inline {
    margin-bottom: 20px;
}

.addmapsec .cnt-box-wrapper:last-child {
    margin-bottom: 0px;
}

.addmapinner {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    padding: 0px 20px 45px;
    position: relative;
}

.addmapinner::after {
    content: "";
    border-bottom: 3px solid #5cacae;
    width: 80%;
    position: absolute;
    bottom: 0px;
    left: 10%;
    right: 10%;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #ea373a;
}

.addmapinner:last-child::after {
    border-bottom: none;
    content: "";
}

.addmapinner:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/*Ashvin Gallery Page Css End (14-10-22)*/