@font-face {
    font-family: 'Arial Narrow';
    src: url('fonts/ArialNarrow.woff2') format('woff2'),
        url('fonts/ArialNarrow.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/Arial-ItalicMT.woff2') format('woff2'),
        url('fonts/Arial-ItalicMT.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/Arial-BoldItalicMT.woff2') format('woff2'),
        url('fonts/Arial-BoldItalicMT.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Narrow';
    src: url('fonts/ArialNarrow-Bold.woff2') format('woff2'),
        url('fonts/ArialNarrow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Narrow';
    src: url('fonts/ArialNarrow-BoldItalic.woff2') format('woff2'),
        url('fonts/ArialNarrow-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Narrow';
    src: url('fonts/ArialNarrow-Italic.woff2') format('woff2'),
        url('fonts/ArialNarrow-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/ArialMT.woff2') format('woff2'),
        url('fonts/ArialMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/Arial-Black.woff2') format('woff2'),
        url('fonts/Arial-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/Arial-BoldMT.woff2') format('woff2'),
        url('fonts/Arial-BoldMT.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




/*********************************************** Typography ******************************************/


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 10px;
}

body {
    color: var(--black);
    font-family: 'Arial';
    font-smoothing: antialiased;
    moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.container {
    max-width: 1280px;
    padding: 0rem 9rem;
    margin: 0px auto;
    width: 100%;
}


/*************button*******************/

a.a_btn {
    font-family: 'Arial';
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.4s;
    border: 1px solid var(--red);
    border-radius: 0.4rem;
    width: max-content;
    background-color: var(--red);
    text-transform: uppercase;
    border-radius: 1rem;
    position: relative;
}

a.a_btn:hover {
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--white);
}

/*************************************color******************************/

:root {
    --white: #fff;
    --black: #000;
    --red: #D00000;
}

.red_bg {
    background-color: var(--red);
}

.black_bg {
    background-color: var(--black);
}


/************************************Font Size**************************/

h1,
h2,
h3 {
    font-family: 'Arial';
    font-style: normal;
}


h2,
.title_h2 {
    color: var(--black);
    font-size: 4rem;
    font-weight: 700;
    line-height: 4rem;
}

h3,
.title_h3 {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.9rem;
}


ul li a {
    color: var(--red);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4rem;
}

p {
    color: var(--black);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.8rem;
}

/*******************header*********************/

.top_header_main {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site_header {
    position: relative;
}

.site_logo {
    width: 18.1%;
}

.header_pach {
    flex: 1;
}

.site_logo a img {
    width: 100%;
    height: 100%;
}

.header_pach img {
    width: 100%;
    height: 100%;
}

.top_header {
    padding: 0.3rem 0;
}

.header_menu {
    padding: 0.35rem 0;
}

.bottom_header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.header_search {
    display: block;
}

.header_menu .menu {
    display: flex;
    align-items: center;
}

.header_menu .menu li a {
    color: var(--white);
    font-size: 2rem;
    border-right: 4px solid white;
    padding: 0 2rem;
}

.header_menu .menu li:first-child a {
    padding-left: 0;
}

.header_menu .menu li:last-child a {
    border: unset;
    padding-right: 0;
}

.header_search .a_btn {
    font-size: 2rem;
    line-height: 4rem;
    color: var(--white);
    background: var(--red);
    padding: 0.35rem 1.23rem;
    font-weight: 700;
    min-width: 12.7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header_search .a_btn:hover {
    color: var(--black);
    background: var(--white);
    transition: all ease-in-out 0.4s;
}

/*******business****/


.business_categories_list_section {
    padding: 3.1rem 0 4.9rem;
}

.business-categories-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.3rem;
}

.business_categories_list_main {
    max-width: 1096px;
    margin: 0 auto;
}

.business-category-item {
    border: 7px solid var(--black);
    border-radius: 3.2rem;
    padding: 2.5rem;
}

.business_category_name {
    border-top: 5px solid black;
    padding-top: 1.1rem;
    margin-top: 1.1rem;
}


/*************************related_section******************/

.related_post_title .title_h2 span {
    display: block;
    font-size: 3rem;
}

.related_post_main_title .title_h2 {
    text-align: center;
    padding-bottom: 3rem;
}

.related_post_main {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related_post_section {
    overflow: hidden;
}

.related_post_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related_post_item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.related_post_title a {
    color: var(--black);
}

.related_post_title {
    position: absolute;
    inset: 0;
    padding: 2rem 3.3rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: rgb(255 255 255 / 70%);
    transform: translateY(50%);
    transition: all ease-in-out 0.5s;
    opacity: 0;
}

.related_post_item:hover .related_post_title {
    transform: unset;
    opacity: 1;
}

.entry-title-text a {
    font-size: 2rem;
    font-weight: 700;
    line-height: 4rem;
}

.related_post_title h2.entry-title.title_h2 {
    text-align: left;
}

/**************cta form *********************/

.cta_section {
    background: var(--red);
    padding: 3.4rem 0;
}

.cta_title .title_h2 {
    color: var(--white);
    line-height: 4.5rem;
    text-transform: uppercase;
}

.cta_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta_form form {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    position: relative;
}

.cta_form form p .wpcf7-submit {
    color: var(--white);
    background: transparent;
    border: 1px solid white;
    font-size: 3.5rem;
    line-height: 4rem;
    border-radius: 1.4rem;
    text-transform: uppercase;
    padding: 0.77rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.cta_form {
    width: 52.73%;
}

.cta_title {
    flex: 1;
}

.cta_form form .wpcf7-spinner::before {
    content: none;
}

.cta_form form .wpcf7-spinner {
    display: none;
}

.cta_form form input {
    padding: 1.77rem 1.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    outline: none;
    border: none;
    position: relative;
}

.cta_form form p label br {
    display: none;
}

.cta_form form p .wpcf7-submit:hover {
    color: var(--black);
    background: white;
    transition: all ease-in-out 0.4s;
}

.cta_form form .wpcf7-not-valid-tip {
    position: absolute;
    color: var(--red);
    background: white;
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    bottom: -50px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: #dada36;
    background: none;
    padding-left: 0;
}

.cta_form form .wpcf7-response-output {
    position: absolute;
    top: -30px;
    padding: 0;
    left: 0;
    margin: 0;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: #2e9d00;
    background: white;
    padding: 0.5rem 1rem;
}

/************footer**********************/

footer {
    padding: 4rem 0;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer_menu .menu {
    display: grid;
    column-gap: 3rem;
    row-gap: 0.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}

.footer_menu {
    width: 75%;
}

.footer_menu .menu li a,
.footer_menu h3 {
    color: var(--white);
    font-size: 2.6rem;
    text-transform: uppercase;
}

.footer_menu h3 {
    padding-bottom: 1.6rem;
}

.header_menu .menu li a:hover,
.footer_menu .menu li a:hover {
    color: var(--red);
    transition: all ease-in-out 0.4s;
}

.footer_serach .a_btn {
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--white);
    background: var(--red);
    cursor: pointer;
    padding: 1.96rem 2.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.7rem;
}

.footer_top_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.footer_bottom {
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.social_links_main {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer_links {
    display: flex;
    gap: 2rem;
    position: relative;
}

.footer_links a:last-child::before {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    border-radius: 50%;
}

.footer_links a:last-child {
    position: relative;
}

.footer_links a {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 4rem;
    text-transform: uppercase;
}

.footer_serach .a_btn:hover {
    color: var(--black);
    background: var(--white);
    transition: all ease-in-out 0.4s;
}

.footer_links a:hover {
    color: var(--red);
    transition: all ease-in-out 0.4s;
}

.social_links_main a:hover img {
    filter: brightness(0.7);
    transition: all ease-in-out 0.4s;
}


/*************************************************************category Page*****************************************************/


.tax-business-category header.page-header .title_h2 {
    text-align: center;
    padding: 2rem 0;
    font-size: 0;
}

.tax-business-category .title_h2 span {
    font-size: 4rem;
}

/***********************************************************business page*******************************************************/

.inner_banner_main {
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
    gap: 4.1rem;
    padding-right: 9rem;
    align-items: flex-end;
}

.inner_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner_right {
    width: 32.8%;
}

.inner_left {
    flex: 1;
}

.inner_right .title_h2 span {
    font-size: 3rem;
    display: block;
}

.social_data {
    display: flex;
    align-items: center;
    gap: 1.73rem;
    padding-bottom: 1.7rem;
}

.social_data_icon {
    width: 10.8%;
}

.social_data a,
.social_data p {
    flex: 1;
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    line-height: 3rem;
}

.social_data_icon img {
    width: 100%;
    height: 100%;
}

.inner_right .a_btn {
    font-size: 2rem;
    color: var(--white);
    background: var(--red);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18.4rem;
    width: max-content;
    padding: 1.12rem;
    border-radius: 1rem;
    cursor: pointer;
    border: 1px solid red;
    text-transform: capitalize;
}

.inner_right .a_btn:hover {
    color: var(--black);
    background: var(--white);
    border: 1px solid black;
    transition: all ease-in-out 0.4s;
}

.inner_social_links_main {
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 1.6rem 3.3rem;
    border-radius: 2rem;
    justify-content: space-between;
    margin-top: 2.8rem;
}

.inner_social_links_main a:hover {
    filter: brightness(0.7);
}

.inner_right .title_h2 {
    padding-bottom: 1.8rem;
}

/*************************opening section*********************************/

.opening_hours_main {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.opening_hours_right p {
    padding-bottom: 3rem;
}

.opening_hours_right p:last-child {
    padding-bottom: 0;
}

.opening_hours_left {
    flex: 1;
}

.opening_hours_right {
    width: 63%;
}

.opening_hours_list {
    display: flex;
    align-items: center;
    gap: 4.6rem;
    padding-bottom: 0.5rem;
}

.opening_hours_time {
    display: flex;
    flex: 1;
    gap: 0.5rem;
    align-items: center;
}

.opening_hours_day {
    width: 20%;
}

.opening_hours_list_main {
    padding-top: 1rem;
}

.opening_hours_left h3 {
    background: var(--red);
    width: max-content;
    color: var(--white);
    border-radius: 1rem;
    padding: 1rem 2.33rem;
}

.opening_hours_section {
    padding: 2.3rem 0 4rem;
}

.opening_hours_list:last-child {
    padding-bottom: 0;
}








/*********** BLog *********************/

.cmn_banner_title {
    text-align: center;
    padding-bottom: 4rem;
    padding-top: 8rem;
}

.cmn_banner_title h1 {
    padding-bottom: 3rem;
}

.blog_content_box ul li:last-child {
    padding: 0;
}

.blog_content_box * {
    text-align: left;
}

.blog_content_box h2,
.blog_content_box h3,
.blog_content_box h4,
.blog_content_box h5,
.blog_content_box h6 {
    padding: 3rem 0 1rem;
    font-weight: 700;
    font-size: 3rem;
}

.blog_content_box {
    max-width: 80%;
    margin: 0 auto;
    padding: 3rem 0 8rem;
}

.blog_content_box ul li {
    padding-bottom: 1.2rem;
    list-style-type: disc;
    color: rgb(22 28 45 / 70%);
}

.blog_content_box ul {
    padding-left: 2rem;
}

.post_pagination_main {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.post_pagination_main .post_pagination_left,
.post_pagination_right {
    padding: 2.4rem 1.8rem;
    background: #F8F9F5;
    border: 1px solid #cfcece;
    border-radius: 10px;
    width: 50%;
}

.post_pagination_main .post_pagination_left a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.post_pagination_main .post_pagination_right a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.post_pagination_section {
    padding-bottom: 8rem;
}

.blog_list_main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 3rem;
    padding-bottom: 8rem;
}

.blog_list_main a .bolg_list_content {
    padding: 3rem 3rem 2rem 3rem;
}

.blog_list_btn {
    color: var(--black);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 1.8rem;
}

.blog_list_main a {
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
}

.blog_list_main a:hover {
    box-shadow: 0px 34px 33px -23px rgba(22, 28, 45, 0.13);
}

.blog_list_main a img {
    min-height: 301px;
    object-fit: cover;
}

.post_pagination_main .post_pagination_left a p {
    opacity: 1;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3.2rem;
    letter-spacing: -0.5px;
}

.post_pagination_main .post_pagination_right a p {
    opacity: 1;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3.2rem;
    letter-spacing: -0.5px;
}

.blog_list_main a .bolg_list_content h5 {
    font-size: 2rem;
    color: var(--black);
}

.cmn_banner_img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}


.blog_content_box p {
    padding-bottom: 2rem;
}

.blog_content_box h2,
.blog_content_box h3,
.blog_content_box h4,
.blog_content_box h5,
.blog_content_box h6 {
    padding: 3rem 0 1rem;
    font-weight: 700;
    font-size: 3rem;
}

.blog_content_box ul {
    padding-left: 2rem;
}


/*pagination*/


.pagination {
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.pagination span,
.pagination a.page-numbers {
    margin: 0;
    height: 38px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.6rem;
    border: 2px solid var(--black);
    transition: all ease 0.3s;
    border-radius: 10px;
    font-size: 1.7rem;
}

.pagination span.page-numbers.current,
.pagination a.page-numbers:hover {
    background: transparent;
    color: var(--black);
}



/*About Us*/


.about_main {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about_left {
    width: 40%;
}

.about_right {
    flex: 1;
}

.about_main img {
    width: 100%;
}

.about_section {
    padding-bottom: 8rem;
}

.about_right h2 {
    padding-bottom: 3rem;
}









/*search*/



body.search_body_class {
    overflow: hidden;
}


.search_input_otr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 43%);
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.3s;
}

.search_body_class .search_input_otr {
    z-index: 9999999;
    visibility: visible;
    opacity: 1;
}


.search_input_otr .search_input_main {
    background: #000000;
    padding: 7rem 0;
    transform: translateY(-40%);
    transition: all ease 0.3s;
}

.search_body_class .search_input_otr .search_input_main {
    transform: translateY(0%);
}


.search_input_otr .search_input_main form {
    max-width: 1304px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 0 2rem;
}

.search_input_otr .search_input_main form input {
    flex: 1;
    padding: 1rem;
    font-size: 2rem;
    height: 50px;
}

.search_main_icon {
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.search_close_icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_close_icon svg {
    width: 40px;
    height: 40px;
}

.search_main_icon input#searchsubmit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    color: transparent;
    border-radius: 50%;
    box-shadow: unset !important;
    border: 0;
    z-index: 11;
    cursor: pointer;
}






/*Get Listed*/

.get_listed_form {
    background: black;
    padding: 5rem;
    border-radius: 25px;
    margin-bottom: 8rem;
}

.get_listed_form label {
    color: #ffffff;
    display: block;
}

.get_listed_form label input,
.get_listed_form label textarea {
    padding: 1rem;
    font-size: 1.8rem;
    margin-top: 0.8rem;
    color: #000000;
    width: 100%;
    background: #ffffff;
    border: 0;
    outline: none;
}

.get_listed_form form {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.get_listed_form form p {
    width: calc(50% - 12px);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 1.5rem;
    bottom: -32px;
}


.get_listed_form form p:last-of-type {
    width: 100%;
}

.get_listed_form form p input.wpcf7-form-control.wpcf7-submit {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--white);
    background: var(--red);
    cursor: pointer;
    padding: 1rem 2.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.7rem;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    transition: all ease-in-out 0.4s;
}

.get_listed_form form p input.wpcf7-form-control.wpcf7-submit:hover {
    color: var(--black);
    background: var(--white);

}


/*****************************************************************Media*************************************************/



@media screen and (max-width: 1220px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 7rem;
    }

    .footer_menu .menu {
        column-gap: 2rem;
    }

    .footer_menu .menu li a,
    .footer_links a {
        font-size: 2.3rem;
    }

    .footer_serach .a_btn {
        padding: 1.46rem 2.4rem;
    }

    p {
        font-size: 16px;
    }

    .inner_right {
        width: 37.8%;
        padding-top: 2rem;
    }

    .inner_banner_main {
        padding-right: 4rem;
        align-items: unset;
    }

    .opening_hours_right {
        width: 60%;
    }

    .blog_list_main {
        grid-gap: 2.5rem;
    }

    .blog_list_main a img {
        min-height: 270px;
    }
}


@media screen and (max-width: 1024px) {

    .container {
        padding: 0 5rem;
    }

    .business-category-item {
        padding: 2rem;
    }

    .footer_menu .menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer_links {
        flex-direction: column;
        gap: 0rem;
    }

    .footer_links a:last-child::before {
        content: none;
    }

    .footer_serach .a_btn {
        font-size: 3.7rem;
    }

    .cta_main {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .cta_form form .wpcf7-response-output {
        top: -25px;
    }

    .opening_hours_right {
        width: 55%;
    }

    .inner_social_links_main {
        padding: 0.6rem 2rem;
    }

    .inner_right {
        width: 41.8%;
        padding-top: 2rem;
    }

    .inner_banner_main {
        padding-right: 3rem;
    }

    .blog_list_main a img {
        min-height: 250px;
    }

    .blog_list_main a .bolg_list_content {
        padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    }

}

@media screen and (max-width: 900px) {
    html {
        font-size: 8px;
    }

    .business-categories-list {
        gap: 1.5rem;
    }

    .cta_form form input {
        padding: 1.4rem 1rem;
    }

    .cta_form form p .wpcf7-submit {
        font-size: 2.5rem;
    }

    .social_links_main a {
        width: 4.5rem;
    }

    .wpcf7 form.invalid .wpcf7-response-output {
        padding: 0;
        top: -20px;
    }

    .cta_form form .wpcf7-not-valid-tip {
        bottom: -40px;
    }

    .about_main {
        flex-direction: column;
        gap: 4rem;
    }

    .about_left {
        width: 85%;
    }

    p {
        line-height: 18px;
    }

    .opening_hours_main {
        flex-direction: column;
        align-items: unset;
        gap: 3rem;
    }

    .inner_banner_main {
        flex-direction: column-reverse;
        padding: 0 5rem;
    }

    .inner_banner {
        padding-top: 6rem;
    }

    .inner_right {
        width: 100%;
        padding: 0;
    }

    .social_data_icon {
        width: 6%;
    }

    .inner_social_links_main {
        width: 60%;
    }

    .opening_hours_right {
        width: 100%;
    }

    .opening_hours_section {
        padding: 4rem 0;
    }

    .get_listed_form {
        padding: 4rem;
    }

    .blog_list_main a img {
        min-height: 215px;
    }

    .blog_list_main a .bolg_list_content {
        padding: 2rem 2rem 1rem 2rem;
    }

    .blog_list_main {
        grid-gap: 2rem;
        padding-bottom: 5rem;
    }

}


@media screen and (max-width: 767px) {

    /************* mobile menu **************/

    .mobileIcon {
        display: block;
    }

    .mobileIcon {
        height: auto;
        cursor: pointer;
        z-index: 99999;
        position: relative;
        display: flex;
        align-items: center;
        min-width: 30px;
        position: absolute;
        right: 3%;
        top: 20%;
    }

    .mobileIcon span {
        width: 55px;
        height: 7px;
        border-radius: 0;
        display: inline-block;
        background: #000;
        position: relative;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        -ms-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

    .mobileIcon span:before {
        position: absolute;
        content: '';
        width: 54px;
        height: 7px;
        border-radius: 0;
        background: #000;
        top: -12px;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        -ms-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

    .mobileIcon span:after {
        position: absolute;
        content: '';
        width: 54px;
        height: 7px;
        border-radius: 0;
        background: #000;
        bottom: -8px;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        -ms-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

    .menu-open .mobileIcon span {
        background: var(--black);
        top: 0;
    }

    .menu-open .mobileIcon span:before {
        background: var(--red);
        transform: rotate(45deg);
        top: 0;
    }

    .menu-open .mobileIcon {
        background: var(--blue);
        padding: 2rem 1rem;
    }

    .menu-open .mobileIcon span:after {
        top: 0;
        background: var(--red);
        transform: rotate(-45deg);
    }

    .mobileIcon span:before {
        width: 25px;
        height: 3px;
        border-radius: 3px;
        background: var(--red);
        left: 0;
        top: -8px;
    }

    .mobileIcon span,
    .mobileIcon span:after {
        width: 25px;
        height: 3px;
        border-radius: 3px;
        background: var(--red);
        left: 0;
    }

    .right_menu {
        position: fixed;
        top: 0;
        right: auto;
        left: 0;
        bottom: 0;
        z-index: 999;
        width: 100%;
        transition: transform 300ms ease, opacity 300ms ease;
        transform: translate3d(-100%, 0, 0);
        transition: transform 300ms ease, opacity 300ms ease;
        padding: 50px 30px 30px;
        box-shadow: 0 10px 10px 0 rgb(0 0 0 / 23%);
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        display: flex;
        max-width: 100%;
        border-radius: 0;
        background: var(--black);
    }

    .menu-open .header_left_inr a {
        padding: 0;
    }

    .menu-open .header_left_inr {
        position: relative;
        z-index: 9999;
    }

    .header_right_btn .a_btn.btn_large:hover {
        border: 1px solid var(--charcoal-dark);
    }

    .menu-open .header_links {
        flex-direction: column;
    }

    .menu-open .right_menu {
        display: flex;
        overflow: auto;
        flex-direction: column;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        backface-visibility: hidden;
        transition: transform 300ms ease, opacity 300ms ease;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open header {
        backdrop-filter: unset;
    }

    .menu-open header:after {
        content: '';
        border-bottom: 1px solid var(--blue);
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 2px;
        left: 0;
        z-index: 999;
    }

    .menu-open ul.header_menu {
        justify-content: center;
        flex-direction: column;
        padding-top: 40px;
        gap: 0;
        width: 100%;
    }

    .menu-open .right_menu_btn {
        justify-content: center;
        padding-top: 30px;
    }

    .menu-open .header_logo {
        position: relative;
        z-index: 9999;
        justify-content: flex-start;
    }

    ul.header_menu li {
        padding-bottom: 20px;
        padding-top: 20px;
        border-bottom: 1px solid rgb(255 255 255 / 30%);
        width: 100%;
        text-align: left;
        margin: 0 auto;
    }

    .menu-open .right_menu ul li a:after {
        width: 30px;
    }

    .right_menu {
        display: none;
    }

    .right_menu ul.sub_menu {
        display: none !important;
        position: unset;
        width: 100%;
        background: #290140 !important;
        opacity: 1;
        transform: unset;
        transition: unset;
        margin-top: 20px;
        padding: 0 0 0 0;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .right_menu ul.sub_menu.submenu-open {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-open .header_links ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-open .header_links a:after {
        background: var(--white);
        width: 0 !important;
    }

    .menu-open .header_links a:hover:after {
        width: 100% !important;
    }

    .menu-open .header_links li a {
        color: var(--white);
    }

    .menu-open a.btn {
        background: var(--green);
        color: var(--white);
        border: 1px solid var(--green);
    }

    .menu-open a.btn:hover,
    .menu-open a.btn:focus,
    .menu-open a.btn:active {
        background: transparent;
        color: var(--green);
    }

    .menu-open .header_menu ul li a {
        color: var(--white);
    }

    .menu-open .header_menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .menu-open .header_menu ul li a:hover {
        color: var(--green);
    }

    .menu-open .right_menu ul {
        flex-direction: column;
        gap: 0;
    }

    .menu-open .right_menu ul li {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding-bottom: 2rem;
        padding-top: 2rem;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--charcoal-dark);
    }

    .header_inr .header_right_inr nav#site-navigation {
        width: 100%;
    }

    .menu-open .site-branding .dark_logo {
        position: relative;
        opacity: 1;
        visibility: visible;
    }

    .menu-open .site-branding .white_logo {
        display: none;
    }

    .menu-open .right_menu ul li:hover {
        background: var(--blue);
    }

    .menu-open .right_menu ul li:hover a {
        color: var(--white);
    }

    .menu-open .right_menu ul li:last-child {
        margin: 0;
        border-bottom: unset;
    }

    .menu-open .right_menu ul li a {
        font-size: 2.5rem;
        color: var(--white);
    }

    .menu-open .right_menu .menu-header-menu-container {
        width: 100%;
        position: relative;
        top: -3%;
    }

    /*****header*****/

    .bottom_header_main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header_menu .menu li:first-child a {
        padding: 0;
        margin: 0;
    }

    .header_menu .menu li a {
        border: none;
        padding: 0;
        text-align: center;
    }

    .container {
        padding: 0 3rem;
    }

    .business-categories-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .related_post_main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search_body_class .mobileIcon {
        z-index: -1;
    }

    html {
        font-size: 7.5px;
    }

    .inner_banner_main {
        padding: 0 3rem;
    }

    .inner_social_links_main {
        width: 70%;
        gap: 2rem;
    }

    .opening_hours_list_main {
        padding-top: 2rem;
    }

    .opening_hours_right p {
        padding-bottom: 2rem;
    }

    .get_listed_form {
        padding: 3em;
    }

    .get_listed_form label textarea {
        max-height: 16rem;
    }

    .blog_list_main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog_content_box {
        max-width: 100%;
        padding-bottom: 5rem;
    }

    .cmn_banner_title {
        padding: 5rem 0 3rem;
    }

}


@media screen and (max-width: 600px) {

    .container {
        padding: 0 2rem;
    }

    .inner_banner_main {
        padding: 0 2rem;
    }

    .business-categories-list {
        gap: 2rem;
    }

    .footer_top {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .footer_top_right {
        flex-direction: row;
        align-items: center;
    }

    .footer_menu {
        width: 100%;
    }

    .footer_site_logo a {
        width: 70%;
        display: block;
    }

    .footer_serach .a_btn {
        font-size: 2.6rem;
    }

    .footer_bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .social_links_main a {
        width: 3.5rem;
    }

    .footer_links {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .business_category_image img {
        width: 100%;
        height: 100%;
    }

    .business_category_image {
        width: 75%;
    }

    .related_post_title {
        opacity: 1;
        transform: unset;
        padding: 1.5rem;
    }

    .related_post_main {
        gap: 2rem;
    }

    .about_left {
        width: 100%;
    }

    .related_post_title .title_h2,
    .business-categories-list li a {
        font-size: 2.8rem;
    }

    .related_post_title .title_h2 span {
        font-size: 2.5rem;
    }

    .cmn_banner_title {
        padding: 4rem 0 2rem;
    }

    .opening_hours_list {
        gap: 1.5rem;
    }

    .get_listed_form {
        padding: 2.5em;
        margin-bottom: 4rem;
    }

    .get_listed_form form p {
        width: 100%;
    }

    .blog_list_main a img {
        min-height: 195px;
    }
	
	.related_post_title {
		justify-content: flex-end;
		background: linear-gradient(0deg, rgb(0 0 0 / 75%) 20%, transparent 50%);
		gap: 10px;
	}
	.related_post_title * {
		color: #ffffff !important;
	}

}

@media screen and (max-width: 479px) {

	.related_post_title .title_h2, .business-categories-list li a {
        font-size: 2.5rem;
        line-height: 1;
    }

    .related_post_main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .business_category_image {
        width: 60%;
    }

    .cta_form form {
        width: 100%;
    }

    .cta_form form p {
        width: 100%;
    }

    .cta_form form input {
        max-width: 235px;
    }

    .cta_form form p .wpcf7-submit {
        font-size: 2.2rem;
        position: relative;
        right: -47px;
    }

    .footer_links {
        flex-direction: column;
    }

    .get_listed_form form {
        gap: 1.5rem;
    }

    .blog_list_main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
	.site_logo {
		width: 27.1%;
	}
}


@media screen and (max-width: 374px) {

    .footer_menu .menu {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .footer_links {
        flex-direction: column;
    }

    .cta_form form input {
        max-width: 185px;
    }

    .cta_form form p .wpcf7-submit {
        font-size: 2rem;
        right: -25px;
    }
}





.error_main {
    padding: 100px 0 100px;
}

.error_otr_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}



section.comman_section {
    padding: 8rem 0;
}

.comman_title {
    padding-bottom: 4rem;
}

.comman_content h2, .comman_content h1, .comman_content h3, .comman_content h4, .comman_content h5, .comman_content h6 {
    padding: 3rem 0 2rem;
}

.comman_content ol, .comman_content ul {
    padding: 1rem 0 1rem 4rem;
    margin: 0;
}

.comman_content li, .comman_content P {
    padding-bottom: 2rem;
}


@media screen and (max-width: 479px) {

	.comman_title {padding-bottom: 2rem;}
	.comman_content h2, .comman_content h1, .comman_content h3, .comman_content h4, .comman_content h5, .comman_content h6 {padding: 2rem 0 1.8rem;}
	section.comman_section {padding: 5rem 0;}
	.error_main {padding: 50px 0 50px;}

}




.search_results {
    text-align: center;
    padding: 2rem 0;
    font-size: 0;
}