@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

:root {
    --main-color: #5092dd;
    --bg-color: #ffffff;
    --brand: #8CB7F5;
    --body: #E7E7E7;
    --heading: #000000;
    --red: #FF0000;
    --red-light: #FFE3E3;
    --white: #FFFFFF;
    --black: #263238;
    --black-2: #1C1C1C;
    --gray: #717171;
    --gray-1: #8B96A5;
    --orange: #FF9017;
    --green: #249B3E;
    --blueviolet: #795cc9;
    --antiquewhite: #FCD980;
}

.bg-area {
    width: 100%;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    color: var(--black-6);
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
}

body {
    background-color: var(--body);
}

.container {
    max-width: 95%;
    margin: 0 auto;
}


/* common btn start  */

.common-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    line-height: 28px;
    border-radius: 8px;
    background-color: var(--main-color);
    outline: none;
    border: none;
    padding: 8px 15px;
    transition: all linear .2s;
}

.common-btn:hover {
    background-color: var(--blueviolet);
}


/* common btn end  */

p.text {
    font-weight: 600;
    color: var(--black-2);
    font-size: 18px;
    line-height: 33px;
    text-align: justify;
    margin: 30px 0;
}


/* ====================== common css start ====================== */


/* ========== common-heading start ========== */

.common-heading {
    color: var(--heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    margin: 20px 0;
}


/* ========== common-heading end ========== */


/* ========== section-heading start ========== */

.section-heading {
    font-size: 45px;
    font-weight: 600;
    color: var(--heading);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all linear .2s;
}

.section-heading:hover {
    color: var(--main-color);
}


/* ========== section-heading end ========== */


/* ========== heading start ========== */

.heading-2 {
    width: 100%;
    text-align: start;
    margin: 40px 0;
}

.heading-2 h2 {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    color: var(--heading);
    cursor: pointer;
    position: relative;
    transition: all linear .2s
}

.heading-2 h2:hover {
    color: var(--green);
}

.heading-2 h2::before {
    content: '';
    position: absolute;
    left: 0%;
    bottom: -16px;
    height: 3px;
    width: 150px;
    background-color: var(--green);
}

.heading-2 p {
    color: var(--gray-1);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 10px;
}


/* ========== heading end ========== */


/* ========== common icon start ========== */

.social-icons li a i,
.social-icons i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 0 8px var(--gray-1);
    transition: all linear .3s;
}

.social-icons li {
    margin-top: 0;
    transition: all linear .2s;
}

.social-icons li:hover {
    margin-top: -8px;
}

.social-icons li a i:hover,
.social-icons i:hover {
    box-shadow: 3px -3px var(--light-gray);
}

.fa-facebook-f {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #00acee;
    color: white;
}

.fa-linkedin-in {
    background: #0072b1;
    color: white;
}

.fa-behance {
    background: #053eff;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: #fff;
}

.instagram-bg {
    background: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}


/* ========== common icon end ========== */


/* ========== common slide start ======== */

.slick-dots li {
    width: 10px;
}

.slick-dots li button:before {
    width: 10px;
    height: 3px;
    background: var(--main-color);
    content: '';
    margin: 7px 0;
}

.slick-prev,
.slick-next {
    display: none;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev {
    left: 25px;
    background: red;
    display: none;
}

.slick-next {
    right: 28px;
    background: red;
}


/* ========== common slide end ========== */


/* =================== common css end ====================== */


/* ============= all page common section start ================ */


/* ======= build section start ======= */

.build-area {
    margin-bottom: 30px;
}

.build-area .container .build-content {
    padding: 30px 0;
}

.build-area .container .build-content h2 {
    font-size: 45px;
    font-weight: 500;
    color: var(--heading);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}

.build-area .container .build-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-2);
    text-align: center;
}

.build-area .container .build-content a button {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-2);
    background-color: var(--antiquewhite);
    padding: 8px 15px;
    border-radius: 25px;
    outline: none;
    border: none;
    margin: auto;
    transition: all linear .2s;
}

.build-area .container .build-content a button:hover {
    color: var(--white);
    background-color: var(--blueviolet);
}


/* ======= build section end ======= */


/* ============= all page common section end ================ */


/* =================== home page start ====================== */


/* ======= header section start ======= */

.header-top-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--body);
    z-index: 100;
}

.header-top-area .header-top {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    /* padding: 15px 0; */
}

.header-top-area .header-top .header-logo {
    height: 170px;
}

.header-top-area .header-top .header-logo img {
    width: auto;
    height: 100%;
}

.header-top-area .header-top .header-search {
    flex-basis: 40%;
    height: 50px;
    margin: 0 15px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.header-top-area .header-top .header-search input {
    width: 100%;
    height: 100%;
    font-size: 14px;
    border: 1.5px solid var(--main-color);
    border-radius: 4px;
    outline: none;
    padding: 0 35px 0 10px;
}

.header-top-area .header-top .header-search input:focus {
    border-color: var(--blueviolet);
}

.header-top-area .header-top .search-icon i {
    position: absolute;
    top: 35%;
    right: 0%;
    color: var(--main-color);
    padding: 0 15px;
}

.header-top-area .header-top .header-right {
    display: flex;
    justify-content: space-between;
}

.header-top-area .header-top .header-right .icon-cards {
    margin-left: 18px;
    text-align: center;
    align-items: center;
}

.header-top-area .header-top .header-right .icon-cards .header-right-icon i {
    color: var(--main-color);
    font-size: 25px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.header-top-area .header-top .header-right .icon-cards .header-right-icon i:hover {
    color: var(--gray);
}

.header-top-area .header-top .header-right .icon-cards .header-right-content a h3 {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 0;
}


/* navber section start  */

.teach-top-area {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 2px var(--shadow);
    z-index: 100;
}

.teach-top-area .navber {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 56px;
}

.teach-top-area .navber ul {
    display: flex;
}

.teach-top-area .navber ul li {
    margin-right: 15px;
}

.teach-top-area .navber select {
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
}

.teach-top-area .navber select:hover {
    color: var(--main-color);
}


/* drop-down start  */

.teach-top-area .navber ul li,
.teach-top-area .navber ul li a {
    color: var(--black-2);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    transition: all linear .3s;
}

.teach-top-area .navber ul li a:hover {
    color: var(--main-color);
}

header .navber ul li:focus-within>ul,
header .navber ul li:hover>ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: var(--black-3);
    cursor: pointer;
    display: none;
}


/* drop-down end */


/* mb top start  */

.mb-bottom-tab-area {
    display: none;
}

.mb-header-tab {
    display: flex;
    justify-content: space-between;
}

.mb-header-tab label {
    margin-bottom: 0px;
}

.mb-header-tab i {
    color: var(--gray);
    font-size: 16px;
    line-height: 50px;
    padding: 0 12px;
}

.mb-header-tab .mb-header-logo {
    width: auto;
    height: 90px;
}

.mb-header-tab .mb-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* search start */

.mbsearch {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
    transition: all linear .2s;
}

.mbsearch i {
    line-height: 30px;
    cursor: pointer;
}

.mbsearch input {
    font-size: 12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--main-color);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    outline: none;
    padding: 0 10px;
    transition: all linear .2s;
}

.mbsearch input:focus {
    border-color: var(--blueviolet);
}

.mbsearch.active {
    width: 300px;
    height: 30px;
    background-color: var(--white);
    justify-content: end;
}

.mbsearch.active i {
    width: 30px;
    height: 30px;
    font-size: 11px;
    line-height: 30px;
    background-color: var(--blueviolet);
    color: var(--white);
    padding: 0 10px;
}


/* mb top end  */


/* mb bottom start  */

.mb-bottom-tab a {
    color: var(--gray);
    font-size: 20px;
    text-align: center;
}

.mb-bottom-tab h5 {
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    margin-bottom: 0;
}


/* mb bottom end  */


/*------- header section end ------- */


/* ======= new-slide section start ======= */

.new-slide-area {
    margin-top: 170px;
}

.new-slide-area .container {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
}

.new-slide-area .container .all-product {
    padding: 10px 0;
}

.new-slide-area .container .all-product ul li {
    border: 1px solid var(--green);
    padding: 4px;
    margin: 2px 0;
    border-radius: 4px;
}

.new-slide-area .container .all-product ul li:hover {
    background-color: var(--brand);
    font-weight: 500;
}

.new-slide-area .container .all-product ul li a {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
}

.new-slide-area .container .all-product ul li:hover a {
    font-weight: 500;
}

.new-slide-area .container .carousel-inner .carousel-item {
    padding: 10px 0px;
    border-radius: 8px;
}

.new-slide-area .container .carousel-inner .carousel-item img {
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.new-slide-area .container .carousel-caption {
    left: 6%;
    top: 10%;
    width: 40%;
    color: var(--white);
    text-align: start;
}

.new-slide-area .container .carousel-caption h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: var(--black-2);
    margin-bottom: 20px;
}

.new-slide-area .container .carousel-caption span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: var(--black-2);
}

.new-slide-area .container .carousel-caption button {
    border: 0;
    outline: none;
    background-color: var(--white);
    border-radius: 4px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    text-transform: capitalize;
    transition: .2s;
}

.new-slide-area .container .carousel-caption button:hover {
    color: var(--white);
    background-color: var(--main-color);
}


/* ======= new-slide section end ======= */


/* ====== deals section start  ======== */

.deals-area .container {
    background-color: var(--bg-color);
    border-radius: 4px;
    box-shadow: 0 0 2px var(--gray-1);
}

.deals-area .container .deals-wrapper {
    margin-top: 50px;
    padding: 10px 0;
}

.deals-area .container .counter-wrapper {
    padding: 20px 10px;
}

.deals-area .container .counter-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-2);
    margin-bottom: 0;
}

.deals-area .container .counter-wrapper p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 400;
}

.deals-area .container .counter-wrapper #countdown ul {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.deals-area .container .counter-wrapper #countdown ul li {
    background-color: var(--gray);
    color: var(--white);
    width: 56px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 10px 0;
    text-transform: capitalize;
}

.deals-area .container .counter-wrapper #countdown ul li span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.deals-area .container .counter-wrapper button {
    padding: 5px 10px;
}

.deals-area .container .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.deals-area .container .items .item {
    width: 155px;
    height: 235px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 1px 1px 4px var(--gray-1);
    padding: 10px;
    margin: 5px;
}

.deals-area .container .items .item:hover {
    box-shadow: 1px 2px 7px var(--gray-1);
}

.deals-area .container .item .deals-img {
    width: 100%;
    height: 140px;
    box-shadow: 0 0 1px var(--gray-1);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.deals-area .container .item .deals-img img {
    width: 100%;
    height: 100%;
}

.deals-area .container .item h2 {
    display: inline-block;
    color: var(--heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    margin-top: 10px;
    transition: all linear .2s;
}

.deals-area .container .item h2:hover {
    color: var(--main-color);
}

.deals-area .container .item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--red);
    background-color: var(--red-light);
    padding: 6px 12px;
    border-radius: 20px;
}


/* ====== deals section end  ======== */


/* ====== gadget section start  ======== */

.gadget-area .container {
    margin-top: 50px;
    border-radius: 4px;
    padding: 0;
    background-color: var(--bg-color);
}

.gadget-area .container .consumer-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-2);
    width: 80%;
    padding: 12px;
}

.gadget-area .container .consumer-wrapper .consumer-img {
    width: 100%;
    height: 261px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0 1px var(--black-2);
}

.gadget-area .container .consumer-wrapper .consumer-img img {
    width: 100%;
    height: 100%;
}

.gadget-area .container .consumer-wrapper .consumer-content button {
    margin-left: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 0;
    outline: none;
    background-color: var(--white);
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: .3s;
}

.gadget-area .container .consumer-wrapper .consumer-content button:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.gadget-area .container .consumer-wrapper {
    position: relative;
}

.gadget-area .container .consumer-wrapper .consumer-content {
    position: absolute;
    top: 0;
    left: 0;
}

.gadget-area .container .items-wrapper {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    padding: 10px;
}

.gadget-area .container .items-wrapper .items {
    width: 250px;
    height: 140px;
    border: 1px solid var(--body);
    padding: 10px;
}

.gadget-area .container .items-wrapper .items h5 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 0;
    text-transform: capitalize;
    color: var(--black);
    transition: all linear .2s;
}

.gadget-area .container .items-wrapper .items h5:hover {
    color: var(--main-color);
}

.gadget-area .container .items-wrapper .items .price {
    display: flex;
    justify-content: space-between;
}

.gadget-area .container .items-wrapper .items .price p {
    color: var(--gray-1);
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
}

.gadget-area .container .items-wrapper .items .price img {
    width: 82px;
    height: 82px;
}


/* ====== gadget section end  ======== */


/* ====== new-arrival section end  ======== */

.new-arrival-area .container {
    border-radius: 4px;
    padding: 0;
}

.new-arrival-area .container .text-buttton h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-2);
    width: 80%;
    padding: 12px;
    text-transform: capitalize;
}

.new-arrival-area .container .new-arrival {
    background-color: var(--bg-color);
}

.new-arrival-area .container .new-arrival img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.new-arrival-area .container .new-arrival button {
    margin-left: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 0;
    outline: none;
    background-color: var(--white);
    color: var(--black-2);
    font-size: 16px;
    font-weight: 600;
    color: var(--black-2);
    text-transform: capitalize;
    transition: .3s;
}

.new-arrival-area .container .new-arrival button:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.new-arrival-area .container .new-arrival {
    position: relative;
}

.new-arrival-area .container .new-arrival .text-buttton {
    position: absolute;
    top: 0;
    left: 0;
}


/* .new-arrival-area .container .product-wrapper {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
} */

.new-arrival-area .container .product {
    position: relative;
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--main-color);
    padding: 10px;
    background-color: var(--bg-color);
    /* margin: 4px; */
}

.new-arrival-area .container .product img {
    width: 100%;
    height: 163px;
    object-fit: contain;
    padding: 10px 20px;
}

.new-arrival-area .container .product h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    text-align: start;
    line-height: 24px;
    margin-top: 10px;
}

.new-arrival-area .container .product h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--heading);
    text-align: start;
}

.new-arrival-area .container .product span {
    font-size: 16px;
    color: var(--icon);
}

.new-arrival-area .container .product samp {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--green);
}

.new-arrival-area .container .product .discount {
    width: 45px;
    height: 50px;
    background-color: var(--main-color);
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.new-arrival-area .container .product .discount h2 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
}

.new-arrival-area .container .over {
    position: relative;
}

.new-arrival-area .container .overlay {
    width: 100%;
    height: 100%;
    background-color: #1C1C1C;
    position: absolute;
    top: 0;
    left: 0;
}


/* ====== new-arrival-area section end  ======== */


/* ======  recommended-area section start  ======== */

.recommended-area .container {
    border-radius: 4px;
    padding: 0;
}

.recommended-area .container .items {
    width: 100%;
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
}

.recommended-area .container .items .item {
    width: 220px;
    height: 300px;
    box-shadow: 0 0 2px var(--black-2);
    padding: 12px;
    border-radius: 4px;
    background-color: var(--bg-color);
    position: relative;
    margin: 4px;
    transition: all linear .2s;
}

.recommended-area .container .items .item .recom-img {
    width: 100%;
    height: 170px;
    border: 1px solid var(--body);
}

.recommended-area .container .items .item .recom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.recommended-area .container .items .item h5 {
    font-size: 18px;
    color: var(--black-2);
    margin-top: 10px;
}

.recommended-area .container .items .item p {
    font-size: 16px;
    color: var(--gray-1);
    padding: 0;
}

.recommended-area .container .items .item .shado {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--black);
    opacity: 80%;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    display: none;
    transition: all linear .3s;
}

.recommended-area .container .items .item .shado button {
    background-color: var(--bg-color);
    color: var(--orange);
    border-radius: 8px;
    padding: 4px 10px;
    margin-top: 130px;
    margin-left: 60px;
    border: none;
    outline: none;
}

.recommended-area .container .items .item .shado p {
    font-size: 17px;
    color: var(--bg-color);
    margin-left: 78px;
    margin-top: 5px;
}

.recommended-area .container .items .item .shado p i {
    padding-right: 5px;
}

.recommended-area .container .items .item:hover .shado {
    display: initial;
}


/* ======  recommended-area section end  ======== */


/* ======== software section start ======== */

.software-area {
    margin: 30px 0px;
    margin-top: 60px;
}

.software-area .container {
    background-color: var(--bg-color);
}

.software-area .container h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: -20px;
    padding-top: 40px;
}

.software-area .container h2 {
    padding-top: 20px;
}

.software-area .container .heading-p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
    text-align: center;
    margin-bottom: 30px;
    margin-top: -20px;
}

.software-area .container .item {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    margin-bottom: 20px;
}

.software-area .container .item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-2);
    cursor: pointer;
}

.software-area .container .item .active {
    color: var(--main-color);
}

.software-area .container .template-content h3 {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    color: var(--black-2);
    margin: 15px 0px;
}

.software-area .container .template-content h3:hover {
    color: var(--main-color);
}

.software-area .container .template-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
}

.software-area .container .template-content a button {
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 24px;
    font-weight: 700;
    color: var(--black-2);
    margin-bottom: 20px;
}

.software-area .container .template-content a button i {
    padding-left: 10px;
    font-weight: 700;
    color: var(--brand);
    transition: all linear .05s;
}

.software-area .container .template-content a button:hover i {
    padding-left: 20px;
    color: var(--red);
}

.software-area .container .template-content .template-img {
    width: 100%;
    height: 373px;
}

.software-area .container .template-content .template-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =============== Content =============== */

.column {
    display: none;
    margin-bottom: 20px;
    width: 100%;
}


/* filter btn  */

.software-area .container .filter-btn {
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    padding: 8px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 0 4px var(--gray-1);
    transition: all linear .3s
}

.software-area .container .filter-btn.active1 {
    color: var(--white);
    background-color: var(--main-color);
}

.show {
    display: block;
}


/* ======== software section end ======== */


/* ======== partners section start ======== */

.partners-area {
    margin-top: 30px;
    overflow: hidden;
}

.partners-area .slick {
    padding-bottom: 30px;
}

.partners-area .partner-img {
    width: 100%;
    height: 85px;
    padding: 5px;
}

.partners-area .partner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ======== partners section end ======== */


/* ======== Clients section start ======== */

.clients-area {
    width: 100%;
    padding-top: 30px;
    overflow: hidden;
}

.clients-area .container .clients {
    padding-bottom: 30px;
}

.clients-area .container .clients .clients-img {
    width: 100%;
    height: 163px;
    margin: 4px;
}

.clients-area .container .clients .clients-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ======== Clients section end ======== */


/* ======== recent section start ======== */

.recent-news-area {
    padding-top: 50px;
}

.recent-news-area .recent-news-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 8px var(--gray-1);
    margin: 4px;
}

.recent-news-area .recent-news-card .recent-news-img {
    width: 100%;
    height: 200px;
}

.recent-news-area .recent-news-card .recent-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-area .recent-news-card .recent-news-content {
    text-align: start;
    margin-top: 10px;
}

.recent-news-area .recent-news-card .recent-news-content span {
    color: var(--heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
}

.recent-news-area .recent-news-card .recent-news-content span:hover {
    color: var(--blueviolet);
}

.recent-news-area .recent-news-card .recent-news-content p {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0;
}

.recent-news-area .recent-news-card .recent-news-btn {
    text-align: center;
    margin-top: 10px;
}

.recent-news-area .recent-news-btn a {
    display: inline-block;
    background: var(--heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border: 2px solid transparent;
    line-height: 30px;
    border-radius: 4px;
    padding: 4px 24px;
    text-align: center;
    transition: all linear .05s;
}

.recent-news-area .recent-news-btn a:hover {
    color: var(--white);
    background-color: var(--blueviolet);
}


/* ======== recent section end ======== */


/* ======== subscribe section start ======== */

.subscribe-area {
    margin-top: 30px;
    overflow: hidden;
}

.subscribe-area .container .syntax {
    width: 100%;
    height: 460px;
    margin-top: 30px;
    position: relative;
}

.subscribe-area .container .syntax img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.subscribe-area .container .syntax .syn-im {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.subscribe-area .subscribe-content {
    padding-top: 25%;
    padding-left: 70px;
}

.subscribe-area .section-heading {
    text-align: start;
}

.subscribe-area .section-heading span {
    font-size: 45px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: capitalize;
    margin-bottom: 30px;
}

.subscribe-area .container .subscribe-content p {
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    color: var(--black-2);
}

.subscribe-area .container .subscribe-content form {
    display: flex;
    justify-content: space-between;
    height: 45px;
    margin-top: 50px;
}

.subscribe-area .container .subscribe-content input {
    width: 370px;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    color: var(--black-2);
    background-color: var(--white);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
    transition: all linear .2s;
}

.subscribe-area .container .subscribe-content input:focus {
    border-color: var(--blueviolet);
}

.subscribe-area .container .subscribe-content .common-btn {
    width: 90px;
    height: 45px;
    border: none;
}


/* .subscribe-area .container .subscribe-content .common-btn:hover {
    background-color: var(--blueviolet);
} */


/* ======== subscribe section end ======== */


/* ======== footer section start ======== */

.footer-area {
    width: 100%;
    background-color: var(--bg-color);
}

.footer-area .container .footer-content {
    padding: 30px 0;
}

.footer-area .container .footer-content .footer-widget a .footer-logo {
    width: 150px;
    height: 46px;
    margin-bottom: 19px;
}

.footer-area .container .footer-content .footer-widget a .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-area .footer-content .footer-widget .footer-text p {
    color: var(--black-2);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 14px;
}

.footer-area .footer-content .footer-widget ul.footer-icons li {
    margin-right: 4px;
}

.footer-area .footer-content .space {
    margin-left: 15px;
}

.footer-area .footer-content .footer-widget .footer-wedget-headling h3 {
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 10px;
}

.footer-area .footer-content .footer-widget ul {
    padding: 0;
}

.footer-area .footer-content .footer-widget ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-area .footer-content .footer-widget ul li a {
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-1);
    transition: all linear .05s;
}

.footer-area .footer-content .footer-widget ul li a:hover {
    color: var(--black-2);
    font-weight: 500;
}

.footer-area .footer-content .footer-app .footer-app-img {
    width: 120px;
    height: 42px;
}

.footer-area .footer-content .footer-app .footer-app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* copyright  */

.copyright-area {
    margin: auto;
    padding: 15px 0;
    border-top: 1px solid var(--gray-1);
}

.copyright-area .copyright-text p {
    font-size: 15px;
    color: var(--gray-1);
    text-transform: capitalize;
    margin: 0;
}

.copyright-area .copyright-text p a {
    font-weight: 600;
    font-size: 16px;
    color: var(--black-2);
}


/* ========footer section end ======== */


/* =================== home page end ========================= */


/* ================= web-cart page start  ============== */


/* ===== product-view section start ===== */

.product-view-area {
    margin-top: 170px;
}

.product-view-area .product-view-list {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
}

.product-view-area .product-view-list .cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-1);
}

.product-view-area .product-view-list .cart-item .cart-item-left {
    display: flex;
}

.product-view-area .product-view-list .cart-item .cart-item-left .img {
    width: 60px;
    height: 70px;
    margin: 15px 10px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--gray-1);
    padding: 8px;
    border-radius: 8px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .size {
    font-size: 16px;
    color: var(--black);
}

.product-view-area .product-view-list .cart-item .cart-item-left .text {
    padding: 10px 10px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-2);
    margin-bottom: 10px;
    transition: all linear .2s;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .heading:hover {
    color: var(--main-color);
}

.product-view-area .contproduct-view-listainer .cart-item .cart-item-left .text .size {
    font-size: 16px;
    color: var(--gray-1);
    margin: 0px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .seller {
    font-size: 16px;
    color: var(--gray-1);
    margin: 0px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button {
    display: flex;
    margin: 10px 0;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button button {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--bg-color);
    outline: none;
    border: none;
    box-shadow: 0 1px 4px var(--gray-1);
    padding: 5px 15px;
    transition: all linear .3s;
    border-radius: 8px;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button .remove {
    color: var(--red);
    margin-right: 10px;
    transition: all linear .2s;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button .remove:hover {
    color: var(--main-color);
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button .save {
    color: var(--main-color);
    transition: all linear .2s;
}

.product-view-area .product-view-list .cart-item .cart-item-left .text .button .save:hover {
    color: var(--red);
}


/* cart-item-right  */

.product-view-area .product-view-list .cart-item .cart-item-right {
    padding: 10px 10px;
}

.product-view-area .container .cart-item .cart-item-right .price {
    font-size: 16px;
    color: var(--black-2);
}

.product-view-area .product-view-list .cart-item .cart-item-right .quantity {
    display: flex;
    justify-content: start;
    /* margin-top: 20PX; */
}


/* .quantity .qn {
    font-size: 16px;
    color: var(--black-2);
    border: none;
    margin-left: 0px;
    background-color: var(--bg-color);
} */

.product-view-area .product-view-list .cart-item .cart-item-right .quantity .one {
    border: none;
    background-color: var(--bg-color);
    margin: 0px;
}

.product-view-area .product-view-list .cart-item .cart-item-right .quantity P {
    font-size: 16px;
    color: var(--black-2);
    padding: 0px 10px;
    border: 1px solid var(--gray-1);
    border-radius: 5px;
    background-color: #d3d0d0;
}


/* button */

.product-view-area .product-view-list .product-view-button {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 0 10px;
}

.product-view-area .product-view-list .product-view-button button {
    font-size: 18px;
    background-color: var(--main-color);
    color: var(--bg-color);
    outline: none;
    border: none;
    padding: 5px 15px;
    transition: all linear .3s;
    border-radius: 8px;
    border: 1px solid var(--main-color);
}

.product-view-area .product-view-list .product-view-button button:hover {
    background-color: var(--bg-color);
    color: var(--main-color);
}

.product-view-area .product-view-list .product-view-button button i {
    font-size: 14px;
    padding-right: 10px;
}


/* required-section */

.product-view-area .required-section {
    margin-top: 30px;
}

.product-view-area .required-section .required-content {
    display: flex;
}

.product-view-area .required-section .required-content .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--gray-1);
    margin-right: 10px;
}

.product-view-area .required-section .required-content .icon i {
    font-size: 18px;
    color: var(--black-2);
}

.product-view-area .required-section .required-content .text .heading {
    font-size: 16px;
    color: var(--black-2);
    font-weight: 500;
    margin-bottom: 0;
}

.product-view-area .required-section .required-content .text .description {
    font-size: 16px;
    color: var(--gray-1);
    font-weight: 400;
    margin-bottom: 10px;
}


/* right-section  */

.product-view-area .add-coupon {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
    padding: 20px 10px;
}

.product-view-area .add-coupon .add-coupon-heading {
    font-size: 18px;
    color: var(--gray-1);
    font-weight: 500;
}

.product-view-area .add-coupon .input-group {
    width: 100%;
    height: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid var(--gray-1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 14px;
}

.product-view-area .add-coupon .input-group input {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
    border: none;
    outline: none;
    padding: 0 10px;
}

.product-view-area .add-coupon .input-group .apply-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--main-color);
    padding: 0 20px;
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    transition: all linear .2s;
}


/* checkout */

.product-view-area .checkout {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
    padding: 20px 10px;
    margin-top: 14px;
}

.product-view-area .checkout .checkout-data tr,
.product-view-area .checkout .checkout-data td {
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 0;
}

.product-view-area .checkout .checkout-data .discount {
    color: var(--red);
}

.product-view-area .checkout .checkout-data .tax {
    color: var(--green);
}

.product-view-area .checkout .checkout-data .total {
    margin: 20px 0;
    border-top: 1px solid var(--gray-1);
    height: 50px;
}

.product-view-area .checkout .checkout-button button {
    width: 100%;
    font-size: 16px;
    background-color: var(--green);
    color: var(--bg-color);
    outline: none;
    border: none;
    padding: 7px 15px;
    transition: all linear .3s;
    border-radius: 8px;
}

.product-view-area .checkout-payment {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.product-view-area .checkout-payment i {
    font-size: 24px;
    margin-top: 20px;
}

.product-view-area .checkout-payment i.fa-apple-pay {
    font-size: 30px;
}


/* ===== product-view section end ===== */


/* ===== saved-later section start ===== */

.saved-later-area {
    margin-top: 30px;
}

.saved-later-area .saved-later-wrapper {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
    padding: 0 10px;
}

.saved-later-area .saved-later-wrapper h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black-2);
    margin-top: 15px;
}

.saved-later-area .saved-later-wrapper .related-product {
    box-shadow: 1px 4px 8px var(--gray-1);
    border-radius: 8px;
    margin: 15px 0px;
    overflow: hidden;
}

.saved-later-area .saved-later-wrapper .related-product .product-img {
    width: 100%;
    height: 240px;
    background-color: var(--body);
}

.saved-later-area .saved-later-wrapper .related-product .product-img img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.saved-later-area .saved-later-wrapper .related-product .product-details {
    margin-top: 15px;
    padding: 0px 10px;
}

.saved-later-area .saved-later-wrapper .related-product .product-details .price {
    font-size: 16px;
    color: var(--black-2);
    margin-bottom: 10px;
}

.saved-later-area .saved-later-wrapper .related-product .product-details p {
    font-size: 16px;
    color: var(--gray-1);
}

.saved-later-area .container .related-product .button button {
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: none;
    background-color: var(--bg-color);
    color: var(--main-color);
    box-shadow: 0 1px 4px var(--gray-1);
    border-radius: 8px;
    padding: 5px 15px;
    margin-bottom: 20px;
}

.saved-later-area .container .related-product .button button i {
    padding-right: 6px;
}


/*=====  saved-later section end ===== */


/* ======================= web-cart page end ====================== */


/* ======================= princing page start ====================== */


/* ============ princing section start ========== */

.princing-area {
    margin-top: 170px;
}

.princing-area .container .princing-headding {
    width: 46%;
    text-align: center;
    margin: 0 auto;
}

.princing-area .container .princing-headding h1 {
    display: inline-block;
    font-size: 48px;
    font-weight: 600;
    color: var(--heading);
    text-transform: capitalize;
    cursor: pointer;
    transition: all linear .2s;
}

.princing-area .container .princing-headding h1:hover {
    color: var(--main-color);
}

.princing-area .container .princing-headding p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
}

.princing-area .princing-wrapper {
    margin-top: 60px;
    padding-bottom: 20px;
}

.princing-area .princing-wrapper .princing-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    transition: all linear .05s;
}


/* active card  */

.princing-area .princing-wrapper .princing-card:hover {
    background-color: var(--blueviolet);
    color: var(--white);
}

.princing-area .princing-wrapper .princing-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.princing-area .princing-wrapper .princing-card h1 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black-2);
}

.princing-area .princing-wrapper .princing-card:hover h1,
.princing-area .princing-wrapper .princing-card.active h1 {
    color: var(--white);
}

.princing-area .princing-wrapper .princing-card h1 span {
    font-size: 16px;
    color: var(--blueviolet);
    margin-left: 20px;
}

.princing-area .princing-wrapper .princing-card:hover h1 span,
.princing-area .princing-wrapper .princing-card.active h1 span {
    color: var(--antiquewhite);
}

.princing-area .princing-wrapper .princing-card p {
    height: 90px;
    color: var(--gray-1);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 10px 0;
}

.princing-area .princing-wrapper .princing-card:hover p,
.princing-area .princing-wrapper .princing-card.active p {
    color: var(--white);
}

.princing-area .princing-wrapper .princing-card ul {
    height: 245px;
}

.princing-area .princing-wrapper .princing-card ul li {
    color: var(--black-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 8px;
}

.princing-area .princing-wrapper .princing-card:hover ul li,
.princing-area .princing-wrapper .princing-card.active ul li {
    color: var(--white);
}

.princing-area .princing-wrapper .princing-card ul li i {
    font-size: 20px;
    color: var(--gray-1);
    margin-right: 8px;
}

.princing-area .princing-wrapper .princing-card:hover ul li i,
.princing-area .princing-wrapper .princing-card.active ul li i {
    color: var(--white);
}

.princing-area .princing-wrapper .princing-card a {
    display: block;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--black-2);
    text-align: center;
    border-radius: 40px;
    padding: 12px;
    margin-top: 30px;
    transition: all linear .2s;
}


/*  active and hover btn */

.princing-area .princing-wrapper .princing-card:hover a,
.princing-area .princing-wrapper .princing-card.active a {
    background-color: var(--antiquewhite);
    color: var(--black-2);
}

.princing-area .princing-wrapper .princing-card a:hover {
    background-color: var(--antiquewhite);
    color: var(--black-2);
}

.princing-area .princing-wrapper .princing-card:hover a:hover,
.princing-area .princing-wrapper .princing-card.active a:hover {
    background-color: var(--black-2);
    color: var(--white);
}


/* ============ princing section end ========== */


/* ============ frequently section start ========== */

.frequently-area {
    margin-top: 80px;
    padding-bottom: 20px;
}

.frequently-area .frequently-wrapper {
    margin: 20px 0;
}

.frequently-area .frequently-wrapper .frequently-heading h2 {
    color: var(--heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 56px;
}

.frequently-area .frequently-wrapper .frequently-heading p {
    color: var(--blueviolet);
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.frequently-area .frequently-accordion .contentBx {
    position: relative;
    margin: 10px 0;
}

.frequently-area .frequently-accordion .contentBx .label {
    position: relative;
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid var(--blueviolet);
    padding: 10px;
}

.frequently-area .frequently-accordion .contentBx .label h3 {
    color: var(--black-2);
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.frequently-area .frequently-accordion .contentBx .label span {
    color: var(--blueviolet);
    font-size: 18px;
    font-weight: 500;
    margin-right: 15px;
}

.frequently-area .frequently-accordion .contentBx .label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 25px;
}

.frequently-area .frequently-accordion .contentBx.frequently-active .label::before {
    content: 'x';
    color: var(--blueviolet);
    font-size: 20px;
}

.frequently-area .frequently-accordion .contentBx.frequently-active .label {
    color: var(--blueviolet);
}

.frequently-area .frequently-accordion .contentBx .content {
    position: relative;
    box-shadow: 0 1px 2px var(--gray-1);
    overflow: hidden;
    height: 0;
    transition: 0.2s;
}

.frequently-area .frequently-accordion .contentBx.frequently-active .content {
    height: auto;
    padding: 10px;
}

.frequently-area .frequently-accordion .contentBx.frequently-active .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
    color: var(--black-2);
}

.frequently-area .frequently-accordio .items {
    padding: 10px 30px 10px;
    background-color: var(--gray-1);
}

.frequently-area .frequently-accordio label {
    display: block;
    margin-bottom: 10px;
}


/* ============= frequently section end =========== */


/* ======================= princing page end ====================== */


/* =================== software page start ====================== */


/* ======== portfolio section start ======== */

.portfolio-area {
    margin-top: 170px;
    margin-bottom: 20px;
}

.portfolio-area .container .portfolio-headding {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50px;
}

.portfolio-area .container .portfolio-headding h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-1);
    text-align: center;
}

.portfolio-area .container .portfolio-headding h1 {
    display: inline-block;
    font-size: 48px;
    font-weight: 600;
    color: var(--heading);
    text-transform: capitalize;
    cursor: pointer;
    transition: all linear .2s;
}

.portfolio-area .container .portfolio-headding h1:hover {
    color: var(--main-color);
}

.portfolio-area .container .portfolio-headding p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
}

.portfolio-area .container .item {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    margin-bottom: 20px;
}

.portfolio-area .container .item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-2);
    cursor: pointer;
}

.portfolio-area .container .item .active {
    color: var(--main-color);
}

.portfolio-area .container .template-content h3 {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    color: var(--black-2);
    margin: 15px 0px;
    transition: all linear .2s;
}

.portfolio-area .container .template-content h3:hover {
    color: var(--main-color);
}

.portfolio-area .container .template-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
}

.portfolio-area .container .template-content a button {
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-2);
    background-color: transparent;
    margin-bottom: 20px;
    transition: all linear .2s;
}

.portfolio-area .container .template-content a button:hover {
    color: var(--main-color);
}

.portfolio-area .container .template-content a button i {
    padding-left: 6px;
    transition: all linear .2s;
}

.portfolio-area .container .template-content a button:hover i {
    padding-left: 10px;
}

.portfolio-area .container .template-content .template-img {
    width: 100%;
    height: 412px;
}

.portfolio-area .container .template-content .template-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* filter btn  */

.portfolio-area .container .filter-btn {
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    padding: 8px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 0 4px var(--gray-1);
    transition: all linear .3s
}

.portfolio-area .container .filter-btn.active1 {
    color: var(--white);
    background-color: var(--main-color);
}


/* ======== portfolio section end ======== */


/* =================== software page end ======================== */


/* =================== software-detail page start =================== */


/* ========== finsweet section start ========== */

.finsweet-area {
    margin-top: 170px;
}

.finsweet-area .container {
    padding: 0 40px;
}

.finsweet-area .container .finsweet-headding {
    width: 75%;
    text-align: start;
}

.finsweet-area .container .finsweet-headding h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--gray-1);
    text-transform: capitalize;
}

.finsweet-area .container .finsweet-headding h1 {
    font-size: 48px;
    font-weight: 600;
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear .2s;
}

.finsweet-area .container .finsweet-headding h1:hover {
    color: var(--main-color);
}

.finsweet-area .container .finsweet-headding p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    color: var(--gray-1);
}

.finsweet-area .container .finsweet-wrapper {
    margin-top: 60px;
}

.finsweet-area .container .finsweet-wrapper .finsweet-img {
    width: 100%;
    height: 641px;
}

.finsweet-area .container .finsweet-wrapper .finsweet-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* required-section */

.finsweet-area .container .required-section {
    margin: 30px 0;
    border-bottom: 1px solid var(--gray-1);
}

.finsweet-area .container .required-section .required-content p {
    color: var(--gray-1);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
}

.finsweet-area .container .required-section .required-content h3 {
    color: var(--black-2);
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}


/* ========== finsweet section end ========== */


/* ========== about-project section start ========== */

.about-project-area .container {
    padding: 40px 100px;
}

.about-project-area .container .about-project-wrapper .about-project-heading {
    width: 75%;
    text-align: start;
}

.about-project-area .container .about-project-wrapper .about-project-heading h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 56px;
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear .2s;
}

.about-project-area .container .about-project-wrapper .about-project-heading h1:hover {
    color: var(--main-color);
}

.about-project-area .container .about-project-wrapper .about-project-content p {
    color: var(--black-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}

.about-project-area .container .about-project-wrapper .about-project-content .list-item li {
    color: var(--black-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 38px;
    list-style: disc;
    margin-left: 30px;
}

.about-project-area .container .about-project-wrapper .about-project-img {
    width: 100%;
    height: 480px;
    margin: 30px 0;
}

.about-project-area .container .about-project-wrapper .about-project-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ========== about-project section end ========== */


/* ================== software-detail page end ================= */


/* =================== product page start ======================= */


/* ==== list header section start ==== */

.list-area {
    width: 100%;
    height: 50px;
}

.list-area .container .list ul {
    float: left;
}

.list-area .container .list ul li {
    float: left;
    padding-right: 15px;
}

.list-area .container .list ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-1);
    text-transform: capitalize;
    line-height: 45px;
}

.list-area .container .list ul li a i {
    padding-left: 10px;
}


/* ==== list header section end ==== */


/* ==== product section start ==== */

.product-area {
    margin-top: 170px;
    width: 100%;
}

.product-area .container .product-category-group {
    border-radius: 5px;
    overflow: hidden;
}

.product-area .container .product-category-group span {
    font-size: 15px;
    line-height: 20px;
}

.product-area .items {
    background-color: var(--w);
}

.product-area label {
    display: block;
    margin-bottom: 10px;
}

.product-area .accordion-item {
    background-color: var(--bg-color);
    box-shadow: 0 0 1px 1px var(--gray-1);
    border-radius: 5px;
}

.product-area .accordion-item h5 {
    padding-bottom: 5px;
    font-size: 20px;
    color: var(--black);
}

.product-area .accordion-button:not(.collapsed) {
    color: var(--black-2);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    box-shadow: none;
}

.product-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: none;
    outline: none;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.product-area .accordion-button {
    border: none;
    outline: none;
}

.product-price h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--black-2);
    margin-bottom: 20px;
}

.product-price .price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price label {
    font-size: 18px;
    font-weight: 700;
}

.product-price input {
    width: 70px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    border: 1px solid var(--gray-1);
    border-radius: 5px;
}

.product-price a button {
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background-color: var(--bg-color);
    border: 1px solid var(--gray-1);
    border-radius: 5px;
    padding: 4px 45px;
    margin-top: 20px;
    color: var(--main-color);
    margin-left: 30px;
    box-shadow: 2px 2px 10px var(--black-2);
}

.product-price .range-slider {
    position: relative;
    margin: 15px 0 30px 0;
}

.product-price .range-fill {
    height: 6px;
    background-color: var(--main-color);
    position: absolute;
    z-index: 1;
}

.product-price input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
}

.product-price input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

.product-price input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: var(--main-color);
    border-radius: 3px;
    border: none;
}

.rate i {
    font-size: 20px;
    color: var(--orange);
}


/* right */

.product-area .container .all-product {
    width: 100%;
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 0 10px;
}

.product-area .container .all-product .product-nav {
    display: flex;
    justify-content: space-between;
}

.product-area .container .all-product .product-nav .text {
    padding-top: 17px;
    margin-left: 15px;
}

.product-area .container .all-product .product-nav .text p {
    color: var(--black-2);
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
}

.product-area .container .all-product .product-nav .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-area .container .all-product .product-nav .items img {
    width: 20px;
    height: 20px;
}

.product-area .container .all-product .product-nav .items h5 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px 10px;
}

.product-area .container .all-product .product-nav .items #input-zone {
    width: 170px;
    height: 40px;
    border: 1px solid var(--gray-1);
    color: var(--black-2);
    text-transform: capitalize;
    border-radius: 5px;
    padding: 0px 8px;
    outline: none;
    margin: 0px 10px;
}

.product-area .container .all-product .product-nav .items a {
    color: var(--black-2);
    font-size: 22px;
}

.product-area .container .all-product .product-nav .items a .i1,
.i2 {
    padding: 8px;
    border: 1px solid var(--gray-1);
    border-radius: 5px;
}

.product-area .container .all-product .product-nav .items a .i1 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-right: -6px;
}

.product-area .container .all-product .product-nav .items a .i2 {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--gray-1);
    margin-left: 10px;
}


/* ==== pagination-start ==== */

.pagination {
    width: 100%;
    height: 40px;
    position: relative;
    margin-top: 40px;
}

.pagination ul {
    position: absolute;
    top: 0px;
    right: 0px;
}

.pagination ul li {
    float: left;
    padding: 6px;
}

.pagination ul li #input-zone {
    height: 30px;
    padding: 0px;
    margin-top: -3px;
    width: 100px;
    border-radius: 5px;
    outline: none;
}

.pagination ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--w);
    text-transform: capitalize;
    border: 1px solid var(--black-2);
    box-shadow: 0 0 5px 1px var(--shadow);
    padding: 2px 10px;
    border-radius: 4px;
    background-color: var(--bg-color);
}

.pagination ul li .one {
    background-color: var(--body);
}

.product-area .container .all-product .product-details-grid {
    width: 100%;
    height: 370px;
    background-color: var(--bg-color);
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    float: left;
    overflow: hidden;
}

.product-area .container .all-product .product-details-grid .img {
    display: flex;
    justify-content: center;
}

.product-area .container .all-product .product-details-grid .img a img {
    width: 200px;
    height: 200px;
    padding: 10px;
    object-fit: contain;
}

.product-area .container .all-product .product-details-grid .text {
    width: 100%;
    float: left;
    position: relative;
    margin-top: 15px
}

.product-area .container .all-product .product-details-grid .text h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black-2);
    padding-top: 10px;
    padding-left: 10px;
}

.product-area .container .all-product .product-details-grid .text h4 del {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-1);
    padding-top: 10px;
    padding-left: 10px;
}

.product-area .container .all-product .product-details-grid .text .rating {
    margin-top: -7px;
    padding-left: 10px;
}

.product-area .container .all-product .product-details-grid .text .rating ul {
    float: left;
}

.product-area .container .all-product .product-details-grid .text .rating ul li {
    float: left;
}

.product-area .container .all-product .product-details-grid .text .rating i {
    font-size: 14px;
    color: var(--orange);
}

.product-area .container .all-product .product-details-grid .text .rating .rate {
    font-size: 14px;
    color: var(--orange);
    padding-left: 10px;
}

.product-area .container .all-product .product-details-grid .text .title {
    width: 100%;
    font-size: 16px;
    color: var(--black);
    margin-left: 10px;
    float: left;
}

.product-area .container .all-product .product-details-grid .text .heart i {
    font-size: 18px;
    padding: 8px;
    border: 1px solid var(--gray-1);
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--gray-1);
    color: var(--main-color);
    position: absolute;
    top: 20px;
    right: 20px;
}


/* ==== pagination-end ==== */


/* subscribe section start */

.subscribe-newsletter-area {
    width: 100%;
    margin-bottom: 50px
}

.subscribe-newsletter-area .container .subscribe {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

.subscribe-newsletter-area .container .subscribe .sub-headding a {
    font-size: 30px;
    font-weight: 600;
    color: var(--heading);
    text-transform: capitalize;
}

.subscribe-newsletter-area .container .subscribe p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    color: var(--gray-1);
}

.subscribe-newsletter-area.container .subscribe .mail {
    display: flex;
    justify-content: space-between;
}

.subscribe-newsletter-area .container .subscribe .mail input {
    width: 300px;
    height: 40px;
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    padding: 0px 15px;
    background-color: var(--bg-color);
}

.subscribe-newsletter-area .container .subscribe .mail button {
    width: 100px;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--main-color);
    transition: all linear .2s;
}

.subscribe-newsletter-area .container .subscribe .mail button:hover {
    color: var(--white);
    background-color: var(--blueviolet);
}

.subscribe-newsletter-area .container .subscribe .mail button a {
    color: var(--bg-color);
}


/* subscribe section end */


/* =================== product page end ========================= */


/* =================== web details page start =================== */


/* single-product-area section start */

.single-product-area {
    margin-top: 160px;
}

.single-product-area .container {
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    background-color: var(--bg-color);
    padding: 20px;
}


/* ========= image zoom ============ */

.piclist {
    display: flex;
    margin-top: 20px;
}

.piclist li {
    margin-right: 15px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.piclist li img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 2px 2px var(--gray-1);
}

.picZoomer {
    position: relative;
    width: 100%;
}

.picZoomer img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.picZoomer-pic-wp,
.picZoomer-zoom-wp {
    box-shadow: 0 0 4px var(--gray-1);
}

.picZoomer-pic-wp {
    position: relative;
    overflow: hidden;
}

.picZoomer-pic-wp:hover .picZoomer-cursor {
    display: block;
}

.picZoomer-zoom-pic {
    position: absolute;
    top: 0;
    left: 0;
}

.picZoomer-pic {
    width: 100%;
    height: 100%;
}

.picZoomer-zoom-wp {
    display: none;
    position: absolute;
    z-index: 99;
    overflow: hidden;
    background-color: var(--bg-color);
}

.picZoomer-cursor {
    display: none;
    cursor: crosshair;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--gray-1);
    background-color: var(--bg-color);
    opacity: 50%;
}


/*===== all-art-details-content =======*/

.single-product-area .container .single-product-area-header {
    margin-top: 20px;
}

.single-product-area .container .single-product-area-header a {
    font-size: 14px;
    color: var(--green);
}

.single-product-area .container .single-product-area-header a i {
    margin-right: 10px;
}

.single-product-area .container .single-product-area-header h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black-2);
}

.single-product-area .container .single-product-area-header .rating {
    display: flex;
}

.single-product-area .container .single-product-area-header .rating ul {
    display: flex;
    margin-right: -10px;
}

.single-product-area .container .single-product-area-header .rating i {
    font-size: 14px;
    color: var(--orange);
}

.single-product-area .container .single-product-area-header .rating .rate {
    font-size: 14px;
    color: var(--orange);
    padding: 0 20px;
}

.single-product-area .container .single-product-area-header .rating .round {
    font-size: 7px;
    color: var(--gray-1);
    margin: 0px 10px;
}

.single-product-area .container .single-product-area-header .rating a .order {
    font-size: 14px;
    color: var(--gray-1);
}

.single-product-area .container .single-product-area-header .rating a .order i {
    font-size: 14px;
    color: var(--gray-1);
}

.single-product-area .container .single-product-area-header .rating p {
    margin-bottom: 0;
}

.single-product-area .container .single-product-area-header .rating a .ship {
    font-size: 14px;
    color: var(--gray-1);
}

.single-product-area .container .single-product-area-header .rating a .ship i {
    font-size: 14px;
    color: var(--gray-1);
}

.single-product-area .container .single-product-area-header .dis {
    font-size: 16px;
    color: var(--black-2);
    margin-top: 18px;
}

.single-product-area .container .single-product-area-header h4 {
    font-size: 24px;
    color: var(--red);
    background-color: var(--red-light);
    margin-top: 18px;
    width: 150px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}


/* qty-container  */

.qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    height: 38px;
    width: 150px;
    overflow: hidden;
    margin-top: 20px;
}

.qty-container .input-qty {
    text-align: center;
    padding: 6px 10px;
    border: none;
    outline: none;
    max-width: 80px;
    background-color: transparent;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
    border: none;
    padding: 10px 13px;
    background-color: var(--body);
    font-size: 10px;
    height: 100%;
    width: 34px;
    transition: 0.3s;
}

.qty-container .qty-btn-plus {
    margin-left: 1px;
}

.qty-container .qty-btn-minus {
    margin-right: -1px;
}

.single-product-area .container .single-product-area-header .button {
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.single-product-area .container .single-product-area-header .button a button {
    font-size: 16px;
    background-color: var(--main-color);
    color: var(--bg-color);
    outline: none;
    border: none;
    margin-right: 20px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all linear .2s;
}

.single-product-area .container .single-product-area-header .button a button:hover {
    background-color: var(--blueviolet);
}

.single-product-area .single-product-header {
    display: flex;
    justify-content: space-between;
}

.single-product-area .container .save a {
    display: flex;
    width: 150px;
}

.single-product-area .container .save a i {
    font-size: 18px;
    color: var(--main-color);
    width: 30px;
    height: 30px;
    box-shadow: 1px 4px 8px var(--gray-1);
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    border-radius: 8px;
}

.single-product-area .container .save a p {
    font-size: 16px;
    color: var(--main-color);
    line-height: 30px;
}


/* single-product-area section end */


/* about-area section start */

.about-area {
    margin: 30px 0px;
}

.about-area .container {
    background-color: var(--bg-color);
    border-radius: 8px;
}

.about-area .container .about {
    position: relative;
    border: 1px solid var(--gray-1);
    border-radius: 8px;
    margin: 20px 0px;
}

.about-area .container .about .group {
    width: 100%;
    border-bottom: 1px solid var(--gray-1);
    padding-left: 10px;
}

.about-area .container .about .group ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.about-area .container .about .group ul li {
    display: flex;
    padding-right: 30px;
}

.about-area .container .about .group ul li p {
    font-size: 18px;
    color: var(--gray-1);
    font-weight: 500;
    line-height: 50px;
    margin: 0;
    cursor: pointer;
}

.about-area .container .about .group ul li .active {
    color: var(--main-color);
}

.about-area .container .about .details {
    padding: 0 10px;
}

.about-area .container .about .details p {
    margin-top: 25px;
    font-size: 16px;
    color: var(--black-2);
    padding: 0px 10px 0px 0px;
}

.about-area .container .about .details .chart {
    display: flex;
    justify-content: start;
    margin-top: 30px;
}

.about-area .container .about .details .chart .first ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 60px;
    background-color: var(body);
}

.about-area .container .about .details .chart .first ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .details .chart .second ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 100px;
    background-color: var(--bg-color);
}

.about-area .container .about .details .chart .second ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .details .feature {
    margin: 20px 0px;
}

.about-area .container .about .details .feature p {
    font-size: 16px;
    color: var(--black-2);
    margin: 0px;
    padding-top: 5px;
}

.about-area .container .about .details .feature p i {
    font-size: 14px;
    color: var(--gray-1);
    padding-right: 10px;
}

.about-area .container .about .reviews {
    display: none;
    padding: 0 10px;
}

.about-area .container .about .reviews p {
    margin-top: 25px;
    font-size: 16px;
    color: var(--black-2);
}

.about-area .container .about .reviews .chart {
    display: flex;
    justify-content: start;
    margin-top: 30px;
}

.about-area .container .about .reviews .chart .first ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 60px;
    background-color: var(--body);
}

.about-area .container .about .reviews .chart .first ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .reviews .chart .second ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 100px;
    background-color: var(--bg-color);
}

.about-area .container .about .reviews .chart .second ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .reviews .feature {
    margin: 20px 0px;
}

.about-area .container .about .reviews .feature p {
    font-size: 16px;
    color: var(--black-2);
    margin: 0px;
    padding-top: 5px;
}

.about-area .container .about .reviews .feature p i {
    font-size: 14px;
    color: var(--gray-1);
    padding-right: 10px;
}

.about-area .container .about .shipping {
    padding: 0 10px;
    display: none;
}

.about-area .container .about .shipping p {
    margin-top: 25px;
    font-size: 16px;
    color: var(--black-2);
}

.about-area .container .about .shipping .chart {
    display: flex;
    justify-content: start;
    margin-top: 30px;
}

.about-area .container .about .shipping .chart .first ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 60px;
    background-color: var(body);
}

.about-area .container .about .shipping .chart .first ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .shipping .chart .second ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 100px;
    background-color: var(--bg-color);
}

.about-area .container .about .shipping .chart .second ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .shipping .feature {
    margin: 20px 0px;
}

.about-area .container .about .shipping .feature p {
    font-size: 16px;
    color: var(--black-2);
    margin: 0px;
    padding-top: 5px;
}

.about-area .container .about .shipping .feature p i {
    font-size: 14px;
    color: var(--gray-1);
    padding-right: 10px;
}

.about-area .container .about .seller {
    display: none;
    padding: 0 10px;
}

.about-area .container .about .seller p {
    margin-top: 25px;
    font-size: 16px;
    color: var(--black-2);
}

.about-area .container .about .seller .chart {
    display: flex;
    justify-content: start;
    margin-top: 30px;
}

.about-area .container .about .seller .chart .first ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 60px;
    background-color: var(--body);
}

.about-area .container .about .seller .chart .first ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .seller .chart .second ul li {
    border: 1px solid var(--gray-1);
    padding: 5px 5px;
    padding-right: 100px;
    background-color: var(--bg-color);
}

.about-area .container .about .seller .chart .second ul li a {
    font-size: 16px;
    color: var(--black-2);
    line-height: 10px;
}

.about-area .container .about .seller .feature {
    margin: 20px 0px;
}

.about-area .container .about .seller .feature p {
    font-size: 16px;
    color: var(--black-2);
    margin: 0px;
    padding-top: 5px;
}

.about-area .container .about .seller .feature p i {
    font-size: 14px;
    color: var(--gray-1);
    padding-right: 10px;
}

.about-area .container .like {
    border-bottom: 1px solid var(--gray);
}

.about-area .container .like h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 10px;
}

.about-area .card-right {
    margin: 20px 0;
    border: 1px solid var(--gray-1);
    border-radius: 4px;
    padding: 10px;
}

.about-area .card-right-bottom {
    display: flex;
    padding: 10px 0;
}

.about-area .card-right .card-right-img {
    width: 65px;
    height: 70px;
    border: 1px solid var(--gray-1);
    border-radius: 4px;
}

.about-area .card-right .card-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 3px;
}

.about-area .card-right .card-right-content {
    padding: 0 10px;
}

.about-area .card-right .card-right-content a {
    color: var(--main-color);
}

.about-area .card-right .card-right-content a:hover {
    color: var(--main-color);
}

.about-area .card-right .card-right-content h4 {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: all linear .2s;
}

.about-area .card-right .card-right-content h4:hover {
    color: var(--blueviolet);
}

.about-area .card-right .card-right-content .product-price .product-price-new {
    color: var(--black);
    line-height: 22px;
    font-size: 15px;
    font-weight: 700;
}

.about-area .card-right .card-right-content .product-price .product-price-old {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
    padding-left: 5px;
}


/* about-area section end */


/* discount section start */

.discount-area {
    width: 100%;
    height: 120px;
    margin: 30px 0px;
    border-radius: 10px;
}

.discount-area .container .discount {
    position: relative;
    width: 100%;
    height: 120px;
}

.discount-area .container .discount .img1 {
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.discount-area .container .discount .img2 {
    width: 60%;
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.discount-area .container .discount h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-color);
    position: absolute;
    top: 40px;
    left: 30px;
}

.discount-area .container .discount p {
    font-size: 14px;
    color: var(--bg-color);
    position: absolute;
    top: 65px;
    left: 30px;
}

.discount-area .container .discount button {
    border-radius: 8px;
    background-color: var(--orange);
    position: absolute;
    top: 42px;
    right: 20px;
    border: none;
    outline: none;
    padding: 8px 14px;
    transition: all linear .2s;
}

.discount-area .container .discount button:hover {
    background-color: var(--red);
}

.discount-area .container .discount button a {
    font-size: 14px;
    color: var(--bg-color);
}


/* discount section end */


/* related-product section start */

.related-product-area {
    margin-top: 30px;
}

.related-product-area .container {
    background-color: var(--bg-color);
    border: 1px solid var(--gray-1);
    border-radius: 8px;
}

.related-product-area .container h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black-2);
    margin-top: 15px;
}

.related-product-area .container .related-product {
    box-shadow: 1px 4px 8px var(--gray-1);
    border-radius: 8px;
    margin: 15px 0px;
}

.related-product-area .container .related-product .product-img {
    width: 100%;
    height: 172px;
}

.related-product-area .container .related-product .product-img img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.related-product-area .container .related-product .product-details {
    width: 100%;
    padding: 10px 0;
    margin-top: 15px;
}

.related-product-area .container .related-product .product-details p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    padding: 0px 10px;
    margin-bottom: 0;
}

.related-product-area .container .related-product .product-details h3 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    padding: 0px 10px;
    margin-bottom: 0;
    transition: all linear .2s;
}

.related-product-area .container .related-product .product-details h3:hover {
    color: var(--main-color);
}

.related-product-area .container .related-product .product-details .price {
    font-size: 16px;
    color: var(--gray-1);
    margin-top: 10px;
}


/* ============= web details page end  ============= */


/* ============================= login pages start =========================  */


/* form-heading start */

.form-heading {
    width: 70%;
    text-align: center;
    margin: 40px auto;
    padding-top: 85px;
}

.form-heading h2,
.form-heading h2 span {
    display: inline-block;
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    cursor: pointer;
    transition: all linear .2s;
}

.form-heading h2:hover {
    color: var(--main-color);
}

.form-heading h2 span {
    color: var(--main-color);
}

.form-heading p {
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-1);
    line-height: 28px;
    text-align: center;
    margin: 15px 0;
}


/* .form-hesding end */

.form-section-heading {
    width: 100%;
    text-align: start;
}

.form-section-heading h2,
.form-section-heading h2 span {
    display: inline-block;
    font-weight: 700;
    font-size: 40px;
    line-height: 65px;
    cursor: pointer;
    transition: all linear .2s;
}

.form-section-heading h2:hover {
    color: var(--main-color);
}

.form-section-heading h2 span {
    color: var(--main-color);
}

.form-section-heading h2:hover span {
    color: var(--heading);
}

form .form-input label,
form .form-input input {
    width: 100%;
}

form .form-input label {
    font-weight: 600;
    font-size: 20px;
    line-height: 45px;
    color: var(--main-color);
    margin-bottom: 10px;
}

form .form-input input {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    border: 1px solid var(--white);
    box-shadow: 0 0 5px var(--gray-1);
    outline: none;
    border-radius: 4px;
    padding: 15px 15px;
    margin-bottom: 20px;
    transition: all linear .2s;
}

form .form-input input:focus {
    border-color: var(--main-color);
}

form .form-input input::placeholder,
form .form-input textarea::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: var(--gray);
}

form .form-input .check {
    position: relative;
}

form .form-input .check i {
    position: absolute;
    right: 1%;
    top: 28%;
    font-size: 10px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--main-color);
    text-align: center;
    margin-right: 10px;
}


/* submit img  */

.submit-img {
    width: 530px;
    height: 480px;
    margin: 0 auto;
}

.submit-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ============= common form end =============== */


/* ================= create-account section start  =============== */

.create-account-area {
    margin: 40px 0;
}

.create-account-area .create-account-content h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: var(--black);
    margin-bottom: 20px;
}

.create-account-area .create-account-content .watch-link ul li {
    display: flex;
    border: 1px solid var(--gray-1);
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--gray-1);
    align-items: center;
}

.create-account-area .create-account-content .watch-link ul li {
    display: flex;
    padding: 16px 10px;
}

.create-account-area .create-account-content .watch-link ul li i {
    font-size: 10px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--main-color);
    text-align: center;
    margin-right: 10px;
}

.create-account-area .create-account-content .watch-link ul li p {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.create-account-area .create-account-content .watch-link ul li a {
    color: var(--main-color);
}


/* ================= create-account section end  =============== */


/* ========================== sign-up page start ========================== */

.sign-up-area {
    margin-top: 80px;
}


/* ========================== sign-up page end ========================== */


/* ========================== information page start ========================== */

.information-area {
    margin-top: 80px;
    margin-bottom: 30px;
}


/* ========================== information page end ========================== */


/* ========================== otp page start ========================== */

.otp-area {
    margin-top: 80px;
}


/* submit form  */

.otp-area .submit-content .submit-form {
    padding-top: 10%;
}

.otp-area .submit-content .submit-form form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otp-area .submit-content .submit-form form input {
    display: inline-block;
    width: 76px;
    height: 50px;
    text-align: center;
    color: var(--black);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--gray);
    background-color: transparent;
    margin-bottom: 15px;
}


/* ========================== otp page end ========================== */


/* ======================== contact section start ====================== */

.contact-area {
    margin-bottom: 100px;
    margin-top: 80px;
}

.contact-area .contact-section-heading {
    margin: 20px 0;
}

.contact-area .contact-section-heading h2 {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 35px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all linear .2s;
}

.contact-area .contact-section-heading h2:hover {
    color: var(--blueviolet);
}

.contact-area .contact-wraper .contact-content {
    width: 80%;
}

.contact-area .contact-wraper .contact-content .location p {
    margin: 0;
}

.contact-area .contact-wraper .contact-img-content .contact-img {
    width: 100%;
    height: 450px;
    border-radius: 5px;
    box-shadow: 0 0 8px var(--light-gray);
}

.contact-area .contact-wraper .contact-img-content .contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-area .contact-wraper .contact-img-content .contact-location {
    font-family: var(--font-family-Lora);
    font-weight: 600;
    font-size: 20px;
    text-align: justify;
    color: var(--black-2);
    line-height: 30px;
    margin: 20px 0;
}

.contact-social-media-heading {
    margin: 10px 0;
}

.social-media-icons-2 {
    margin-top: 40px;
}

.contact-area .contact-wraper .contact-social-heading h2 {
    font-size: 26px;
}

.contact-area .contact-wraper .social-icons li a i {
    margin: 6px;
}


/* ======================== contact section end ====================== */


/* ========================== form section start ======================== */

.form-area .information-form textarea {
    outline: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    box-shadow: 0 0 8px var(--light-gray);
    transition: all linear .2s;
}

.form-area .information-form textarea:focus {
    border-color: var(--main-color);
}

.form-area .Submit-btn {
    width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border: none;
}


/* ================== form section end ================= */


/* ============================ about page  start =============================  */


/* ================ syntax-about section start ================= */

.syntax-about-area {
    margin-top: 160px;
    margin-bottom: 50px;
}

.syntax-about-area .syntax-about-heading span {
    font-weight: 700;
    font-size: 20px;
    color: var(--green);
    display: block;
}

.syntax-about-area .syntax-about-wrapper .learn-about h5 {
    font-weight: 700;
    font-size: 26px;
    color: var(--black);
    margin-bottom: 40px;
}

.syntax-about-area .syntax-about-content ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black);
    list-style: disc;
    margin-left: 30px;
}

.syntax-about-area .syntax-about-content p {
    font-weight: 400;
    font-size: 20px;
    text-align: justify;
    color: var(--black);
    line-height: 38px;
    margin-bottom: 20px;
    padding-right: 60px;
}

.syntax-about-area .syntax-about-wrapper .about-img {
    width: 526px;
    /* height: 526px; */
    border-radius: 50%;
}

.syntax-about-area .syntax-about-wrapper .about-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}


/* ================ syntax-about section end ============= */


/* ======================== about page  end ========================  */


/* ======================== blog page  start ==========================  */


/* ======== recent section start ======== */

.blog-area {
    padding-top: 50px;
    margin-top: 120px;
}

.blog-area .recent-news-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 8px var(--gray-1);
    margin: 4px;
}

.blog-area .recent-news-card .recent-news-img {
    width: 100%;
    height: 200px;
}

.blog-area .recent-news-card .recent-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-area .recent-news-card .recent-news-content {
    text-align: start;
    margin-top: 10px;
}

.blog-area .recent-news-card .recent-news-content span {
    color: var(--heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    transition: all linear .2s;
}

.blog-area .recent-news-card .recent-news-content span:hover {
    color: var(--blueviolet);
}

.blog-area .recent-news-card .recent-news-content p {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0;
}

.blog-area .recent-news-card .recent-news-btn {
    text-align: center;
    margin-top: 10px;
}

.blog-area .recent-news-btn a {
    display: inline-block;
    background: var(--heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border: 2px solid transparent;
    line-height: 30px;
    border-radius: 4px;
    padding: 4px 24px;
    text-align: center;
    transition: all linear .05s;
}

.blog-area .recent-news-btn a:hover {
    color: var(--white);
    background-color: var(--blueviolet);
}


/* ======== recent section end ======== */


/* ======================== blog page  end ==========================  */


/* ====================== blog details page start ===================== */


/* ======= blog details section start ========== */

.blog-details-area .heading-2 {
    width: 100%;
    text-align: start;
    margin: 10px 0;
}

.blog-details-area {
    margin-top: 160px;
}

.blog-details-heading h2 {
    font-family: 'Oxygen', sans-serif;
    font-size: 32px;
    color: var(--black);
}

.blog-details-area .sub-heading {
    margin: 20px 0;
}

.blog-details-area .sub-heading p {
    font-weight: 700;
    font-size: 24px;
    color: var(--main-color);
    display: block;
    text-align: start;
    transition: all linear .2s;
}

.blog-details-area .sub-heading p:hover {
    color: var(--blueviolet);
}

.blog-details-area .author {
    margin-right: 30px;
}

.blog-details-area .blog-details-wraper .blog-details-top {
    border-radius: 5px;
    margin-bottom: 40px;
    padding: 10px;
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-details-img {
    width: 100%;
    height: 610px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--gray-1);
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-details-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.blog-details-area .blog-details-wraper .blog-details-top .blog-content-heading {
    text-align: center;
    margin: 30px 0;
}

.blog-details-area .blog-details-content .text {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 30px;
    margin-bottom: 20px;
}

.blog-details-area .blog-details-content ul {
    padding: 0 40px;
}

.blog-details-area .blog-details-content ul li {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 30px;
    margin-top: 10px;
    list-style: disc;
}

.blog-details-area .blog-details-bottom .blog-details-bottom-wraper {
    margin-bottom: 80px;
}

.blog-details-area .blog-bottom-content .bottom-content-heading h2 {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    cursor: pointer;
}

.blog-details-area .blog-bottom-content .coaching .text {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    color: var(--black);
    line-height: 28px;
}

.blog-details-area .details-bottom-img {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--gray-1);
    border: 20px solid var(--white);
}

.blog-details-area .details-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========= blog details section end ============ */

.blog-card .text {
    width: 100%;
    height: 200px;
    background-color: var(--main-color);
}


/* card-right start */

.blog-details-area .card-right .card-right-img {
    width: 65px;
    height: 60px;
}

.blog-details-area .card-right .card-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-area .card-right .card-right-header h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin: 10px 0;
    text-align: start;
}

.blog-details-area .card-right-bottom {
    display: flex;
    border-top: 1px solid var(--gray-1);
    padding: 10px 0;
}

.blog-details-area .card-right .card-right-content {
    padding: 0 10px;
}

.blog-details-area .card-right .card-right-content a {
    color: var(--main-color);
}

.blog-details-area .card-right .card-right-content a:hover {
    color: var(--main-color);
}

.blog-details-area .card-right .card-right-content h4 {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: all linear .2s;
}

.blog-details-area .card-right .card-right-content h4:hover {
    color: var(--blueviolet);
}

.blog-details-area .card-right .card-right-content .product-price .product-price-new {
    color: var(--black);
    line-height: 22px;
    font-size: 15px;
    font-weight: 700;
}

.blog-details-area .card-right .card-right-content .product-price .product-price-old {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
    padding-left: 5px;
}

.blog-details-category {
    margin-top: 13px;
}


/* ========= select-course section start ============ */

.blog-details-area .select-course-area {
    margin-top: 120px;
}

.blog-details-area .select-course-area .hello-info .text {
    font-size: 30px;
    margin: 22px 8px;
}

.blog-details-area .select-course-area .hello-info .text span {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
}


/* =========================== */

.blog-details-area .subscribe {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.blog-details-area .footer-btn {
    margin-top: 30px;
}

.blog-details-area .subscribe input {
    width: 100%;
    height: 45px;
    color: var(--black);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
}

.blog-details-area .subscribe input::placeholder {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--gray-2);
}

.blog-details-area .subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--main-color);
    padding: 0 15px;
    border: none;
}

.blog-details-area .subscribe button i {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
}


/* =========================== */


/* according start  */

.blog-details-area .select-category-group {
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10%;
}

.blog-details-area .select-category-group .accordion-header {
    padding: 10px;
}

.blog-details-area .accordion-body {
    padding: 10px;
    border: 0;
}

.blog-details-area .select-category-group span {
    color: var(--black);
    font-size: 15px;
    line-height: 20px;
}

.blog-details-area .items {
    background-color: var(--white);
}

.blog-details-area label {
    display: block;
    margin-bottom: 10px;
}

.blog-details-area .accordion-item {
    margin-top: 5px;
}

.blog-details-area .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--blueviolet);
}

.blog-details-area .accordion-button:not(.collapsed) {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    background-color: transparent;
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

.blog-details-area .accordion-button {
    padding: 10px 0;
}

.blog-details-area .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: transparent;
    outline: none;
    border: none;
}

.blog-details-area .accordion-button {
    border: none;
    outline: none;
}


/* category search  */

.blog-details-area .accordion-body .items .select-according-course {
    display: flex;
    justify-content: space-between;
}

.blog-details-area .accordion-body .items .category-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #333;
}

.blog-details-area .accordion-body .items .category-search:focus {
    outline: .5px solid var(--bs-accordion-btn-focus-border-color);
    border: 1px solid transparent;
}


/* country search  */

.blog-details-area .accordion-body .items .country-search {
    padding: 6px 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid var(--gray-1);
}

.blog-details-area .accordion-body .items .country-search:focus {
    outline: .5px solid var(--main-color);
    border: 1px solid transparent;
}

.blog-details-area .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem none;
    --bs-accordion-active-color: #000;
}


/* according-end  */


/* -======= social-media section start ===== */

.social-media-area {
    margin-top: 40px;
}

.social-media-heading {
    width: 100%;
    text-align: start
}

.social-media-area .social-icons li a i {
    margin-right: 10px;
}


/* -=========== social-media-area section end ========= */


/* ============================ blog details page end =============================== */


/* ============================ order-address page start ============================= */

.order-address-area {
    margin-top: 110px;
    padding: 30px 0;
    overflow: hidden;
}

.order-address-area .step-wizard-list {
    position: relative;
    display: flex;
    background: var(--white);
    color: var(--black-2);
    box-shadow: 0 0 2px var(--black);
    list-style-type: none;
    border-radius: 4px;
    padding: 20px 10px;
    z-index: 10;
    margin: 30px 0;
}

.order-address-area .step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 170px;
    position: relative;
}

.order-address-area .step-wizard-item+.step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: var(--main-color);
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.order-address-area .progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    background-color: var(--white);
    border: 1px solid var(--main-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
}

.order-address-area .progress-count:after {
    content: "";
    height: 40px;
    width: 40px;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}

.order-address-area .progress-count:before {
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}

.order-address-area .progress-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.order-address-area .address-item .progress-count:before,
.order-address-area .address-item~.step-wizard-item .progress-count:before {
    display: none;
}

.order-address-area .address-item~.step-wizard-item .progress-count:after {
    height: 10px;
    width: 10px;
}

.order-address-area .address-item~.step-wizard-item .progress-label {
    opacity: 0.5;
}

.order-address-area .address-item .progress-count:after {
    background: var(--white);
    border: 2px solid var(--main-color);
}

.order-address-area .address-item .progress-count {
    color: var(--main-color);
}

.order-address-area .order-address-card {
    padding: 20px;
    border-radius: 4px;
    background-color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 0 4px var(--gray-1);
}

.order-address-area .order-address-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 0;
}

.order-address-card .address-edit {
    font-size: 16px;
    line-height: 24px;
    color: var(--main-color);
    margin-bottom: 0;
}

.order-address-area .order-address-heading {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: var(--black);
    margin: 20px 0;
}

.order-address-area .order-address-card .inside-order {
    padding: 10px 0;
    border-bottom: 1px solid var(--body);
}

.order-address-area .order-address-card .inside-order,
label .order-address-area .order-address-card .inside-order button {
    font-size: 14px;
}

.order-address-right .table-responsive {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 0 4px var(--gray-1);
    padding: 10px;
}

.order-address-area .td-img img {
    max-width: 50px;
    max-height: 50px;
    object-fit: cover;
}

.order-address-area thead tr {
    border-bottom: 1px solid var(--body);
}

.order-address-area thead th {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 30px;
    vertical-align: middle;
    padding: 10px;
}

.order-address-area td {
    font-size: 14px;
    color: var(--black);
    line-height: 30px;
    vertical-align: middle;
}

.order-address-area .td-price {
    font-size: 14px;
}


/* ============================ order-address page end =============================== */