:root {
    /* colors */
    --primary: #55d2c4;
    --primary-hover: #6ed9cd;
    --primary-light: #f4fffc;
    --secondary: #bfe8dd;
    --secondary-hover: #81d2bc;
    --secondary-light: #fffcf3;
    --accent: #6667ab;
    --modal-accent: #cacdf2;
    --light: #f8f8f8;
    --font-dark: #41454e;
    --font-light: #ffffff;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --grey: #888888;
    --box-shadow-color: rgba(0, 0, 0, 0.25);
    /* breakpoints */
    --width-lg: 1200px;

    /* font sizes */
    --h1: 36px;
    --h2: 32px;
    --h3: 28px;
    --h4: 24px;
    --h5: 22px;
    --h6: 20px;
    --p: 16px;
}

.loading,
.autocomplete-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content .spinner {
    border: 16px solid var(--light);
    border-top: 16px solid var(--primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.auto-loading-content .spinner {
    border: 6px solid var(--light);
    border-top: 6px solid var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin-inline: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal-backdrop {
    z-index: 101 !important;
    background-color: rgba(16, 95, 86, 1) !important;
}

.modal-dialog {
    padding-top: 0.5rem;
}

.fw-bold-s {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

h1 {
    color: var(--font-dark);
    font-size: var(--h1);
}

h2 {
    color: var(--font-dark);
    font-size: var(--h2);
}

h3 {
    color: var(--font-dark);
    font-size: var(--h3);
}

h4 {
    color: var(--font-dark);
    font-size: var(--h4);
}

h5 {
    color: var(--font-dark);
    font-size: var(--h5);
}

h6 {
    color: var(--font-dark);
    font-size: var(--h6);
}

p {
    color: var(--font-dark);
    font-size: var(--p);
}

a {
    font-weight: 500;
    text-decoration: none;
    color: var(--font-dark);
}

textarea {
    padding: 0.5rem 1rem;
}

input {
    border-radius: 50px;
    border: 2px solid var(--primary);
    padding: 0.5rem 1rem;
    color: var(--font-dark);
    /* width: 100%; */
    /* min-width: 200px; */
}

input:focus,
input:active,
textarea:focus,
textarea:active {
    outline: none;
    /* border: 1px solid var(--primary) !important; */
}
.fs-h1 {
    font-size: var(--h1) !important;
}

.fs-h2 {
    font-size: var(--h2) !important;
}

.fs-h3 {
    font-size: var(--h3) !important;
}

.fs-h4 {
    font-size: var(--h4) !important;
}

.fs-h5 {
    font-size: var(--h5) !important;
}

.fs-h6 {
    font-size: var(--h6) !important;
}

.br-10 {
    border-radius: 10px !important;
}

.w-30 {
    width: 30%;
}

.bg-app-primary {
    background-color: var(--primary) !important;
}

.bg-app-primary-light {
    background-color: var(--primary-light);
}

.text-ellipsis {
    width: 100%; /* Ensure it takes up the full width of the container */
    display: -webkit-box; /* Required for applying -webkit-line-clamp */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    overflow: hidden; /* Hide overflow content */
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    line-clamp: 3; /* Non-standard, but some older browsers might use this */
    text-overflow: ellipsis; /* Add the ellipsis (...) */
}

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

.text-app-secondary {
    color: var(--secondary);
}

.text-app-primary {
    color: var(--primary) !important;
}

section {
    width: 100%;
    z-index: 98;
    position: relative;
    /* border: 1px solid red; */
}

html,
main {
    padding: 0;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.main-content {
    background-color: var(--white);
    margin: 0.2rem 0 0 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.content-container {
    width: 100%;
    max-width: var(--width-lg);
    margin: auto;
    position: relative;
    z-index: 99;
    padding: 3rem 1rem 0 1rem;
}

.br-20 {
    border-radius: 20px !important;
}

.app-btn {
    outline: 0;
    border: none;
}

.text-btn {
    background: none;
    outline: none;
    border: none;
}

.fa-user:hover {
    color: var(--primary-hover) !important;
}

.text-btn:focus {
    outline: none;
}

.text-btn-hover-basic:hover {
    color: var(--grey);
}

.text-btn-hover-primary {
    color: var(--primary);
}

.text-btn-hover-primary:hover {
    color: var(--primary-hover);
}

.app-btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.app-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-primary:hover {
    background-color: var(--primary-hover);
}

.app-btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-white:hover {
    background-color: var(--light);
}

.app-btn-dark {
    background-color: var(--font-dark);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-size: 16px;
}

.app-btn-dark:hover {
    background-color: #000;
}

/* Hide the actual checkbox */
.custom-checkbox {
    display: none;
}

/* Style the custom checkbox */
.custom-checkbox + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 4px;
    background-color: white;
}

/* Style the checked state */
.custom-checkbox:checked + label::before {
    background-color: var(--primary);
}

.custom-checkbox:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 8px;
    background-color: white;
}

/* CAROUSEL */
/* CAROUSEL */

.carousel-control-prev,
.carousel-control-next {
    width: fit-content;
    bottom: -85%;
}

.home-partner-carousel-desk {
    display: block;
    /* margin-top: ; */
}

.home-partner-carousel-mobile {
    display: none;
}

#homePartnerCarousel > .carousel-control-prev,
#homePartnerCarousel > .carousel-control-next,
#homePartnerCarouselMobile > .carousel-control-prev,
#homePartnerCarouselMobile > .carousel-control-next {
    width: fit-content;
    height: 100%;
    bottom: -50px;
}

#homePartnerCarousel > .carousel-control-prev {
    left: -2.5%;
}

#homePartnerCarousel > .carousel-control-next {
    right: -2.5%;
}

.carousel-control-prev {
    left: 2.5%;
}

.carousel-control-next {
    right: 2.5%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: var(--primary-hover) !important;
}

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 28px;
    background-color: var(--primary);
    color: white !important;
    padding: 0.35rem 0 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.carousel-indicators {
    bottom: 40px !important;
}

.banner-indicators {
    bottom: 0 !important;
}

.home-company-indicators {
    bottom: -2% !important;
}

.home-company-indicators-mobile {
    bottom: -10% !important;
}

.home-company-indicators button {
    background-color: var(--light-grey) !important;
    border: none;
}

.partner-carousel-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    width: 100%;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: auto; /*calc(-0.5 * var(--bs-gutter-x)); */
    margin-left: auto; /*calc(-0.5 * var(--bs-gutter-x)); */
}

.partner-carousel-image {
    margin-bottom: 3rem;
    flex: 0 0 auto;
    width: 33%;
    min-width: 360px;
}

.carousel-indicators button {
    background-color: var(--light-grey) !important;
    /* border: 1px solid var(--white) !important; */
    border-radius: 50% !important;
    width: 14px !important;
    height: 14px !important;
    text-indent: -999px;
}

.carousel-indicators button::marker {
    visibility: hidden !important;
    display: none !important;
}

.carousel-indicators button.active {
    background-color: var(--primary) !important;
}

.carousel-inner {
    padding-bottom: 2rem;
    padding-top: 1rem;
    width: 75%;
}

.carousel-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* text-align: center; */
}

.carousel-item.active > h6 {
    justify-self: self-start;
}

/* END CAROUSEL */

/* HOME */
.bg-home {
    background-image: url("../images/home/helpy_home_bg.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 1036px; */
    min-height: max-content;
}

.home-bg {
    /* position: absolute; */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    top: 0;
    z-index: 0;
    overflow: hidden;
    padding: 0 0 0 0;
    margin-top: 0.2rem;
    /* clip-path: url("../images/wave.svg"); */
}

.home-slide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* position: absolute; */
}

.home-slide-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* padding-top: 10rem; */
    margin-top: 0.2rem;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.home-banner-bg {
    /* position: absolute; */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    top: 0;
    z-index: 0;
    overflow: hidden;
    padding: 0 0 0 0;
    /* clip-path: url("../images/wave.svg"); */
}

.home-slide-item {
    background-size: cover;
    background-position: center;
}

.home-slide-text {
    /* position: absolute;
    right: 10%; */
    top: 5%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
}

.home-slide-text-dash {
    top: 0;
    display: flex;
    justify-content: flex-end;
}

.home-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: end;
    /* position: absolute; */
}

.home-text-container-dash {
    margin-top: -20rem;
}

.home-banner-text {
    padding-left: 1.5rem;
    top: calc(35% - 10vh);
    display: flex;
    justify-content: flex-start;
    font-family: "Archivo", "Montserrat", sans-serif;
    z-index: 2;
    position: absolute;
}

.banner-text-container {
    background-color: var(--primary);
    border-radius: 10px;
    position: relative;
    color: var(--white);
    padding: 2rem;
    width: 500px;
}

.banner-text-container > p {
    opacity: 0.75;
}

.banner-discount {
    position: absolute;
    right: 20px;
    top: -22px;
    /* width: 50px; */
    padding: 0.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.partner-discount {
    position: absolute;
    right: 10px;
    top: 10px;
    /* width: 50px; */
    padding: 0.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.partner-discount-dash {
    position: absolute;
    right: 10px;
    top: 143px;
    /* width: 50px; */
    padding: 0.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.limited-container {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.banner-btn-container {
    position: absolute;
    bottom: -10px;
}

.search-section {
    /* padding-bottom: 6rem; */
    z-index: 99;
}

.city-search-section {
    z-index: 100;
}

.select2-container.comp-combo {
    border-left: 1px solid var(--grey) !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    color: var(--grey);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear:hover {
    color: var(--font-dark);
}

.select2-container.home-combo {
    border-left: 1px solid var(--grey) !important;
}

/* .select2-container--open {
    min-width: 500px;
} */

.search-section .select2-selection--single,
.city-search-section .select2-selection--single {
    background-color: var(--light-grey) !important;
    border: none !important;
    border-radius: 50px !important;
    color: var(--font-dark) !important;
    padding: 0.35rem;
    height: unset !important;
    line-height: unset !important;
}
.search-section .select2-dropdown {
    background-color: var(--light-grey) !important;
    /* min-width: 500px !important; */
}
.search-section .select2-dropdown--below {
    background-color: var(--light-grey) !important;
}

.city-search-section .select2-dropdown--below {
    background-color: var(--light-grey) !important;
}

.home-slide-section .select2-selection--single {
    background-color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    /* border-left: 1px solid var(--light-grey); */
    color: var(--font-dark) !important;
    padding: 0.35rem;
    height: unset !important;
    line-height: unset !important;
}
.home-slide-section .select2-dropdown {
    background-color: var(--white) !important;
    /* min-width: 500px !important; */
}
.home-slide-section .select2-dropdown--below {
    background-color: var(--white) !important;
    /* min-width: 500px !important; */
}

.select2-selection--single,
.select2-dropdown,
.select2-dropdown--below {
    min-width: 165px;
    max-width: 100%;
}

.custom-selection {
    padding: 0.15rem 0.35rem 0.35rem 0.35rem !important;
}
.select2-container.home-combo {
    width: 35% !important;
}
.select2-container.home-search-combo,
.select2-container.edit-partner-combo {
    width: 100% !important;
    min-width: 205px;
}
/* Custom styles for homeSearch Select2 */
.select2-container.home-search-combo .select2-selection--single {
    background-color: #f5f5f5; /* example background color */
    border: 1px solid #ddd; /* example border */
    height: 40px; /* adjust as needed */
}

.select2-container.home-search-combo .select2-selection__rendered {
    line-height: 40px; /* align text vertically */
}

.select2-container.home-search-combo .select2-results__option {
    display: flex;
    align-items: center;
}

.select2-container.home-search-combo .select2-results__option img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.select2-container.home-search-combo .select2-selection__rendered img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

/* Hide the default Select2 arrow */
.custom-selection > .select2-selection__arrow {
    display: none !important;
}

.home-search-container-desktop {
    position: absolute;
    bottom: -30px;
    left: 20%;
    min-width: 530px;
    width: 60%;
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 40px;
    overflow: hidden;
    background-color: var(--white);
    padding: 0.6rem 0.8rem;
}
.home-search-container-desktop.comp-search {
    width: 75%;
    background-color: var(--light-grey) !important;
    position: unset;
}

.comp-search {
    background-color: var(--light-grey) !important;
}

.home-search-container-mobile {
    display: none;
}

.home-search-input {
    flex: 1;
    background-color: var(--white);
    padding: 0.4rem 0.8rem;
    border: none;
    outline: none;
    margin-right: 0.5rem;
    font-weight: 500;
    /* color: var(--font-dark); */
}

.home-search-select {
    min-width: 190px;
    width: 25%;
    padding: 0.4rem;
    border: none;
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;
    border-left: 1px solid var(--grey);
    outline: none;
    background-color: var(--white);
    cursor: pointer;
}

.nav-autocomplete-results {
    padding: 0.5rem 0;
    position: absolute;
    width: calc(26% - 14px);
    background-color: var(--light-grey);
    /* border: 1px solid var(--grey); */
    border-top: none;
    z-index: 1000;
    max-height: 340px;
    overflow-y: auto;
    left: 68.7%;
    top: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--font-dark);
}

.nav-autocomplete-results-mobile {
    padding: 0.5rem 0;
    position: absolute;
    width: calc(96% - 14px);
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    max-height: 340px;
    overflow-y: auto;
    left: 5%;
    top: 101%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--font-dark);
}

.search-autocomplete-results {
    padding: 0.5rem 0;
    position: absolute;
    width: calc(49% - 29px);
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    max-height: 270px;
    overflow-y: auto;
    left: 15.8%;
    top: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.autocomplete-results {
    padding: 0.5rem 0;
    position: absolute;
    width: calc(35% - 35px);
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    max-height: 270px;
    overflow-y: auto;
    left: 21.8%;
    top: calc(100% + 3.3vh);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.result-label {
    font-weight: 400;
    color: grey;
    border-bottom: 1px solid grey;
    padding: 5px;
    margin-top: 10px;
    margin-inline: 10px;
}

.nav-result-label {
    font-weight: 400;
    color: var(--font-dark);
    border-bottom: 1px solid var(--grey);
    padding: 5px;
    margin-top: 10px;
    margin-inline: 10px;
}

.result-separator {
    margin-bottom: 10px;
}

.show-all-btn {
    background-color: var(--white);
    margin-inline: auto;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
}

.show-all-btn-nav {
    background-color: var(--light-grey);
    margin-inline: auto;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 0;
}

.show-all-btn-nav:hover {
    background-color: var(--light);
}

.show-all-btn:hover {
    background-color: var(--light-grey);
}

.autocomplete-item,
.nav-autocomplete-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
}

.autocomplete-item > span,
.nav-autocomplete-item > span {
    margin-left: 0.5rem;
}

.autocomplete-item:hover {
    background-color: #f0f0f0;
}

.nav-autocomplete-item:hover {
    background-color: var(--light);
}

.autocomplete-item img {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.nav-autocomplete-item img {
    height: 40px;
    min-width: 40px;
    width: 40px;
    margin-right: 10px;
}

#autocomplete-loader {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #333;
}
/* Optional: Add some basic styling for focus */
.home-search-input:focus,
.home-search-select:focus {
    background-color: var(--light);
}
.search-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}

.search-btn-container-mobile {
    display: none;
}

.home-search-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    width: 24px;
    height: 24px;
    padding: 1rem;
}

.home-search-btn:hover {
    background-color: var(--primary-hover);
}

.home-search-btn-grey {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    width: 24px;
    height: 24px;
    padding: 1rem;
}

.home-search-btn-grey:hover {
    background-color: var(--primary-hover);
    color: white;
}

.ui-menu-item > img {
    width: 100px;
    height: 100px;
}

.ui-autocomplete {
    z-index: 9999;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-menu-item {
    padding: 10px;
    display: flex;
    align-items: center;
}

/* .ui-menu-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
} */

.ui-menu-item .suggestion-text {
    font-size: 14px;
}

.favorite {
    background-color: #dc3545 !important;
    color: white !important;
}

.favorite:hover {
    background-color: red !important;
}

.home-company-container {
    width: fit-content;
    height: fit-content;
    position: relative;
    text-align: center;
    display: block;
}

.home-company-container:hover {
    background-color: rgb(grey, grey, grey, 0.5);
}

.home-company-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(26, 143, 129, 0.2);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.home-company-container:hover .overlay {
    opacity: 1; /* Show the overlay on hover */
}

.home-company-img {
    border-radius: 20px;
    width: 360px;
    height: 600px;
    display: block;
}

.company-img {
    width: 560px;
    height: 265px;
    border-radius: 20px;
}

.home-company-btn-container {
    position: absolute;
    bottom: -30px; /* Adjust this value to position the anchor */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.company-btn-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
}
.company-btn {
    border-radius: 20px !important;
}

/* END HOME */

/* NEWSLETTER */

.welcome-text-container {
    background-color: var(--primary);
    border-radius: 20px 20px 0 0;
    padding: 2rem;
}

.newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.newsletter-container {
    background-color: var(--primary-light);
    border-radius: 8px;
    padding: 3rem 2rem;
}

.newsletter-text-container {
    width: 54%;
}

.newsletter-form-container {
    background-color: var(--secondary);
    padding: 2rem 4rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 40%;
}

.newsletter-form-container > form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.join-container-mobile {
    display: none;
}

.join-container {
    background-color: var(--primary);
    border-radius: 10px;
    margin-bottom: -4rem;
    margin-inline: auto;
    width: 90%;
    padding: 0.5 1rem;
    font-size: 24px;
    color: var(--white);
    text-align: center;
}

.newsletter-list {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.newsletter-list-item {
    font-weight: 500;
    position: relative;
    padding-left: 2em; /* Add space for custom bullet */
    margin-bottom: 1em; /* Space between list items */
}

.newsletter-list-item::before {
    content: "\2713"; /* Unicode character for check mark */
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    background-color: var(
        --primary
    ); /* Background color using --primary variable */
    color: white; /* Color of the check mark */
    border-radius: 50%; /* Make it a circle */
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: bold;
}
/* END NEWSLETTER */

/* CATEGORIES */
.cat-container {
    /* width: 100%; */
    margin-top: 3rem;
    max-width: max-content;
    margin-inline: auto;
}

.image-container {
    position: relative;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(26, 143, 129, 0.2);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.image-container:hover .overlay {
    opacity: 1; /* Show the overlay on hover */
}

.image-container-fix {
    width: 160px;
    height: 210px;
}

.subcat-img .cat-open-btn-mobile {
    font-size: 12px;
    padding: 0.5rem;
    width: 93%;
    left: 3px;
}

.subcat-img > div > img {
    width: 82px !important;
    height: 105px !important;
}

.image-container > i {
    font-size: 96px;
    margin-top: 2rem;
}

.cat-row {
    width: 1155px;
    /* max-width: max-content; */
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cat-row-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cat-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cat-dash-br {
    border: 2px dashed var(--primary);
}

.cat-dash {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-dash > div,
.cat-dash > div > div {
    width: 100%;
    height: 100%;
}

.cat-xs-h {
    width: 210px;
    height: 210px;
}

.cat-sm-h {
    width: 450px;
    height: 210px;
}

.cat-md-h {
    width: 560px;
    height: 210px;
}

.cat-lg-h {
    width: 680px;
    height: 210px;
}

.cat-lg-v {
    width: 210px;
    height: 440px;
}

.cat-img {
    border-radius: 11px;
    width: 100%;
    height: 100%;
}

.cat-img-mobile {
    width: 160px !important;
    height: 210px !important;
}

.subcat-img {
    width: 82px;
    height: 105px;
}

.cat-open-btn {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.cat-open-btn-mobile {
    position: absolute;
    width: 140px;
    left: 11px;
    bottom: 10px;
    text-align: center;
}

.toggle-switch {
    display: inline-block;
    width: 60px;
    height: 30px;
    position: relative;
    margin: 0 10px;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 15px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cat-container-mobile {
    /* display: none; */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.cat-container-desktop {
    display: block;
}

.cat-cont-mobile {
    display: none;
}

/* END CATEGORIES */

/* FOOTER */

.footer-btn {
    background-color: var(--primary);
    /* padding: 0.2rem 0.4rem 0.2rem 0.5rem; */
    border-radius: 50%;
    width: 26px;
    height: 26px;
    border: none;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn:hover {
    color: var(--white);
    background-color: var(--primary-hover);
}

.footer-link,
.footer-link:visited {
    color: var(--font-dark);
    text-align: center;
}

.footer-link-black,
.footer-link-black:visited {
    color: var(--font-dark);
}

.footer-link,
.footer-link-black {
    margin: 0.5rem 0;
}

.footer-link-black:hover,
.footer-link:hover {
    color: var(--grey);
}

.bg-app-grey {
    background-color: var(--grey);
}

.bg-app-light-grey {
    background-color: var(--light-grey);
}

.bg-app-secondary {
    background-color: var(--secondary);
}

.sec-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
    font-size: 14px;
}

.sec-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.webinit-line {
    margin-left: 0.2rem;
    display: inline;
}

.barion-img {
    height: 32px;
    width: auto;
}

.barion-img-container > p {
    font-size: 14px;
}
.barion-img-container > img {
    height: 24px;
    width: auto;
}
.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-outer-col {
    display: flex;
    min-width: 300px;
    /* width: 50%; */
}

.footer-outer-lg {
    width: 50%;
}

.footer-outer-sm {
    width: 43%;
}

.footer-col-container {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    width: 50%;
    min-width: fit-content;
}

.footer-col-container-sm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    border-radius: 10px;
}

.footer-logo {
    margin-left: 0.8rem;
    margin-bottom: 0.5rem;
    width: 73px;
    height: 130px;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

/* END FOOTER */
/* MEDIA QUERIES */

@media screen and (max-width: 1230px) {
    #homePartnerCarousel > .carousel-control-prev {
        left: 2.5%;
    }

    #homePartnerCarousel > .carousel-control-next {
        right: 2.5%;
    }
}

@media screen and (max-width: 1187px) {
    .cat-container-desktop {
        display: none;
    }

    .cat-cont-mobile {
        display: block;
    }
}

@media screen and (max-width: 1300px) and (min-width: 501px) {
    .home-slide-img {
        width: 100%;
        height: auto;
        /* min-height: 400px; */
        object-fit: cover;
        /* position: absolute; */
    }

    .home-partner-carousel-desk::before {
        content: "";
        display: block;
        height: 200px;
        /* margin-top: 1.5rem; */
    }

    .home-banner-text {
        top: calc(70% - 10vh);
    }

    .home-partner-carousel-mobile::before {
        content: "";
        display: block;
        height: 200px;
        margin-top: 1.5rem;
    }

    .home-banner-item {
        overflow: visible !important;
    }

    .banner-indicators {
        top: 10px !important;
        bottom: unset !important;
    }

    #homePartnerCarouselMobile > .carousel-control-prev,
    #homePartnerCarouselMobile > .carousel-control-next {
        margin-bottom: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: fit-content;
        bottom: 0;
        align-items: center !important;
        margin-bottom: 12rem;
    }
}

@media screen and (max-width: 987px) {
    .home-partner-carousel-desk {
        display: none;
    }

    .home-partner-carousel-mobile {
        display: block;
    }
    .newsletter-flex {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .newsletter-flex > div > h2 {
        text-align: center;
    }

    .newsletter-flex > div {
        width: 100%;
    }

    .newsletter-form-container {
        margin-bottom: 2rem;
        padding: 1rem 1rem;
    }

    .join-container-mobile {
        display: block;
    }

    .join-container {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .home-search-container-desktop {
        display: none;
    }

    .search-btn-container {
        margin-left: 0.5rem;
    }

    .search-autocomplete-results {
        width: calc(91% - 29px);
        left: 6.5%;
        top: 87%;
    }

    .home-slide-text {
        top: 5%;
        display: flex;
        justify-content: center;
    }

    /* .ms-auto {
        margin-left: 0 !important;
    } */

    .home-slide-section {
        margin-bottom: 3rem;
    }

    .home-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 88%;
        text-align: center;
    }

    .home-text-container > h2.ms-auto {
        margin-left: unset;
        margin-inline: auto;
    }

    .select2-container.home-combo {
        width: 100% !important;
        margin-bottom: 0.5rem;
        border-left: none !important;
    }

    .select2-container.comp-combo {
        border-left: none !important;
        min-width: 100%;
        width: 100%;
    }

    .autocomplete-results {
        padding: 0.5rem 0;
        position: absolute;
        width: calc(80% - 30px);
        background-color: #fff;
        border: 1px solid #ccc;
        border-top: none;
        z-index: 1000;
        max-height: 270px;
        overflow-y: auto;
        left: 9%;
        top: calc(100% + 9vh);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .home-search-container-mobile {
        position: absolute;
        bottom: -10vh;
        left: 5%;
        min-width: 300px;
        width: 90%;
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        border-radius: 20px;
        overflow: hidden;
        background-color: var(--light-grey);
        padding: 0.6rem 0.8rem;
    }

    .home-company-img {
        width: auto;
        height: 450px;
    }

    .home-search-container-mobile.comp-search-mobile {
        /* margin: 1rem 0; */
        background-color: var(--light-grey);
        /* bottom: 0; */
    }

    .search-pos {
        bottom: 0 !important;
    }

    .city-search-section {
        padding-top: 7rem;
    }
    .search-section {
        padding-top: 8rem;
        padding-bottom: 0;
        z-index: 99;
    }
    .home-search-select {
        width: 100%;
        min-width: none;
    }

    #searchCategoryMobile {
        margin: 0.5rem 0;
        border-bottom: 1px solid var(--light-grey);
        padding: 0.5rem;
    }

    .review-index-container {
        bottom: 10px !important;
    }

    .content-container {
        padding: 1.5rem 1rem 0 1rem;
    }

    .promo-name-mobile {
        margin-bottom: 1rem !important;
    }

    section.bg-app-light-grey {
        padding-top: 3rem;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .carousel-caption {
        padding: 1rem; /* Adjust padding for better visibility on smaller screens */
    }

    .home-banner-item {
        overflow: visible !important;
    }

    .home-banner-text {
        position: absolute;
        bottom: -50%;
        left: 50%;
        transform: translateX(-50%) translateY(45%);
        width: 90%;
        z-index: 2;
        height: min-content;
    }

    .banner-indicators {
        top: 10px !important;
        bottom: unset !important;
    }

    #homePartnerCarouselMobile > .carousel-control-prev,
    #homePartnerCarouselMobile > .carousel-control-next {
        margin-bottom: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: fit-content;
        bottom: 0;
        align-items: center !important;
        margin-bottom: 15rem;
    }

    .home-partner-carousel-mobile::before {
        content: "";
        display: block;
        height: 200px;
        margin-top: 1.5rem;
    }

    /* .home-partner-carousel-mobile {
        margin-top: 8rem;
    } */

    .banner-btn-container {
        position: unset;
    }

    .banner-text-container {
        background-color: var(--primary);
        border-radius: 10px;
        color: var(--white);
        padding: 1rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .carousel-inner {
        overflow: visible; /* Ensure the overflow is visible so the text outside the carousel is shown */
    }

    .home-bg {
        /* position: absolute; */
        background-size: cover;
        background-position: center;
        width: 100%;
        height: auto;
        top: 0;
        z-index: 0;
        overflow: hidden;
        padding: 0 0 0 0;
        margin-top: 0.2rem;
        /* clip-path: url("../images/wave.svg"); */
    }

    .home-banner-bg {
        /* position: absolute; */
        background-size: cover;
        background-position: center;
        width: 100%;
        height: auto;
        top: 0;
        z-index: 0;
        overflow: hidden;
        padding: 0 0 0 0;
        /* clip-path: url("../images/wave.svg"); */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-col-container .w-40,
    .footer-col-container .w-60 {
        width: 100% !important;
    }

    .w-75 {
        width: 100% !important;
    }

    .footer-col-container.w-60 {
        text-align: center;
    }

    .footer-col-container.align-items-start {
        align-items: center !important;
    }
    .footer-logo {
        margin-left: 0;
    }

    .footer-col-container {
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .footer-col-container > p {
        padding-left: 1rem;
    }

    .footer-col-container.p-2 {
        padding: 1.5rem !important;
    }

    .footer-col-container-sm {
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        align-items: flex-start;
    }

    .footer-link {
        padding-left: 1rem;
    }

    .footer-outer-col {
        flex-direction: column;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .company-img {
        width: 100%;
        height: auto;
        min-height: 120px;
    }
}

@media screen and (max-width: 970px) {
    .sec-footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .sec-footer-container > a {
        text-align: center;
        display: flex;
    }
    .sec-footer-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: var(--h2);
    }

    h2 {
        font-size: var(--h3);
    }

    h3 {
        font-size: var(--h4);
    }
    .home-bg {
        padding: 0 0 0 0;
    }
    .search-section {
        padding-top: 7rem;
    }

    .app-btn-primary {
        padding: 0.5rem 1.5rem;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .news-content-p.pb-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .py-5 {
        padding-top: 1.5rem !important;
    }

    .home-slide-text {
        top: 5%;
        display: flex;
        justify-content: center;
    }

    .bg-newsletter {
        background-color: var(--primary-light);
        margin-top: 4.5rem;
    }

    .footer-col-container {
        margin-bottom: 1.5rem;
    }

    .foot-sec {
        background-color: var(--primary-light) !important;
    }

    .webinit-line {
        display: none;
    }
    .footer-col-container-sm {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .mt-3 {
        margin-bottom: 1rem !important;
    }

    .newsletter-container {
        padding: 1.5rem 0;
    }

    .newsletter-text-container {
        padding: 1.5rem 1rem;
    }
    .newsletter-form-container {
        border-radius: 0;
        padding: 2rem 1.5rem;
    }

    .newsletter-form-container .app-btn.w-75 {
        width: 50% !important;
    }

    .home-banner-item {
        overflow: visible !important;
    }

    .home-banner-text {
        position: absolute;
        bottom: -50%; /* Half of the text container should be below the carousel */
        left: 50%;
        transform: translateX(-50%) translateY(45%); /* Center horizontally and adjust vertically */
        width: 90%; /* Adjust width as needed */
        z-index: 2; /* Ensure it stays above the carousel */
        height: min-content;
    }

    .home-partner-carousel-mobile::before {
        content: "";
        display: block;
        height: 200px;
        margin-top: calc(50% + 1.5rem);
    }

    /* .home-partner-carousel-mobile {
        margin-top: 8rem;
    } */

    .banner-btn-container {
        position: unset;
    }

    .banner-text-container {
        background-color: var(--primary);
        border-radius: 10px;
        color: var(--white);
        padding: 1rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .carousel-inner {
        overflow: visible; /* Ensure the overflow is visible so the text outside the carousel is shown */
    }

    .carousel-item {
        position: relative;
    }

    .home-slide-img {
        width: 100%;
        height: auto;
    }

    .carousel-indicators {
        bottom: -60px !important;
    }

    .review-index-container {
        bottom: 50px !important;
    }

    #homePartnerCarouselMobile > .carousel-control-prev,
    #homePartnerCarouselMobile > .carousel-control-next {
        margin-bottom: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: fit-content;
        bottom: 0;
        align-items: center !important;
        margin-bottom: 15rem;
    }

    .banner-indicators {
        top: 10px !important;
        bottom: unset !important;
    }
}

@media (max-width: 400px) {
    .home-company-container {
        width: 98%;
        height: auto;
        margin-inline: auto;
    }
    .home-company-img {
        width: 100%;
        height: 580px;
    }
}

@media screen and (max-width: 1130px) and (min-width: 830px) {
    /* .last-slide-partner {
        display: none !important;
    } */

    .partner-carousel-row {
        justify-content: center !important;
        gap: 10%;
    }
}
/* END MEDIA QUERIES */
