*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Schibsted Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    --prime: #60BFC1;
    --sec:#FDA2AC;
    --light-bg:#F7E3DA;
    scroll-behavior: smooth;
}

body {
    background: #FFFDF8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
}

.text-prime {
    color: var(--prime);
}

.bg-accent {
    background: #f4f6fd;
}

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

.bg-prime {
    background: var(--prime);
}

.bg-sec {
    background: var(--sec);
}

.btn-prime {
    background: var(--prime);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    min-height: 42px;
    padding: 7px 16px;
    border: none;
    border-radius: 6px;
}
.businesscard h3{
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 30px; */
    display: -webkit-box;
}
.businesscard p{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
        min-height: 42px;
    display: -webkit-box;
    
}
.btn-sec {
    border: 1px solid var(--prime);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: var(--prime);
    min-height: 42px;
    padding: 7px 16px;
    border-radius: 6px;
}
.form-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.w-fit {
    width: fit-content;
}

.mw-750 {
    max-width: 750px;
}


.fs-7 {
    font-size: 14px;
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 4px 0px #0000001F;
    z-index: 999;
}

.navbar-nav .nav-link{
     color:#000;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color:#000 ;
    font-weight:600;
}

#navbar-toggler:checked~.collapse {
    display: block;
}

footer {
    background: var(--light-bg);
}

footer .pages {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

footer .contact,
footer .pages>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.businesscard h3{
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 30px; */
    display: -webkit-box;
}
.businesscard p{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
        min-height: 50px;
    display: -webkit-box;
}
footer p,
footer .contact a,
footer .pages a {
    color: #000;
    transition: all .3s ease-in-out;
    font-size: 14px;
}

footer .pages a:hover {
    color: var(--prime);
    transform: translateX(6px);
    transition: all .3s ease-in-out;
}

footer .contact a{
display:grid;
grid-template-columns: 30px 1fr;
gap:6px;
}

footer .contact a img {
    width: 24px;
    filter:invert(100%);
}

footer .social-media a {
    height: 30px;
    width: 30px;
}
footer .social-media a{
    filter: invert(100%);
}

footer .social-media,
footer .pages,
footer .contact {
    margin-bottom: 20px;
}

.footer-credit {
    background: #C17779;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}


/* Forms */

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

select,
input,
textarea {
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px 20px;
    background: #EEF0F2;
    width: 100%;
}

select {
    padding: 11px 20px;
}

select:focus,
input:focus,
textarea:focus {
    border: 1px solid var(--prime);
    background: #fff;
}

.form-range {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--prime);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.form-range:focus {
    outline: none;
    border: none;
}

.listing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width:678px) {
    .listing {
        grid-template-columns: 1fr;
    }
}

.businesscard {
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0px 4px 60px 0px #0001;
}

.businesscard:hover {
    box-shadow: 0px 4px 60px 0px #0002;
}

.businesscard img.img-fluid {
    border-radius: 8px;
    width: 100%;
    height: 200px;
    min-height: 200px;
    object-fit: cover;
}

.bl_h3{
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 30px; */
    display: -webkit-box;
}
.bl_p{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

/* how does it work section */
.tabs-wrapper input {
    display: none;
}

.tabs-wrapper {
    max-width: 100%;
}

.tabs-wrapper label {
    white-space: nowrap;
    cursor: pointer;
    padding: 20px 40px;
    border-radius: 8px;
    color: #C17779;
    display: block;
    text-align: center;
    /*background: #ED3D5F10;*/
    font-weight: 600;
    font-size: 20px;
}

.tabs-wrapper label:hover,
.tabs-wrapper input:checked+label {
    background-color: #C17779;
    color: #fff;
}

.tab-content {
    display: none;
}

.tabs-wrapper:has(#mobile-optimised:checked)~.content-wrapper .tab-content[data-tab="mobile-optimised"],
.tabs-wrapper:has(#explore-listing:checked)~.content-wrapper .tab-content[data-tab="explore-listing"],
.tabs-wrapper:has(#click-to-call:checked)~.content-wrapper .tab-content[data-tab="click-to-call"] {
    display: flex;
}

/* onload animation with animation timeline */
/*@media (prefers-reduced-motion: no-preference) {*/

    .animate-this {
        /* opacity: 0;*/        transform: translateY(0px);
    }

    .animate-this.animated {
        animation: fade-in 0.8s ease-in-out forwards;
    }

    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
/*}*/

/*Premium css*/
.psdrs {
    position: relative;
    height: 220px;
    width: 320px;
}
.tp-feature-image {
    width: 100%;
    height: 100%;
}
.open {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 6px 0px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #50D437;
    color: #fff;
}