@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p,
span {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: var(--paraColor);
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--colorBlack);
}

img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

input,
textarea {
    width: 100%;
    padding: 13px 20px;
    outline: none;
    resize: none;
    font-weight: 400;
    background: rgba(247, 232, 242, 0.27);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 14px;
}

input::placeholder,
textarea::placeholder {
    color: #a6a6ac;
}

button {
    border: none;
    outline: none;
}

:root {
    --colorPrimary: #005BBB;
    --colorGreen: #1DC9B7;
    --colorBlue: #1E6CFF;
    --colorYellow: #F2C94C;
    --colorBlack: #162B49;
    --colorWhite: #ffffff;
    --paraColor: #6C798B;
    --ratingColor: #FFA800;
    --gradiantBg:linear-gradient(135deg, #003DA5 0%, #005BBB 50%, #00A3E0 100%);
}


/*============================
    GLOBAL CSS START
============================*/

.common_btn {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: 1px solid transparent;
    transition: all linear .3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.common_btn:hover {
    background: transparent;
    color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.common_btn2 {
    background: linear-gradient(102.93deg, #4d22aa 0%, #005BBB 95.54%);
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    color: var(--colorWhite);
    padding: 14px 40px;
    position: relative;
    overflow: hidden;
}

.common_btn2::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 80px;
    background: linear-gradient(102.93deg, #4d22aa 0%, #005BBB 95.54%);
    top: -17px;
    left: -25px;
    opacity: .5;
    transition: all linear .3s;
    transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.common_btn2:hover:after {
    left: 115%;
}

.view_all {
    font-weight: 400;
    font-size: 14px;
    color: var(--paraColor);
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.view_all i {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.view_all:hover {
    color: var(--colorPrimary);
}

.view_all:hover i {
    margin-left: 5px;
}

.view_all::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--colorPrimary);
    bottom: 0px;
    left: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.view_all:hover::before {
    width: 100%;
}

.wsus__section_heading {
    text-align: center;
}

.wsus__section_heading.heading_left h5,
.wsus__section_heading.heading_left h2 {
    text-align: left;
}

.wsus__section_heading h5 {
    font-size: 20px;
    color: var(--colorPrimary);
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
}

.wsus__section_heading h2 {
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    line-height: 58px;
}

.title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--colorBlack);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.title:hover {
    color: var(--colorPrimary);
}


/* slider button start */

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 6px;
    background: #fbecf3;
    border-radius: 3px;
    margin: 0px 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.slick-dots li.slick-active button {
    width: 25px;
    background: var(--colorPrimary);
}


/* slider button end */


/* breadcrumb start */

.wsus__breadcrumb {
    background: var(--gradiantBg);
    padding: 65px 0px 70px 0px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.wsus__breadcrumb h1 {
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: var(--colorWhite);
    margin-bottom: 10px;
}

.wsus__breadcrumb nav ol {
    justify-content: center;
    margin: 0;
}

.wsus__breadcrumb nav ol li {
    font-weight: 400;
    font-size: 20px;
    color: var(--colorWhite);
    padding: 0 !important;
}

.wsus__breadcrumb nav ol li a {
    font-weight: 400;
    font-size: 20px;
    color: var(--colorWhite);
}

.wsus__breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--colorWhite);
}

.wsus__breadcrumb .bg_animation li {
    z-index: 1;
}

.breadcrumb_animi li:nth-child(1) {
    width: 110px !important;
    height: 110px !important;
    left: -20px !important;
    bottom: -10% !important;
}

.breadcrumb_animi li:nth-child(2) {
    width: 170px !important;
    height: 170px !important;
    left: 0 !important;
    top: -25px !important;
}

.breadcrumb_animi li:nth-child(3) {
    width: 210px !important;
    height: 210px !important;
    left: 10% !important;
    bottom: 35% !important;
}

.breadcrumb_animi li:nth-child(4) {
    width: 115px !important;
    height: 115px !important;
    left: 7% !important;
    bottom: 0% !important;
}

.breadcrumb_animi li:nth-child(5) {
    width: 100px !important;
    height: 100px !important;
    left: 16% !important;
    bottom: -5% !important;
}

.breadcrumb_animi li:nth-child(6) {
    width: 160px !important;
    height: 160px !important;
    left: 20% !important;
    bottom: 20% !important;
}

.breadcrumb_animi_r li:nth-child(1) {
    left: auto !important;
    right: -20px !important;
}

.breadcrumb_animi_r li:nth-child(2) {
    left: auto !important;
    right: 0 !important;
}

.breadcrumb_animi_r li:nth-child(3) {
    right: 10% !important;
    left: auto !important;
}

.breadcrumb_animi_r li:nth-child(4) {
    right: 7% !important;
    left: auto !important;
}

.breadcrumb_animi_r li:nth-child(5) {
    right: 16% !important;
    left: auto !important;
}

.breadcrumb_animi_r li:nth-child(6) {
    right: 20% !important;
    left: auto !important;
}


/* breadcrumb end */


/*============================
    GLOBAL CSS END
============================*/


/*============================
    HOME PAGE START
============================*/


/* header start */

header {
    background-color: #F8F8F8;
    border-bottom: 1px solid #EFEFEF;
    height: 40px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.wsus__header_content ul {
    line-height: 40px;
}

.wsus__header_content ul li a {
    color: var(--colorBlack);
    font-weight: 500;
    font-size: 14px;
    margin-right: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__header_content ul li:last-child a {
    margin: 0;
}

.wsus__header_content ul li a:hover {
    color: var(--colorPrimary);
}


/* header end */


/* menu start */

.main_menu {
    width: 100%;
    height: 80px;
    background: var(--colorWhite);
    padding: 0;
    z-index: 999;
    position: fixed;
    top: 40px;
    left: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.main_menu .container,
header .container,
.wsus__banner .container,
.wsus__footer_bottom .container {
    max-width: 1515px;
}

.main_menu .navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 180px;
}

.main_menu .navbar-nav {
    line-height: 80px;
}

.main_menu .navbar-nav .nav-item {
    position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--colorBlack);
    padding: 0px 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.main_menu .navbar-nav .nav-item:hover .nav-link,
.main_menu .navbar-nav .nav-item .nav-link.active {
    color: var(--colorPrimary);
}

.main_menu .wsus__droap_menu {
    position: absolute;
    width: 200px;
    background: var(--colorWhite);
    line-height: initial;
    border: 1px solid #E8E8E8;
    top: 120%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    max-height: 450px;
    overflow-y: auto;
    z-index: 99;
}

.main_menu .wsus__droap_menu::-webkit-scrollbar-thumb {
    background: #ddd;
}

.main_menu .wsus__droap_menu::-webkit-scrollbar {
    scrollbar-width: thin !important;
    background: #fff;
    height: 4px;
    width: 4px;
}

.main_menu .wsus__droap_menu li a {
    font-size: 14px;
    border-bottom: 1px solid #E8E8E8;
    padding: 15px !important;
    margin: 0 !important;
    color: var(--colorBlack);
    width: 100%;
    font-weight: 500;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.main_menu .wsus__droap_menu li:last-child a {
    border-bottom: 0;
}

.main_menu .wsus__droap_menu li a:hover,
.main_menu .wsus__droap_menu li a.active {
    background: #edecec;
    border-color: var(--colorWhite);
}

.main_menu .navbar-nav li:hover .wsus__droap_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.main_menu .right_menu .start_btn {
    font-size: 18px;
    font-weight: 500;
    padding: 13px 25px;
    border: 1px solid #DA126A;
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.1));
    border-radius: 3px;
    color: var(--colorPrimary);
    width: auto;
    height: auto;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.main_menu .right_menu .start_btn:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.main_menu .right_menu {
    line-height: 80px;
}

.main_menu .right_menu li {
    position: relative;
}

.main_menu .right_menu>li>a {
    line-height: initial;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
    margin: 0px 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.main_menu .right_menu li:last-child a {
    margin-right: 0;
}

.main_menu .right_menu li a span {
    position: absolute;
    top: -5px;
    left: 10px;
    background: linear-gradient(135deg, #003DA5 0%, #005BBB 50%, #00A3E0 100%);
    color: var(--colorWhite);
    font-size: 12px;
    width: 22px;
    height: 22px;
    line-height: 17px;
    text-align: center;
    display: block;
    border-radius: 50%;
    border: 3px solid var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.main_menu .right_menu li a:hover span {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.main_menu .right_menu li:hover .wsus__droap_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.menu_fix {
    position: fixed;
    top: 0;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 10%);
}


/* menu end */


/* banner start */

.wsus__banner {
    background: var(--gradiantBg);
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 120px 0px 130px 0px;
    margin-top: 120px;
    position: relative;
    z-index: 9;
}

.wsus__banner_text h1 {
    font-weight: 700;
    font-size: 58px;
    text-align: center;
    color: var(--colorWhite);
}

.wsus__banner_text p {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: var(--colorWhite);
    width: 85%;
    margin: 25px auto 50px auto !important;
}

.wsus__banner_text form {
    position: relative;
    width: 65%;
    margin: 0 auto;
    z-index: 9;
}

.wsus__banner_text form .nice-select {
    width: 25%;
    height: 60px;
    line-height: 60px;
    border: none;
    border-radius: 4px;
    background: var(--colorBlack);
    color: var(--colorWhite);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.wsus__banner_text form .nice-select .current {
    font-weight: 500;
    font-size: 14px;
    color: var(--colorWhite);
}

.wsus__banner_text .nice-select .list {
    margin-top: 0;
    max-height: 170px;
}

.wsus__banner_text .nice-select:after {
    right: 20px;
    color: var(--colorWhite);
}

.wsus__banner_text form input {
    width: 75%;
    padding: 20px 20px;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--colorWhite);
}

.wsus__banner_text form button {
    padding: 11.5px 30px;
    position: absolute;
    top: 5px;
    right: 6px;
    text-align: center;
}

.wsus__banner_text form button i {
    margin-right: 10px;
}

.wsus__banner_text form button::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 80px;
    background: linear-gradient(135deg, #003DA5 0%, #005BBB 50%, #00A3E0 100%);;
    top: -17px;
    left: -25px;
    opacity: .5;
    transition: all linear .3s;
    transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__banner_text form button:hover:after {
    left: 115%;
}

.wsus__banner_counter li {
    padding: 0px 25px;
    border-right: 1px solid #FFFFFF50;
}

.wsus__banner_counter li:last-child {
    border: none;
}

.wsus__banner_counter li,
.wsus__banner_counter li span {
    font-weight: 600;
    font-size: 18px;
    color: var(--colorWhite);
}


/* banner end */


/* categories start */

.wsus__categories {
    background: #F8F8F8;
    position: relative;
    z-index: 9;
}

.wsus__categories_item {
    background: var(--colorWhite);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    margin-top: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    position: relative;
    z-index: 1;
}

.wsus__categories_item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    margin-top: 5px;
}

.wsus__categories_item h3 {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 5px;
}

.wsus__categories_item:hover {
    margin-top: 15px;
    box-shadow: 0px 4px 84px rgb(0 0 0 / 10%);
}


/* categories end */


/* gallery stat */

.wsus__galley {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__gallery_item {
    background: var(--colorWhite);
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    padding: 8px;
    margin-top: 25px;
}

.wsus__gallery_item_img {
    position: relative;
    height: 215px;
    overflow: hidden;
}

.wsus__gallery_item_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__gallery_item_img p {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-size: 26px;
    font-weight: 600;
    border-radius: 3px;
}

.wsus__gallery_item_img p span {
    position: relative;
    top: -10px;
    font-weight: 500;
    color: var(--colorWhite);
}

.wsus__gallery_item_overlay {
    position: absolute;
    width: 90%;
    height: 90%;
    background: #162b49db;
    top: 5%;
    left: 5%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__gallery_item_overlay li a {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorWhite);
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff3;
    line-height: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__gallery_item_overlay li:last-child a {
    padding: 0;
    margin: 0;
    border: 0;
}

.wsus__gallery_item_overlay li a:hover {
    color: var(--colorPrimary);
}

.wsus__gallery_item_text {
    padding: 20px 20px 10px 20px;
}

.wsus__gallery_item_text p {
    font-size: 14px;
    color: var(--paraColor);
    margin-bottom: 5px;
}

.wsus__gallery_item_text p span {
    font-size: 14px;
    color: var(--colorBlack);
}

.wsus__gallery_item_text p a {
    background: linear-gradient(135deg, #003DA5 0%, #005BBB 50%, #00A3E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.wsus__gallery_item_text ul {
    margin-top: 20px;
}

.wsus__gallery_item_text ul li a {
    color: var(--paraColor);
}

.wsus__gallery_item_text ul li a i {
    color: var(--colorBlack);
    margin-right: 5px;
}

.wsus__gallery_item_text ul li p {
    margin: 0;
    color: var(--ratingColor);
    font-size: 16px;
}

.wsus__gallery_item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.wsus__gallery_item:hover .wsus__gallery_item_overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}


/* gallery end */


/* offer start */

.wsus__offer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__offer_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.wsus__offer_text p {
    font-size: 42px;
    font-weight: 400;
    color: var(--colorWhite);
}

.wsus__offer_text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--colorWhite);
    margin-bottom: 38px;
}

.wsus__offer_text a {
    margin-bottom: 15px;
}

.wsus__offer_text a:hover {
    color: var(--colorWhite);
    border-color: var(--colorWhite);
}

.wsus__offer_img {
    width: 435px;
    height: 400px;
    margin: 30px 0 30px auto;
}


/* offer end */


/* recent product start */

.wsus__recent_product_filter {
    height: 100%;
    align-items: end;
    justify-content: end;
    padding-bottom: 10px;
}

.wsus__recent_product_filter button {
    font-weight: 500;
    font-size: 18px;
    color: var(--paraColor) !important;
    border: 0 !important;
    margin-left: 55px;
    background: none !important;
    transition: all linear .3s;
    padding: 0;
}

.wsus__recent_product_filter button i {
    margin-right: 5px;
}

.wsus__recent_product_filter button:hover,
.wsus__recent_product_filter button.active {
    color: var(--colorPrimary) !important;
}

.wsus__recent_product_item {
    margin-top: 45px;
    padding: 20px;
    width: 100px;
    height: 100px;
    background: #f6e8f3;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
}

.wsus__recent_product_item:hover {
    margin-top: 30px;
}


/* recent product end */


/* why choose start */

.wsus__why_choose {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__why_choose .wsus__section_heading h5,
.wsus__why_choose .wsus__section_heading h2 {
    color: var(--colorWhite);
}

.wsus__why_choose_item {
    width: 270px;
    height: 270px;
    background: var(--colorWhite);
    text-align: center;
    border-radius: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
}

.wsus__why_choose_item::after {
    position: absolute;
    content: "";
    width: 140px;
    height: 28px;
    top: 50%;
    right: -155px;
    transform: translateY(-50%);
    background: url(../images/why_choose_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.wsus__why_choose_item.last::after {
    display: none;
}

.wsus__why_choose_item .img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.wsus__why_choose_item h4 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 25px;
    text-align: center;
    line-height: 30px;
}


/* why choose end */


/* testimonial start */

.wsus__testimonial_item {
    background: #f9ecf5;
    border-radius: 6px;
    padding: 40px;
    position: relative;
    margin-top: 25px;
}

.wsus__testimonial_item::after {
    position: absolute;
    content: "\f10e";
    font-family: "font awesome 5 free";
    font-size: 80px;
    font-weight: 600;
    top: 0;
    left: 20px;
    color: #0000000f;
}

.testi_slider .wsus__testimonial_item {
    margin: 0 12px;
}

.testi_slider .wsus__testimonial_item p {
    font-size: 18px;
}

.wsus__testimonial_item .rating {
    color: var(--ratingColor);
    font-size: 20px !important;
    margin: 25px 0px 30px 0px;
}

.wsus__testimonial_footer .img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.wsus__testimonial_footer .text h4 {
    font-weight: 600;
    font-size: 20px;
}

.wsus__testimonial_footer .text p {
    font-size: 16px;
}


/* testimonial end */


/* brand start */

.wsus__brand_item li {
    width: 20%;
    padding: 0px 50px;
    margin-bottom: 70px;
}

.wsus__brand_item li img:hover {
    filter: invert(26%) sepia(92%) saturate(6558%) hue-rotate(324deg) brightness(87%) contrast(95%);
}


/* brand end */


/* download start */

.wsus__download {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__download_text {
    padding-right: 60px;
    padding-bottom: 15px;
}

.wsus__download_text h2,
.wsus__download_text h2 span {
    font-size: 42px;
    font-weight: 700;
    color: var(--colorWhite);
}

.wsus__download_text h2 span {
    color: var(--colorPrimary);
}

.wsus__download_text p {
    color: var(--colorWhite);
    margin-top: 35px;
    margin-bottom: 55px;
    max-width: 90%;
}

.wsus__download_text ul li a {
    display: block;
    width: 170px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}


/* download end */


/* blog start */

.wsus__single_blog {
    background: var(--colorWhite);
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    transition: 0.25s ease-out;
    padding: 8px;
    overflow: hidden;
    margin-top: 25px;
}

.wsus__single_blog_img {
    height: 270px;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.wsus__single_blog_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_img p {
    background: var(--colorPrimary);
    position: absolute;
    padding: 4px 11px;
    border-radius: 5px;
    right: 10px;
    top: 10px;
    color: var(--colorWhite);
}

.wsus__single_blog_img p span {
    color: var(--colorWhite);
    font-size: 18px;
    font-weight: 600;
}

.wsus__single_blog_text {
    padding: 20px 20px 10px 20px;
}

.wsus__single_blog_text P {
    font-size: 14px;
    margin-bottom: 10px;
}

.wsus__single_blog_text P a {
    font-size: 14px;
    color: var(--colorBlack);
}

.wsus__single_blog_text .title {
    margin-bottom: 15px;
}

.wsus__single_blog:hover {
    margin-top: 20px;
    box-shadow: 0px 4px 84px rgb(0 0 0 / 10%);
}

.wsus__single_blog:hover img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}


/* blog end */


/* footer start */

footer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    z-index: 9;
}

.wsus__subscribe {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: -145px;
    padding: 50px;
    border-radius: 12px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.wsus__subscribe h2 {
    font-weight: 700;
    font-size: 42px;
    color: var(--colorWhite);
}

.wsus__subscribe p {
    color: var(--colorWhite);
    margin-top: 10px;
    margin-bottom: 40px;
}

.wsus__subscribe form {
    position: relative;
    width: 85%;
}

.wsus__subscribe form input {
    padding: 22px 30px;
    background: var(--colorWhite);
}

.wsus__subscribe form button {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 11px 27px;
    text-align: center;
}

.wsus__footer_content .footer_logo {
    max-width: 180px;
    margin-bottom: 12px;
}

.wsus__footer_content h4,
.wsus__footer_counter h4 {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorWhite);
    margin-bottom: 25px;
}

.wsus__footer_content ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-top: 20px;
    text-underline-offset: 5px;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
}

.wsus__footer_content ul li a:hover {
    text-decoration: underline;
    color: var(--colorPrimary);
}

.wsus__footer_counter p {
    color: var(--colorWhite);
    margin-top: 45px;
    margin-bottom: 45px;
    width: 80%;
}

.wsus__footer_counter ul li {
    border-right: 1px solid #374862;
    margin-right: 30px;
    min-width: 135px;
}

.wsus__footer_counter ul li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.wsus__footer_counter ul li h5 {
    font-weight: 600;
    font-size: 26px;
    color: var(--colorPrimary);
    margin-bottom: 5px;
}

.wsus__footer_counter ul li p {
    margin: 0;
    width: 100%;
}

.wsus__footer_counter ul li:last-child h5 {
    padding-left: 18px;
    position: relative;
}

.wsus__footer_counter ul li:last-child h5::after {
    position: absolute;
    content: "$";
    top: 0;
    left: 0;
}

.wsus__footer_bottom {
    padding: 30px 0px;
    border-top: 1px solid #3748629e;
}

.wsus__footer_copyright ul li a {
    font-size: 16px;
    color: #ABABAB;
    margin-right: 15px;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
}

.wsus__footer_copyright ul li a:hover {
    color: var(--colorPrimary);
}

.home_2 .wsus__footer_copyright p {
    color: var(--paraColor);
}

.wsus__footer_copyright p {
    color: #ABABAB;
}

.wsus__footer_copyright p span {
    color: var(--colorWhite);
}

.wsus__footer_payment {
    justify-content: end;
}

.wsus__footer_payment p {
    color: var(--colorWhite);
    margin-right: 40px;
}

.wsus__footer_payment p i {
    margin-left: 5px;
}


/* footer end */


/* background animation start */

.bg_animation li {
    position: absolute;
    background: url(../images/loading_animi.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .8;
    z-index: 1;
}

.bg_animation li:nth-child(1) {
    width: 360px;
    height: 360px;
    left: -7%;
    bottom: -2%;
}

.bg_animation li:nth-child(2) {
    width: 160px;
    height: 160px;
    left: 14%;
    bottom: -10px;
}

.bg_animation li:nth-child(3) {
    width: 245px;
    height: 245px;
    left: 20%;
    bottom: 6%;
}

.bg_animation li:nth-child(4) {
    width: 230px;
    height: 230px;
    left: 30%;
    bottom: -13%;
}

.bg_animation li:nth-child(5) {
    width: 140px;
    height: 140px;
    left: 30%;
    bottom: 35%;
}

.bg_animation li:nth-child(6) {
    width: 190px;
    height: 190px;
    left: 24%;
    bottom: 50%;
}

.bg_animation li:nth-child(7) {
    width: 180px;
    height: 180px;
    left: 0%;
    top: -9%;
}

.bg_animation li:nth-child(8) {
    width: 250px;
    height: 250px;
    left: 5%;
    top: 9%;
}

.bg_animation li:nth-child(9) {
    width: 200px;
    height: 200px;
    left: 15%;
    top: 35%;
}

.bg_animation li:nth-child(10) {
    width: 60px;
    height: 60px;
    left: 40%;
    top: 32%;
}

.bg_animation li:nth-child(11) {
    width: 144px;
    height: 144px;
    left: 33%;
    top: 5%;
}

.bg_animation li:nth-child(12) {
    width: 180px;
    height: 180px;
    left: 24%;
    top: -11%;
}

.bg_animation li:nth-child(13) {
    width: 100px;
    height: 100px;
    top: 9%;
    left: 20%;
}

.bg_animation_r li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.bg_animation_r li:nth-child(1) {
    right: -7%;
    left: auto !important;
}

.bg_animation_r li:nth-child(2) {
    right: 14%;
    left: auto !important;
}

.bg_animation_r li:nth-child(3) {
    right: 20%;
    left: auto !important;
}

.bg_animation_r li:nth-child(4) {
    right: 30%;
    left: auto !important;
}

.bg_animation_r li:nth-child(5) {
    right: 30%;
    left: auto !important;
}

.bg_animation_r li:nth-child(6) {
    right: 24%;
    left: auto !important;
}

.bg_animation_r li:nth-child(7) {
    right: 0;
    left: auto !important;
}

.bg_animation_r li:nth-child(8) {
    right: 5%;
    left: auto !important;
}

.bg_animation_r li:nth-child(9) {
    right: 15%;
    left: auto !important;
}

.bg_animation_r li:nth-child(10) {
    right: 40%;
    left: auto !important;
}

.bg_animation_r li:nth-child(11) {
    right: 33%;
    left: auto !important;
}

.bg_animation_r li:nth-child(12) {
    right: 24%;
    left: auto !important;
}

.bg_animation_r li:nth-child(13) {
    right: 20%;
    left: auto !important;
}


/* background animation end */


/* scroll button start */

.wsus__scroll_btn {
    width: 35px;
    height: 70px;
    border-radius: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 111;
    cursor: pointer;
    text-align: center;
    line-height: 70px;
    background: var(--colorPrimary);
    border: 1px solid var(--colorWhite);
}

.wsus__scroll_btn span {
    font-size: 16px;
    color: var(--colorWhite);
    animation: scroll_amini linear 2s infinite alternate;
    -webkit-animation: scroll_amini linear 2s infinite alternate;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

@keyframes scroll_amini {
    from {
        bottom: -20px;
    }
    to {
        bottom: 17px;
    }
}


/* scroll button end */


/*============================
    HOME PAGE END
============================*/


/*============================
    ABOUT PAGE START
============================*/

.wsus__about_us {
    background: #F8F8F8;
}

.wsus__about_img {
    width: 510px;
    height: 510px;
}

.wsus__about_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.wsus__about_text h2,
.wsus__about_text h2 span {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 25px;
}

.wsus__about_text h2 span {
    color: var(--colorPrimary);
}

.wsus__about_text p {
    margin-bottom: 33px;
}

.wsus__about_text a {
    margin-top: 20px;
}

.wsus__team {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__single_team {
    padding: 10px;
    background: #fbecf3;
    border-radius: 4px;
    text-align: center;
    margin: 0px 12px;
    margin-top: 25px;
}

.wsus__single_team_img {
    height: 400px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.wsus__single_team_img ul {
    position: absolute;
    top: 0;
    left: -60px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_team_img ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fbecf3;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: all linear .3s;
    color: #da126a;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 25%);
    margin-top: 10px;
}

.wsus__single_team_img ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__single_team_text {
    padding: 20px 0px 10px 0px;
}

.wsus__single_team_text h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.wsus__single_team_text p {
    text-align: center;
}

.wsus__single_team:hover ul {
    left: 10px;
}


/*============================
    ABOUT PAGE END
============================*/


/*============================
    PRODUCT START
============================*/

.wsus__product_page {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.wsus__product_page_header {
    justify-content: space-between;
    align-items: center;
}

.wsus__product_page_header form {
    width: 50%;
    position: relative;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    overflow: hidden;
}

.wsus__product_page_header form input {
    border: none;
    padding: 22px 20px;
}

.wsus__product_page_header form button {
    position: absolute;
    top: 5px;
    right: 5px;
}

.wsus__product_page_header form button i {
    margin-right: 10px;
}

.wsus__product_page_header .nice-select {
    height: 69px;
    line-height: 72px;
    width: 180px;
    border: 1px solid #DEDEDE !important;
}

.wsus__product_page_header .nice-select:after {
    margin-top: 0px;
}

.wsus__product_sidebar_filter {
    background: var(--colorPrimary);
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 25px;
    display: none;
}

.wsus__product_sidebar_filter h5 {
    color: var(--colorWhite);
    margin-left: 15px;
}

.wsus__product_sidebar_filter span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--colorWhite);
    border-left: 1px solid var(--colorWhite);
    cursor: pointer;
}

.wsus__product_sidebar_filter span .minus {
    display: none;
}

.wsus__product_sidebar_area {
    transform-origin: top;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__product_sidebar_area.show_filter {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
}

.wsus__product_sidebar_filter.show_minus span .plus {
    display: none;
}

.wsus__product_sidebar_filter.show_minus span .minus {
    display: inline-block;
    line-height: 51px;
}

.wsus__product_sidebar {
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    padding: 25px;
    background: var(--colorWhite);
}

.wsus__product_sidebar h3 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
    font-weight: 600;
    font-size: 24px;
}

.wsus__product_sidebar ul li a {
    font-weight: 400;
    font-size: 18px;
    color: #535353;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__product_sidebar ul li a span {
    transition: all linear .3s;
}

.wsus__product_sidebar ul li a:hover,
.wsus__product_sidebar ul li a:hover span {
    color: var(--colorPrimary);
}

.wsus__product_sidebar_offer {
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    background: var(--colorWhite);
    overflow: hidden;
}

.wsus__product_sidebar_offer a {
    display: block;
    width: 100%;
    max-height: 320px;
}

.wsus__pagination nav ul {
    justify-content: center;
}

.wsus__pagination nav ul li a {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    line-height: 50px;
    padding: 0;
    margin: 0px 5px !important;
    text-align: center;
    color: var(--colorBlack);
    background: var(--colorWhite);
    border: none !important;
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__pagination nav ul li a:focus {
    box-shadow: none;
}

.wsus__pagination nav ul li a:hover,
.wsus__pagination nav ul li a.active {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__pagination nav ul li .prev,
.wsus__pagination nav ul li .next {
    width: auto !important;
    height: auto !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    color: var(--paraColor) !important;
    border-radius: 0 !important;
    background: var(--colorWhite) !important;
    margin: 0 !important;
    margin-right: 30px !important;
}

.wsus__pagination nav ul li .next {
    margin-right: 0 !important;
    margin-left: 30px !important;
}

.wsus__pagination nav ul li .prev:hover,
.wsus__pagination nav ul li .next:hover {
    color: var(--colorPrimary) !important;
}


/*============================
    PRODUCT END
============================*/


/*============================
    PRODUCT DETAILS START
============================*/

.wsus__product_details_slider {
    padding: 15px;
    background: var(--colorWhite);
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 5px;
}

.wsus__product_details_slider_item {
    max-height: 520px;
    margin: 0px 12px;
    border-radius: 5px;
    overflow: hidden;
}

.wsus__product_details .nextArrow,
.wsus__product_details .prevArrow {
    width: 35px;
    height: 35px;
    background: #f4e0e9;
    border: 1px solid var(--colorPrimary);
    line-height: 34px;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all linear .3s;
    color: var(--colorPrimary);
    position: absolute;
    top: 50%;
    right: -10px;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__product_details .prevArrow {
    right: auto;
    left: -10px;
}

.wsus__product_details .nextArrow:hover,
.wsus__product_details .prevArrow:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__product_details_text .nav {
    margin-top: 37px;
}

.wsus__product_details_text .nav .nav-item button {
    font-size: 18px;
    font-weight: 500;
    color: var(--paraColor);
    padding: 0;
    margin: 0;
    background: none;
    transition: all linear .2s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin-right: 70px;
    padding-bottom: 5px;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.wsus__product_details_text .nav .nav-item button:hover {
    color: var(--colorPrimary);
}

.wsus__product_details_text .nav .nav-item button.active {
    border-color: var(--colorPrimary);
    color: var(--colorPrimary);
}

.wsus__pro_description {
    margin-top: 40px;
}

.wsus__pro_description h1,
.wsus__pro_description h2,
.wsus__pro_description h3,
.wsus__pro_description h4,
.wsus__pro_description h5,
.wsus__pro_description h6 {
    font-weight: 600;
    margin-top: 45px;
}

.wsus__pro_description h1 {
    font-size: 36px;
}

.wsus__pro_description h2 {
    font-size: 30px;
}

.wsus__pro_description h3 {
    font-size: 26px;
}

.wsus__pro_description h4 {
    font-size: 20px;
}

.wsus__pro_description h5 {
    font-size: 16px;
}

.wsus__pro_description p {
    margin-top: 15px;
}

.wsus__pro_description ul,
.wsus__pro_description ol {
    margin-top: 20px;
}

.wsus__pro_description ul li,
.wsus__pro_description ol li {
    margin-left: 30px;
    color: var(--colorBlack);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    position: relative;
}

.wsus__pro_description ul li a,
.wsus__pro_description ol li a {
    color: #1e6cff;
    font-size: 16px;
    font-weight: 500;
}

.wsus__pro_description ul li::after,
.wsus__pro_description ol li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 0;
    left: -30px;
}

.wsus__pro_det_file ul li::after,
.wsus__pro_det_file ol li::after {
    background: url(../images/circle_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.wsus__pro_det_images ul li::after,
.wsus__pro_det_images ol li::after {
    background: url(../images/file_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.wsus__pro_det_font ul li::after,
.wsus__pro_det_font ol li::after {
    background: url(../images/link_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.wsus__pro_det_note {
    background: #fceef5;
    padding: 20px;
    border-radius: 4px;
    margin-top: 45px;
}

.wsus__pro_det_note p {
    margin: 0;
}

.wsus__pro_det_note p span {
    color: var(--colorPrimary);
    margin-right: 5px;
}

.wsus__single_comment {
    background: #f8f8f8;
    padding: 30px;
    margin-top: 30px;
}

.wsus__single_comment .comment_date {
    color: var(--colorPrimary);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.wsus__single_comment .comment_date span {
    color: var(--ratingColor);
}

.wsus__single_comment .comment_des {
    margin: 12px 0px 20px 0px;
}

.comment_footer .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.comment_footer .text {
    width: 91.8%;
}

.comment_footer .text h3 {
    font-weight: 600;
    font-size: 20px;
}

.comment_footer .text p {
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment_footer .text p a {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.comment_footer .text p a:hover {
    color: var(--colorBlack);
}

.wsus__single_comment.reply {
    margin-left: 100px;
}

.wsus__single_comment.reply .text {
    width: 90.5%;
}

.wsus__comment_input_area {
    background: var(--colorWhite);
    padding: 30px;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}

.wsus__comment_input_area h3 {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 20px;
}

.wsus__comment_single_input {
    margin-bottom: 28px;
}

.wsus__comment_single_input label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--paraColor);
}

.wsus__comment_single_input button {
    float: right;
    margin-top: 15px;
}

.wsus__sidebar_licence {
    background: #da126a;
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    text-align: center;
    padding: 35px;
}

.wsus__sidebar_licence .nice-select:after {
    right: 10px;
}

.select_licance {
    display: flex;
    justify-content: center;
}

.select_licance .nice-select {
    background: none;
    border: none;
    padding-left: 0;
    width: auto;
}

.select_licance .nice-select .current {
    color: var(--colorWhite);
    font-size: 18px;
}

.select_licance .nice-select:after {
    color: var(--colorWhite);
}

.wsus__sidebar_licence h2 {
    font-weight: 600;
    font-size: 80px;
    color: var(--colorWhite);
    margin-top: 22px;
    overflow: hidden;
    padding-right: 20px;
    text-align: center;
}

.wsus__sidebar_licence h2 span {
    font-weight: 600;
    font-size: 30px;
    color: var(--colorWhite);
    position: relative;
    left: 15px;
}

.wsus__sidebar_licence .feature {
    margin-bottom: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wsus__sidebar_licence .feature li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-top: 15px;
    padding-left: 25px;
}

.wsus__sidebar_licence .feature li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 18px;
    height: 15px;
    top: 5px;
    left: 0;
}

.wsus__sidebar_licence .live {
    display: block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    color: var(--colorWhite);
    border: 1px solid #FFFFFF;
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.1));
    border-radius: 3px;
    transition: all linear .3s;
    margin-bottom: 20px;
    text-align: center;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_licence .common_btn {
    display: block;
    background: var(--colorYellow) !important;
    box-shadow: none !important;
    text-align: center !important;
    border: none !important;
    color: var(--colorBlack) !important;
}

.wsus__sidebar_licence .common_btn:hover {
    color: var(--colorWhite) !important;
}

.wsus__sidebar_licence .live:hover {
    background: var(--colorWhite);
    color: var(--colorBlack);
}

.wsus__sidebar_buy_info,
.wsus__sidebar_pro_info,
.wsus__sidebar_author_info {
    background: var(--colorWhite);
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 8px;
    padding: 30px;
}

.wsus__sidebar_buy_info h3,
.wsus__sidebar_pro_info h3,
.wsus__sidebar_author_info h3 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

.wsus__sidebar_buy_info .info li {
    padding: 11px 16px;
    background: rgb(248 75 151 / 8%);
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_buy_info .info li p i {
    margin-right: 5px;
}

.wsus__sidebar_buy_info .info li span {
    font-weight: 700;
    color: var(--colorPrimary);
}

.wsus__sidebar_buy_info .info li span i {
    color: var(--ratingColor);
}

.wsus__sidebar_buy_info .info li:hover {
    background: rgba(217, 19, 106, 0.08);
}

.wsus__sidebar_pro_info ul li {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 400;
    columns: var(--paraColor);
    margin-top: 20px;
    color: var(--paraColor);
}

.wsus__sidebar_pro_info ul li span {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
    display: inline-block;
    min-width: 150px;
}

.wsus__sidebar_pro_info ul li p {
    text-align: right;
}

.wsus__sidebar_pro_info ul li p a {
    font-size: 15px;
    font-weight: 400;
    color: #1e6cff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_pro_info ul li p a:hover {
    color: var(--colorBlack);
}

.wsus__related_product {
    background-color: #f8f8f8;
    margin-bottom: -245px;
}

.wsus__sidebar_author_text {
    margin-bottom: 20px;
}

.wsus__sidebar_author_text .img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.wsus__sidebar_author_text .text {
    max-width: 215px;
}

.wsus__sidebar_author_text .text h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
}

.wsus__sidebar_author_text .text p {
    font-size: 17px;
}

.wsus__sidebar_author_info a {
    padding: 15px 20px;
}

.wsus__sidebar_author_info .view_profile {
    background: var(--colorWhite);
    color: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
    margin-right: 10px;
}

.wsus__sidebar_author_info .view_profile:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.home_2 .wsus__sidebar_author_info .view_profile {
    background: var(--colorWhite);
    color: var(--colorGreen);
}

.home_2 .wsus__sidebar_author_info .view_profile:hover {
    background: var(--colorGreen);
    color: var(--colorWhite);
}

.home_3 .wsus__sidebar_author_info .view_profile {
    background: var(--colorWhite);
    color: var(--colorBlue);
    border-color: var(--colorBlue);
}

.home_3 .wsus__sidebar_author_info .view_profile:hover {
    background: var(--colorBlue);
    color: var(--colorWhite);
}


/*============================
    PRODUCT DETAILS END
============================*/


/*============================
    CART VIEW START
============================*/

.wsus__cart_table {
    width: 100%;
    box-shadow: 0px 25px 63px rgb(0 0 0 / 5%);
    background: var(--colorWhite);
}

.wsus__cart_area table {
    width: 100%;
}

.wsus__cart_area table tr {
    border-bottom: 1px solid #ededed;
}

.wsus__cart_area table tr th {
    background: #fbeff5;
}

.wsus__cart_area table tr th,
.wsus__cart_area table tr td {
    padding: 20px 30px;
}

.wsus__cart_area table tr .description {
    padding-left: 0;
    width: 40%;
    min-width: 300px;
}

.wsus__cart_area table tr .img {
    width: 10%;
    padding-right: 15px;
    min-width: 100px;
}

.wsus__cart_area table tr .price,
.wsus__cart_area table tr .discount,
.wsus__cart_area table tr .total {
    width: 15%;
    min-width: 100px;
}

.wsus__cart_area table tr .action {
    text-align: center;
    width: 5%;
    min-width: 100px;
}

.wsus__cart_area table tr .img a {
    border: 4px solid #fcecf3;
    width: 90px;
    height: 90px;
}

.wsus__cart_area table tr .description h3 a {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: var(--colorBlack);
}

.wsus__cart_area table tr .description p {
    font-size: 14px;
    color: var(--colorPrimary);
    margin-top: 5px;
    font-weight: 400;
}

.wsus__cart_area table tr .description p span {
    font-size: 14px;
}

.wsus__cart_area table tr .description p b {
    font-weight: 400;
    color: var(--colorPrimary);
    border-left: 1px solid #ededed;
    padding-left: 10px;
    margin-left: 10px;
    line-height: 12px;
}

.wsus__cart_area table p {
    font-weight: 500;
    font-size: 18px;
}

.wsus__cart_area table tr .discount p {
    color: var(--colorPrimary);
}

.wsus__cart_area table tr .action a {
    font-size: 16px;
    color: var(--paraColor);
    transition: 0.15s ease;
    -webkit-transition: 0.15s ease;
    -moz-transition: 0.15s ease;
    -ms-transition: 0.15s ease;
    -o-transition: 0.15s ease;
}

.wsus__cart_area table tr .action a:hover {
    color: var(--colorPrimary);
}

.wsus__cart_coupone {
    position: relative;
}

.wsus__cart_coupone input {
    padding: 16.5px 20px;
    border-radius: 4px 0px 0px 4px;
}

.wsus__cart_coupone button {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 13px 60px;
}

.wsus__cart_price_list .list_item {
    border: 1px solid #ededed;
    padding: 25px 30px 30px;
    text-align: center;
}

.wsus__cart_price_list .list_item p {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wsus__cart_price_list .list_item p span {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
}

.wsus__cart_price_list .list_item .discount span {
    color: var(--colorPrimary);
}

.wsus__cart_price_list .list_item .total {
    padding-top: 20px;
    border-top: 1px solid #ededed;
    color: var(--colorBlack);
}

.wsus__cart_price_list .list_item a {
    width: 100%;
    background: var(--colorYellow) !important;
    color: var(--colorBlack) !important;
    padding: 13px 25px !important;
    box-shadow: none !important;
    text-align: center !important;
    border: none !important;
}

.wsus__cart_price_list .list_item a:hover {
    color: var(--colorWhite) !important;
}


/*============================
    CART VIEW END
============================*/


/*============================
    CART EMPTY START
============================*/

.wsus__cart_empty_text {
    text-align: center;
}

.wsus__cart_empty_text .img {
    height: 490px;
}

.wsus__cart_empty_text h3 {
    font-weight: 600;
    font-size: 36px;
    margin: 45px 0px 35px 0px;
    text-align: center;
}


/*============================
    CART EMPTY END
============================*/


/*============================
    CHECKOUT START
============================*/

.wsus__checkout_text {
    box-shadow: 0px 25px 63px rgb(0 0 0 / 5%);
}

.wsus__checkout_text h3 {
    padding: 20px 30px;
    border-radius: 4px;
    background: var(--colorBlack);
    color: var(--colorWhite);
    font-weight: 600;
    font-size: 20px;
}

.wsus__checkout_form {
    padding: 5px 30px 30px 30px;
}

.wsus__checkout_form_single {
    margin-top: 25px;
}

.wsus__checkout_form_single label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--paraColor);
}

.wsus__checkout_form_single input,
.wsus__checkout_form_single textarea {
    font-size: 13px;
    padding-left: 20px;
    background: rgba(247, 232, 242, 0.27);
    border: 1px solid #e8e8e8;
    outline: 0;
    border-radius: 4px;
}

.wsus__checkout_text .nav {
    /* border: 1px solid #d9d9d9; */
    /* border-radius: 0; */
    /* margin: 30px 30px 0px 30px; */
    padding: 10px 30px 30px 30px;
    justify-content: space-between;
}

.wsus__checkout_text .nav .nav-item {
    width: 23%;
}

.wsus__checkout_text .nav .nav-item .nav-link {
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    background: var(--colorWhite);
    transition: all linear 0s;
    -webkit-transition: all linear 0s;
    -moz-transition: all linear 0s;
    -ms-transition: all linear 0s;
    -o-transition: all linear 0s;
}

.wsus__checkout_text .nav .nav-item .nav-link::before {
    position: absolute;
    content: "\f00c";
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-family: "font awesome 5 free";
    font-weight: 600;
    background: #da126a;
    pointer-events: none;
    top: -7px;
    right: -7px;
    z-index: 9;
    opacity: 0;
    transition: all linear 0s;
    -webkit-transition: all linear 0s;
    -moz-transition: all linear 0s;
    -ms-transition: all linear 0s;
    -o-transition: all linear 0s;
}

.wsus__checkout_text .nav .nav-item .nav-link.active {
    border: 1px solid var(--colorPrimary);
}

.wsus__checkout_text .nav .nav-item .nav-link.active::before {
    opacity: 1;
}

.wsus__checkout_footer {
    padding: 10px 30px 30px 30px;
    text-align: center;
}

.wsus__checkout_footer .note {
    background: rgba(218, 18, 106, 0.07);
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.wsus__checkout_footer button {
    background: var(--colorYellow);
    width: 345px;
    text-align: center;
}

.wsus__checkout_footer button:hover {
    color: var(--colorBlack);
    border-color: var(--colorYellow);
}

.wsus__checkout_footer .terms_condition {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    width: 60%;
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

.wsus__checkout_footer .terms_condition a {
    color: var(--colorPrimary);
}

.wsus__checkout_sidebar h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.wsus__checkout_sidebar ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 30px;
}

.wsus__checkout_sidebar ul li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.wsus__checkout_sidebar ul li .img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.wsus__checkout_sidebar ul li .text {
    width: 66%;
}

.wsus__checkout_sidebar ul li .text a {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--colorBlack);
}

.wsus__checkout_sidebar ul li .text p {
    font-size: 14px;
    color: #da126a;
    margin: 7px 0px 7px 0px;
}

.wsus__checkout_sidebar ul li .text h3 {
    font-weight: 600;
    font-size: 22px;
    color: #162b49;
    margin: 0;
}

.wsus__checkout_sidebar_price {
    margin-top: 20px;
    border: 1px solid #ededed;
    padding: 25px 30px 30px;
}

.wsus__checkout_sidebar_price p {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 7px;
    margin-bottom: 7px;
}

.wsus__checkout_sidebar_price p span {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
}

.wsus__checkout_sidebar_price p .dis_amount {
    color: var(--colorPrimary);
}

.wsus__checkout_sidebar_price .total {
    border-top: 1px solid #ededed;
    color: var(--colorBlack);
    margin: 0;
    padding: 0;
}


/*============================
    CHECKOUT END
============================*/


/*============================
    PAYMENT DONE START
============================*/

.wsus__payment_done_text {
    text-align: center;
}

.wsus__payment_done_img {
    height: 490px;
}

.wsus__payment_done_text h3 {
    font-size: 40px;
    font-weight: 700;
    color: #162b49;
    margin-top: 35px;
    margin-bottom: 30px;
    text-align: center;
}


/*============================
    PAYMENT DONE END
============================*/


/*============================
    BLOG DETAILS START
============================*/

.wsus__blog_details_img {
    height: 560px;
    margin-bottom: 40px;
}

.wsus__blog_details_header li {
    margin-right: 35px;
    color: var(--paraColor);
    font-size: 16px;
    font-weight: 400;
}

.wsus__blog_details_header li i {
    margin-right: 6px;
    color: #da126a;
}

.wsus__blog_details_text h1,
.wsus__blog_details_text h2,
.wsus__blog_details_text h3,
.wsus__blog_details_text h4,
.wsus__blog_details_text h5 {
    font-weight: 600;
    line-height: 38px;
    margin-top: 12px;
    margin-bottom: 19px;
}

.wsus__blog_details_text h1 {
    font-size: 35px;
}

.wsus__blog_details_text h2 {
    font-size: 30px;
}

.wsus__blog_details_text h3 {
    font-size: 26px;
}

.wsus__blog_details_text h4 {
    font-size: 20px;
}

.wsus__blog_details_text h5 {
    font-size: 18px;
}

.wsus__blog_details_text h6 {
    font-size: 16px;
}

.wsus__blog_details_text p {
    margin-bottom: 40px;
}

.wsus__blog_center_img {
    height: 265px;
    margin-bottom: 25px;
}

.wsus__blog_details_text ul li,
.wsus__blog_details_text ul li {
    padding-left: 30px;
    font-size: 16px;
    line-height: 26px;
    color: var(--colorBlack);
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
}

.wsus__blog_details_text li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 4px;
    left: 0;
}

.wsus__blog_tags_and_share {
    padding-top: 20px;
    margin-top: 47px;
    border-top: 1px solid #dcdcdc;
}

.wsus__blog_tags_and_share .tags li span,
.wsus__blog_tags_and_share .share li span {
    font-weight: 500;
    font-size: 24px;
    margin-right: 25px;
}

.wsus__blog_tags_and_share .tags li a {
    font-weight: 400;
    font-size: 16px;
    color: var(--paraColor);
    transition: all linear .3s;
    margin-right: 25px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__blog_tags_and_share .tags li a:hover {
    color: var(--colorPrimary);
}

.wsus__blog_tags_and_share .share li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--colorPrimary);
    border-radius: 50%;
    color: var(--colorWhite);
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__blog_tags_and_share .share li:last-child a {
    margin-right: 0;
}

.wsus__blog_tags_and_share li a:hover {
    background: transparent;
    color: var(--colorPrimary);
}

.wsus__sidebar_item {
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    margin-top: 30px;
    padding: 30px;
}

.wsus__sidebar_item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--colorBlack);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}

.wsus__sidebar_search form {
    position: relative;
}

.wsus__sidebar_search form input {
    background: #f7e8f2;
    border: none;
    padding: 17px 20px;
}

.wsus__sidebar_search form input::placeholder {
    color: var(--colorBlack);
}

.wsus__sidebar_search form button {
    position: absolute;
    top: 13px;
    right: 20px;
    background: none;
    border: none;
    color: var(--colorPrimary);
    font-size: 20px;
}

.wsus__sidebar_blog ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.wsus__sidebar_blog ul li .img {
    width: 85px;
    height: 95px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.wsus__sidebar_blog ul li .text {
    width: 71%;
}

.wsus__sidebar_blog ul li .text a {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_blog ul li .text a:hover {
    color: var(--colorPrimary);
}

.wsus__sidebar_blog ul li .text p {
    font-size: 14px;
    margin-top: 10px;
}

.wsus__sidebar_blog ul li .text p i {
    color: var(--colorPrimary);
    margin-right: 5px;
}

.wsus__sidebar_categories ul li a {
    font-weight: 400;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    color: var(--paraColor);
    margin-top: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_categories ul li a span {
    font-size: 18px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_categories ul li a:hover,
.wsus__sidebar_categories ul li a:hover span {
    color: var(--colorPrimary);
}

.wsus__sidebar_tags ul li a {
    color: #6C798B;
    font-size: 16px;
    font-weight: 400;
    padding: 13px 25px;
    background: #f7e8f2;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__sidebar_tags ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__sidebar_subscribe {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 0 !important;
}

.wsus__sidebar_subscribe_overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
}

.wsus__sidebar_subscribe h3 {
    color: var(--colorWhite);
    border-color: #615B9C;
}

.wsus__sidebar_subscribe p {
    color: var(--colorWhite);
}

.wsus__sidebar_subscribe input {
    background: var(--colorWhite);
    padding: 16px 20px;
    border-radius: 3px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.wsus__sidebar_subscribe button {
    width: 100%;
}

.wsus__sidebar_subscribe button:hover {
    background: var(--colorWhite);
    color: var(--colorBlack);
    border-color: var(--colorWhite);
}


/*============================
    BLOG DETAILS END
============================*/


/*============================
    ERROR START
============================*/

.wsus_error_img {
    height: 210px;
}

.wsus_error_text h2 {
    font-weight: 600;
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.wsus_error_text a {
    position: relative;
    bottom: -5px;
}


/*============================
    ERROR END
============================*/


/*============================
 TERMS AND CONDITION START
============================*/

.wsus__terms_condition_text h1,
.wsus__terms_condition_text h2,
.wsus__terms_condition_text h3,
.wsus__terms_condition_text h4,
.wsus__terms_condition_text h5 {
    font-weight: 500;
    margin-top: 50px;
}

.wsus__terms_condition_text h1 {
    font-size: 35px;
}

.wsus__terms_condition_text h2 {
    font-size: 28px;
}

.wsus__terms_condition_text h3 {
    font-size: 24px;
}

.wsus__terms_condition_text h4 {
    font-size: 18px;
}

.wsus__terms_condition_text h5 {
    font-size: 16px;
}

.wsus__terms_condition_text h6 {
    font-size: 14px;
}

.wsus__terms_condition_text p {
    margin-top: 20px;
}

.wsus__terms_condition_text ul li,
.wsus__terms_condition_text ol li {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    padding-left: 20px;
    position: relative;
}

.wsus__terms_condition_text li::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: var(--colorBlack);
    top: 9px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/*============================
 TERMS AND CONDITION END
============================*/


/*============================
    FAQ START
============================*/

.wsus__faq_text h3 {
    font-size: 26px;
    font-weight: 600;
}

.wsus__faq_text .accordion-item {
    background: #ffffff;
    box-shadow: 0px 4px 84px rgb(0 0 0 / 6%);
    border-radius: 4px;
    margin-top: 20px;
    border: none;
    overflow: hidden;
}

.wsus__faq_text .accordion-header {
    border: none;
}

.wsus__faq_text .accordion-button {
    padding: 20px 25px;
    font-weight: 500;
    font-size: 18px;
    color: var(--paraColor);
    border-bottom: 1px solid transparent;
}

.wsus__faq_text .accordion-button:not(.collapsed) {
    background: var(--colorPrimary);
    color: var(--colorWhite) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: none;
}

.wsus__faq_text .accordion-button::after {
    background-image: url(../images/accordian_plus.png);
}

.wsus__faq_text .accordion-button:not(.collapsed)::after {
    background-image: url(../images/accordian_minus.png);
}

.wsus__faq_text .accordion-body {
    padding: 20px;
    background: var(--colorPrimary);
}

.wsus__faq_text .accordion-body p {
    color: var(--colorWhite);
}

.wsus__faq_text .accordion-button:focus {
    box-shadow: none;
}


/*============================
    FAQ END
============================*/


/*============================
    CONTACT US START
============================*/

.wsus__contact_info h3 {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}

.wsus__contact_info p {
    font-size: 20px;
    max-width: 80%;
    font-weight: 400;
    line-height: 32px;
}

.wsus__contact_single_info {
    background: #f8eff6;
    border-radius: 4px;
    text-align: center;
    padding: 28px;
    margin-top: 25px;
}

.wsus__contact_single_info span,
.wsus__contact_map span {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--colorPrimary);
    border-radius: 50%;
    color: var(--colorPrimary);
    font-size: 20px;
}

.wsus__contact_single_info h4,
.wsus__contact_map h4 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 30px;
}

.wsus__contact_single_info a,
.wsus__contact_map p {
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor) !important;
    margin-top: 5px;
    display: block;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__contact_single_info a:hover {
    color: var(--colorPrimary) !important;
}

.wsus__contact_map {
    background: #f8eff6;
    border-radius: 4px;
    padding: 28px;
    margin-top: 25px;
}

.wsus__contact_map span {
    margin: 0;
}

.wsus__contact_map .text {
    padding-left: 65px;
    position: relative;
}

.wsus__contact_map .text span {
    position: absolute;
    left: 0;
    top: 0;
}

.wsus__contact_map .text h4 {
    margin-top: 0;
    text-align: left;
}

.wsus__contact_map .text p {
    max-width: 80%;
    text-align: left;
}

.wsus__contact_map .map {
    height: 240px;
    background: var(--colorWhite);
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
}

.wsus__contact_map .map iframe {
    width: 100%;
    height: 100%;
}

.wsus__contact_form {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.wsus__contact_form h3 {
    padding: 25px;
    background: #162B49;
    color: #fff;
    text-align: center;
}

.wsus__contact_form form {
    padding: 30px 30px 5px 30px;
}

.wsus__contact_form_single {
    margin-bottom: 25px;
}

.wsus__contact_form_single label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
}

.wsus__contact_form_single button {
    width: 100%;
    padding: 10px 40px;
    margin-top: 20px;
    box-shadow: none;
    text-align: center;
}


/*============================
    CONTACT US END
============================*/


/*============================
    PROFILE START
============================*/

.wsus__profile_header_text {
    background: var(--gradiantBg);
    padding: 65px 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.wsus__profile_header_text .img {
    width: 260px;
    height: 260px;
    border: 8px solid var(--colorWhite);
    border-radius: 50%;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.wsus__profile_header_text .img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wsus__profile_header_text .img span {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    background: #00DE5E;
    bottom: 18px;
    right: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wsus__profile_header_text .text {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.wsus__profile_header_text .text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--colorWhite);
}

.wsus__profile_header_text .text .skills {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.wsus__profile_header_text .rating {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2470588235);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.wsus__profile_header_text .rating p {
    font-weight: 500;
    font-size: 14px;
    color: var(--colorWhite);
}

.wsus__profile_header_text .rating span {
    color: var(--ratingColor);
    display: inline-block;
    margin-right: 15px;
}

.wsus__profile_header_text .header_button {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.wsus__profile_header_text .header_button .common_btn {
    background: var(--colorWhite);
    color: var(--colorPrimary);
    border-color: var(--colorWhite);
    margin-right: 10px;
    box-shadow: none;
}

.wsus__profile_header_text .header_button .logout {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--colorWhite);
    border-radius: 3px;
    color: var(--paraColor);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.header_button li a:hover {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.wsus__profile_header .header_menu {
    border-bottom: 1px solid #bfbfbf;
}

.wsus__profile_header .header_menu li {
    width: 16.5%;
    text-align: center;
}

.wsus__profile_header .header_menu li a {
    font-weight: 500;
    font-size: 18px;
    color: #6c798b;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    padding: 25px 0;
}

.wsus__profile_header .header_menu li a i {
    margin-right: 5px;
}

.wsus__profile_header .header_menu li a:hover {
    color: var(--colorPrimary);
}

.wsus__profile_header .header_menu li a.active {
    color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.profile_bg_animi li:nth-child(1) {
    width: 190px;
    height: 190px;
    left: 3%;
    bottom: 0%;
}

.profile_bg_animi li:nth-child(2) {
    width: 150px;
    height: 150px;
    left: 15%;
    bottom: -20%;
}

.profile_bg_animi li:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 18%;
    bottom: 20%;
}

.profile_bg_animi li:nth-child(4) {
    width: 130px;
    height: 130px;
    left: 26%;
    bottom: -2%;
}

.profile_bg_animi li:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 30%;
    bottom: 35%;
}

.profile_bg_animi li:nth-child(6) {
    width: 150px;
    height: 150px;
    left: 22%;
    bottom: 56%;
}

.profile_bg_animi li:nth-child(7) {
    width: 230px;
    height: 230px;
    left: -3%;
    top: -10%;
}

.profile_bg_animi li:nth-child(8) {
    width: 150px;
    height: 150px;
    left: 14%;
    top: -17%;
}

.profile_bg_animi li:nth-child(9) {
    width: 100px;
    height: 100px;
    left: -2%;
    top: 85%;
}

.profile_bg_animi li:nth-child(10) {
    width: 60px;
    height: 60px;
    left: 35%;
    top: 64%;
}

.profile_bg_animi li:nth-child(11) {
    width: 145px;
    height: 145px;
    left: 32%;
    top: -10%;
}

.profile_bg_animi .bg_animation_r li:nth-child(1) {
    right: 3%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(2) {
    right: 15%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(3) {
    right: 18%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(4) {
    right: 26%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(5) {
    right: 30%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(6) {
    right: 22%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(7) {
    right: -3%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(8) {
    right: 14%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(9) {
    right: -2%;
    left: auto;
}

.profile_bg_animi .bg_animation_r li:nth-child(10) {
    left: auto;
    right: 35%;
}

.profile_bg_animi .bg_animation_r li:nth-child(11) {
    right: 32%;
    left: auto;
}

.wsus__profile_overview h2 {
    font-weight: 600;
    font-size: 26px;
    margin-top: 35px;
}

.wsus__profile_overview p {
    margin-top: 30px;
}

.wsus__profile_overview .red_color {
    color: var(--colorPrimary);
    font-weight: 500;
}

.wsus__profile_overview .blue_color {
    color: #1E6CFF;
    font-weight: 600;
}

.wsus__profile_overview ul,
.wsus__profile_overview ol {
    margin-top: 35px;
}

.wsus__profile_overview ul li,
.wsus__profile_overview ol li {
    margin-left: 30px;
    color: var(--colorBlack);
    font-weight: 400;
    font-size: 16px;
    margin-top: 15px;
    position: relative;
}

.wsus__profile_overview ul li::after,
.wsus__profile_overview ol li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 0;
    left: -30px;
}

.wsus__profile_sidebar {
    margin-top: 40px;
}

.wsus__profile_sedebar_item {
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 30px;
}

.wsus__profile_sedebar_item h2 {
    font-weight: 600;
    font-size: 24px;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.profile_sedebar_followers ul li {
    border-right: 1px solid #d9d9d9;
    width: 50%;
}

.profile_sedebar_followers ul li:last-child {
    border: none;
}

.profile_sedebar_followers ul li h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--colorPrimary);
    text-align: center;
    margin-bottom: 5px;
}

.profile_sedebar_followers ul li p {
    text-align: center;
}

.profile_sedebar_contact {
    border: 1px solid #FACADF;
}

.profile_sedebar_contact form label {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.profile_sedebar_contact form input,
.profile_sedebar_contact form textarea {
    margin-bottom: 25px;
}

.profile_sedebar_contact form button {
    width: 100%;
    text-align: center;
}

.profile_sedebar_social ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.profile_sedebar_social ul li a:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.wsus__profile_download {
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 30px 40px;
    background: var(--colorWhite);
}

.wsus__profile_download h2 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dcdcdc;
}

.wsus__download_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dcdcdc;
}

.wsus__download_item:last-child {
    border: none;
    padding: 0;
}

.wsus__download_item_left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wsus__download_item_left .img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 15px;
}

.wsus__download_item_left .text {
    max-width: 250px;
}

.wsus__download_item_left .text a {
    font-weight: 600;
    font-size: 16px;
    color: var(--colorBlack);
    margin-bottom: 8px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__download_item_left .text a:hover {
    color: var(--colorPrimary);
}

.wsus__download_item_left .text p {
    font-size: 14px;
    color: var(--paraColor);
    margin-bottom: 12px;
}

.wsus__download_item_left .text h4 {
    font-weight: 600;
    font-size: 22px;
}

.wsus__download_item_right {
    text-align: right;
}

.wsus__download_item_right p {
    color: var(--paraColor);
    font-size: 23px;
    padding-top: 10px;
    cursor: pointer;
    text-align: left;
}

.wsus__download_item_right .rating {
    color: var(--paraColor);
    font-size: 23px;
    padding-top: 10px;
    cursor: pointer;
    text-align: left;
    margin-top: -45px
}

.wsus__download_item_right p i {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__download_item_right p:hover i {
    color: var(--ratingColor);
}

.wsus__gallery_item_text .product-review {
    margin-top: -24px;
}

.wsus__pro_det_review .user-product-review {
    margin-top: -24px;
}

.error {
    font-size: 20px;
}

.user-rating-box {
    width: 100%;
}

.user-rating-box2 {
    width: 100%;
    margin-top: -40px;
}

.wsus__profile_download_empty {
    text-align: center;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 30px 40px;
    background: var(--colorWhite);
}

.wsus__profile_download_empty h2 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dcdcdc;
    text-align: left;
    margin-bottom: 40px;
}

.wsus__profile_download_empty .img {
    width: 400px;
    height: 260px;
    margin: 0 auto;
}

.wsus__profile_download_empty h3 {
    font-weight: 600;
    font-size: 36px;
    margin: 40px 0;
    text-align: center;
}

.wsus__profile_collection .wsus__gallery_item_img {
    height: 180px;
}

.wsus__profile_settings {
    padding: 30px;
    background: var(--colorWhite);
}

.wsus__profile_form_item {
    margin-bottom: 22px;
}

.wsus__profile_form_item label {
    font-weight: 400;
    font-size: 16px;
    color: var(--paraColor);
    margin-bottom: 5px;
    display: block;
}

.wsus__profile_form_item select {
    width: 100%;
    padding: 13px 20px;
    outline: none;
    resize: none;
    font-weight: 400;
    background: rgba(247, 232, 242, 0.27);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 14px;
    appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 10px;
}

.wsus__profile_form_item .nice-select {
    border: 1px solid #e8e8e8 !important;
    font-size: 14px;
    height: 49px;
    line-height: 49px;
    padding-left: 20px;
    margin-bottom: 23px;
}

.wsus__profile_form_item .nice-select .current {
    font-weight: 400;
    font-size: 14px;
}

.wsus__profile_form_item .nice-select:after {
    right: 20px;
}

.wsus__profile_settings ul {
    align-items: center;
    justify-content: end;
}

.wsus__profile_settings ul li .cancel {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorPrimary);
    background: none;
    margin-right: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__profile_settings ul li .cancel:hover {
    color: var(--colorBlack);
}

.wsus__profile_account_connect h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}

.wsus__profile_account_connect ul li {
    text-align: center;
    background: var(--colorWhite);
    border: 1px solid #d9d9d9;
    padding: 20px;
    border-radius: 4px;
    transition: all linear .3s;
    width: 22%;
    margin-top: 20px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__profile_account_connect ul li:hover {
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
}

.wsus__profile_account_connect ul li a {
    padding: 8px 0px;
    width: 100%;
    text-align: center;
}

.wsus__profile_account_connect ul li p {
    padding-top: 7px;
    padding-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

.wsus__profile_account_connect ul li .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
}

.wsus__profile_account_connect ul li a.disconnect {
    background: var(--colorBlack);
}

.wsus__profile_account_connect .disconnect:hover {
    background: transparent;
    color: var(--colorBlack);
    border-color: var(--colorBlack);
}

.wsus__profile .modal {
    background: #162b49ba;
}

.wsus__edit_modal .modal-header {
    background: var(--colorBlack);
    font-weight: 600;
    font-size: 20px;
}

.wsus__edit_modal .modal-header .modal-title {
    font-weight: 600;
    font-size: 20px !important;
    color: var(--colorWhite);
}

.wsus__edit_modal .modal-body {
    padding: 0;
}

.wsus__edit_modal .modal-dialog {
    max-width: 900px;
}

.wsus__profile_account_connect {
    padding: 30px;
}

.wsus__profile_photo p {
    margin-bottom: 5px;
}

.wsus__profile_photo label {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FDF9FC;
    border: 1px solid #E8E8E8;
    font-size: 18px;
    font-weight: 400;
    color: var(--colorBlack);
    cursor: pointer;
    margin-bottom: 30px;
}

.wsus__profile_photo label .img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: block;
}

.wsus__profile_photo label span {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #0049FF;
    margin-top: 15px;
}

.wsus__rating_moadl_area .modal-content {
    padding: 30px;
}

.wsus__rating_moadl_area .modal-header {
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DCDCDC;
}

.wsus__rating_moadl_area .modal-title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px !important;
    color: var(--colorBlack);
}

.wsus__rating_moadl_area .btn-close {
    border: 2px solid var(--colorBlack);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    transition: all linear .3s;
    box-shadow: none !important;
}

.wsus__rating_moadl_area .modal-body {
    padding: 0;
}

.wsus__rating_moadl_area .modal-body p {
    font-weight: 400;
    font-size: 18px;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

.wsus__rating_moadl_area .modal-body p i {
    color: var(--ratingColor);
    cursor: pointer;
}

.wsus__rating_moadl_area .modal-body label {
    font-weight: 400;
    font-size: 18px;
    color: var(--colorBlack);
    display: block;
    margin-top: 25px;
    margin-bottom: 5px;
}

.wsus__rating_moadl_area .modal-body textarea {
    background: #FDF9FC;
    border: 1px solid #E8E8E8;
    border-radius: 0;
}

.wsus__rating_moadl_area .modal-body button {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}


/*============================
    PROFILE END
============================*/


/*============================
    BECOME AUTHOR START
============================*/

.wsus__author_header {
    background: var(--gradiantBg);
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wsus__author_header h1 {
    font-size: 58px;
    margin-bottom: 40px;
    color: var(--colorWhite);
    font-weight: 700;
    position: relative;
    z-index: 9;
}

.wsus__author_header a {
    background: var(--colorWhite) !important;
    color: var(--colorPrimary) !important;
    border: none !important;
    box-shadow: none;
    position: relative;
    z-index: 9;
}

.wsus__author_header a:hover {
    box-shadow: 0 5px 8px 0px rgba(0, 0, 0, 0.2);
}

.author_bg_animi li:nth-child(1) {
    width: 250px;
    height: 252px;
}

.author_bg_animi li:nth-child(2) {
    width: 120px;
    height: 120px;
}

.author_bg_animi li:nth-child(3) {
    width: 180px;
    height: 180px;
    bottom: 15%;
}

.author_bg_animi li:nth-child(4) {
    width: 170px;
    height: 170px;
}

.author_bg_animi li:nth-child(6) {
    width: 150px;
    height: 150px;
    bottom: 64%;
    left: 22%;
}

.author_bg_animi li:nth-child(8) {
    width: 190px;
    height: 190px;
    left: 10%;
    top: 16%;
}

.author_bg_animi li:nth-child(5) {
    bottom: 42%;
}

.author_bg_animi .bg_animation_r li:nth-child(8) {
    right: 10%;
    left: auto;
}

.wsus__author_benefits_area {
    background: #f8f8f8;
    margin-top: -220px;
}

.wsus__author_benefits {
    background: var(--colorWhite);
    border-radius: 8px;
    text-align: center;
    padding: 30px 25px;
    margin-top: 30px;
    transition: 250ms ease;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    -webkit-transition: 250ms ease;
    -moz-transition: 250ms ease;
    -ms-transition: 250ms ease;
    -o-transition: 250ms ease;
}

.wsus__author_benefits .img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 25px;
}

.wsus__author_benefits h3 {
    font-weight: 700;
    font-size: 20px;
}

.wsus__author_benefits:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.author_categories {
    margin-bottom: -245px;
}

.author_categories .wsus__categories_item {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/*============================
    BECOME AUTHOR END
============================*/


/*============================
    UPLOAD PRODUCT START
============================*/

.upload_product {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-bottom: -250px;
}

.upload_product_text {
    padding: 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.upload_product_text h3 {
    font-weight: 700;
    font-size: 26px;
    color: var(--colorBlack);
}

.upload_product_text h6 {
    font-weight: 400;
    font-size: 22px;
    color: var(--colorPrimary);
    margin: 12px 0px 25px 0px;
}

.upload_form_input .nice-select,
.upload_product_text .nice-select {
    width: 100%;
    background: #F2F2F2;
    border: 1px solid #BFBFBF;
    border-radius: 4px;
    color: #162B49;
    font-weight: 500;
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    margin-bottom: 25px;
}

.upload_product_text h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--colorBlack);
}

.upload_product_text p {
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid #D9D9D9;
    margin: 10px 0px 20px 0px;
    padding-bottom: 15px;
}

.upload_product_text ul li .cancel {
    font-weight: 500;
    font-size: 18px;
    color: #EB5757;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.upload_product_text ul li .cancel:hover {
    color: #162B49;
}

.upload_product_text ul li .next {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    background: #DA126A;
    border-radius: 4px;
    padding: 10px 40px;
    margin-left: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.upload_product_text ul li .next:hover {
    background: #162B49;
}

.upload_product_img {
    height: 590px;
}


/*============================
    UPLOAD PRODUCT END
============================*/


/*============================
    UPLOAD PRODUCT INFO START
============================*/

.upload_product_info {
    background: rgb(22, 43, 73);
    background: linear-gradient(0deg, rgba(22, 43, 73, 0) 0%, rgb(22 43 73 / 5%) 100%);
}

.upload_product_info h3 {
    background: var(--colorBlack);
    font-weight: 600;
    font-size: 20px;
    color: var(--colorWhite);
    padding: 20px 30px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.upload_product_form {
    padding: 10px 30px 30px 30px;
    background: #fff;
    border: 1px solid #eeeeee96;
}

.upload_form_input label {
    display: block;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--paraColor);
}

.upload_form_input label span {
    font-weight: 400;
    font-size: 16px;
    color: var(--colorBlack);
    margin-left: 10px;
}

.upload_form_input label span b {
    font-weight: 400;
    color: var(--colorPrimary);
}

.upload_form_input input,
.upload_form_input textarea {
    background: #FDF9FC;
    border: 1px solid #E8E8E8;
    width: 100%;
    padding: 17px 20px;
    outline: none;
    resize: none;
}

.upload_box {
    text-align: center;
    background: #FDF9FC;
    border: 1px solid #E8E8E8;
    border-radius: 2px;
    padding: 40px;
}

.upload_box label {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: var(--colorBlack);
    cursor: pointer;
    text-align: center;
}

.upload_box label span {
    color: #0049FF;
    font-size: 18px;
    margin-left: 0px;
}

.upload_box .img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.upload_form_input .nice-select {
    background: #FDF9FC;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.upload_form_input {
    margin-top: 20px;
}

.upload_form_input ul li button {
    color: var(--colorWhite) !important;
    border: none;
    box-shadow: none;
}

.upload_form_input .upload {
    background: #27AE60 !important;
    margin-right: 20px !important;
}

.upload_form_input .delete {
    background: #EB5757;
}

.upload_form_input ul li button:hover {
    box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.1);
}


/*============================
    UPLOAD PRODUCT INFO END
============================*/


/*============================
 UPLOAD PRODUCT DONE START
============================*/

.upload_product_done {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.upload_product_done_text {
    text-align: center;
}

.upload_product_done_text .img {
    height: 415px;
}

.upload_product_done_text h2 {
    font-weight: 700;
    font-size: 42px;
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: center;
}

.upload_product_done_text p {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 28px;
    text-align: center;
}

.upload_product_done_text a {
    margin-bottom: -5px;
}


/*============================
 UPLOAD PRODUCT DONE END
============================*/


/*============================
    LOGIN START
============================*/

.wsus__login {
    background: var(--gradiantBg);
    margin-bottom: -245px;
}

.wsus__login_area {
    border: 1px solid #E0E0E0;
    background: var(--colorWhite);
    position: relative;
    z-index: 9;
}

.wsus__login_area h2 {
    background: var(--colorBlack);
    color: var(--colorWhite);
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    padding: 20px 0px 22px 0px;
}

.wsus__login_area form {
    padding: 30px 40px;
}

.wsus__login_inpu_area {
    margin-bottom: 25px;
    position: relative;
}

.wsus__login_inpu_area label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    margin-bottom: 8px;
}

.wsus__login_inpu_area .eye {
    display: block;
    position: absolute;
    top: 45px;
    right: 20px;
    cursor: pointer;
}

.wsus__login_inpu_area input {
    border-radius: 0;
}

.wsus__login_inpu_area .form-check {
    margin: 0;
}

.wsus__login_inpu_area .form-check input {
    padding: 0;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 3px;
}

.wsus__login_inpu_area .form-check label {
    color: var(--colorBlack);
    display: inline-block;
    margin: 0;
    padding: 0;
}

.wsus__login_inpu_area .form-check a {
    color: var(--colorPrimary);
    float: right;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__login_inpu_area .form-check a:hover {
    color: var(--colorBlack);
}

.wsus__login_area button {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 40px;
    border-radius: 0;
    margin-bottom: 15px;
    box-shadow: none;
    text-align: center;
}

.wsus__login_inpu_area ul li a {
    display: flex;
    justify-content: center;
    background: #FAFAFA;
    border: 1px solid rgba(83, 86, 251, 0.16);
    font-weight: 400;
    font-size: 18px;
    color: var(--paraColor);
    padding: 15px 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__login_inpu_area ul li a span {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.wsus__login_inpu_area ul li a:hover {
    color: var(--colorPrimary);
}

.wsus__login_inpu_area .form-check-input:focus {
    border-color: var(--colorPrimary);
    box-shadow: none;
}

.wsus__login_inpu_area .form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.wsus__login_area .go_login {
    text-align: center;
}

.wsus__login_area .go_login a {
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__login_area .go_login a:hover {
    color: var(--colorPrimary);
}

.login_animi_area li:nth-child(8) {
    top: 5%;
}

.login_animi_area li:nth-child(1) {
    bottom: 38%;
    width: 300px;
    height: 300px;
}

.login_animi_area li:nth-child(2) {
    left: 0%;
    bottom: 8%;
}

.login_animi_area li:nth-child(3) {
    left: 8%;
    bottom: 22%;
}

.login_animi_area li:nth-child(5) {
    left: 23%;
    bottom: 36%;
    width: 100px;
    height: 100px;
}

.login_animi_area li:nth-child(6) {
    bottom: 70%;
    width: 140px;
    height: 140px;
    left: 22%;
}

.login_animi_area li:nth-child(11) {
    width: 100px;
    height: 100px;
    left: 25%;
    top: 30%;
}

.login_animi_area li:nth-child(10) {
    left: 14%;
}

.login_animi_area li:nth-child(4) {
    left: 15%;
    bottom: 5%;
}

.login_animi_area .bg_animation_r li:nth-child(2) {
    left: auto;
    right: 0%;
}

.login_animi_area .bg_animation_r li:nth-child(3) {
    right: 8%;
    left: auto;
}

.login_animi_area .bg_animation_r li:nth-child(4) {
    right: 15%;
    left: auto;
}

.login_animi_area .bg_animation_r li:nth-child(5) {
    right: 23%;
    left: auto;
}

.login_animi_area .bg_animation_r li:nth-child(10) {
    right: 14%;
    left: auto;
}

.login_animi_area .bg_animation_r li:nth-child(11) {
    right: 25%;
    left: auto;
}

.login_animi_area .bg_animation_r li:nth-child(6) {
    right: 22%;
    left: auto;
}


/*============================
    LOGIN END
============================*/


/*============================
    INVOICE START
============================*/

.wsus__invoice {
    margin: 100px 0px;
}

.wsus__invoice_header .invoice_logo {
    max-width: 450px;
}

.wsus__invoice_header h3 {
    font-weight: 700;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.wsus__invoice_header p {
    font-size: 18px;
    max-width: 65%;
}

.wsus__invoice_body {
    padding: 10px 50px 50px 50px;
    background: #da126a0d;
    border-radius: 12px;
    margin: 40px 0px;
}

.wsus__invoice_body ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-top: 40px;
}

.wsus__invoice_body ul li span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    min-width: 250px;
}

.wsus__invoice_body ul li a {
    color: #0501CC;
}

.wsus__invoice_footer p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-top: 40px;
}

.wsus__invoice_footer a {
    color: #0501CC;
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
}


/*============================
    INVOICE END
============================*/


/*============================
    HOME PAGE 2 START
============================*/

.home_2 .common_btn {
    background: var(--colorGreen);
    border-color: var(--colorGreen);
    color: var(--colorWhite);
}

.home_2 .common_btn:hover {
    background: var(--colorWhite);
    color: var(--colorGreen);
}

.home_2 .wsus__section_heading h5 {
    color: var(--colorGreen);
}

.home_2 header .wsus__header_content ul li a:hover {
    color: var(--colorGreen);
}

.main_menu_2 .navbar-nav .nav-item:hover .nav-link,
.main_menu_2 .navbar-nav .nav-item .nav-link.active {
    color: var(--colorGreen);
}

.right_menu_2 li a.my_account {
    width: auto;
    height: auto;
    border-radius: 2px;
    padding: 15px 25px;
    box-shadow: none;
}

.right_menu_2 li a.my_account i {
    margin-right: 5px;
}

.main_menu_2 .right_menu_2 li a span {
    background: var(--colorGreen);
}

.wsus__banner_2 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 100vh;
    margin: 0;
    padding: 120px 0px 0px 0px;
    position: relative;
}

.wsus__banner_2::after {
    position: absolute;
    content: "";
    background: url(../images/banner_shapes1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 330px;
    height: 385px;
    bottom: 0;
    left: 0;
    animation: banner_shape_animi linear 1.5s infinite alternate;
    -webkit-animation: banner_shape_animi linear 1.5s infinite alternate;
}

@keyframes banner_shape_animi {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    to {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}

.wsus__banner_2 div {
    height: 100%;
}

.wsus__banner_2 .wsus__banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}

.wsus__banner_2 .wsus__banner_text h1,
.wsus__banner_2 .wsus__banner_text p {
    text-align: left;
    color: var(--colorBlack);
    position: relative;
}

.wsus__banner_2 .wsus__banner_text h1::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    background: var(--colorGreen);
    top: -25px;
    left: -28px;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wsus__banner_2 .wsus__banner_text p {
    margin: 25px 0 50px 0 !important;
}

.wsus__banner_2 .wsus__banner_text form {
    margin: 0;
    width: 85%;
    box-shadow: 0px 25px 63px rgba(0, 0, 0, 0.05);
}

.wsus__banner_2 .wsus__banner_text form button {
    padding: 11.5px 24px;
    background: var(--colorYellow);
    color: var(--colorBlack);
    border-radius: 0;
}

.wsus__banner_2 .wsus__banner_text form button::after {
    background: #ddd;
}

.wsus__banner_2 .wsus__banner_counter li,
.wsus__banner_2 .wsus__banner_counter li span {
    color: var(--paraColor);
    font-weight: 400;
}

.wsus__banner_2 .wsus__banner_text form .nice-select {
    background: var(--colorGreen);
    border-radius: 0;
}

.wsus__banner_2 .wsus__banner_counter li {
    padding: 0;
    border-color: #6c798b8a;
    padding-right: 25px;
    margin-right: 25px;
}

.wsus__banner_2 .wsus__banner_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wsus__banner_2 .wsus__banner_img .img {
    height: 600px;
}

.wsus__categories_2 .wsus__categories_item {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.wsus__categories_2 .wsus__categories_item .icon {
    margin-top: 15px;
    width: 50px;
    height: 50px;
}

.wsus__counter_2 {
    margin-bottom: -200px;
}

.wsus__single_counter2_area {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__single_counter2 {
    padding: 0px 50px;
}

.wsus__single_counter2 h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
    text-align: center;
    margin-top: 35px;
    margin-bottom: 10px;
}

.wsus__single_counter2 p {
    color: var(--colorWhite);
    text-align: center;
}

.wsus__single_counter2_text {
    background: var(--colorWhite);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
}

.wsus__single_counter2_text h3 {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 20px;
}

.wsus__single_counter2_text p {
    margin-bottom: 30px;
}

.wsus__single_counter2_text a {
    padding: 16px 40px;
}

.wsus__single_counter2_text a.color_yellow {
    background: var(--colorYellow);
    border-color: var(--colorYellow) !important;
    color: var(--colorBlack);
}

.wsus__single_counter2_text a.color_yellow:hover {
    color: var(--colorBlack);
}

.wsus__single_counter2_text .icon {
    display: block;
    width: 85px;
    height: 85px;
    position: absolute;
    bottom: 19px;
    right: 15px;
}

.wsus__single_counter2_text_area {
    position: relative;
    top: -200px;
}

.wsus__recent_product_2_item {
    background: var(--colorWhite);
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}

.wsus__recent_product_2_item .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.wsus__recent_product_2_item .text {
    max-width: 71%;
}

.wsus__recent_product_2_item .text a {
    font-weight: 600;
    font-size: 18px;
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wsus__recent_product_2_item .text a:hover {
    color: var(--colorPrimary);
}

.home_2 .wsus__recent_product_2_item .text a:hover {
    color: var(--colorGreen);
}

.home_3 .wsus__recent_product_2_item .text a:hover {
    color: var(--colorBlue);
}

.wsus__recent_product_2_item .text p {
    font-size: 16px;
    color: #ef262c;
    margin-top: 8px;
}

.wsus__why_choose_2 .wsus__why_choose_item::after {
    background: url(../images/why_choose_shapes2.png);
    background-size: cover;
}

.wsus__why_choose_2 .wsus__section_heading h2 {
    color: var(--colorBlack);
}

.wsus__why_choose_2 .wsus__why_choose_item {
    border: 1px solid #1DC9B7;
}

.wsus__offer_2 .wsus__offer_text h2 {
    margin-bottom: 45px;
    text-align: center;
}

.wsus__offer_2 .wsus__offer_text h2 span {
    font-size: 42px;
    font-weight: 400;
    color: var(--colorWhite);
}

.wsus__offer_2 .wsus__offer_text a {
    background: var(--colorYellow) !important;
    border-color: var(--colorYellow) !important;
    color: var(--colorBlack) !important;
    border-radius: 40px;
    margin: 0 auto;
}

.wsus__offer_text a:hover {
    color: var(--colorWhite) !important;
    border-color: var(--colorWhite);
}

.wsus__blog_2 .wsus__single_blog_img p {
    background: var(--colorGreen);
}

.home_2 .title:hover,
.home_2 .view_all:hover {
    color: var(--colorGreen);
}

.footer_2 .wsus__subscribe {
    margin: 0;
    padding: 0;
}

.footer_2 .wsus__subscribe h2,
.footer_2 .wsus__subscribe p {
    text-align: center;
    color: var(--colorBlack);
}

.footer_2 .wsus__subscribe form {
    margin: 0 auto;
}

.footer_2 .wsus__subscribe form button {
    background: var(--colorYellow) !important;
    border-color: var(--colorYellow) !important;
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.footer_2 .wsus__subscribe form button:hover {
    color: var(--colorWhite);
}

.footer_2 .wsus__subscribe form button::after {
    display: none;
}

.footer_2 .wsus__footer_content ul li a {
    color: var(--paraColor);
}

.footer_2 .wsus__footer_counter ul li h5,
.footer_2 .wsus__footer_content ul li a:hover {
    color: var(--colorGreen);
}

.footer_2 .wsus__footer_counter p {
    color: var(--paraColor);
}

.footer_2 .wsus__footer_content h4,
.footer_2 .wsus__footer_counter h4,
.footer_2 .wsus__footer_counter h4,
.footer_2 .wsus__footer_copyright ul li a,
.footer_2 .wsus__footer_copyright p span {
    color: var(--colorBlack);
}

.footer_2 .wsus__footer_counter ul li {
    border: 0;
}

.footer_2 .wsus__footer_bottom {
    border-color: #b3b3b32e;
}

.home_2 .wsus__recent_product_filter button:hover,
.home_2 .wsus__recent_product_filter button.active {
    color: var(--colorGreen) !important;
}

.home_2 .wsus__gallery_item_img p {
    background: var(--colorGreen);
}

.home_2 .wsus__gallery_item_overlay li a:hover {
    color: var(--colorGreen);
}

.home_2 .wsus__gallery_item_text p a {
    color: #1DC9B7;
    background: none;
    -webkit-text-fill-color: #1DC9B7;
}

.home_2 .percircle:after {
    background-color: var(--colorGreen);
}

.home_2 .view_all:hover::before {
    display: none;
}

.home_2 .wsus__scroll_btn {
    background: var(--colorGreen);
}

.home_2 .navbar-toggler {
    background: var(--colorGreen);
}


/*============================
    HOME PAGE 2 END
============================*/


/*============================
    HOME 3 START
============================*/

.home_3 .common_btn {
    background: var(--colorBlue);
    color: var(--colorWhite);
}

.home_3 .common_btn:hover {
    background: var(--colorWhite);
    color: var(--colorBlue);
    border-color: var(--colorBlue);
}

.home_3 .title:hover {
    color: var(--colorBlue);
}

.home_3 .wsus__section_heading h5 {
    color: var(--colorBlue);
}

.home_3 .wsus__header_content ul li a:hover {
    color: var(--colorBlue);
}

.main_menu_3 .right_menu li a span {
    background: var(--colorBlue);
}

.main_menu_3 .navbar-nav .nav-item:hover .nav-link,
.main_menu_3 .navbar-nav .nav-item .nav-link.active {
    color: var(--colorBlue);
}

.main_menu_3 .right_menu_2 li a.my_account {
    background: var(--colorYellow);
    border-color: var(--colorYellow);
    color: var(--colorBlack);
}

.main_menu_3 .right_menu_2 li a.my_account:hover {
    background: var(--colorWhite);
    border-color: var(--colorYellow);
}

.wsus__banner_3 {
    background: #eff5ff;
}

.wsus__banner_3_content {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 30px 50px;
    border-radius: 4px;
    position: relative;
    z-index: 99;
}

.wsus__banner_3_content .wsus__banner_text h1,
.wsus__banner_3_content .wsus__banner_text p {
    text-align: left;
    margin-left: 0 !important;
}

.wsus__banner_3_content .wsus__banner_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 15px;
}

.wsus__banner_3_content .wsus__banner_text form {
    width: 90%;
    margin: 0;
}

.wsus__banner_3_content .wsus__banner_text form button {
    padding: 11.5px 24px;
    background: var(--colorYellow);
    color: var(--colorBlack);
}

.wsus__banner_3_content .wsus__banner_text form button::after {
    background: #ddd;
}

.wsus__banner_img_3 {
    max-width: 450px;
    max-height: 450px;
}

.wsus__categories_3 {
    background: none;
}

.wsus__categories_3 .wsus__categories_item {
    border: 1px solid #D9D9D9;
}

.home_3 .wsus__recent_product_filter button:hover,
.home_3 .wsus__recent_product_filter button.active {
    color: var(--colorBlue) !important;
}

.home_3 .wsus__gallery_item_img p {
    background: var(--colorBlue);
}

.home_3 .wsus__gallery_item_overlay li a:hover {
    color: var(--colorBlue);
}

.home_3 .wsus__gallery_item_text p a {
    color: #1E6CFF;
    background: none;
    -webkit-text-fill-color: #1E6CFF;
}

.home_3 .percircle:after {
    background-color: var(--colorBlue);
}

.wsus__testimonial_3 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__testimonial_3 .draggable {
    padding: 0 !important;
}

.wsus__testi_slider_item_3 {
    background: var(--colorBlue);
    border-radius: 6px;
    padding: 50px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: relative;
    margin-bottom: 80px;
}

.wsus__testi_slider_item_3 p {
    color: var(--colorWhite);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    font-weight: 300;
}

.wsus__testi_slider_item_3::before {
    position: absolute;
    content: "\f10e";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 120px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff33;
}

.wsus__testi_slider_item_3::after {
    position: absolute;
    content: "";
    background: var(--colorBlue);
    width: 200px;
    height: 100px;
    clip-path: polygon(70% 0, 15% 0, 100% 100%);
    bottom: -75px;
    left: 41%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.wsus__testi_slider_bottom_item .img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    opacity: .8;
    margin: 0 auto;
    cursor: pointer;
    border: 1px solid #CFCFCF;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__testi_slider_bottom_item .bio h4 {
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    margin-top: 33px;
    margin-bottom: 8px;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__testi_slider_bottom_item .bio p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.slick-current .wsus__testi_slider_bottom_item .img {
    width: 85px;
    height: 85px;
    opacity: 1;
}

.slick-current .wsus__testi_slider_bottom_item h4 {
    margin-top: 13px;
    opacity: 1;
}

.slick-current .wsus__testi_slider_bottom_item p {
    opacity: 1;
}

.wsus__download_3_img {
    width: 550px;
    height: 550px;
    animation: download_animi linear 5s infinite alternate;
    -webkit-animation: download_animi linear 5s infinite alternate;
}

@keyframes download_animi {
    from {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
    }
    to {
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
    }
}

.wsus__download_3 .wsus__download_text h2 {
    color: var(--colorBlack);
}

.wsus__download_3 .wsus__download_text h2 span {
    color: var(--colorGreen);
}

.wsus__download_3 .wsus__download_text p {
    color: var(--colorBlack);
}

.wsus__download_3 .wsus__download_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}

.home_3 .wsus__offer .common_btn {
    border-radius: 4px;
}

.home_3 .wsus__single_blog_img p {
    background: var(--colorBlue);
}

.home_3 .view_all:hover::before {
    display: none;
}

.home_3 .view_all:hover {
    color: var(--colorBlue);
    text-decoration: none;
}

.home_3 .wsus__subscribe form button {
    background: var(--colorYellow) !important;
    border-color: var(--colorYellow) !important;
    padding: 12px 27px;
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.home_3 .wsus__subscribe form button::after {
    display: none;
}

.home_3 .wsus__subscribe form button:hover {
    color: var(--colorWhite);
}

.home_3 .wsus__footer_counter ul li h5,
.home_3 .wsus__footer_copyright ul li a:hover,
.home_3 .wsus__footer_content ul li a:hover {
    color: var(--colorBlue);
}

.home_3 .wsus__scroll_btn {
    background: var(--colorBlue);
}

.home_3 .navbar-toggler {
    background: var(--colorBlue);
}

.navbar-toggler {
    border: none;
}

.home_3 .wsus__why_choose_item {
    border: 1px solid var(--colorBlue);
}

.home_3 .wsus__why_choose_item::after {
    background: url(../images/why_choose_shapes3.png);
    background-size: cover;
}


/*============================
    HOME 3 END
============================*/


/* new css start */

.variant_price {
    background: #6029ce0f;
    border: 1px solid #6029CE;
    border-radius: 4px;
    margin: 40px 0px 50px 0px;
    padding: 35px;
    text-align: center;
}

.variant_price h4 {
    font-weight: 600;
    font-size: 20px;
    color: var(--colorBlack);
    text-align: left;
}

.variant_price .img {
    width: 345px;
    height: 225px;
    margin: 50px auto;
}

.variant_price .common_btn {
    margin-bottom: 70px;
}

.variant_modal .modal-content {
    width: 600px;
    padding: 30px;
}

.variant_modal .modal-body {
    padding: 0;
    padding-top: 25px;
}

.variant_modal .modal-header {
    padding: 0;
    padding-bottom: 15px;
}

.variant_modal .modal-title {
    font-weight: 600;
    font-size: 24px !important;
}

.variant_modal .btn-close {
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    border: 1px solid rgba(55, 69, 87, 0.6);
    background: var(--colorWhite);
    opacity: 1;
    border-radius: 50%;
    color: rgba(55, 69, 87, 0.6);
    font-size: 19px;
    margin-right: 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.variant_modal .btn-close:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.variant_modal .btn-close:focus {
    box-shadow: none;
}

.variant_modal form label {
    font-weight: 400;
    font-size: 16px;
    color: var(--paraColor);
    display: block;
    margin-bottom: 7px;
}

.variant_modal form input {
    margin-bottom: 25px;
    border-radius: 0;
    border: 1px solid #E8E8E8;
}

.variant_modal .upload_variant_img {
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    padding: 50px 0;
    text-align: center;
}

.variant_modal .upload_variant_img .img {
    width: 45px;
    height: 45px;
    margin: 0 auto;
}

.variant_modal .upload_variant_img label {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    color: var(--colorBlack);
}

.variant_modal .upload_variant_img label b {
    color: var(--colorBlue);
    font-weight: 400;
}

.variant_modal form button {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.variant_price_2 {
    margin-bottom: 0;
    text-align: right;
}

.variant_price_2 .common_btn {
    margin-bottom: 20px;
}

.variant_price_2 table {
    width: 100%;
}

.variant_price_2 table tr {
    display: flex;
    justify-content: space-between;
    background: var(--colorWhite);
    padding: 17px 17px;
    margin-top: 10px;
    border-radius: 3px;
}

.variant_price_2 table tr .size {
    width: 40%;
    min-width: 350px;
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.variant_price_2 table tr .price {
    width: 20%;
    min-width: 120px;
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.variant_price_2 table tr .button_area {
    width: 40%;
    min-width: 410px;
}

.variant_price_2 table tr .button_area a {
    font-weight: 500;
    font-size: 18px;
    border-radius: 3px;
    padding: 7px 16px;
    margin-left: 10px;
}

.variant_price_2 table tr .button_area a i {
    margin-right: 5px;
}

.variant_price_2 table tr .download_btn {
    background: #47C36312;
    color: #48C364;
}

.variant_price_2 table tr .edit_btn {
    color: #2046DA;
    background: #2046DA12;
}

.variant_price_2 table tr .delete_btn {
    color: #FB160A;
    background: #FB160A12;
}

.variant_price_2 h4 {
    float: left;
}

.variant_delete_modal .btn-close {
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    border: 1px solid rgba(55, 69, 87, 0.6);
    background: var(--colorWhite);
    opacity: 1;
    border-radius: 50%;
    color: rgba(55, 69, 87, 0.6);
    font-size: 19px;
    margin-right: 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.variant_delete_modal .btn-close:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.variant_delete_modal .btn-close:focus {
    box-shadow: none;
}


/* withdraw system */

.wsus__current_balance {
    background: #162B49;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    margin-top: 25px;
}

.wsus__current_balance p {
    color: #BFBFBF70;
    font-size: 29px;
    margin-bottom: 5px;
}

.wsus__current_balance h2 {
    font-weight: 700;
    font-size: 50px;
    color: var(--colorWhite);
}

.wsus__current_balance a {
    background: #27AE60;
    border-radius: 6.66428px;
    font-size: 18px;
    font-weight: 700;
    color: var(--colorWhite);
    padding: 17px 42px;
    position: absolute;
    top: 50%;
    right: 40px;
    transition: all linear .3s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__current_balance a:hover {
    background: var(--colorWhite);
    color: #27AE60;
}

.wsus__total_balance {
    border: 2px solid #E8E8E8;
    box-shadow: 0px 5.85294px 64.3824px rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    text-align: center;
    padding: 18px;
    margin-top: 25px;
}

.wsus__total_balance span {
    display: block;
    width: 60px;
    margin: 0 auto;
}

.wsus__total_balance p {
    font-size: 23px;
    margin: 10px 0px 8px 0px;
    text-align: center;
}

.wsus__total_balance h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.wsus__withdraw_list {
    border: 2px solid #E8E8E8;
    padding: 25px 25px 5px 25px;
    border-radius: 6px;
}

.wsus__withdraw_list h2 {
    font-weight: 700;
    font-size: 42px;
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 20px;
}

.wsus__withdraw_list table {
    margin: 0;
}

.wsus__withdraw_list table tr {
    border-bottom: 1px solid #E8E8E8;
}

.wsus__withdraw_list table tr th,
.wsus__withdraw_list table tr td {
    padding: 10px 0px;
}

.wsus__withdraw_list table tr th {
    font-weight: 500;
    font-size: 18px;
    color: var(--colorBlack);
}

.wsus__withdraw_list table tr td {
    font-weight: 400;
    font-size: 16px;
    color: var(--paraColor);
}

.wsus__withdraw_list table tr:last-child {
    border: transparent;
}

.wsus__withdraw_list table tr td span {
    display: inline-block;
    padding: 8px 0;
    text-align: center;
    width: 110px;
    background: #eee;
    border-radius: 30px;
    font-size: 17px;
}

.wsus__withdraw_list table tr td .pending {
    color: #219653;
    background: #CCFDE1;
}

.wsus__withdraw_list table tr td .cancel {
    color: #EB5757;
    background: #FFCDC8;
}

.wsus__withdraw_list table tr td .success {
    color: #27AE60;
    background: #CCFDE1;
}

.wsus__withdraw_list table tr .number {
    width: 15%;
    min-width: 100px;
}

.wsus__withdraw_list table tr .method {
    width: 30%;
    min-width: 270px;
}

.wsus__withdraw_list table tr .charge {
    width: 15%;
    min-width: 150px;
}

.wsus__withdraw_list table tr .amount {
    width: 25%;
    min-width: 230px;
}

.wsus__withdraw_list table tr .status {
    width: 15%;
    min-width: 150px;
}

.withdraw_modal_area .modal-content {
    padding: 30px;
    border-radius: 4px;
    width: 600px;
}

.withdraw_modal_area .modal-header {
    padding: 0;
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.withdraw_modal_area .modal-header h1 {
    font-weight: 600;
    font-size: 24px !important;
}

.withdraw_modal_area .modal-header button {
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(55, 69, 87, 0.6);
    opacity: 1;
    padding: 0;
    margin-right: 0;
    background: var(--colorWhite);
    color: rgba(55, 69, 87, 0.6);
    font-size: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.withdraw_modal_area .modal-header button:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.withdraw_modal_area .modal-body {
    padding: 0;
}

.withdraw_modal_area .withdraw_modal_input {
    margin-bottom: 20px;
}

.withdraw_modal_area .nice-select {
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    height: 48px;
    line-height: 48px;
}

.withdraw_modal_area .withdraw_modal_input label {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.withdraw_modal_area .withdraw_modal_input label span {
    color: #DA126A;
    font-size: 14px;
}

.withdraw_modal_area .withdraw_modal_input input {
    background: #FDF9FC;
    border-radius: 0;
}

.withdraw_modal_area .modal-body button {
    width: 100%;
    text-align: center;
}

.withdraw_success_content {
    width: 100%;
}

.withdraw_success_content span {
    display: block;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.withdraw_success_content h2 {
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 15px;
}

.withdraw_success_content p {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin-bottom: 55px;
}

.withdraw_success_content p b {
    font-weight: 400;
    color: var(--colorBlack);
}

.withdraw_success_content a {
    width: 100%;
    text-align: center;
}

.blog_comment_recaptcha {
    float: right;
}

.collection-review {
    color: var(--ratingColor)
}

.product_icon img {
    height: 60px !important;
    width: 60px !important;
}

.upload_others_feature {
    margin-bottom: 22px;
}

.upload_others_feature h4 {
    font-size: 20px;
    margin-top: 30px;
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.upload_others_feature input {
    width: auto;
}

.upload_others_feature label {
    margin-top: 20px;
    padding-left: 5px;
}

.add_wishlist {
    font-size: 18px;
    font-weight: 500;
    color: var(--paraColor);
    padding: 0;
    margin: 0;
    background: none;
    transition: all linear .2s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: center;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.add_wishlist:hover {
    color: var(--colorPrimary) !important;
}

.wsus__about_page .wsus__why_choose .wsus__section_heading h5,
.wsus__about_page .wsus__why_choose .wsus__section_heading h2 {
    color: var(--colorWhite) !important;
}

.wsus__about_page .wsus__why_choose_item::after {
    background: url(../images/why_choose_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wsus__about_page .wsus__why_choose_item {
    border-color: var(--colorWhite);
}

.home_2 .wsus__download_text h2 span {
    color: var(--colorGreen);
}

.wsus__download_3 .wsus__download_text h2 span {
    color: var(--colorBlue);
}

.home_2 .wsus__download_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}

.wsus__download_img_2 {
    height: 525px;
    animation: download_animi linear 5s infinite alternate;
    -webkit-animation: download_animi linear 5s infinite alternate;
}

.home_2 .wsus__offer_text,
.home_3 .wsus__offer_text {
    padding-bottom: 10px;
}


/* new css end */