:root {
    --main-font-family: "IBM Plex Sans", sans-serif;
    --body-font-family: "Roboto", sans-serif;

    /* Dark */
    --dark-50: #edebe7;
    --dark-100: #d9d9d9;
    --dark-200: #5b5b5b;
    --dark-300: #06131c;
    --dark-400: #0c1e2b;

    /* Light */
    --off-white: #f7f5f0;
    --white: #fff;

    /* lime */
    --lime-300: #22be0d;
    --green-300: #13544e;

    /* Blue */
    --blue-300: #4b83fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a body {
    color: inherit;
    font-size: inherit;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

button {
    border: 0;
    background: none;
    font-family: var(--main-font-family);
}

p {
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: var(--body-font-family);
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
        padding: 0 20px;
    }
}

/* Predefine Class */
.bg-white {
    background-color: var(--white);
}

.bg-offWhite {
    background-color: var(--off-white);
}

.bg-darkGreen {
    background-color: var(--green-300);
}

.bg-dark-300 {
    background-color: var(--dark-300);
}

.bg-blue-300 {
    background-color: var(--blue-300);
}

.bg-lime-300 {
    background-color: var(--lime-300);
}

.bg-darkLime {
    background-color: #14a800;
}

.text-dark-200 {
    color: var(--dark-200);
}

.text-dark-300 {
    color: var(--dark-300);
}

.text-lime-300 {
    color: var(--lime-300);
}

.text-14 {
    font-size: 14px;
}

.text-18 {
    font-size: 18px;
}

.text-24 {
    font-size: 24px;
}

.text-40 {
    font-size: 40px;
}

.w-shadow {
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
}

.high-zindex {
    z-index: 2000;
}

.mt-n2 {
    margin-top: -2px;
}

/* Padding */
.pt-150 {
    padding-top: 150px;
}

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

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

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

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

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

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

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

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

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

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

.py-60 {
    padding: 60px 0;
}

.py-80 {
    padding: 80px 0;
}

.py-110 {
    padding: 110px 0;
}

/* Margin */
.mt-60 {
    margin-top: 60px;
}

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

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

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

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

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

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

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

.wc_payment_methods {
    list-style: none;
    padding-left: 0;
}

.wc_payment_methods li {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

/* Button */
.header-btn {
    background-color: var(--lime-300);
    padding: 16px 32px;
    border-radius: 30px;
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    color: var(--white);
}

.header-btn svg {
    margin-right: 5px;
    margin-right: 5px;
}

.header-btn:hover {
    background-color: var(--green-300);
}

.w-btn {
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: none;
    gap: 10px;
    font-family: var(--main-font-family);
}

.w-btn-md {
    padding: 16px 30px;
    color: var(--dark-200);
    font-size: 18px;
    border-radius: 30px;
    background-color: var(--white);
}

.w-btn-md:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.w-btn {
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    font-size: 16px;
}

#place_order,
.w-btn-secondary-lg {
    color: var(--white);
    background-color: var(--lime-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.w-btn-black-lg {
    color: var(--white);
    background-color: var(--dark-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.w-btn-blue-lg {
    color: var(--white);
    background-color: var(--blue-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.w-btn-primary-sm {
    color: var(--white);
    background-color: var(--lime-300);
}

.w-btn-gray-sm {
    color: var(--dark-200);
    background-color: var(--dark-50);
    padding: 14px 24px;
    border-radius: 30px;
    text-align: center;
}

.w-btn-secondary-sm {
    color: var(--white);
    background-color: var(--lime-300);
    padding: 14px 24px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.w-btn-primary-icon {
    background-color: var(--lime-300);
    color: var(--white);
}

.w-btn-secondary-icon {
    background-color: var(--dark-50);
    color: var(--dark-300);
}

.w-btn-secondary-icon:hover {
    color: var(--white);
    background-color: var(--lime-300);
}

.w-btn-link {
    color: var(--dark-200);
    font-size: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.w-btn-link::before {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -5px;
    background: var(--lime-300);
    height: 1px;
    transition: 0.3s ease-out;
}

.w-btn-link svg {
    color: var(--dark-200);
    transition: 0.2s;
    position: relative;
    width: 15px;
    transition-delay: 0.2s;
    margin-left: 5px;
}

.w-btn-link:hover {
    color: var(--lime-300);
}

.w-btn-link:hover::before {
    width: 100%;
}

.w-btn-link:hover svg {
    transform: translateX(4px);
    color: var(--lime-300);
}

.w-btn-primary-xl {
    background: var(--white);
    border-radius: 50px;
    text-align: center;
    padding: 16px 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-300);
    gap: 10px;
    flex-shrink: none;
    line-height: 26px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.w-btn-secondary-xl {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    flex-shrink: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.footer-newsletter-btn::before,
.hero-form-btn::before,
.w-btn-secondary-sm::before,
.w-btn-black-lg::before,
.w-btn-blue-lg::before,
.cta-btn-link::before,
.w-btn-secondary-lg::before,
.w-btn-secondary-xl::before,
.w-btn-primary-lg::before,
.w-btn-primary-xl::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.footer-newsletter-btn:hover::before,
.hero-form-btn:hover::before,
.w-btn-secondary-sm:hover::before,
.w-btn-black-lg:hover::before,
.w-btn-blue-lg:hover::before,
.cta-btn-link:hover::before,
.w-btn-secondary-lg:hover::before,
.w-btn-secondary-xl:hover::before,
.w-btn-primary-lg:hover::before,
.w-btn-primary-xl:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.w-btn-secondary-xl:hover,
.w-btn-primary-lg:hover,
.w-btn-primary-xl:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.w-btn-primary-lg {
    background: var(--off-white);
    border-radius: 50px;
    text-align: center;
    padding: 17px 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-300);
    line-height: 1;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.not-found-img {
    max-height: 680px;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* Custom Dropdown */
.custom-dropdown.menu-item-has-children {
    width: 200px;
}

.custom-dropdown .form-select,
.custom-dropdown-toggle.dropdown-toggle {
    background-color: var(--white);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 16px 25px;
    min-width: 200px;
    width: 100%;
}

.custom-dropdown-toggle.dropdown-toggle::after {
    display: none;
}

.custom-dropdown-menu.sub-menu {
    width: 100%;
}

.custom-dropdown-menu.sub-menu {
    color: var(--dark-200);
    display: inline-flex;
    justify-content: space-between;
}

.custom-dropdown-menu.sub-menu:hover {
    color: var(--lime-300);
    background-color: var(--dark-50);
}

.custom-dropdown-menu input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: var(--lime-300);
    pointer-events: auto;
    -webkit-appearance: none;
}

.custom-dropdown-menu.sub-menu .form-check-input:checked {
    background-color: var(--lime-300);
    border-color: var(--lime-300);
}

/* Custom Pagination */
.custom-pagination.pagination {
    gap: 16px;
    flex-wrap: wrap;
}

.custom-page-link.page-link {
    background-color: transparent;
    width: 48px;
    height: 48px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50% !important;
    color: var(--dark-200);
    border-color: var(--dark-100);
}

.custom-page-link.page-link:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}

.custom-page-item.page-item .page-link.prev,
.custom-page-item.page-item .page-link.prev,
.custom-page-item.page-item .page-link.next,
.custom-page-item.page-item .page-link.next {
    border-radius: unset;
    border: 0;
    width: 100%;
}

.custom-page-item.page-item .page-link.prev:hover,
.custom-page-item.page-item .page-link.prev:hover,
.custom-page-item.page-item .page-link.next:hover,
.custom-page-item.page-item .page-link.next:hover {
    color: var(--lime-300);
    background-color: transparent;
}

.custom-page-item.page-item.active>.page-link,
.page-link.active {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}

/*Custom Pagination End */
/* Section */
.section-subtitle {
    font-size: 18px;
    color: var(--lime-300);
}

.section-title {
    font-size: 40px;
    color: var(--dark-300);
    line-height: 50px;
    margin-bottom: 10px;
}

.section-title-light {
    font-size: 40px;
    color: var(--white);
    line-height: 50px;
}

.section-desc {
    font-size: 18px;
    color: var(--dark-200);
}

.section-desc-light {
    font-size: 18px;
    color: var(--white);
}

/* Swiper Navigation */

.swiper-prev,
.swiper-next {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 50%;
    color: var(--lime-300);
    border: 1px solid var(--lime-300);
}

.swiper-prev:hover,
.swiper-next:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: 1px solid var(--lime-300);
}

.swiper-prev svg,
.swiper-next svg {
    width: 24px;
    height: 24px;
}

/* Swiper End */

/*======================================
    Header Area
========================================*/
.comment-form textarea {
    height: 220px;
    padding: 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.workzone-header {
    z-index: 10000;
}

.navbar-logo-text {
    font-size: 26px;
    font-weight: 700;
}

.workzone-topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.workzone-header__top {
    padding: 15px 0;
}

.workzone-header__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.workzone-header__list a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workzone-header__list a:hover {
    opacity: 0.8;
}

.workzone-header__middle {
    width: 100%;
}

.workzone-header__inside {
    background: transparent;
    padding: 12px 0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workzone-header__group {
    display: flex;
    align-items: center;
    gap: 120px;
}

.workzone-header__logo {
    float: left;
}

.workzone-header__menu .navbar {
    padding: 0;
}

.workzone-header__menu .nav-menu li {
    display: inline-block;
    margin-right: 25px;
    color: #fff;
    position: relative;
}

.workzone-header__menu .nav-menu li:last-child {
    margin: 0;
}

.workzone-header__menu .nav-menu li a {
    padding: 20px 0;
    display: inline-block;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.workzone-header__menu .nav-menu li a:hover,
.workzone-header__menu .nav-menu li.active a,
#offcanvas-menu li a:hover,
#offcanvas-menu li.active a {
    color: #FE2C55;
}

.menu-right-search-bar {
    margin-left: 75px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-search-bar {
    width: 58px;
    height: 58px;
    line-height: 58px;
    background: #fff;
    border-radius: 100%;
    text-align: center;
    color: #000;
    font-size: 16px;
    border: 1px solid transparent;
}

.main-search-bar:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* sub-menu Menu */
.workzone-header .navigation li .children,
.workzone-header .navigation li .sub-menu {
    position: absolute;
    top: 62px;
    width: 220px;
    background: #fff;
    z-index: 5222;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: translateY(-20px);
    box-shadow: 0px 0 15px #22222217;
    border-radius: 4px;
    margin: 0;
    padding: 15px 0px;
    border: 1px solid #cccccc47;
}


.workzone-header .navigation li .children ul.children {
    top: 30px;
    right: -220px;
}

.workzone-header .navigation li:hover>.children,
.workzone-header .navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.workzone-header .navigation li .children li,
.workzone-header .navigation li .sub-menu li {
    display: block;
    margin: 0;
    text-align: left;
}

.workzone-header .navigation li .children li:last-child,
.workzone-header .navigation li .sub-menu li:last-child {
    border: none;
}

.workzone-header .navigation li .children li a,
.workzone-header .navigation li .sub-menu li a {
    color: #647082 !important;
    display: block;
    padding: 7px 25px;
    font-size: 15px;
    border-radius: 0;
    font-weight: 400;
    border-bottom: 1px solid #cccccc40;
}

.workzone-header .navigation li .children li:last-child a,
.workzone-header .navigation li .sub-menu li:last-child a {
    border: none;
}

.workzone-header .navigation li .children li a:hover,
.workzone-header .navigation li .sub-menu li a:hover {
    color: #FE2C55 !important;
    padding: 7px 25px;
    margin-left: 5px;
}

.workzone-header .navigation li a i {
    margin-left: 5px;
    font-weight: 600;
    font-size: 12px;
}

.workzone-header .navigation li .children li a::before,
.workzone-header .navigation li .sub-menu li a::before {
    display: none;
}

.workzone-header li.page_item_has_children>a::after,
.workzone-header li.menu-item-has-children a::after {
    margin-left: 7px;
    font-size: 14px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    content: "\f107";
}


.workzone-header li.page_item_has_children>.children li.page_item_has_children>a::after,
.workzone-header li.menu-item-has-children>.sub-menu li.menu-item-has-children>a::after {
    position: absolute;
    right: 20px;
    margin-left: 7px;
    font-size: 14px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    content: "\f105";
}

.workzone-header li.menu-item-has-children .children li a::after,
.workzone-header li.menu-item-has-children .sub-menu li a::after {
    display: none;
}

.hd-inner-border {
    border-bottom: 1px solid #3C0E4A;
}

.no-sticky {
    position: relative;
}

.workzone-header__button {
    display: flex;
    align-items: center;
    gap: 50px;
}

.workzone-header__button.workzone-header__button--v2 {
    gap: 20px;
}


.w-btn-secondary-lg.w-btn-secondary-lg__nbg {
    color: #333333;
    padding: 0;
    box-shadow: none;
    background: transparent;
    box-shadow: none;
}

.w-btn-secondary-lg.w-btn-secondary-lg__nbg:hover {
    color: #FE2C55;
}

.w-btn-secondary-lg.w-btn-secondary-lg__nbg::before {
    display: none;
}

.w-btn-secondary-lg.w-btn-secondary-lg--header {
    padding: 0 35px;
}

.workzone-header__icon {
    background: #F5F4FF;
    border: 1px solid #FE2C55;
    border-radius: 4px;
    color: #FE2C55;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workzone-header__icon:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.workzone-header__icon svg {
    fill: currentColor;
    max-width: 28px;
}

.workzone-header__icon:hover {
    background-color: #FE2C55;
    color: #fff;
}


.offcanvas-form {
    max-width: 970px;
    margin: 0 auto;
}

.offcanvas-form .form-control {
    height: 55px;
    border: 1px solid #FE2C55;
    padding-left: 15px;
    padding-right: 105px;
    border-radius: 4px;
    font-size: 14px;
    color: #393e46;
    width: 100%;
    text-transform: capitalize;
}

.offcanvas-form .form-control:focus {
    box-shadow: none;
}

.offcanvas-form .btn.btn-warning {
    padding: 15px 20px;
    font-size: 15px;
}

.offcanvas-logo {
    width: 175px;
    position: relative;
    top: -47px;
}

.offcanvas-logo img {
    max-width: 170px;
}

.offcanvas-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

.offcanvas-toggler {
    text-align: center;
    display: inline-block;
    padding: 0px !important;
    width: 40px;
    height: 40px;
    z-index: 3;
    border-radius: 4px;
    border: none;
    position: absolute;
    right: 20px;
    background: #333333 !important;
    align-items: center;
    box-shadow: 0px 0px 15px #00000014;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.offcanvas-toggler:hover {
    background: #FE2E57 !important;
}

.offcanvas-toggler__white {
    background-color: #fff;
}

.offcanvas-toggler:hover .line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.offcanvas-toggler:hover .line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.offcanvas-toggler:hover .line:nth-child(3) {
    -webkit-transform: rotate(-46deg);
    -ms-transform: rotate(-46deg);
    transform: rotate(-46deg);
    bottom: 5px;
}

.offcanvas-toggler .line {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.offcanvas-toggler .line+.line {
    margin-top: 4px;
}

.offcanvas-modal.modal.fade .modal-dialog {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.offcanvas-modal.modal.show .modal-dialog {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.offcanvas-dialog {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    margin: 0;
}

.offcanvas-dialog .modal-content {
    height: 100%;
    border-radius: 0;
    border: 0;
}

.offcanvas-header {
    border: none;
    padding: 40px;
}

.offcanvas-header .btn-close {
    color: #18171A;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 45px;
}

.offcanvas-menu {
    position: relative;
    z-index: 1;
}

.offcanvas-menu::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #fff;
}

.offcanvas-menu ul ul {
    display: none;
}

#offcanvas-menu ul {
    transition: initial !important;
}

.offcanvas-menu>ul>li>ul li {
    border-bottom: 0px;
    padding: 0;
}

.offcanvas-menu>ul>li>ul li a {
    padding-left: 15px;
    font-weight: 400;
    font-size: 14px;
    color: #555 !important;
}

.offcanvas-menu>ul>li>ul li a:hover {
    color: #FE2C55 !important
}

.offcanvas-menu li.active>ul {
    display: block;
}

.offcanvas-menu .sub-menu {
    padding: 0;
    margin-top: 8px;
}

.offcanvas-menu li {
    margin-bottom: 12px;
    position: relative;
    border-bottom: 1px solid #cccccc9e;
    padding-bottom: 12px;
}

.offcanvas-menu li.active a {
    color: #393e46;
}

.offcanvas-menu li:last-child {
    margin: 0;
    border: none;
    padding: 0;
}

.offcanvas-menu li a {
    font-weight: 400;
    display: block;
    text-transform: capitalize;
    color: #393e46;
    padding: 0px;
    position: relative;
    font-size: 16px;
}

.offcanvas-menu li a:hover {
    color: #FE2C55;
}

.offcanvas-menu li a i {
    margin-left: 10px;
}

.offcanvas-menu .sub-menu {
    padding: 0;
}

.offcanvas-menu li.menu-item-has-children a::after {
    position: absolute;
    margin-left: 0 !important;
    font-size: 15px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    content: "\f107";
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    top: 1px;
    right: 10px;
}

.offcanvas-menu li a::after {
    position: absolute;
    right: 0;
    color: #7E8BA0;
}

.offcanvas-menu li.menu-item-has-children .sub-menu li a::after {
    display: none;
}

.offcanvas-menu li.menu-item-has-children.active a::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.follow-title {
    margin-bottom: 20px;
    font-size: 25px;
}

.offcanvas-modal .modal-content {
    padding: 0px 35px;
}

.offcanvas-modal .offcanvas-form {
    margin: 20px 0px 30px;
}

.modal-backdrop {
    z-index: 9999999;
}

.offcanvas-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas-toggler {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas-toggler {
        display: block;
    }
}

@media only screen and (min-width: 1000px) {
    .offcanvas-toggler {
        display: none !important;
    }
}


.workzone-header.workzone-header--v2 .workzone-header__top {
    padding: 8px 0;
}

.workzone-header__right a {
    font-size: 14px;
    font-weight: 400;
}

.workzone-header__right img {
    width: 26px;
    height: 18px;
    border-radius: 2px;
}

.workzone-header__lang .select2-selection.select2-selection--single {
    background: transparent;
    border: none !important;
    padding: 0;
    margin: 0;
    color: #fff;
    gap: 0 !important;
    justify-content: initial;
    min-height: initial;
}

.workzone-header__lang .select2-selection.select2-selection--single span {
    color: #fff !important;
    padding: 0;
    color: #fff !important;
    font-weight: 400;
    color: #fff;
    font-size: 14px !important;
}

.workzone-header__lang .select2-selection.select2-selection--single span b {
    border-color: #fff !important;
    width: 8px;
    height: 8px;
}

.workzone-header__lang--list {
    background: transparent;
    border: none;
    color: #fff;
}

.workzone-header__lang--list:after {
    border-color: #fff;
    width: 7px;
    height: 7px;
    margin-top: -5px;
}

.select2-dropdown.select2-dropdown--below.active {
    min-width: 98px !important;
    left: -36px;
}

.workzone-header__signup a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.workzone-header__lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.workzone-header__signup a {
    color: #fff;
}

.workzone-header__right {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Header Style V3 */
.workzone-header__menu.workzone-header__menu--v3 .nav-menu li a:hover,
.workzone-header__menu.workzone-header__menu--v3 .nav-menu li.active a {
    color: #7735F2;
}

.workzone-header__menu.workzone-header__menu--v3 .nav-menu li .children li a:hover,
.workzone-header__menu.workzone-header__menu--v3 .nav-menu li .sub-menu li a:hover {
    color: #7735F2 !important;
}

.workzone-header.workzone-header--v3 .workzone-header__middle {
    background: #fff;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
}


@media only screen and (min-width: 1000px) and (max-width: 10000px) {

    #active-sticky.is-sticky .workzone-header__middle {
        position: fixed;
        top: 0;
        padding: 0;
        background: #FFFFFF;
        box-shadow: 0px 9px 126px rgba(20, 0, 255, 0.18);
    }

    #active-sticky.is-sticky .workzone-header__inside {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    #active-sticky.is-sticky .workzone-header__menu .nav-menu li a {
        font-size: 16px;
    }

    #active-sticky.is-sticky .workzone-header__menu .navigation li .children li a,
    #active-sticky.is-sticky .workzone-header__menu .navigation li .sub-menu li a {
        font-size: 14px;
    }


    #active-sticky.is-sticky .workzone-header__icon {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }

    #active-sticky.is-sticky .workzone-header__icon svg {
        font-size: 15px !important;
        width: 20px;
    }

    #active-sticky.is-sticky .w-btn-secondary-lg {
        font-size: 16px;
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .workzone-topbar-flex {
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .workzone-header__list {
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .workzone-header__list li {
        margin: 0;
        padding: 0;
        border: none;
    }

    .workzone-filter-group .w-btn-secondary-lg {
        height: 55px !important;
        line-height: 55px !important;
    }

    .workzone-header__logo img {
        max-width: 170px;
    }

    .workzone-header__lang {
        display: none;
    }
}

@media only screen and (min-width: 0px) and (max-width: 991px) {

    .workzone-header__button {
        display: none;
    }

    .workzone-header__middle {
        padding: 0;
        position: relative;
        top: 0;
    }

    .workzone-header .workzone-header__menu {
        display: none;
    }

    .workzone-social__topbar {
        display: none !important;
    }

    .workzone-header__inside {
        padding: 15px 0;
    }
}

/*======================================
   End Header Area
========================================*/


/*****************
 Secondary Nav 
 *****************/

.secondary-nav-container {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #edebe7;
}

.secondary-nav>li>a {
    padding: 16px 21px;
    display: block;
    font-size: 16px;
    color: var(--dark-200);
    white-space: nowrap;
}

.secondary-nav li a:hover {
    color: var(--lime-300);
}

.secondary-nav li:last-child button {
    padding: 16px 20px;
}

.modal-backdrop {
    z-index: 500;
    width: 100%;
    height: 100%;
}

/* Category Modal */
.category-nav ul li a {
    font-size: 16px;
    color: var(--dark-200);
    line-height: 30px;
    transition: all 0.3s ease-in;
}

.category-nav ul li a:hover {
    color: var(--lime-300);
    text-decoration: underline;
}

/* Category Modal End*/
/*****************
 Secondary Nav End 
 *****************/

/************
Breadcrumb 
************/
.w-breadcrumb-area {
    position: relative;
    padding: 150px 0 90px 0;
}

.w-breadcrumb-area::after {
    position: absolute;
    content: "";
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #06131c 0%, rgba(6, 19, 28, 0) 100%);
}

.w-breadcrumb .breadcrumb-item a {
    color: var(--white);
}

.w-breadcrumb.breadcrumb .breadcrumb-item.active {
    color: var(--lime-300);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.breadcrumbs ul {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    margin: 0;
}


.breadcrumbs ul li {
    position: relative;
    float: left;
    margin-right: 25px;
    color: #ddd;
}


.breadcrumbs ul li:before {
    position: absolute;
    content: '/';
    right: -17px;
    font-size: 18px;
}

.breadcrumbs ul li:last-child {
    margin-right: 0;
}

.breadcrumbs ul li:last-child::before {
    display: none;
}



/**************
Breadcrumb End 
***************/

/**************
Hero Start 
***************/
.hero-one {
    padding: 170px 0 50px 0;
}

.hero-one-title {
    font-size: 72px;
    color: var(--white);
}

.highlighted-text {
    color: var(--lime-300);
}

.hero-form-wrapper {
    padding: 16px;
    border-radius: 50px;
    box-shadow: 0px 25px 63px 0px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.hero-form-wrapper .form-select {
    border: 0;
}

.hero-form-wrapper .form-control {
    border: 0;
    border-left: 1px solid var(--dark-100);
    border-radius: 0;
}

.hero-form-btn {
    background-color: var(--lime-300);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 16px 30px;
    color: var(--white);
    top: 0;
    right: 0;
    margin: 6px;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.hero-group-img-wrapper a {
    margin-left: -20px;
}

.hero-group-img-wrapper a:first-of-type {
    margin-left: 0;
}

.hero-group-img-wrapper a .hero-group-img {
    width: 65px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.hero-counter-title {
    font-size: 30px;
}

.hero-rating {
    padding-left: 20px;
    border-left: 1px solid var(--white);
}

.hero-rating i {
    font-size: 10px;
    color: #fff;
}

/* Hero Two */
.hero-two {
    /* min-height: 100vh; */
    padding: 350px 0 170px 0;
}

.hero-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 19, 28, 0.8);
}

.hero-two-title {
    font-size: 60px;
    line-height: 70px;
}

.hero-two-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tag-item {
    padding: 10px 14px;
    border-radius: 30px;
    color: var(--dark-100);
    border-radius: 500px;
    background: #1d2c32;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}

/**************
Hero End 
***************/

/******************
Feature Categories 
*******************/
.feature-category-card {
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 230px;
}

.feature-category-link a {
    font-size: 18px;
    color: var(--dark-300);
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.feature-category-link a:hover {
    color: var(--lime-300);
}

.feature-category-desc {
    color: var(--dark-200);
}

.feature-category-card:hover {
    border-color: var(--lime-300);
}

/**********************
Feature Categories End 
**********************/

/**********************
Recent Job Post
**********************/

.job-post {
    padding: 20px;
    border-radius: 16px;
}

.job-type-badge {
    left: 20px;
}

.job-type-badge-primary,
.job-type-badge-secondary,
.job-type-badge-tertiary {
    display: inline;
    line-height: 1;
    border-radius: 30px;
    padding: 4px 3px;
    font-size: 12px;
    text-align: center;
}

.job-type-badge-primary {
    background-color: var(--white);
    color: var(--dark-300);
}

.job-type-badge-secondary {
    background-color: var(--lime-300);
    color: var(--white);
}

.job-type-badge-tertiary {
    background-color: var(--dark-50);
    color: var(--dark-300);
}

.job-post-icon {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    border: 3px solid #fafafa;
    margin-bottom: 30px;
    display: inline-block;
    overflow: hidden;
}

.job-post-icon img {
    width: 100% !important;
    height: 100% !important;
}

.job-post-subtitle {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 10px;
}

.job-post-title a {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 35px;
    display: block;
    text-align: center;
}

.job-post-horizontal {
    padding: 10px;
    border-radius: 10px;
}

.job-price-range {
    font-size: 14px;
}

.job-post-horizontal-img img {
    border-radius: 8px;
}

.job-post-horizontal-title {
    line-height: 1;
}

.job-post-horizontal-title a {
    color: var(--dark-300);
    font-size: 18px;
    line-height: 1;
    position: relative;
    background-image: linear-gradient(#000000, #000000),
        linear-gradient(#ffffff, #ffffff);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
}

.job-post-horizontal-title a:hover {
    background-size: 100% 1px;
}

/**********************
Recent Job Post End
**********************/

/*****************
 Business Widget 
 *****************/
.widget-wrapper {
    border-radius: 16px;
    /* padding: 50px 60px; */
}

.widget-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
}

.widget-desc {
    margin-bottom: 20px;
    font-size: 18px;
}

.widget-list {
    position: relative;
}

.widget-list-item {
    font-size: 18px;
    position: relative;
    padding-left: 12px;
}

.widget-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--white);
    top: 50%;
    transform: translateY(-50%);
}

.widget-video {
    position: relative;
}

.widget-video-btn {
    background-color: var(--white);
    color: var(--lime-300);
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/******************* 
Business Widget End 
********************/

/**************
 Cta Start 
 **************/
.cta-area-bg {
    padding: 60px;
    border-radius: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--white);
}

.cta-counter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-counter-item {
    background-color: var(--white);
    padding: 20px 35px;
    border-radius: 10px;
    text-align: center;
}

.cta-counter-title {
    font-size: 40px;
    color: var(--dark-300);
}

.cta-counter-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-200);
}

.cta-img img {
    border-radius: 10px;
}

.cta-wrapper {
    padding: 70px;
    border-radius: 16px;
}

.cta-people {
    top: -19%;
    right: 5%;
}

.cta-btn-link {
    padding: 20px 30px;
    border-radius: 50px;
    background-color: var(--lime-300);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 18px;
    color: var(--white);
    gap: 5px;
    position: relative;
    overflow: hidden;
}

/**************
 Cta End 
 **************/

/* Top Seller Card */

.top-seller-card {
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

/* .top-seller-card.style-two:hover {
  background-color: var(--off-white);
} */
.top-seller-card.style-two:hover .w-btn-primary-lg {
    background-color: var(--lime-300);
    color: var(--white);
}

.seller-type {
    display: flex;
    gap: 5px;
}

.seller-type-badge {
    background-color: var(--off-white);
    border-radius: 30px;
    padding: 4px 8px;
    font-size: 10px;
    color: var(--dark-300);
    display: inline-block;
}

.seller-type-badge.green {
    background-color: var(--lime-300);
    color: var(--white);
}

.seller-profile-img img {
    width: 110px;
    height: 110px;
    border-radius: 100% !important;
}

.top-seller-name {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--dark-300);
}

.top-seller-title {
    color: var(--dark-200);
    font-size: 14px;
    margin-bottom: 5px;
}

.top-seller-rating {
    color: var(--dark-300);
    gap: 5px;
}

.top-seller-review {
    color: var(--dark-200);
}

.freelancer-tab-link {
    background-color: var(--green-300);
    color: var(--white);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.freelancer-tab-link.active {
    background-color: var(--lime-300);
}

/* Top Seller Card End*/

/*******************
Testimonial   
********************/
.testimonial-card {
    border-radius: 12px;
    position: relative;
    border-bottom: 4px solid var(--lime-300);
}

.testimonial-content {
    padding: 24px 30px;
    border-bottom: 1px solid #edebe7;
}

.testimonial-title {
    color: var(--dark-200);
    font-size: 18px;
}

.testimonial-feedback {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
    padding-top: 20px;
}

.testimonial-meta {
    padding: 20px 30px;
}

.testimonial-author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.testimonial-author-name {
    font-size: 18px;
    color: var(--dark-300);
}

.testimonial-author-title {
    color: var(--dark-200);
    font-size: 14px;
}

.testimonialsSlider .swiper-wrapper,
.testimonialsSliderBottom .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.ratings .fa-star,
.testimonial-meta .fa-star {
    color: #ff9e15;
}

/*******************
Testimonial End   
********************/

/*******************
Service Card   
********************/
/* Service Filter */
.service-filter-btn {
    padding: 14px 20px;
    border: 1px solid var(--lime-300);
    border-radius: 30px;
    height: 46px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    color: var(--dark-300);
    transition: all 0.3s ease;
}

.service-filter-btn:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.service-filter-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
    border-color: transparent;
}

/* Service Card Two */
.service-card-two {
    border-radius: 8px;
    transition: all 0.4s ease;
    background-color: var(--white);
    transition: all 0.4 ease-in;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

.service-card-two-img {
    border-radius: 8px;
}

.service-card-two-body {
    padding: 25px 20px;
}

/* Service Card One */

.service-card {
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.service-card:hover {
    border-color: var(--lime-300);
}

.service-card-wishlist-btn {
    background-color: var(--white);
    color: var(--lime-300);
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 16px;
}

.recently-view-card-img {
    border-radius: 12px !important;
}

.service-card-content {
    padding: 20px 12px 12px;
}

.service-card-price {
    color: var(--lime-300);
    font-size: 20px;
}

.service-card-rating {
    font-size: 16px;
    color: var(--dark-200);
    line-height: 1;
}

.service-card-title {
    line-height: 1.4;
    padding: 12px 0;
    color: var(--dark-300);
    font-size: 18px;
}

.service-card-title a {
    position: relative;
    background-image: linear-gradient(#000000, #000000),
        linear-gradient(#ffffff, #ffffff);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
}

.service-card-title a:hover {
    background-size: 100% 1px;
}

.service-card-author {
    padding-top: 16px;
    border-top: 1px solid #edebe7;
    gap: 12px;
}

.service-card-author.style-two {
    padding: 16px 0;
    border-top: 1px solid #edebe7;
    border-bottom: 1px solid #edebe7;
}

.service-card-author.horizontal {
    border: 0;
    padding: 0;
}

.service-card-author img,
.service-card-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
}

.service-card-author-name {
    font-size: 18px;
    color: var(--dark-300);
    line-height: 1;
}

.service-card-author-name:hover {
    color: var(--lime-300);
}

.service-card-horizontal {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.service-card-horizontal:hover {
    border: 1px solid var(--lime-300);
}

.service-card-horizontal .wp-post-image {
    width: 125px;
    border-radius: 8px;
}

.wishlist-btn-horizontal {
    background-color: #f7f5f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--lime-300);
}

.service-card-placeholder {
    width: 100%;
    height: 154px !important;
    object-fit: cover;
}

/* Service Card Horizontal */

.service-payment-btn {
    border-radius: 4px;
    background-color: var(--white);
    padding: 14px 30px;
    border: 1px solid transparent;
    position: relative;
    min-width: 180px;
}

.service-payment-btn.active {
    border: 1px solid var(--lime-300);
}

.payment-checked-icon {
    position: absolute;
    left: 10px;
    /* padding-right: 10px; */
}

/*******************
Service Card End  
********************/

/*******************
About Pages  
********************/

/***********************
Service Details Start  
***********************/
.job-details-slider-img img {
    border-radius: 16px;
}

.service-details-content {
    padding: 20px;
    border-radius: 16px;
}

.service-details-content .swiper-slide img {
    border-radius: 16px;

}

.service-details-title {
    font-size: 40px;
    line-height: 50px;
}

.service-details-subtitle {
    font-size: 24px;
    line-height: 26px;
    color: var(--dark-300);
}

.service-title-secondary {
    font-size: 18px;
}

.swiper-nav-btn .swiper-button-next,
.swiper-nav-btn .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-nav-btn .swiper-button-next::after,
.swiper-nav-btn .swiper-button-prev::after {
    font-size: 16px;
    color: var(--dark-200);
}

.service-review-count {
    width: 200px;
    height: 190px;
}

.review-progress-wrapper {
    background-color: #d2d2d2;
    height: 12px;
    border-radius: 30px;
    width: 100%;
}

.review-progress-bar {
    background-color: var(--lime-300);
    height: 12px;
    border-radius: 30px;
}

.review-card {
    padding: 40px;
    border-radius: 10px;
}

.review-card .avatar {
    border-radius: 50%;
}

.reply-btn {
    background-color: var(--dark-50);
    color: var(--green-300);
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
}

.reply-btn:hover {
    background-color: var(--green-300);
    color: var(--white);
}

.seller-reply {
    border-top: 1px solid var(--dark-50);
}

.add-extra {
    text-align: center;
    display: block;
}

/*Package Tabs
 */
.package-tabs {
    background-color: var(--dark-50);
    padding: 16px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.package-tab-content {
    padding: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.package-tab-btn {
    color: var(--dark-300);
    font-size: 18px;
    font-family: var(--main-font-family);
}

.package-tab-btn.active {
    color: var(--lime-300);
    text-decoration: underline;
}

.package-name {
    font-size: 18px;
}

.package-price {
    font-size: 24px;
}

.package-title {
    font-size: 18px;
    color: var(--dark-200);
}

/***********************
Service Details End  
***********************/

/***********************
Freelancer Details Start  
***********************/
.freelancer-avatar {
    width: 110px;
    height: 110px;
}

.freelancer-name {
    font-size: 24px;
    line-height: 26px;
}

.freelancer-sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.freelancer-single-info {
    border-color: var(--dark-50);
}

.single-skill {
    background-color: #f7f5f0;
    color: #333;
    padding: 10px 15px;
    border-radius: 30px;
    display: inline-block;
}

.freelancer-university-name {
    font-size: 18px;
}

.freelancer-tab {
    border-radius: 16px;
}

.freelancer-tab .tab-btn {
    border: 1px solid var(--lime-300);
    padding: 14px 28px;
    border-radius: 30px;
    color: var(--dark-300);
}

.freelancer-tab .tab-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
}

.freelancer-tab-content {
    border-radius: 16px;
    padding: 30px;
}

.portfolio-card {
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
}

.portfolio-card img {
    border-radius: 12px;
}

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 16px;
    transform: scale(0.3);
    transition: all 0.5s ease-in-out;
    background-color: rgba(6, 19, 28, 0.5);
}

.portfolio-card:hover .portfolio-card-overlay {
    transform: scale(1);
    opacity: 1;
}

.portfolio-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.portfolio-card-icon i {
    font-size: 36px;
    color: #fff;
}

/**********************
Freelancer Details End  
***********************/

/*******************
Job Details  
********************/
.job-posts-container {
    padding: 40px;
    border-radius: 10px;
}

.job-post-details {
    border-top: 1px solid #edebe7;
}

.company-icon {
    width: 128px;
    height: 128px;
    background-color: var(--green-300);
    border-radius: 5px;
}

.job-type {
    color: var(--dark-200);
    font-size: 14px;
}

.job-type span {
    color: var(--dark-300);
    font-size: 14px;
}

.job-post-title {
    font-size: 24px;
    color: var(--dark-300);
    line-height: 26px;
}

.job-company {
    font-size: 16px;
    color: var(--dark-300);
}

.job-post-date,
.job-location {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.job-post-date {
    background-color: #e3ffdf;
    color: var(--lime-300);
}

.job-location {
    background-color: #edebe7;
    color: var(--green-300);
}

.job-wage {
    font-size: 24px;
    color: var(--dark-300);
}

.job-description-title {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 10px;
}

.job-desc {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
}

/* Job Modal */

.company-profile-card {
    padding: 30px;
    border-radius: 10px;
}

.company-profile-card-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #edebe7;
}

.company-profile-card-icon {
    width: 78px;
    height: 78px;
    background-color: var(--green-300);
    border-radius: 10px;
    overflow: hidden;
}

.company-profile-card-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.company-card-list li {
    border-bottom: 1px solid var(--dark-50);
}

.company-card-list li:last-child {
    border-bottom: none;
}

.company-card-list i {
    font-size: 20px;
}

.proposal-container {
    padding: 0 0 30px 0;
    border-bottom: 1px solid var(--dark-50);
}

.proposal-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-50);
}

.proposal-input-container .proposal-form-label {
    color: var(--dark-300);
    margin-bottom: 10px;
    display: block;
}

.proposal-input-container .form-select,
.proposal-input-container .form-control {
    border: 1px solid var(--dark-50);
    border-radius: 50px;
    padding: 16px 30px;
    height: 56px;
}

.proposal-input-container .form-textarea {
    border: 1px solid var(--dark-50);
    border-radius: 30px;
    padding: 16px 30px;
    height: 156px;
    width: 100%;
    resize: none;
}

.file-input__input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-input__label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    font-size: 14px;
    padding: 34px 40px;
    border-radius: 50px;
    border: 1px dashed #c9c9c9;
    background: #f7f5f0;
    justify-content: center;
    width: 100%;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

/*******************
Job Details End  
********************/

/* Latest Features */

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    min-height: 250px;
}

.feature-card-title {
    margin-top: 30px;
    font-size: 24px;
    white-space: wrap;
}

/* About Company */
.about-desc {
    font-size: 16px;
    color: var(--dark-200);
}

.about-list {
    column-gap: 40px;
    border-bottom: 1px solid rgba(0, 35, 90, 0.15);
}

.about-list-item {
    color: var(--dark-200);
}

.ceo-avatar {
    width: 60px;
    height: 60px;
}

.about-img-group li img {
    border: 10px solid white;
    border-radius: 16px;
}

.about-img-group li:nth-child(1) {
    top: 0;
    left: 0;
}

.about-img-group li:nth-child(2) {
    bottom: 0;
    left: 10%;
    top: 65%;
}

/*******************
Feature Tab Start 
********************/

.feature-tab {
    padding: 30px;
    border-radius: 10px;
}

.feature-tab {
    background-color: transparent;
    margin-bottom: 20px;
}

.feature-tab:hover {
    background-color: var(--off-white);
}

.feature-tab.feature-tab-two:hover {
    background-color: var(--white);
}

.feature-tab-img-one {
    top: 22%;
    right: 0;
}

.feature-tab-img-two {
    left: -6%;
    top: 50%;
}

/*******************
Feature Tab End 
********************/

/*******************
Accordion Start 
********************/
.faq-accordions .accordion .accordion-item {
    background-color: var(--white);
    border: 0;
    margin-bottom: 20px;
    border-radius: 5px;
}

.faq-accordions .accordion .accordion-item .accordion-button {
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 20px 30px;
}

.faq-accordions .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: var(--lime-300);
    background-color: white;
}

.accordion-body {
    border-top: 1px solid #ededed;
    padding: 20px 30px;
}

.accordion-body p {
    columns: var(--dark-100);
    line-height: 26px;
}

/*******************
Accordion End
********************/

/*******************
About Pages End  
********************/

/*******************
Blog Page Start 
********************/
.blog-card {
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.4s ease;
}

.blog-card:hover {
    background-color: var(--white);
}

.blog-thumb {
    border-radius: 10px;
}

.blog-date {
    background-color: var(--lime-300);
    border-radius: 30px;
    line-height: 1;
    font-size: 16px;
    color: var(--white);
    padding: 6px 12px;
    bottom: 8px;
    right: 8px;
}

.blog-meta {
    padding: 30px 20px;
}

.blog-title a {
    font-size: 24px;
    line-height: 1.3;
    color: var(--dark-300);
    position: relative;
    background-image: linear-gradient(#000000, #000000),
        linear-gradient(#ffffff, #ffffff);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
}

.blog-title a:hover {
    background-size: 100% 1px;
}

.blog-link:hover {
    color: var(--lime-300);
}

.pagination-link {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--dark-50);
    color: var(--dark-200);
}

.pagination-link:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}

.pagination-link.active {
    background-color: var(--lime-300);
    border: transparent;
    color: var(--white);
}

.pagination-item:first-child span,
.pagination-item:last-child span {
    border: none;
}

/* Blog Details */
.blog-details-title {
    font-size: 40px;
}

.wp-block-quote,
.blog-highlight {
    background-color: var(--green-300);
    padding: 30px 40px;
    border-radius: 6px;
}


.wp-block-quote svg,
.blog-highlight svg {
    position: absolute;
    left: 20px;
    top: 20px;
}


.wp-block-quote p,
.blog-highlight p {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--white);
}


.wp-block-quote cite,
.blog-highlight cite {
    color: var(--white);
}

.blog-tags-wrapper {
    padding: 20px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.blog-tags-wrapper .blog-tag {
    color: var(--dark-200);
    font-size: 16px;
}

.blog-tags-wrapper .blog-tag:hover {
    color: var(--lime-300);
}


.workzone-blog-authors {
    display: flex;
    align-items: center;
    gap: 25px;
}

.workzone-blog-authors__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 5px;
}

.workzone-blog-authors__head img {
    min-width: 120px;
    min-height: 120px;
    border-radius: 10px;
    max-width: 120px;
}

.workzone-social.workzone-social__author {
    gap: 10px;
}


.workzone-blog-authors {
    margin-top: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.workzone-blog-authors__social {
    padding-left: 30px;
    border-left: 1px solid #CACACA;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.workzone-blog-authors__social span {
    margin-top: 15px;
    display: block;
    color: #647082;
}

/* Social Links */
.social-links a {
    color: var(--dark-200);
}

.social-links a:hover {
    color: var(--lime-300);
}

.blog-single-comment {
    border-radius: 10px;
    padding: 40px;
}

.comment .avatar {
    border-radius: 50%;
}

.comment-reply-btn {
    color: var(--lime-300);
}

.comment-reply {
    border-top: 1px solid var(--dark-50);
}

/* Comment Form */
.comment-form {
    padding: 40px;
    border-radius: 10px;
}

.comment-form-input .form-control {
    border-radius: 30px;
    padding: 14px 28px;
    border: 1px solid #ededed;
    color: var(--dark-300);
}

.comment-form-input .form-control::placeholder {
    color: #b1b1b1;
}

.comment-form-input .form-control.form-textarea {
    border-radius: 20px;
    height: 110px;
    resize: none;
}

.comment-form-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
}

/*******************
Blog Page End 
********************/

/**********************
Subscription Plan Start
***********************/

.price-tabs .price-tab-link {
    background-color: var(--white);
    color: var(--dark-200);
    padding: 12px 24px;
}

.price-tabs .price-tab-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}

.plan-table {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
}

.plan-table:hover {
    border-color: var(--lime-300);
}

.plan-header {
    padding: 16px 24px;
    border-radius: 8px;
}

.plan-footer-btn {
    background-color: transparent;
    padding: 16px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #a1a1aa;
    font-family: var(--main-font-family);
    font-size: 18px;
    width: 100%;
}

.plan-footer-btn:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.popular-plan {
    background-color: var(--lime-300);
    position: absolute;
    display: inline-block;
    top: 11px;
    right: -38px;
    transform: rotate(45deg);
    padding: 10px 30px;
    color: var(--white);
    font-size: 14px;
    font-family: var(--main-font-family);
}

.plan-body i.fa-check-circle {
    font-size: 15px;
}

.plan-body i.fa-times-circle {
    font-size: 15px;
    color: #FF3838;
}

/**********************
Subscription Plan End  
**********************/

/*******************
Job Post
********************/
.job-post-input {
    padding: 0 16px;
    border-right: 1px solid var(--dark-100);
}

.job-post-filter {
    gap: 10px;
    border-radius: 50px;
}

.job-post-input .form-control,
.job-post-input .form-select {
    border: none;
}

.job-filter-btn {
    padding: 16px 30px;
    border-radius: 30px;
    height: 48px;
    color: var(--white);
    background-color: var(--lime-300);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tab-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green-300);
    color: var(--white);
}

.tab-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}

/*******************
Job Post End  
********************/

/*******************
Contact Page
********************/
.contact-widget-item .contact-widget-title {
    color: var(--dark-300);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-widget-item .contact-widget-info {
    color: var(--dark-200);
    font-size: 18px;
    line-height: 28px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-300);
}

.contact-form-desc {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
}

.contact-form-input .form-control {
    background-color: var(--white);
    border-radius: 50px;
    border: 1px solid transparent;
    padding: 16px 30px;
    height: 56px;
}

.contact-form-input .form-textarea {
    background-color: var(--white);
    border-radius: 30px;
    border: 1px solid transparent;
    padding: 16px 30px;
    height: 156px;
    width: 100%;
    resize: none;
}

.w-form-btn-inline {
    display: inline-block;
    background-color: var(--lime-300);
    border-radius: 30px;
    color: var(--white);
    padding: 14px 28px;
}

.contact-map {
    border-radius: 30px;
    width: 100%;
}

.contact-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.contact-social-links a {
    color: var(--dark-300);
}

.contact-social-links a:hover {
    color: var(--lime-300);
}

/*******************
Contact Page End  
********************/

/*******************
Login Pages Start  
********************/

.form-input .form-label {
    font-size: 18px;
    margin-bottom: 10px;
}

.form-input .form-control,
.form-input .form-select {
    border-radius: 50px;
    border: 1px solid #edebe7;
    padding: 16px 30px;
    height: 56px;
}

.form-input .form-control::placeholder {
    color: #b1b1b1;
}

.form-input .form-check-label {
    color: var(--dark-200);
}

.form-forget-pass {
    color: var(--lime-300);
}

.form-divider {
    border-bottom: 1px solid #edebe7;
}

.w-form-btn {
    width: 100%;
    border-radius: 30px;
    background-color: var(--lime-300);
    color: var(--white);
    padding: 14px 20px;
    display: block;
    text-align: center;
}

.w-form-btn-outline {
    width: 100%;
    border-radius: 30px;
    background-color: transparent;
    color: var(--dark-300);
    border: 1px solid var(--lime-300);
    padding: 14px 20px;
    display: block;
    text-align: center;
}

.form-divider-text {
    background: var(--white);
    position: absolute;
    color: #06131c;
    width: 30px;
    padding: 4px;
}

.social-login .social-login-item {
    background-color: #f7f5f0;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: #06131c;
}

.social-login .social-login-item:hover {
    background-color: var(--green-300);
    color: var(--white);
}

.form-text a {
    color: var(--dark-200);
}

.form-text a {
    color: var(--dark-300);
}

.social-login .social-login-item i {
    font-size: 28px;
}
/*******************
Login Pages End  
********************/

/*******************
Dashboard CSS Start
********************/
.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    z-index: 20;
    top: 0;
    background-color: var(--white);
    overflow-y: scroll;
    height: calc(100vh - 80px);
    scrollbar-width: none;
}

.sidebar-nav-link {
    display: flex;
    padding: 15px 30px;
    border-radius: 5px;
    gap: 16px;
    font-size: 18px;
    align-items: center;
    color: var(--dark-200);
    font-size: 16px;
}

.sidebar-nav-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}

.sidebar-nav-link svg {
    color: var(--lime-300);
}

.sidebar-nav-link.active svg {
    color: var(--white);
}

.dashboard-main {
    background-color: var(--off-white);
    padding: 30px;
    margin-left: 300px;
}

.dashboard-widget-title {
    font-size: 40px;
}

.dashboard-widget-icon {
    background-color: var(--green-300);
    border-radius: 8px;
    padding: 20px;
}

.dashboard-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.dashboard-table>thead>tr>th {
    background-color: rgba(34, 190, 13, 0.2);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-300);
    padding: 20px 10px;
    white-space: nowrap;
    font-family: var(--main-font-family);
}

.dashboard-table.job-table>thead>tr>th {
    padding: 20px 25px;
}

.dashboard-table.applicant-table>thead>tr>th,
.dashboard-table.subscription-table>thead>tr>th,
.dashboard-table.withdraw-table>thead>tr>th {
    padding: 20px 35px;
}

.dashboard-table>thead>tr>th:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.dashboard-table>thead>tr>th:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dashboard-table tbody {
    background-color: var(--white);
    border-radius: 10px;
}

.dashboard-table tbody tr {
    border-bottom: 1px solid var(--dark-50);
}

.dashboard-table tbody tr td {
    padding: 10px;
    white-space: normal;
}

.dashboard-table.applicant-table tbody tr td {
    padding: 10px 35px;
}

.dashboard-table.subscription-table tbody tr td,
.dashboard-table.withdraw-table tbody tr td {
    padding: 20px 35px;
}

.dashboard-table tbody tr td:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.dashboard-table tbody tr td:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.project-name img {
    background-color: var(--green-300);
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.order-category li {
    font-size: 14px;
}

.applicant-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2ffde;
    border-radius: 30px;
    color: var(--dark-200);
}

.applicant-link:hover {
    background-color: #e0fddc;
    color: #22be0d;
}

.project-link {
    color: var(--dark-200);
}

.project-link:hover {
    text-decoration: underline;
    color: var(--dark-300);
}

/* Dashboard Header */
.dashboard-header {
    margin-left: 280px;
}

.dashboard-header-btns .dashboard-header-btn {
    position: relative;
    background-color: var(--off-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-self: center;
}

.header-btn-badge {
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--lime-300);
    top: 0;
}

.dashboard-profile .dashboard-profile-ite {
    color: var(--dark-200);
    padding: 10px;
}

.dashboard-profile .dashboard-profile-ite:hover {
    background-color: var(--off-white);
}

.dashboard-header-btn.dropdown-toggle::after {
    display: none;
}

.dashboard-notification {
    width: 300px;
    padding-left: 0;
}

.notification-bell {
    background-color: var(--off-white);
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.notification-ite {
    padding: 10px;
    cursor: pointer;
}

.notification-ite:hover {
    background-color: var(--off-white);
}

.notification-ite:hover .notification-bell {
    background-color: var(--white);
}

.see-notification-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
}

.see-notification-btn:hover {
    opacity: 0.8;
}

.offcanvas-backdrop {
    width: 100%;
    height: 100%;
}

.offcanvas-body {
    z-index: 20;
}

.offcanvas-body .btn-close {
    background-color: var(--dark-50);
    position: absolute;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Create Gigs */

.gig-title-switch .form-check-input {
    background-color: transparent;
}

.gig-status .form-check-input:checked,
.gig-title-switch .form-check-input:checked {
    background-color: var(--lime-300);
    border-color: var(--lime-300);
}

.gig-info-header,
.profile-info-header {
    padding: 20px 30px;
    background-color: rgba(34, 190, 13, 0.2);
    border-radius: 8px 8px 0 0;
}

.profile-info-body,
.gig-info-body {
    padding: 20px 30px 30px;
    border-radius: 0 0 8px 8px;
}

/* Manage Gig */
.gig-edit-btn {
    background-color: var(--blue-300);
    border-radius: 30px;
    padding: 10px 18px;
    line-height: 1;
    color: var(--white);
    font-size: 14px;
}

/* Quill */
.w-editor-wrapper {
    border: 1px solid var(--dark-50);
    border-radius: 30px;
    padding: 20px;
    width: 100%;
}

.w-editor-wrapper .ql-toolbar.ql-snow {
    background-color: var(--dark-50);
    border: 0;
    border-radius: 30px;
}

.w-editor-wrapper .ql-container.ql-snow {
    border: 0;
}

.w-editor-wrapper .ql-editor {
    padding: 12px 0;
    height: 150px;
}

/* Price */
.price-pack-wrapper {
    border: 1px solid var(--dark-50);
    border-radius: 4px;
}

.pricing-pack-name {
    /* margin: 10px; */
    border-radius: 5px;
    padding: 10px;
    display: block;
    background-color: var(--dark-50);
}

.pack-description textarea {
    resize: none;
}

.pack-description textarea:focus {
    border: none;
}

.gig-file-upload {
    width: 130px;
    height: 130px;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
}

.gig-media-thumb {
    border-radius: 6px;
    border: 1px solid var(--dark-50);
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.gig-img-delete-btn {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff3838;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 12px;
    right: 12px;
}

/* Dashboard Action */
.dashboard-action-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-50);
    border-radius: 50%;
}

.dashboard-action-btn.dropdown-toggle::before {
    display: none;
}

.sub-menu.table-dropdown {
    background-color: #dcdcdc;
    border-radius: 8px;
    border: 0;
    min-width: 80px;
}

.sub-menu.table-dropdown {
    color: #5b5b5b;
    font-size: 14px;
}

.sub-menu.table-dropdown:hover {
    color: var(--lime-300);
    background: none;
}

/* Dashboard Badge */
.status-badge {
    padding: 8px 16px;
    line-height: 1;
    border-radius: 30px;

    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
}

.status-badge.pending {
    background-color: #fff0e2;
}

.status-badge.in-progress {
    background-color: #e2ffde;
    color: var(--dark-200);
}

.status-badge.canceled {
    background-color: #ffe2e2;
    color: var(--dark-200);
}

.status-badge.active {
    color: #22be0d;
    background-color: #ddffe6;
}

.status-badge.expired {
    color: #4b83fc;
    background-color: #eaf0ff;
}

.status-badge.in-active {
    color: #ff3838;
    background-color: #fde1e1;
}

/* Dashboard Tab */
.dashboard-tab-btn {
    background-color: var(--white);
    border-radius: 30px;
    padding: 16px 32px;
    color: var(--dark-200);
    font-size: 18px;
    line-height: 1;
}

.dashboard-tab-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
}

/* Profile Settings */
.form-container {
    position: relative;
}

.form-container .form-label {
    font-size: 18px;
    color: var(--dark-300);
    line-height: 18px;
    margin-bottom: 10px;
}

.form-container .form-control {
    border: 1px solid #edebe7;
    border-radius: 30px;
    padding: 16px;
    height: 52px;
}

.form-container .form-control::placeholder {
    color: #b1b1b1;
}

.form-container .form-select {
    border: 1px solid #edebe7;
    border-radius: 30px;
    font-size: 16px;
    height: 52px;
    padding: 0 16px;
}

.form-container .form-control.form-textarea {
    height: 120px;
    resize: none;
}

.skill-cloud {
    border-radius: 30px;
    padding: 20px;
    border: 1px solid var(--dark-50);
}

.skill-cloud-item {
    background-color: #f8f8f8;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #ededed;
    line-height: 1;
    font-size: 14px;
}

/* Message */
.message-sidebar-header {
    padding: 20px;
}

.message-search .form-control {
    height: 44px;
    padding: 12px 12px 12px 40px;
    background-color: #f3f9ff;
    border: 0;
}

.message-search-icon {
    left: 16px;
}

.message-person {
    border-top: 1px solid var(--dark-50);
    transition: all 0.3s ease;
    cursor: pointer;
}

.message-person:hover {
    background-color: #f3f3f3;
}

.msg-write-input .form-control {
    height: 50px;
    padding-left: 30px;
}

.msg-send-btn {
    background-color: var(--lime-300);
    padding: 16px 28px;
    border-radius: 30px;
    color: var(--white);
    height: 50px;
    line-height: 1;
}

.input-icon-end {
    right: 16px;
}

/*******************
Dashboard CSS End 
********************/


/* Preloader */
#loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999999999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 20px;
    width: 100px;
    margin-top: -10px;
    margin-left: -50px;

}

.object {
    width: 20px;
    height: 20px;
    background-color: #000;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
    position: absolute;
}


#object_one {
    -webkit-animation: object 2s linear infinite;
    animation: object 2s linear infinite;
}

#object_two {
    -webkit-animation: object 2s linear infinite -.4s;
    animation: object 2s linear infinite -.4s;
}

#object_three {
    -webkit-animation: object 2s linear infinite -.8s;
    animation: object 2s linear infinite -.8s;
}

#object_four {
    -webkit-animation: object 2s linear infinite -1.2s;
    animation: object 2s linear infinite -1.2s;
}

#object_five {
    -webkit-animation: object 2s linear infinite -1.6s;
    animation: object 2s linear infinite -1.6s;
}


@-webkit-keyframes object {
    0% {
        left: 100px;
        top: 0
    }

    80% {
        left: 0;
        top: 0;
    }

    85% {
        left: 0;
        top: -20px;
        width: 20px;
        height: 20px;
    }

    90% {
        width: 40px;
        height: 15px;
    }

    95% {
        left: 100px;
        top: -20px;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 100px;
        top: 0;
    }

}

@keyframes object {
    0% {
        left: 100px;
        top: 0
    }

    80% {
        left: 0;
        top: 0;
    }

    85% {
        left: 0;
        top: -20px;
        width: 20px;
        height: 20px;
    }

    90% {
        width: 40px;
        height: 15px;
    }

    95% {
        left: 100px;
        top: -20px;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 100px;
        top: 0;
    }
}

/*******************
Footer  
********************/
/* Newsletter */
.footer-newsletter {
    border-bottom: 1px solid #2c4253;
}

.footer-newsletter-desc {
    font-size: 14px;
    color: #fff3ed;
}

.footer-newsletter-form {
    border: 1px solid #2c4253;
    border-radius: 50px;
    padding: 10px;
    gap: 20px;
}

.footer-newsletter-form .form-control {
    background-color: #22323f;
    border-radius: 50px;
    border: 1px solid #22323f;
    padding: 16px 32px;
    color: var(--white);
}

.footer-newsletter-form .form-control:focus {
    border: 1px solid #22be0d;
}

.footer-newsletter-form .form-control::placeholder {
    color: #5e7080;
}

.footer-newsletter-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Widgets */
.footer-info-widget-item {
    color: var(--dark-100);
    font-size: 16px;
}

.footer-widget-title {
    color: var(--white);
    font-size: 24px;
}

.footer-nav-list .footer-nav-list-item .footer-nav-link {
    font-size: 18px;
    color: var(--dark-100);
    transition: all 0.3s ease-in-out;
}

.footer-nav-list .footer-nav-list-item .footer-nav-link:hover {
    color: var(--lime-300);
}

.footer-nav-list .footer-nav-list-item .footer-nav-link svg {
    transition: all 0.3s ease-in-out;
}

.footer-nav-list .footer-nav-list-item .footer-nav-link:hover svg {
    transform: rotate(-20deg);
}

/* Footer Copyright */
.footer-copyright {
    background-color: var(--dark-400);
}

.footer-social-link {
    color: #5b7081;
}

.footer-social-link:hover {
    color: var(--white);
}

/*******************
Footer   End
********************/


/* Theme ScrollUp */
.scrollToTop {
    right: 100px;
    z-index: 33;
    bottom: 70px;
    position: fixed;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    visibility: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    font-size: 14px;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0px 9px 126px rgba(20, 0, 255, 0.06);
    z-index: 999999;
}

.scrollToTop i {
    font-size: 42px;
}

.scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

@media only screen and (min-width: 992px) and (max-width: 1550px) {

    .hero-one-img {
        max-width: unset !important;
    }

    .scrollToTop {
        right: 50px;
        bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .scrollToTop {
        right: 20px;
        bottom: 20px;
    }
}