/* contact banner*/
.consultation-banner-wrapper {
    background: linear-gradient(180deg, #FFFFFF00 65%, #2C2C2C 65%);
}

.consultation-banner {
    width: 100%;
    max-width: 1110px;
    padding-block: 88px;
    background: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.consultation-banner h2 {
    font-size: 40px;
    margin-block: 16px;
    line-height: 1;
}

.consultation-banner .button-link {
    display: inline-block;
    background-color: #ae8c63;
    color: white;
    padding: 15px 30px;
    margin-top: 16px;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #ae8c63;

}

.consultation-banner .button-link:hover {
    background-color: #fff;
    color: #ae8c63;
}

/*How to buy in Span - cta */

.howto-link {
    max-width: 1110px;
    margin-inline: auto;
    padding-block: 40px;
    margin-bottom: 40px;
    background-color: #fff;
    text-align: center;
    a {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        .howto-icon {
            font-size: 32px;
        }
    }
}

/*popular cities shortcode styles*/

.popular-cities-buttons {
    background: #fff;
    padding-inline: 40px;
    margin-block: 24px;
    display: grid;
    gap: 24px;
    @media (min-width:768px) {
        grid-template-columns: repeat(auto-fit, 270px);
        justify-content: center;
    }
    .popular-city-card {
        position: relative;
        min-height: 320px;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        transition: all 0.7s ease;
        cursor: pointer;
        border-radius: 4px;
        overflow: hidden;
        &:hover .popular-city-card-background {
            transform: scale(1.2);
        }
        a::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }
    }
    .popular-city-card-background {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.7s ease;
        &::before {
            content: '';
            background-color: rgba(0,0,0,0.25);
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
        }
    }
    .city-button  {
        padding: 24px;
        background-color: rgba(255,255,255, 0.25);
        backdrop-filter: blur(5px);
        border-radius: 4px;
        text-align: center;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        border: none;
    }
}

/*intro text styles*/

.tax-intro-text {
    margin-bottom: 40px;
}