.hero-call-us{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.icon-phone{
    position: relative;
}

.icon-phone::before{
    background: url(../../images/phone.svg) no-repeat;
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    left: -27px;
    top: 4px;
}

.blade h2{
    text-align: center;
}

.customer-care-wrapper{
    margin-top: 40px;
}

.customer-care-wrapper .customer-care-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.customer-care-wrapper .customer-care-column{
    flex-basis: 50%;
    padding-inline: 8rem;
}

.customer-care-wrapper .customer-care-column:first-child{
    border-right: 1px solid #dfe4ed;
}
    
.cc-country{
    text-align: center;
    margin: 0 0 10px;
}

.cc-assist{
    color: #4f5c70;
    text-align: center;
}

.call-us{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.avg-wait{
    font-size: 1.4rem;
    text-align: right;
    margin-bottom: 20px;
}

.open-status{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.opening-hours-heading{
    margin-bottom: 20px;
}

.opening-hours-text{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 10px 0;
}

.faq-rows{
    margin: 30px 0 0;
    border-bottom: 1px solid #60b6b1;
}

.faq-rows:last-child{
    border: none;
}

.text-to-builder{
    text-align: center;
}

.text-to-builder h2{
    font-size: 3.2rem;
    line-height: normal;
    margin-bottom: 36px;
}

.address-bar{
    background: rgba(96, 182, 177, 0.1);
    box-shadow: 0px -3px 3px rgba(0, 0, 0, .05);
}

.address-bar-inner{
    display: flex;
    gap: 150px;
    padding-block: 4rem 1rem;
}

.address-title{
    font-weight: 600;
    margin: 0px;
}

.address-title::before{
    background: url(../../images/location.svg) no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
}

@media only screen and (max-width:991px) {
    .customer-care-wrapper .customer-care-column{
        padding-inline: 3rem;
    }
}

@media only screen and (max-width:767px) {
    .customer-care-wrapper .customer-care-row{
        display: block;
    }

    .customer-care-wrapper .customer-care-column{
        padding-inline: 0;
        margin-bottom: 50px;
    }

    .customer-care-wrapper .customer-care-column:first-child{
        border-right: 0;
    }

    .address-bar-inner{
        display: block;
    }
}