/* ---Poppins-Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --white-colour: #ffffff;
    --black-colour: #000000;
    --brand-900: #11321e;
    --brand-600: #00c654;
    --brand-700-main: #04a74a;
    --gray-25: #fafdfd;
    --gray-500-tertiary: #00c654;
    --gray-300: #dde2e1;
    --gray-700-body: #525755;
    --gray-900: #1c201f;
    --color-text: #262729;
    --dark-gray: #8c8c8c;
    --yellow-colour: #eac64b;
    --error-500: #f04438;

    --dark-gray-700: #787d7c;

    /* font-family */
    --font-poppins: "Poppins", sans-serif;
}

.dark-gray-700 {
    color: var(--dark-gray-700);
}

.brand-700-main {
    color: var(--brand-700-main) !important;
}

.green__text:hover {
    color: #057027 !important;
}

body {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--brand-900);
    background-color: var(--gray-25);
    font-family: var(--font-poppins);
}

h1 {
    font-weight: 600;
    font-size: 56px;
    line-height: 72px;
    letter-spacing: -1%;
}

h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1%;
}

h1 span {
    color: var(--brand-600);
}

h2 span {
    color: var(--brand-600);
}

h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1%;
}

h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.text-lg {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1%;
}

.text-base {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.text-sm {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--gray-700-body);
}

.text-xs {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2%;
    vertical-align: middle;
    color: #787d7c;
}

.btn-shape {
    padding: 12px 24px;
    border-radius: 50px;
    letter-spacing: 2%;
    vertical-align: middle;
    font-weight: 600;
    background-color: var(--brand-700-main);
    color: var(--white-colour);
}

.btn-shape:hover {
    background-color: #057428;
    box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.14);
}

.rounded-lg {
    border-radius: 8px;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p,
figure {
    margin: 0;
}

span,
small {
    display: inline-block;
}

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

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    padding: 0;
}

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

input,
textarea,
input:focus,
textarea:focus {
    outline: none;
    border: none;
}

::placeholder {
    opacity: 1;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

@media (min-width: 1400px) {
    .header-container {
        max-width: 1336px;
    }

    .container-lg-large {
        max-width: 1208px;
    }

    .container-xl-large {
        max-width: 1240px;
    }
}

.container,
.container-fluid {
    padding: 0 20px;
}

/*--------------------
 Back to Top Button
---------------------*/

.scrollToTopBtn {
    background-color: #04a74a;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 0;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5) !important;
}

.scrollToTopBtn:focus {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5) !important;
}

.showBtn {
    opacity: 1;
    transform: translateY(0);
}

/*
-------------------------
header-area start
-------------------------
*/

/* header-top */
.header-top {
    padding: 14px 0;
}

.hdr-contact-list {
    display: flex;
    gap: 65px;
    align-items: center;
}

.hdr-contact-list li {
    position: relative;
}

.hdr-contact-list li::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background-color: var(--gray-300);
    right: -31px;
    top: 50%;
    transform: translateY(-50%);
}

.hdr-contact-list li:last-child::before {
    display: none;
}

.hdr-contact-list li span,
.hdr-contact-list li span {
    color: var(--brand-700-main);
}

.hdr-contact-list li a:hover {
    text-decoration: underline;
}

.hdr-social-list li a img {
    transition: 0.3s all ease-in-out;
}

.hdr-social-list li a:hover img {
    filter: grayscale(1);
    transition: 0.3s all ease-in-out;
}

/* main-header */
.main-header {
    padding: 24px 0;
}

.hdr-nav-list {
    gap: 48px;
}

.hdr-nav-list li a {
    color: var(--brand-900);
    position: relative;
}

.hdr-nav-list li a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--brand-600);
    transition: 0.3s all ease-in-out;
}

.hdr-nav-list li a:hover::before,
.hdr-nav-list li a.active::before {
    width: 100%;
    transition: 0.3s all ease-in-out;
}

.hdr-nav-list li a:hover,
.hdr-nav-list li a.active {
    color: var(--brand-600);
}

.hdr-nav-list li:first-child a::before {
    display: none;
}

.login__btn {
    background-color: #ffffff0d;
    border: 1px solid var(--gray-300);
    color: var(--brand-900);
}

.login__btn:hover {
    background-color: var(--white-colour);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.avatar__btn:hover {
    box-shadow: 0px 0px 5px #e4e9e8;
}

/* sm-header-area */

.sm-header {
    padding: 24px 20px;
}

.header-logo2 img {
    margin: -20px 0;
    max-width: none;
}

.bar-close-btn {
    color: var(--black-colour);
    font-size: 24px;
}

#headerMenuOffcanvas {
    width: 100%;
    background-color: var(--white-colour);
    z-index: 1100;
}

#headerMenuOffcanvas .offcanvas-header {
    padding: 24px 20px;
}

#headerMenuOffcanvas .offcanvas-body {
    padding: 0 8px 20px;
}

.close__btn {
    font-size: 24px;
    position: absolute;
    right: 20px;
    color: var(--black-colour) !important;
}

.header-menu-link > ul > li > a {
    font-size: 18px;
    padding: 10px 12px;
    border-radius: 8px;
    margin: 0 0 4px;
    color: var(--brand-900);
    display: block;
    font-weight: 500;
}

.header-menu-link > ul > li > a:hover,
.header-menu-link > ul > li > a.active {
    background-color: #e4dde02b;
}

.logo_flex {
    gap: 12px;
}

.sm-header .btn-shape {
    padding: 8px 16px;
    font-size: 14px;
}

.bar__btn {
    font-size: 18px;
}

/* sm-header-top */

.sm-header-top {
    padding: 8px 9px;
}

.open__btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2%;
    background-color: #2f7cf7;
    padding: 8px 14px;
    border-radius: 100px;
    color: var(--white-colour);
}

.open__btn:hover {
    opacity: 0.8;
}

/*
-------------------------
banner-area start
-------------------------
*/

.banner-area {
    padding: 64px 0 108px;
    background-image: url(images/img/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.banner-content {
    max-width: 990px;
    margin: 0 auto;
}

.banner-content > h1 {
    margin-bottom: 64px;
}

.input-design {
    letter-spacing: 2%;
    padding: 16px 24px;
    border: 1px solid #dfe0e4;
    border-radius: 16px;
    background-color: var(--white-colour);
}

.input-design2 {
    padding: 14px 16px 14px 48px !important;
    border-radius: 8px;
}

.input-design:focus {
    border: 1px solid var(--brand-600);
}

.input-design::placeholder {
    color: #6f6f6f;
}

.filters-div {
    border: 1px solid #dfe0e4;
    border-radius: 16px;
    padding: 16px 24px;
    margin: 16px 0 0;
    background-color: var(--white-colour);
}

.filters-div > p {
    color: var(--gray-900);
    margin: 0 0 16px;
}

.select_height_div {
    height: 48px;
}

.h-48 {
    height: 48px;
}

.h-40 {
    height: 40px;
}

.select__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.filter__grid {
    display: grid;
    grid-template-columns: 250px 250px 250px auto;
    gap: 12px;
    align-items: center;
}

/* select2 */

.select__option__select2 {
    width: 100% !important;
    height: 48px !important;
}

.select_height_div .select2-container {
    height: 48px;
    width: 100% !important;
}

.select_height_div .select2-container .selection {
    height: 48px;
    width: 100%;
}

.select_height_div .select2-container .select2-selection {
    padding: 9px 16px 9px 38px !important;
    border-radius: 8px !important;
    letter-spacing: 2%;
    border: 1px solid #dfe0e4;
    border-radius: 16px;
    background-color: var(--white-colour);
    height: 48px;
    line-height: 1;
    position: relative;
}

.selecr_height_div_ps_16 .select2-container .select2-selection {
    padding: 9px 16px 9px 8px !important;
}

.select_height_div_40 .select2-container .select2-selection {
    height: 40px;
    padding: 5px 16px 4px 26px !important;
}

.select_height_div
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    display: none;
}

.category__bg .select2-container .select2-selection {
    background-image: url(images/icons/tail-icon.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
}

.city__bg .select2-container .select2-selection {
    background-image: url(images/icons/location.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
}

.category__bg.select_height_div_40 .select2-container .select2-selection {
    background-position: 7px center;
}

.city__bg.select_height_div_40 .select2-container .select2-selection {
    background-position: 7px center;
}

.selecr_height_div_fw_normal span {
    font-weight: 400 !important;
}

.checkbox__div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 0 0;
}

.checkbox__div input {
    width: 0;
    height: 0;
    display: none;
}

.checkbox__div label p {
    padding-left: 28px;
    position: relative;
}

.checkbox__div label p::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background-color: #ffffff33;
    border: 1px solid #dfe0e4;
    top: 50%;
    transform: translateY(-50%);
}

.checkbox__div label input:checked + p::after {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 3px;
    color: var(--brand-700-main);
    font-family: "FontAwesome";
}

.checkbox__div label input:checked + p::before {
    border: 1px solid var(--brand-600);
}

/*
-------------------------
helpi-category-area start
-------------------------
*/

.helpi-category-area {
    padding: 34px 0 64px;
}

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

.category-title a {
    color: var(--brand-700-main);
    border-bottom: 1px solid var(--brand-700-main);
}

.category-title a:hover {
    color: #057027;
}

.helpi-category-area .row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
}

.category__item {
    border: 1px solid #e7e6eb;
    border-radius: 10px;
    background-color: var(--white-colour);
}

.category__item > div {
    border-radius: 10px 10px 0 0;
}

.category__item img {
    aspect-ratio: 4/3;
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

.category__item img:hover {
    transform: scale(1.1);
    transition: 0.3s all ease-in-out;
}

.category__item h5 {
    padding: 16px;
    color: var(--brand-900);
}

/*
-------------------------
helpi-assembly-area start
-------------------------
*/

.helpi-assembly-area {
    padding: 45px 0;
}

.carousel__slider .owl-stage {
    padding-left: 0 !important;
}

.star__heart__div {
    padding: 0 10px;
    width: calc(100% - 32px);
    position: absolute;
    left: 16px;
    top: 26px;
    z-index: 5;
}

.star__heart__div i {
    transition: 0.3s all ease-in-out;
}

.star__heart__div span {
    top: 50%;
}

.star__span {
    color: var(--color-text);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    height: 30px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 10px;
}

.heart__span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: #ee685f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s all ease-in-out;
    position: absolute;
    right: 10px;
}

.heart__span:hover i {
    font-weight: 700;
    transition: 0.3s all ease-in-out;
}

.star__span i {
    color: #efc968;
}

.card__link__item {
    background-color: var(--white-colour);
    border: 1px solid #e7e6eb;
    padding: 16px;
    border-radius: 10px;
}

.card__link__item > div > img {
    aspect-ratio: 4/2.32;
    width: 100%;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

.card__link__item > div > img:hover {
    transform: scale(1.1);
    transition: 0.3s all ease-in-out;
}

.card__content {
    padding: 16px 0 0;
}

.card__content h5 {
    color: var(--brand-900);
    margin: 0 0 3px;
}

.card__content p {
    margin: 14px 0 0;
}

.card__content p span {
    font-size: 20px;
    line-height: 32.95px;
    letter-spacing: -1%;
    margin-left: 10px;
    color: var(--brand-900);
    font-weight: 500;
    vertical-align: middle;
}

.carousel__slider .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 100;
}

.carousel__slider .owl-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0px 8px 16px -4px #07070763;
    background-color: var(--white-colour);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-colour) !important;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.carousel__slider .owl-nav button:hover {
    background-color: #ebf1e9 !important;
}

.carousel__slider .owl-nav button:focus {
    box-shadow: 0px 8px 16px -4px #07070763 !important;
}

.carousel__slider .owl-nav button.owl-prev {
    margin-left: -30px;
    position: absolute;
    left: 0;
}

.carousel__slider .owl-nav button.owl-next {
    margin-right: -30px;
    position: absolute;
    right: 0;
}

.carousel__slider .owl-nav button:hover img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(37%) saturate(4067%)
        hue-rotate(122deg) brightness(93%) contrast(97%);
}

.carousel__slider .owl-nav button.disabled {
    visibility: hidden;
    transition: 0.3s all ease-in-out;
}

/*
----------------------------
helpi-customes-says-area
----------------------------
*/

.helpi-customes-says-area {
    padding: 110px 0 125px;
    background-image: url(images/img/customer-area-bg.png);
    background-repeat: no-repeat;
    background-position: center;
}

.customer-says-title {
    padding: 0 0 74px;
}

.customer-says-title h5 {
    color: var(--dark-gray);
}

.customer-says-title h5 span {
    color: var(--brand-700-main);
}

.star__list li i {
    color: #f9c339;
}

.customer-slider .owl-dots {
    text-align: center;
    padding: 48px 0 0;
}

.customer-slider .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e6e9ea;
    margin: 0 3.5px;
}

.customer-slider .owl-dots .owl-dot.active {
    background-color: var(--brand-900);
}

.customer-content {
    max-width: 299px;
}

.customer-content p {
    margin: 15px 0;
    color: #0a2b14;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-content a {
    color: var(--brand-700-main);
    font-weight: 600;
}

.customer-content a:hover {
    color: #057027;
}

/*
---------------------
helpi-app-area
---------------------
*/

.helpi-app-area {
    padding: 74px 0 60px;
}

.app-box {
    background-image: url(images/img/app-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    padding: 30px 60px 0;
}

.app-content {
    padding: 17% 0 0;
}

.app-content p {
    margin: 12px 0 32px;
    color: var(--gray-700-body);
}

.app-content a:hover {
    opacity: 0.6;
}

/*
------------------------
helpi-news-reviews-area
------------------------
*/

.helpi-news-reviews-area {
    padding: 80px 0;
}

.card__content2 {
    padding: 24px 15px 0;
}

.card__content2 h5 {
    margin-bottom: 24px;
}

.card__content2 > p {
    color: #787d7c;
    margin: 0 0 16px;
}

.card__content2 a {
    color: var(--brand-700-main);
    border-bottom: 1px solid var(--brand-700-main);
    font-weight: 600;
}

.card__content2 a i {
    margin-left: 4px;
}

.card__content2 a:hover {
    color: #057027;
}

.card__link__item2 > div > img {
    aspect-ratio: 340/274;
}

/*
------------------------
footer-area
------------------------
*/

.footer-area {
    padding: 80px 0 0;
}

.frt-links-title h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin: 0 0 16px;
}

.collapse__list li a,
.collapse__list li p,
.footer-bottom ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--brand-900);
    margin: 0 0 16px;
}

.collapse__list li a:hover,
.footer-bottom ul li a:hover {
    text-decoration: underline;
}

.collapse__title {
    position: relative;
    cursor: pointer;
}

.collapse__title span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.collapse__title span i {
    transition: 0.3s all ease-in-out;
}

.fs-16 {
    font-size: 16px;
}

.ftr-social-list li img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(76%) saturate(359%)
        hue-rotate(91deg) brightness(97%) contrast(97%);
    transition: 0.3s all ease-in-out;
}

.w-max-content {
    width: max-content;
}

.footer-bottom {
    margin: 64px 0 0;
    border-top: 1px solid #e6eae9;
    padding: 48px 0 32px;
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

/*
=========================
ads-list.html
=========================
*/

/*
-------------------------
ads-list-banner-bg-area
-------------------------
*/

.ads-list-banner-bg-area {
    background-image: url(images/img/ads-list-banner-bg.png);
    background-repeat: no-repeat;
    background-color: #f2fcf4;
    background-size: cover;
}

.ads-banner-content {
    padding: 52px 0 85px;
}

/* main__filter__collapse__div */

.main__filter__collapse__div {
    padding: 0 0 25px;
}

.filters__collapse__area {
    display: flex;
    gap: 16px;
}

.filters__collapse__area
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    width: 115px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 0;
    margin-right: 18px;
}

.dotted__span {
    width: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dotted__span2 {
    width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: start;
}

.filters__collapse__area .select_height_div {
    height: 40px;
}

.filters__collapse__area > div {
    min-width: 180px;
}

.filters__collapse__area .nice-select.input-design2 {
    padding: 11px 35px 14px 35px !important;
}

.filters__collapse__area .select__icon {
    left: 7px;
}

.filters__collapse__area .input-design2 {
    padding-left: 35px !important;
}

.collapse__filter__btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--brand-900);
    border-radius: 50px;
    padding: 9px 10px !important;
}

.collapse__filter__btn:hover {
    background-color: #e6eae9;
}

.collapse__filter__btn:focus {
    border: 1px solid #dfe0e4;
}

.calender__div {
    width: 180px;
}

#datepicker::placeholder {
    color: var(--brand-900) !important;
}

.sort__by__select .nice-select {
    font-weight: 400;
    color: var(--gray-700-body);
    padding-left: 82px !important;
    padding-top: 12px !important;
    padding-right: 45px !important;
}

.category__item__box .category__inr__div {
    padding: 16px 16px;
}

.category__item__box .category__inr__div h5 {
    padding: 0;
}

.category__item__box .category__inr__div p {
    margin: 12px 0 0;
}

.category__item__box .category__inr__div p span {
    color: var(--brand-900);
    font-weight: 500;
    margin-left: 5px;
}

/* pagination__area */

.pagination__area {
    padding: 40px 0 0;
    gap: 15px;
}

.pagination__area li a {
    color: #787d7c;
    padding: 0 5px;
}

.pagination__area li a:hover {
    color: var(--brand-700-main);
}

.pagination__area li a.green__a {
    color: var(--brand-700-main);
}

.pagination__area li a.active {
    color: var(--brand-700-main);
    font-weight: 500;
    border-bottom: 2px solid var(--brand-700-main);
}

.pagination__area li a.disabled {
    visibility: hidden;
}

/*
=========================
category.html
=========================
*/

.card__link__item__2 {
    padding: 12px;
}

.card__link__item__2 > div > img {
    aspect-ratio: 4/2.8;
}

.card__link__item__2 .card__content p span {
    font-size: 16px;
    margin-left: 8px;
}

.card__link__item__2 .card__content > span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*
---------------------------
helpi-browse-category-area
---------------------------
*/

.helpi-browse-category-area {
    padding: 34px 0;
}

.helpi-browse-category-area .category__item h5 {
    padding: 11px;
    font-size: 14px;
    line-height: 20px;
}

/*
=========================
ad-inner.html
=========================
*/

/*
---------------------------
helpi-ad-inner-main-area
---------------------------
*/

.helpi-ad-inner-main-area {
    padding: 64px 0 24px;
}

@media (min-width: 992px) {
    .ad-inner-main-grid {
        display: grid;
        grid-template-columns: auto 400px;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .ad-inner-main-grid {
        display: grid;
        grid-template-columns: auto 500px;
        gap: 96px;
    }
}

.brodcamp-ul li a {
    color: var(--gray-700-body);
}

.brodcamp-ul li a:hover {
    text-decoration: underline;
}

.architects-content {
    overflow: hidden;
    padding-bottom: 64px;
}

.architects-content h3 {
    margin: 16px 0 32px;
}

.service__btn {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 16px;
    margin-bottom: 32px;
}

.architects-content p {
    color: var(--gray-700-body);
    max-width: 540px;
}

.architects-content p a {
    border-bottom: 1px solid var(--brand-700-main);
    font-weight: 500;
    color: var(--brand-700-main);
}

.architects-content p a:hover {
    color: #057027;
}

/* gallery-image-area */

.gallery-image-area {
    padding-bottom: 64px;
}

.gallery-image-area > h4 {
    margin-bottom: 20px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery__grid img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 278/174;
}

.gallery-image-area .modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #11321ed9;
}

.gallery-image-area .modal-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 100px 0;
    width: 90%;
    max-width: 1070px;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* The Close Button */
.gallery-image-area .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.gallery-image-area .close:hover,
.gallery-image-area .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.gallery-image-area .image__slide {
    display: none;
}

.image__slide > img {
    max-height: 535px;
    object-fit: cover;
    object-position: center;
}

.gallery-image-area .cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.gallery-image-area .prev,
.gallery-image-area .next {
    cursor: pointer;
    position: absolute;
    top: 46%;
    width: auto;
    padding: 5px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 50%;
}

@media (min-width: 1400px) {
    .gallery-image-area .prev {
        left: -80px;
    }

    .gallery-image-area .next {
        right: -80px !important;
    }
}

.gallery-image-area .next {
    right: 0;
}

.gallery-image-area .prev:hover,
.gallery-image-area .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.image__flex__column {
    padding: 32px 0 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.image__flex__column > div {
    width: 88px;
    height: 88px;
}

.image__flex__column > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-image-area .cursor.active {
    opacity: 50%;
}

.view__more__a {
    color: var(--brand-700-main);
    border-bottom: 1px solid var(--brand-700-main);
    margin-top: 24px;
}

.view__more__a:hover {
    color: #057027;
}

.reviews-empty-box {
    padding: 90px 0 64px;
}

.reviews-empty-box p {
    margin: 8px 0 24px;
    color: var(--gray-700-body);
}

.reviews-empty-box .review__btn {
    color: var(--brand-700-main);
}

.reviews-empty-box .review__btn img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(92%) saturate(2138%)
        hue-rotate(129deg) brightness(99%) contrast(97%);
}

.ratings-div {
    gap: 12px;
}

.ratings-div ul {
    gap: 6px;
}

.ratings-div ul li i,
.ratings__ul li i {
    font-size: 14px;
    color: var(--yellow-colour);
}

.review__btn {
    border-bottom: 1px solid #787d7c;
    padding-bottom: 2px;
    margin: 10px 0 32px;
}

.review__btn:hover {
    opacity: 0.8;
}

.reviews-div {
    padding: 24px 0 32px;
    border-top: 1px solid #e8e8e6;
}

.ratings__ul {
    gap: 4px;
}

.reviews__title {
    padding: 0 0 4px;
}

.reviews__title > span {
    color: #787d7c;
}

.reviews-div > p {
    color: var(--gray-700-body);
    max-width: 460px;
}

.reviews__image {
    padding: 16px 0 0;
}

.reviews__image img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.user__icon__div {
    padding: 24px 0 0;
}

.user__icon__div a {
    color: var(--brand-900);
}

/* order-details-area */

.design__box {
    background-color: var(--white-colour);
    border-radius: 12px;
    border: 1px solid #e4e9e8;
    box-shadow: 0px 4px 30px 0px #4e4a4a0f;
    padding: 32px 32px;
}

.order-details-box > h4 {
    margin: 0 0 32px;
}

.input-design3 {
    padding: 15px 16px;
    border-radius: 8px;
    font-weight: 400;
}

.input__group {
    margin-bottom: 24px;
}

.input__group2 label::after {
    display: none;
}

.calender-icon,
.time-icon {
    position: absolute;
    right: 16px;
    bottom: 14px;
}

.input__group textarea {
    padding: 12px 16px;
}

.contact-box {
    margin: 32px 0 0;
    background-color: transparent;
    box-shadow: none;
}

.contact-box > h5 {
    margin: 0 0 24px;
}

.contact-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-box ul li span,
.contact-box ul li a {
    color: var(--gray-700-body);
}

.contact-box ul li a:hover {
    text-decoration: underline;
}

/*
---------------------------
helpi-similar-ads-area
---------------------------
*/

.helpi-similar-ads-area {
    padding: 80px 0;
}

.truncate-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* reviewModal */

#reviewModal .modal-dialog {
    max-width: 648px;
    padding: 10px;
}

.modal-backdrop {
    background-color: #11321e80;
    backdrop-filter: blur(2px);
    opacity: 1 !important;
}

.modal__content__area {
    background-color: var(--white-colour);
    border-radius: 16px;
    border: 1px solid #e4e9e8;
    box-shadow: 0px 32px 48px -8px #0000001a;
}

.modal__content__area .modal-body {
    padding: 12px 16px 24px;
}

@media (min-width: 768px) {
    .modal__content__area .modal-body {
        padding: 32px 32px;
    }
}

.modal__title h5 {
    height: 56px;
}

.gap_12 {
    gap: 12px;
}

.gap_20 {
    gap: 20px;
}

.modal__ratings__div {
    padding: 24px 0 32px;
}

.modal__ratings__div ul li i {
    font-size: 28px;
    color: var(--yellow-colour);
}

.file__input__label input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
}

.upload__div {
    border: 1px dashed #d4d7dd;
    border-radius: 12px;
    padding: 16px 16px;
}

.upload__div p {
    margin: 16px 0 0;
}

.upload__div p span {
    font-weight: 600;
    color: var(--brand-700-main);
}

#uploadPreviewContainer {
    border: 1px dashed #d4d7dd;
    border-radius: 12px;
    padding: 16px 16px;
}

/*
=========================
user-profile-main.html
=========================
*/

/*
-----------------------------
helpi-user-profile-main-area
-----------------------------
*/

.helpi-user-profile-main-area {
    padding: 64px 0 70px;
    position: relative;
}

@media (min-width: 992px) {
    .user-profile-main-grid {
        display: grid;
        grid-template-columns: 275px auto;
        gap: 20px;
    }
}

@media (min-width: 1400px) {
    .user-profile-main-grid {
        display: grid;
        grid-template-columns: 322px auto;
        gap: 32px;
    }
}

/* aside__part */

.aside__box {
    background-color: var(--white-colour);
    border: 1px solid #e4e9e8;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px #4e4a4a0f;
    padding: 32px 16px;
}

.user__info {
    padding-bottom: 32px;
}

.user__image__btn {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    text-align: center;
    color: var(--dark-gray-700);
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf1f0;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.user__info p {
    margin: 16px 0 0;
}

.items__list li a {
    display: flex;
    gap: 16px;
    color: var(--brand-900);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 14px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    position: relative;
}

.items__list li a::before {
    content: "";
    position: absolute;
    height: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background-color: #eaf3ec;
    left: -16px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: 0.3s all ease-in-out;
}

.items__list li a.current::before,
.items__list li a:hover::before {
    height: 100%;
    transition: 0.3s all ease-in-out;
}

.items__list li a.current::before {
    background-color: var(--brand-700-main);
}

.items__list li a:hover {
    background-color: #eaf3ec4f;
}

.items__list li a.current {
    background-color: #f2fcf4;
}

.items__list li a span {
    width: 20px;
}

.items__list li.line {
    border-bottom: 1px solid #e4e9e8;
    margin: 32px 0;
}

.items__list li .sign__out__btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
    color: var(--brand-900);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    background-color: #ffffff0d;
    border-radius: 50px;
    border: 1px solid #dde2e1;
    margin: 32px 0 0;
}

.items__list li .sign__out__btn:hover {
    box-shadow: 1px 5px 7px rgba(0, 0, 0, 0.1);
}

.items__list li .sign__out__btn::before {
    display: none;
}

/* user-profile-right-side */

.profile-design-box {
    background-color: var(--white-colour);
    border-radius: 12px;
    border: 1px solid #e4e9e8;
    box-shadow: 0px 4px 30px 0px #4e4a4a0f;
    padding: 46px 46px;
}

.right-side-title {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 32px;
}

.right-side-title h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
}

.welcome-area {
    padding: 108px 20px;
}

.welcome-area h3 {
    margin: 48px 0 16px;
}

/*
=========================
user-profile-my-ads.html
=========================
*/

/*
-----------------------------
my-ads-area
-----------------------------
*/

.my-ads-area {
    padding: 46px 46px;
}

.page__title {
    padding-bottom: 32px;
}

.page__title button,
.page__title a {
    color: var(--brand-700-main);
    border-bottom: 1px solid var(--brand-700-main);
}

.page__title button:hover,
.page__title a:hover {
    color: #057027;
}

.ads__flex__div {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.ads__card {
    background-color: var(--white-colour);
    border: 1px solid #e7e6eb;
    border-radius: 8px;
    padding: 16px;
}

.dog-image {
    border-radius: 6px;
}

.dog-image > a img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: 0.3s all ease-in-out;
    width: 100%;
}

.dog-image > a img:hover {
    transform: scale(1.1);
    transition: 0.3s all ease-in-out;
}

.ads__card__content {
    padding: 16px 0 24px;
}

.ads__card__content ul li {
    margin-top: 12px;
}

.ads__card__content ul li a {
    color: var(--gray-700-body);
}

.ads__card__content ul li a:hover {
    text-decoration: underline;
}

.ads__card__btn {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ads__card__btn .btn-shape {
    padding: 10px 12px;
    line-height: 1;
    height: 40px;
}

.btn-shape-border {
    background-color: #ffffff0d;
    border: 1px solid #dde2e1;
    color: var(--brand-900);
}

.btn-shape-border:hover {
    background-color: #eaf3ec4f;
    box-shadow: 1px 5px 7px rgba(0, 0, 0, 0.1);
}

.btn-shape-alert {
    background-color: var(--error-500);
    color: var(--white-colour);
}

.btn-shape-alert:hover {
    background-color: #cb261a;
}

/*
=========================
user-profile-salss.html
=========================
*/

.sals__tab__list li,
.text-base-all {
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 2% !important;
}

.sals__tab__list {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #e3e8ee;
    margin-bottom: 32px;
}

.sals__tab__list li {
    color: var(--dark-gray-700);
    padding-bottom: 6px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    border-bottom: 3px solid transparent;
}

.sals__tab__list li:hover {
    color: #057027;
}

.sals__tab__list li.current {
    color: var(--brand-700-main);
    border-bottom: 3px solid var(--brand-700-main);
}

.title__span {
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 7px;
    padding: 7px 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--color-text);
}

.title__span.pending {
    background-color: #fcefcb;
}

.title__span.confirmed,
.title__span.accepted {
    background-color: #e1fae5;
}

.title__span.rejected {
    background-color: #fde8e8;
}

.title__span.paid {
    background-color: #e8f5ff;
}

.title__span.completed {
    background-color: #e8def8;
}

.text-purple {
    color: #7c3aed !important;
}

.seller__spen {
    border: 1px solid #dde2e1;
    border-radius: 7px;
    padding: 4px 12px;
    color: var(--color-text);
    margin: 0 0 12px;
}

.pending__payment {
    color: var(--brand-700-main);
}

.pending__payment:hover {
    background-color: transparent;
    box-shadow: none;
    color: #057027;
}

/* paymentModal */

#paymentModal .modal-dialog {
    padding: 10px;
    max-width: 532px;
}

.amount__div {
    padding: 24px 0 32px;
}

.amount__div h5 {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .amount__div {
        padding: 32px 0;
    }

    .amount__div h5 {
        margin-bottom: 16px;
    }
}

.payment__method__div input {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
}

.payment__method__div label > div {
    background-color: var(--white-colour);
    border: 1px solid #e4e9e8;
    border-radius: 6px;
    padding: 12px 12px 12px 40px;
    position: relative;
}

.payment__method__div label input:checked + div {
    border: 1px solid #cef5d5;
    background-color: #f2fcf4;
}

.payment__method__div label > div::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #d0d5dd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
}

.payment__method__div label input:checked + div::before {
    background-image: url(images/icons/check1.svg);
    background-repeat: no-repeat;
    background-color: var(--brand-700-main);
    border: 1px solid var(--brand-700-main);
    background-position: center;
}

.payment__method__div label > div p {
    color: var(--brand-900);
}

.payment__method__div label > div span {
    width: 40px;
    height: 25px;
    border: 1px solid #e4e9e8;
    border-radius: 4px;
    background-color: var(--white-colour);
}

.payment__method__div label input:checked + div span {
    border: 1px solid #cef5d5;
}

/*
===============================
user-profile-notifications.html
===============================
*/

.not__message__box {
    padding: 24px 24px;
    border-top: 1px solid #e4e9e8;
    position: relative;
}

.not__link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.not__message__box .not__content__div h6 {
    font-weight: 500;
    color: var(--gray-700-body);
}

.not__message__box .not__content__div p {
    color: var(--dark-gray-700);
}

.not__message__box.unread .not__content__div h6 {
    font-weight: 600;
    color: var(--brand-900);
}

.not__message__box.unread {
    background-color: #f6faf9;
}

.not__message__box.unread::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 44px;
    left: 11px;
    background-color: var(--brand-700-main);
}

.not__dropdown {
    background-color: var(--white-colour);
    border-radius: 8px;
    border: 1px solid #e4e9e8;
    box-shadow: 0px 2px 4px -2px #0a0d120f;
    box-shadow: -1px 3px 10px -2px #0a0d1230;
    padding: 8px;
    min-width: 190px;
    position: absolute;
    right: 0;
    top: 42px;
    margin-top: 0;
    z-index: 5;
}

.not__dropdown li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1%;
    color: var(--gray-700-body);
    padding: 8px;
    border-radius: 4px;
    background-color: var(--white-colour);
    width: 100%;
    text-align: start;
}

.not__dropdown li a:hover {
    background-color: #f6faf9;
}

.not__time__text {
    width: max-content;
}

/*
====================================
user-profile-account-settings.html
====================================
*/

.cancel__save__btn__div .btn-shape {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
}

.cancel__save__btn__div .btn-shape-border {
    border-bottom: 1px solid #dde2e1;
}

.input-design-sm {
    border-radius: 8px;
    padding: 12px 16px;
}

.personal-info-area .design__label {
    margin: 24px 0 0;
}

.personal-info-area .iti {
    display: block !important;
}

.personal-info-area .iti__arrow {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid gray;
    border-right: 2px solid gray;
    transform: rotate(45deg);
    display: inline-block;
    border-left: 0;
    border-top: 0;
    margin-bottom: 5px;
    margin-right: 4px;
    margin-left: 10px;
}

.personal-info-area .iti--separate-dial-code .iti__selected-flag,
.personal-info-area .iti--separate-dial-code .iti__selected-flag:hover {
    background-color: transparent !important;
}

.iti__flag-box .selected-country-name {
    display: none;
}

.selected-country-name {
    max-width: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2f2b4399 !important;
}

.iti__selected-dial-code {
    color: #2f2b4399 !important;
}

.notification-switch-div {
    padding: 40px 0 0;
}

.notification-switch-div label {
    margin: 24px 0 0;
}

.notification-switch-div label p {
    color: var(--gray-700-body);
    font-size: 16px;
    line-height: 24px;
}

.switch-div input {
    display: none;
    width: 0;
    height: 0;
}

.switch-div input:checked + .slider-div {
    background-color: var(--brand-700-main);
    transition: 0.3s all ease-in-out;
}

.switch-div input:checked + .slider-div span {
    left: 23px;
    transition: 0.3s all ease-in-out;
}

.switch-div .slider-div {
    background-color: #e4e9e8;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s all ease-in-out;
}

.switch-div .slider-div span {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    background-color: var(--white-colour);
    box-shadow: 0px 1px 3px 0px #1018281a;
    transition: 0.3s all ease-in-out;
}

/*
==================================
user-profile-others-settings.html
==================================
*/

.password__btn {
    position: absolute;
    right: 16px;
    bottom: 11px;
    color: #82808e;
}

.delete-account-div {
    padding: 40px 0 0;
}

.delete-account-div label {
    margin-top: 24px;
}

/*
===============================
user-profile-wallet.html
===============================
*/

.wallet__card {
    background-color: var(--white-colour);
    border: 1px solid #e4e9e8;
    border-radius: 8px;
    padding: 16px 16px;
}

.wallet__grid {
    display: grid;
    grid-template-columns: 40px auto;
    gap: 14px;
    align-items: center;
}

.wallet__card:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.wallet__card h5 {
    color: var(--brand-900);
    margin-top: 5px;
}

.wallet-card-area .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.payment-method-div {
    border: 1px solid #e4e9e8;
    padding: 24px 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.fixed_wdt {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orders-area {
    border: 1px solid #e4e9e8;
    border-radius: 8px;
}

.orders-area .orders-title {
    padding: 24px 24px 16px;
}

.orders-table th {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2%;
    color: var(--dark-gray-700);
    height: 40px;
    background-color: #f6faf9;
}

.orders-table th,
.orders-table td {
    padding: 0 24px;
}

.orders-table th:last-child {
    width: 120px;
}

.orders-table tr {
    border-bottom: 1px solid #efefef;
}

.orders-table tr:hover {
    background-color: #efefef52;
}

.orders-table td {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--dark-gray-700);
    height: 50px;
}

.orders-table td.black {
    color: var(--brand-900);
}

.orders-table td span {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2%;
    padding: 4px 12px;
    color: var(--brand-900);
    border-radius: 52px;
}

.orders-table td span.paid {
    background-color: #e1fae5;
}

.orders-table td span.unpaid {
    background-color: #fae3e1;
}

.orders-table td span.pending {
    background-color: #eee;
}

.table-pagination {
    padding: 12px 34px;
}

.table-pagination a:hover {
    color: var(--brand-700-main);
}

/*
===============================
user-profile-submit-ad.html
===============================
*/

.main-submit-ad-area {
    max-width: 670px;
    margin: 0 auto;
    padding: 64px 0 96px;
}

.main-submit-ad-area input::placeholder {
    color: #2f2b4399;
}

.main-submit-ad-area > h2 {
    margin-bottom: 32px;
}

.submit-area-box {
    border-radius: 12px;
    border: 1px solid #e4e9e8;
    background-color: var(--white-colour);
    padding: 24px;
}

.submit-area-box .design__label {
    margin: 24px 0 0;
}

.submit-area-box .design__label span {
    color: var(--gray-700-body);
    font-weight: 500;
}

.checkbox__div2 {
    margin-left: 11px;
}

.checkbox__div2 label input:checked + p::before {
    background-color: var(--brand-700-main);
}

.checkbox__div2 label input:checked + p::after {
    color: var(--white-colour);
    font-size: 13px;
    top: 0px;
    left: 4px;
}

.money__sign {
    position: absolute;
    left: 16px;
    bottom: 12px;
    color: #2f2b4399;
}

.money__sign ~ input {
    padding-left: 40px;
}

.money__select {
    width: max-content;
    padding: 14px 30px 10px 10px;
    background: transparent;
}

.money__select::after {
    right: 8px;
}

.sign__select__div {
    position: absolute;
    right: 0;
    bottom: 0;
}

.add__service__btn,
.remove__service__btn {
    color: var(--brand-700-main);
    border-bottom: 1px solid var(--brand-700-main);
    font-weight: 600;
    margin-top: 24px;
}

.remove__service__btn {
    color: var(--error-500);
    border-bottom: 1px solid var(--error-500);
}

.add__service__btn:hover {
    color: #057027;
}

.url__input:focus {
    box-shadow: none;
}

.url__div span {
    color: #2f2b4366;
}

/* Payout-modal */

#payoutModal .modal__title h5 {
    font-size: 25px;
}

.max-w-512 {
    max-width: 532px;
    padding: 10px;
}

.balance__transfer__div {
    padding: 24px 0;
}

.balance__transfer__div h5 {
    margin-bottom: 12px;
}

.balance__title__text {
    padding: 24px 0 32px;
}

/* event-calender */

.calendar-container {
    background: white;
    border-radius: 10px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.view-buttons {
    display: flex;
    align-items: center;
    padding: 2px;
    border-radius: 8px;
    background-color: #ecf1f0;
}

.view-buttons button {
    padding: 9px 16px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: #787d7c;
}

.view-buttons button.active {
    background: var(--white-colour);
    color: var(--brand-900);
}

/* for autocomplete */

.searchInput .resultBox {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    left: 0;
    top: 56px;
    background: #fff;
    z-index: 50;
    border-radius: 8px;
    border: 1px solid #dfe0e3;
}

.searchInput.active .resultBox {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.resultBox li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.searchInput.active .resultBox li {
    display: block;
}

.resultBox li:hover {
    background: #efefef;
}

.resultBox li strong {
    font-weight: 600;
    color: #000;
}

/* for avatar */

@media (max-width: 991px) {
    .avatar__list {
        right: initial !important;
        left: 0;
        top: 45px !important;
    }
}

@media (max-width: 1199px) {
    .avatar__list {
        top: 45px !important;
    }
}

.avatar__list {
    position: absolute;
    right: 0;
    top: 55px;
    border-radius: 8px;
    background-color: var(--white-colour);
    padding: 4px;
    min-width: 150px;
    border: 1px solid #dfe0e4;
    z-index: 50;
}

.avatar__list li a {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--black-colour);
    display: block;
    width: 100%;
}

.avatar__list li a:hover {
    background-color: #f7f7f7;
}

/* login-register-area */

.log-res-bg {
    /*! background: linear-gradient(to right, #d1f1e0 0%, #ffffff 50%, #46e390 100%); */
    background: #f3f4f6;
}

.login-container {
    max-width: 440px;
    margin: auto;
    padding: 40px 20px;
}

.login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.form-label {
    background-color: var(--white-colour);
    border-radius: 12px;
    padding: 15px 15px 10px;
    display: block;
    width: 100%;
    margin: 0 0 20px;
}

.label__span {
    border-bottom: 1px solid #ddd;
    padding: 0 0 18px;
}

.log-input {
    border-radius: 12px;
    height: 38px;
    margin: 10px 0 0;
}

.btn-custom {
    border-radius: 12px;
    background-color: #000;
    color: #fff;
    height: 48px;
    font-weight: 500;
}

.btn-custom:hover {
    background-color: #4d4747;
    color: #fff;
}

.google-btn {
    border: 1px solid #514949;
    border-radius: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #fff;
}

.google-btn:hover {
    background-color: #fdf6f6a1;
}

.google-btn img {
    height: 20px;
    margin-right: 8px;
}

.link-button {
    background: none;
    border: none;
    color: #000;
    text-decoration: underline;
    font-size: 0.95rem;
}

.lost-pass-bg {
    background-color: #f3f4f6;
}

.lost-password-area {
    padding: 50px 0;
}

.lst__pass__logo img {
    max-width: 200px;
    margin: 0 auto;
}

.lst__pass__div {
    /*! background-color: var(--white-colour); */
    padding: 20px 25px 20px;
    margin: 50px 0 0;
}

.lst__pass__div p {
    color: var(--dark-gray);
}

.lst__pass__div button {
    min-height: 48px;
    height: auto;
    padding: 10px 10px;
    background-color: #202938;
    letter-spacing: 0.5px;
}

.lst__pass__box {
    max-width: 500px;
    margin: 0 auto;
}

.lst__pass__div {
    max-width: 440px;
    margin: auto;
    padding: 40px 20px;
}

@media (max-width: 767px) {
    .inputs__div input {
        padding: 12px 15px;
    }

    .google-sign-div {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* privacy-policy */

.privacy-policy-area .sidebar {
    border-right: 1px solid #ddd;
    padding-right: 1rem;
}

.privacy-policy-area .sidebar h5 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.privacy-policy-area .sidebar ul {
    list-style: none;
    padding-left: 0;
}

.privacy-policy-area .sidebar li {
    margin-bottom: 10px;
}

.privacy-policy-area .content h2 {
    font-weight: bold;
}

.privacy-policy-area .checkbox-disabled {
    pointer-events: none;
}

.privacy-policy-area .info-table {
    border: 1px solid #ccc;
}

.privacy-policy-area .info-table th,
.privacy-policy-area .info-table td {
    vertical-align: middle;
}

.privacy-policy-area .form-check-input:disabled {
    background-color: #e9ecef;
}

.privacy-policy-area .sidebar li a {
    color: var(--brand-900);
}

.privacy-policy-area .sidebar li a:hover {
    color: var(--brand-700-main);
}

.remove-mode {
    color: red !important;
    border-bottom: 1px solid red;
}

.service__btn__label {
    display: block;
}

.service__btn__label input {
    /* display: none; */
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.service-btn {
    /*! display: block; */
    width: auto;
    margin-bottom: 10px;
    border-radius: 25px;
    border: none;
    padding: 9px 15px;
    font-size: 14px;
    background-color: #f1f1f1;
    color: #000;
    text-align: left;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.service__btn__label input:checked + .service-btn {
    background-color: #2ecc71 !important;
    color: white;
    border: 1px solid #2ecc71;
}

.service-btn.active {
    background-color: #2ecc71 !important;
    color: white;
    border: 1px solid #2ecc71;
}

.service-btn.active:hover,
.service__btn__label input:checked + .service-btn:hover {
    background-color: #21d76e !important;
}

.service-btn:hover {
    background-color: #9792924d;
}

.section-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.input-box {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 20px;
    background: #f9f9f9;
}

.green-tag {
    background-color: #2ecc71;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
    font-size: 14px;
}

.date__time__btn {
    padding: 8px 16px;
    border-radius: 22px;
    font-size: 16px;
    border: 1px solid transparent;
    background-color: transparent;
    margin: 0;
}

.date__time__btn:hover {
    background-color: #9792924d;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #2ecc71;
}

.btn-confirm {
    background-color: #000;
    color: white;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
}

.btn-confirm:hover {
    background-color: #595050;
}

.note {
    font-size: 14px;
    color: #666;
    background-color: #fafafa;
    border-radius: 13px;
    padding: 15px 20px;
    margin: 0 0 20px;
    border-left: 4px solid #2ecc71;
}

.total__amount__div {
    background-color: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
}

.set__btn {
    border-radius: 10px;
    color: var(--dark-gray);
}

/* day-time popup */

.check__label span {
    width: 40px;
    height: 40px;
    margin: 3px;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    background-color: #d3d3d3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.day-btn.active {
    background-color: #37e39f;
    color: white;
    border: none;
}

.checkbox-all {
    display: none;
}

.checkbox-all:checked + span {
    background-color: #00d664;
}

.time-box {
    font-size: 28px;
    font-weight: bold;
    color: #37e39f;
}

.time-box input {
    color: #37e39f;
    cursor: pointer;
    width: 100px;
    text-align: center;
    font-weight: 600;
}

.time-box input::placeholder {
    color: #37e39f;
}

.section-title {
    margin-bottom: 4px;
}

.section-title button {
    font-size: 18px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: start;
    padding: 8px 0;
}

.date__time__flex {
    column-gap: 16px;
    row-gap: 8px;
}

.date__time__btn2 {
    background-color: var(--white-colour);
    box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    line-height: 1;
    padding: 8px 15px;
    font-weight: 500;
}

.date__time__btn2:hover {
    background-color: #f5f5f5;
}

.day__time__toggle__div p {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--white-colour);
    background-color: var(--error-500);
    font-size: 14px;
    line-height: 1;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 10px 0;
}

.confirm-btn {
    background-color: #37e39f;
    border: none;
    font-weight: 600;
}

.confirm-btn:hover {
    background-color: #0ae38d;
}

.time__input,
.time__span {
    color: #37e39f;
    font-size: 28px;
    cursor: pointer;
}

/*
==================================
News-Page Start Here
==================================
*/

.news-article-area,
.post-single-page {
    padding: 40px 0 80px;
}

.news-article-image img:hover {
    transform: scale(1.1);
    transition: 0.5s all ease-in-out;
}

.news-article-image img {
    transition: 0.5s all ease-in-out;
    aspect-ratio: 3/1.7;
    object-fit: cover;
}

.news__article {
    color: #797979;
    padding: 40px 40px;
    border: 1px solid #797979;
    margin-bottom: 20px;
}

.news__article a {
    color: #37a4dd;
}

.news__article a:hover {
    color: #0a58ca;
}

.news__article a span {
    font-weight: 900;
    font-size: 22px;
}

.square__span {
    width: 8px;
    height: 8px;
    background-color: var(--brand-700-main);
}

.line__span {
    width: 35px;
    height: 2px;
    background-color: #d8d8d8;
}

.news__categories__content {
    line-height: 1;
}

.news__categories__content h5 {
    padding: 11px 20px;
    background-color: var(--brand-700-main);
    color: var(--white-colour);
}

.news__categories__content a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #797979;
    color: #797979;
}

/*
==================================
post-single-page Start Here
==================================
*/

@media (min-width: 768px) {
    .post-single-page {
        padding-bottom: 50px;
    }

    .related-post-area .row {
        --bs-gutter-x: 30px;
    }
}

.related-post-area {
    padding-bottom: 50px;
}

.post-title {
    padding-bottom: 50px;
}

@media (min-width: 1400px) {
    .related-post-area .row {
        --bs-gutter-x: 70px;
    }
}

.related-post-area .row {
    --bs-gutter-y: 30px;
}

.post__article {
    padding: 15px 20px !important;
}

.news-article-image img {
    transition: 0.3s all ease-in-out;
    aspect-ratio: 3/2;
}

.news-article-image img:hover {
    transition: 0.3s all ease-in-out;
}

/* breadcrumb */

.breadcrumb__list li a {
    color: var(--brand-700-main);
}

.breadcrumb__list li a:hover {
    color: #057428;
}

.item-separator {
    margin: 24px 0 0;
    opacity: 1;
    color: #dfe0e4;
    transition: 0.3s all ease-in-out;
}

.rating-stars li {
    cursor: pointer;
}

.rating-stars li.filled i {
    color: #eac64b;
}

/* flatpickr */
.flatpickr-calendar {
    width: 100px;
}

.clear__btn {
    font-size: 14px;
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 20px;
}

/* homepage image crop */
@media (max-width: 768px) {
    .image-crop {
        height: 250px; /* Adjust to how much you want to show */
        overflow: hidden;
        position: relative;
    }

    .image-crop img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top; /* Keeps top visible, crops bottom */
        display: block;
    }
}

/* underline fix */
.customer-content a {
    border-bottom: unset;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.more-overlay {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #11321e6b;
    backdrop-filter: blur(5px);
    left: 0;
    top: 0;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1%;
    color: var(--white-colour);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Mobile layout - stack vertically in order 1, 3, 2 */
@media (max-width: 991px) {
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "box1"
            "box3"
            "box2";
    }
}

.box-1 {
    grid-area: box1;
}

.box-2 {
    grid-area: box2;
}

.box-3 {
    grid-area: box3;
}

@media (min-width: 992px) {
    .grid-container {
        display: grid;
        column-gap: 40px;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: auto 1fr;
        grid-template-areas:
            "box1 box3"
            "box2 box3";
    }

    .box-3 {
        width: 400px;
    }
}

@media (min-width: 1200px) {
    .grid-container {
        column-gap: 96px;
    }

    .box-3 {
        width: 500px;
    }
}

a.btn,
a.btn-shape {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.helpi-error-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-title {
    font-size: 8rem;
    font-weight: 900;
    color: #6c757d;
    line-height: 1;
}

.error-category-card a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.error-category-card a:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 4rem;
    }

    .helpi-error-area {
        padding: 60px 0;
    }
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield; /* Firefox */
}

.pending__payment:hover,
button:disabled:hover {
    cursor: default;
}

.cursor-default {
    cursor: default !important;
}

.ads__card__content a {
    color: var(--bs-heading-color);
}

img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.image__slide > img {
    object-fit: contain;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: var(--brand-600);
}

.lst__pass__logo img {
    filter: brightness(0) saturate(100%);
}

.ads-banner-content .text-sm a {
    color: var(--brand-700-body);
}

/* TIME SEARCH CSS */

.time-block {
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0.25rem !important;
    max-width: fit-content;
    min-width: 130px;
}

.time-block .fw-medium {
    font-size: 12px;
    margin: 0 0.1rem;
    color: #6b7280;
}

.time-block input {
    padding: 6px 10px !important;
}

.date-quick .btn-xs {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 20px;
}

.date-quick .btn-xs.active {
    background: var(--brand-700-main);
    color: var(--white-colour);
    border-color: var(--brand-700-main);
}

@media (max-width: 768px) {
    .time-inputs-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .time-block {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
}

.filters__collapse__area .time-block .input-design2 {
    padding-left: 0px !important;
}

/* Time picker specific styles */
.time-section {
    height: 40px;
}

.time-block {
    height: 40px;
}

.time-block select.input-design2,
.time-block .nice-select {
    width: 80px;
    padding: 10px 10px 10px 10px !important;
    font-size: 0.875rem;
    text-align: center;
    background-position: right 8px center;
    background-size: 12px;
    height: 40px;
    line-height: 20px;
}

.time-block .nice-select::after {
    right: 8px;
}

.time-block .nice-select .list {
    width: 80px;
    text-align: center;
    font-size: 0.7rem;
}

.time-block .nice-select .option {
    text-align: center;
    justify-content: center;
}

.time-block .text-secondary {
    padding: 0 6px;
}

.time-block .nice-select.open::after {
    top: 50%;
}
