/* ==== Faq Accordion ==== */
.acc-bx {
    margin-bottom: 15px;
}
.acc-head {
    background: var(--gg-secondary);
    padding: 10px 20px;
    font-size: 22px;
    position: relative;
    cursor: pointer;
}
.acc-head h3 {
    color: #fff;
    margin-right: 30px;
    font-size: 20px;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
}
 .acc-head::before,
 .acc-head::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: #fff;
    transition: all .3s;
 }
 .acc-head::before {
    right: 30px;
    width: 3px;
    height: 20px;
    margin-top: -10px;
}
.acc-head::after {
    right: 21px;
    width: 20px;
    height: 3px;
    margin-top: -2px;
}
.acc-content {
    padding: 20px 20px 20px 20px;
    display: none;
    border: 1px solid var(--gg-secondary);
}    
.acc-head.active::before {
    transform: rotate(90deg);
}
/* Contact Page */
.contact_form_sec {
    position: relative;
    padding-top: 5rem;
}
.contact_form_sec:after {
    content: "";
    background-image: url('/wp-content/uploads/2023/01/contact-patern.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #fff;
    opacity: .3;
    z-index: -1;
}
.contact_add * {
    color: #fff;
}
.contact_add h3 {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    margin-bottom: 15px;
}
.gg_address a {
    margin-bottom: 3px;
}
.gg_address i {
    margin-right: 10px;
}
.gg_address h5 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    margin-bottom: 15px;
}
.contact_time {
    padding-left: 0px;
    list-style: none;
    max-width: 260px;
}
.contact_time li {
    margin-bottom: 3px;
}
.contact_time li span {
    display: inline-block;
}
.contact_time li span:first-child {
    min-width: 130px;
}
.contact-map {
    position: relative;
    max-width: 100vw;
    width: 100vw;
    left: calc(-50vw + 50%);
    padding-top: 40px;
    margin-bottom: -7px;
}
.contact-map .wp-block-columns {
    margin-bottom: 0px;
}
body.page.page-id-20 .content-area {
    margin-top: 0px;
    margin-bottom: 0px;
}
/* ==== Colour Inspiration page ====*/
.panel-color-bx {
    margin-bottom: 30px;
}
.panel-color-bx .inner-bx {
    height: 100%;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 23%);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.color-img {
    position: relative;
    overflow: hidden;
    padding-top: 90%;
}
.color-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    transition: all 0.4s ease;
}
.color-cont {
    flex: 1 0 auto;
    background-color: var(--gg-secondary);
    padding: 10px;
    margin-top: -2px;
}
.color-cont h3 {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto';
    margin-bottom: 0px;
}
.panel-color-bx .inner-bx:hover {
    transform: translateY(-10px);
}
.panel-color-bx .inner-bx:hover img {
    transform: scale(1.1);
}
.go_back {
    display: flex;
    align-items: center;
    gap: 30px;
}
.go_back_btn {
    width: 50px;
    height: 50px;
    line-height: 54px;
    background-color: #ccc;
    text-align: center;
    font-size: 27px;
    border-radius: 50px;
    color: #000;
    flex-shrink: 0;
}
/* ==== Scrolltop ==== */
.gg_scrolltop {
    z-index: 100;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    position: fixed;
    bottom: -6.25em;
    right: 1.4em;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    -webkit-border-radius: 3.125em;
    border-radius: 3.125em;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    font-size: 1.125em;
    background: var(--gg-primary);
}
.gg_scrolltop:hover {
    color: #fff;
}
.gg_scrolltop.show{
    bottom: 1.875em;
}
.gg_scrolltop:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.gg_scrolltop:focus {
    color: #fff;
    outline: none;
}