.suburb-search-form {
    position: relative;
    max-width: 540px;
    margin: 10px auto 30px;
}
.suburb-search-form input[type="search"] {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 46px;
    padding: 12px 60px 12px 20px;
    font-size: 18px;
    border: 0px solid var(--white);
    border-radius: 0;
    font-weight: normal;
    color: #221F1F;
}

.suburb-search-form ::-webkit-input-placeholder {color: #221F1F;}
.suburb-search-form ::-moz-placeholder {color: #221F1F;}
.suburb-search-form :-ms-input-placeholder {color: #221F1F;}

.suburb-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0px solid transparent;
    width: 56px;
    height: 46px;
    border-radius: 5px;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 56px;
    box-shadow: none;
    font-size: 0;

    &::before {
        background: url(../images/svg/arrow-right-icon.svg) center center no-repeat transparent;
        top: 0;
        height: 46px;
        z-index: 0;
        transform: scale(1);
    }
}

.areas-pg {
    & .inner-banner {
        .inbanner-content {
            padding-top: 0;
        }
    }
}
.location-wrapper{
    display: flex;
    justify-content: space-between;
    max-width: 1390px;
    margin: 60px auto 0;

    & .column{

        &:not(:last-child){
            padding-right: 70px;
            border-right: 4px double rgb(210 210 210 / 50%);
        }
        &:not(:first-child){
            padding-left: 70px;
        }

        & .heading-30{
            margin-bottom: 30px;
            text-wrap-style: inherit;
        }
    }
}
.areas-link{
    margin-left: 0;
}

.areas-link li{
    position: relative;
    padding-left: 22px;
    list-style: none;
    margin-bottom: 5px;

    &::before{
        content:"";
        position: absolute;
        top:8px;
        left:0;
        background: url(../images/svg/location-pin.svg) no-repeat;
        width: 11px;
        height: 13px;
    }
}
.areas-link li a{
    text-decoration: underline;
}
.areas-link li.active{
    text-decoration: underline;
}
.col-2{
    column-count: 2;
    gap: 50px;
}

.call-wrapper{
    background-color: #ECECEC;
    padding: 80px 50px;
    text-align: center;

    & .inner-wrapper{
        max-width: 950px;
        margin: 0 auto;

        & p ,
        & .heading-30{
            & a{
                text-decoration: underline;
                display: inline-block;
            }
        }
    }
}

.areas-serve-sec .areas-link li a{
    text-decoration: none;
}
.areas-serve-sec .areas-link li:hover a ,
.areas-serve-sec .areas-link li.active {
    text-decoration: underline;
}
.faq-sec .faq-accordion{
    max-width: 1390px;
    margin: 40px auto 0;
}



.contact-form-box .form-box form .form-group input ,
.contact-form-box .form-box form select,
.contact-form-box .form-box form textarea  {
    border:1px solid var(--primary);
}

.contact-form-box .form-box form .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    & label{
        display: none;
    }
}
.fancybox-slide--html .fancybox-close-small{
    background: var(--black);
}
.contact-form-box .form-box form input[type="submit"]{
    cursor: pointer;
}

.contact-form-box .form-box form input[type="submit"]:hover{
    background: var(--black);
    color: var(--white);
}

/* ********** START MEDIA QUERY  ********** */

@media (max-width: 1439.98px) {
    .col-2 {column-count: 1;}
    .location-wrapper{
        & .column{
            width: 33.33%;

            &:not(:last-child){
                padding-right: 60px;
            }
            &:not(:first-child){
                padding-left: 60px;
            }
        }
    }
    .areas-serve-sec .areas-link.col-2{
        column-count: 2;
    }
    .areas-serve-sec .content-media-img iframe{
        height: 350px;
    }
}
@media (max-width: 1199.98px) {
    .call-wrapper{
        padding: 30px;
    }
    .location-wrapper{
        & .column{
            width: 33.33%;
            
            & .heading-30 {
                margin-bottom: 12px;
            }


            &:not(:last-child){
                padding-right: 30px;
            }
            &:not(:first-child){
                padding-left: 30px;
            }
        }
    }
}

@media (max-width: 991.98px) {
    .location-wrapper{
        flex-wrap: wrap;
        & .column{
            width:100%;

            &:not(:last-child){
                padding-bottom:25px;
                margin-bottom: 25px;
                border-bottom: 4px double rgb(210 210 210 / 50%);
            }

            &:not(:last-child){
                padding-right: 0;
                border-right:0;
            }
            &:not(:first-child){
                padding-left: 0;
            }
        }
    }
    .areas-link{
        column-count: 2;
    }
    .map-sec .content-media-row .content-media-img:first-child{
        margin-top: 0;
    }
    .map-sec .content-media-row .content-media-img iframe{
        height: 350px;
    }

    #suburb-missing-popup{padding: 40px 20px 20px;}

}
@media (max-width: 575.98px) {
    .areas-link{
        column-count: 1;
    }

}