@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --font-default: "Inter", sans-serif;
    --font-heading: 'Inter', sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --black: #000000;
    --dark: #040836;
    --dark-secondary: #202942;
    --white: #ffffff;
    --color-primary: #5138ee;
    --color-secondary: #02ebad;
    --color-heading: #000000;
    --color-paragraph: #000000;
    --box-shadow-primary: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
    --box-shadow-secondary: 0 20px 50px rgba(0, 0, 0, 0.1);
    --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
    --box-shadow-extra: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
    --bg-gray: #FAFAFA;
    --bg-gradient: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%);
    --theme-color: #FD6553;
    --bg-blue: #2FAAEF;
    --bg-green: #01CE87;
    --bg-yellow: #FFD81C;
}

* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}

body {
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    background-color: var(--white);
    color: var(--color-paragraph);
    overflow-x: hidden;
    background: var(--bg-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a,
.btn,
button {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    outline: medium none;
}

a img,
iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: inherit;
}

.p_relative {
    position: relative;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    color: var(--color-heading);
}

a {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    text-decoration: none;
}

b,
strong {
    font-weight: 900;
}

.btn.active,
.btn:active {
    background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
    outline: 0;
}

.btn.circle {
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.btn.active,
.btn:active {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

@media only screen and (min-width: 768px) {
    .row {
        --bs-gutter-x: 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1125px;
    }

    .container-md {
        max-width: 1295px;
    }
}

.bg_gray {
    background: var(--bg-gray);
}

p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 30px;
}

.navbar_sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff !important;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1) !important;
}

/* home */
.py_60 {
    padding: 60px 0;
}

.pb_60 {
    padding-bottom: 60px;
}

.pt_60 {
    padding-top: 60px;
}

.home_banner {
    background: var(--bg-gray);
}

.home_banner .banner_content {
    text-align: center;
    padding: 70px 30px;
}

.home_banner .banner_content h1 {
    font-size: 41px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -0.03em;
    text-align: center;
}

.home_banner .banner_content p {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    text-align: center;
}

.home_banner .banner_content p span {
    color: var(--theme-color);
}

.home_banner .banner_content h1 i.fa.fa-search {
    transform: rotate(-8deg);
    font-size: 35px;
    color: var(--theme-color);
}

.home_banner .banner_content h1 i.fa.fa-wrench {
    transform: rotate(-88deg);
    font-size: 30px;
    color: var(--theme-color);
}

.home_banner .left {
    border-radius: 0px 0px 122px 122px;
    overflow: hidden;
}

.home_banner .right {
    border-radius: 122px 122px 0px 0px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home_banner .banner_content .form_group {
    box-shadow: 0px 2px 4px 0px #00000008;
    border: 1px solid #1E1E1E;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #7F7F7F;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    position: relative;
}

.home_banner .banner_content .form_group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.home_banner .banner_content .form_group input {
    background: transparent;
    border: none;
    padding: 0 15px 0 45px;
    width: 100%;
}

.content_icon_box .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    color: #000000;
    margin: 15px 0;
}

.content_icon_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #000000;
}

.platform_panel {
    overflow: clip;
    background-image: url(../img/platform-bg.png);
    background-size: auto 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px 0 rgba(13, 21, 48, .05);
    padding: 64px;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid #fd655357;
}

.platform_panel .content {
    max-width: 390px;
    width: 100%;
}

.platform_panel img {
    display: none;
}

.platform_panel h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 48.41px;
}

.platform_panel h2 span {
    color: var(--theme-color);
}

.platform_panel p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.platform_panel .circle_first {
    position: absolute;
    width: 540px;
    height: 540px;
    top: -80px;
    right: -20px;
    border: 1.5px solid #dddddd4f;
    border-radius: 100%;
}

.btn_sm {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 13px 20px;
    border-radius: 7px;
}

.btn_sm i {
    margin-left: 8px;
}

.btn_red {
    background: var(--theme-color);
    color: #fff;
}

.btn_red:hover,
.btn_red:focus {
    background: #000;
    color: #fff;
}

.btn_gray {
    background: #D9D9D9;
    color: #000;
}

.btn_gray:hover,
.btn_gray:focus {
    background: #000;
    color: #fff;
}

.btn_white {
    background: #fff;
    color: #000;
}

.btn_white:hover,
.btn_white:focus {
    background: #000;
    color: #fff;
}

.home_video_section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    text-align: left;
    margin-bottom: 30px;
}

.home_video_section h2 span {
    color: var(--theme-color);
}

.home_video_section .video-container {
    position: relative;
    padding-top: 56.54%;
    background: url('../img/Video.png') no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

.home_video_section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.home_video_section .video-container.playing iframe {
    display: block;
}

.home_video_section .play-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reviews_testimonial {
    background: #1E1E1E;
}

.reviews_testimonial h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 52px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.reviews_testimonial h2 i {
    color: var(--theme-color);
    font-style: normal;
}

.reviews_testimonial h2 span.plus {
    font-weight: 200;
}

.reviews_testimonial h2 span {
    font-weight: 300;
}

.reviews_testimonial .container-fluid {
    padding: 0px;
}

.reviews_box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.reviews_box .rname {
    display: flex;
}

.reviews_box .rname img {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.reviews_box .rname .name {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
}

.reviews_box .rname .name small {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    text-align: left;
    margin-top: 3px;
    display: block;
}

.reviews_box .rname {
    display: flex;
    margin-bottom: 14px;
}

.reviews_box p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
}

.mySwiper {
    margin-top: 40px;
}

.mySwiper .slick-slide {
    padding: 5px;
}

.title_with_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title_with_link h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.73px;
    text-align: left;
    margin-bottom: 0px;
}

.title_with_link h2 span {
    color: var(--theme-color);
}

.title_with_link a {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: right;
    color: #000;
}

.title_with_link a:hover {
    color: var(--theme-color);
}

.tabs__list .tabs__item {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;
    display: block;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.tabs__list .tabs__link {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;
    display: block;
    padding: 15px;
    border-radius: 8px;
}

.tabs__list .tabs__link a {
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}

.tabs__list .tabs__item.active {
    border: 1px solid #FD6553
}

.tabs__content {
    display: none;
}

.tabs__content.active {
    display: inline-block;
    width: 100%;
}

.rating_box {
    background: #fff;
    box-shadow: 0px 3px 6px 0px #0000001A;
    border-radius: 10px;
    text-align: center;
    padding: 25px;
    margin-bottom: 30px;
}

.rating_box .icon {
    border: 1px solid #F0F0F0;
    width: 46px;
    height: 46px;
    margin: 0 auto 15px;
    border-radius: 10px;
    line-height: 39px;
}

.rating_box .rating {
    font-size: 15px;
    margin-bottom: 6px;
    color: #000;
}

.rating_box .rating span {
    background: var(--theme-color);
    display: inline-block;
    padding: 0px 10px;
    color: #fff;
    border-radius: 4px;
    margin-right: 3px;
    font-size: 14px;
    line-height: 22px;
}

.rating_box .rating span i {
    font-size: 10px;
    position: relative;
    bottom: 2px;
}

.rating_box .title {
    font-size: 15px;
    color: #000;
}

.states_filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.states_filter a {
    background: #EFE3E1;
    display: inline-block;
    padding: 10px 16px;
    margin-right: 3px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: center;
    border-radius: 30px;
}

.states_filter a:hover {
    background: var(--theme-color);
    color: #fff;
}

.sm_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.73px;
}

.btn_link {
    color: var(--theme-color);
    border-bottom: 1px solid;
}

.cta_red_banner {
    position: relative;
    background: url(../img/bg_red.png) var(--theme-color);
}

.cta_red_banner h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 30px;
}

.cta_red_banner h2 span {
    font-weight: 300;
    display: block;
}

.cta_red_banner .image {
    position: relative;
    max-width: 320px;
    width: 100%;
    height: 250px;
    margin-left: auto;
}

.cta_red_banner .image img.img-1 {
    position: absolute;
    top: -30px;
    left: 0;
}

.cta_red_banner .image img.img-2 {
    position: absolute;
    right: 0;
    width: 80px;
    height: 80px;
    top: 18px;
}

.cta_red_banner .image img.img-3 {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.cta_red_banner .image img.img-4 {
    position: absolute;
    bottom: -40px;
    left: 120px;
}

.cta_red_banner .image img.img-5 {
    position: absolute;
    top: 50px;
    left: 43%;
    transform: translateX(-50%);
    width: 100px;
}

.cta_red_banner .image div {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 100px;
}

.cta_red_banner .image div.dot_1 {
    top: 0;
    left: 50%;
}

.cta_red_banner .image div.dot_2 {
    top: 35%;
    left: 10%;
}

.cta_red_banner .image div.dot_3 {
    right: 24%;
    bottom: 30%;
}

.footer_top {
    padding: 60px 0;
}

.footer_top .title {
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    margin-bottom: 20px;
}

.footer_top p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    color: #0a142f7a;
    margin-bottom: 20px;
    padding-right: 24%;
}

.footer_top .links a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    display: block;
    color: #0a142f7a;
    margin-bottom: 10px;
}

.footer_top .links a:nth-last-child(1) {
    margin-bottom: 0px;
}

.footer_top .links a:hover {
    color: #0A142F;
}

.footer_social_share {
    margin-top: 25px;
}

.footer_social_share a {
    width: 30px;
    height: 25px;
    color: #0A142F;
    display: inline-block;
    font-size: 16px;
}

.footer_social_share a:hover {
    color: var(--theme-color);
}

.footer_bottom {
    border-top: 1px solid #D9D9D9;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer_bottom .copyright img {
    margin-right: 8px;
}

.footer_bottom .copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    color: #0a142f7a;
}

footer {
    background: #fff;
}

.breadcrumbs {
    list-style: none;
    margin-bottom: 20px;
    padding: 0px;
}

.breadcrumbs li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    display: inline-block;
}

.breadcrumbs li a:after {
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: rotate(-45deg);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 12px 1px;
}

.page_banner {
    padding-top: 40px;
    position: relative;
}

.page_banner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.page_banner p {
    line-height: 30px;
    margin-bottom: 0px;
}

.page_banner p a {
    color: var(--theme-color);
}

.filter_tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 25px;
}

.filter_tabs ul li {
    position: relative;
    display: inline-block;
    padding-bottom: 28px;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter_tabs ul li:nth-last-child(1) {
    margin-right: 0px;
}

.filter_tabs ul li:hover {
    color: var(--theme-color);
}

.filter_tabs ul li.active::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
}

.filter_tabs .total {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
}

.filter_form .form_group {
    position: relative;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    min-width: 130px;
}

.filter_form .location {
    padding-left: 40px;
}

.filter_form .location i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.filter_form .form_group i {
    color: #7E7E7E;
    margin-right: 5px;
    font-size: 13px;
}

.filter_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter_form .form_group input,
.filter_form .form_group select {
    background: transparent;
    border: none;
    padding: 0;
    min-height: 44px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #7E7E7E;
    width: 100%;
}

.filter_form button {
    border: 1px solid #D8D8D8;
    padding: 0 10px;
    border-radius: 4px;
    min-width: 138px;
    background: transparent;
    min-height: 44px;
    color: #7E7E7E;
}

.section_title_with_select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 20px;
}

.section_title_with_select h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    color: #000;
    margin-bottom: 0px;
}

.section_title_with_select .form_group {
    position: relative;
    border: 1px solid #D8D8D8;
    padding: 0px;
    border-radius: 4px;
    min-width: 150px;
}

.section_title_with_select .form_group select {
    background: transparent;
    border: none;
    padding: 0;
    min-height: 44px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #7E7E7E;
    width: 100%;
}

.liststyle_blog {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.blog_list_section .liststyle_blog:nth-last-child(1) {
    margin-bottom: 0px;
}

.liststyle_blog .image {
    width: 25%;
}

.liststyle_blog .image img {
    width: 100%;
}

.liststyle_blog .content {
    width: 75%;
    padding-left: 30px;
}

.liststyle_blog .content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    color: #000000;
}

.liststyle_blog .content h3:hover a {
    color: var(--theme-color);
}

.liststyle_blog .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 0px;
}

select.select2-hidden-accessible {
    display: none;
}

select+.select2-container--bootstrap-5 {
    z-index: 1;
    min-height: 44px;
}

.select2-container--bootstrap-5 .select2-selection--single {
    padding: 13px 8px;
    background-position: right 10px center;
    background-size: 16px 12px;
    min-height: 44px;
    border: none;
    background-color: transparent;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #7E7E7E;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    min-height: 20px;
}

@media(max-width:1199px) {
    .platform_panel .content {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .platform_panel {
        padding: 0px;
        background-image: none;
    }

    .platform_panel img {
        display: block;
        width: 100%;
    }

    .platform_panel h2 {
        font-size: 35px;
        line-height: 1.1;
    }

    .platform_panel .content {
        padding: 25px;
    }
}

@media(max-width:991px) {
    .home_banner .left {
        text-align: center;
    }

    .home_banner .banner_content {
        padding: 30px 0px;
    }

    .content_icon_box {
        text-align: center;
    }

    .tabs__list {
        display: flex;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .tabs__list .tabs__link,
    .tabs__list .tabs__item {
        width: 100%;
    }

    .states_filter {
        margin-bottom: 30px;
        overflow-x: auto;
    }

    .states_filter a {
        font-size: 14px;
        margin-bottom: 10px;
        min-width: 130px;
        padding: 10px 5px;
    }

    .cta_red_banner .image {
        margin: 40px auto 0;
    }

    .footer_top p {
        padding-right: 0px;
    }

    .footer_bottom {
        padding-bottom: 40px;
    }
}

@media(max-width:767px) {
    .py_60 {
        padding: 50px 0;
    }

    .home_banner .banner_content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .home_banner .banner_content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .home_video_section h2,
    .reviews_testimonial h2 {
        font-size: 35px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .mySwiper {
        margin-top: 20px;
    }

    .title_with_link {
        display: block;
    }

    .title_with_link h2 {
        margin-bottom: 12px;
        font-size: 30px;
        line-height: 1.3;
    }

    .sm_title {
        font-size: 30px;
        line-height: 1.3;
    }

    .cta_red_banner {
        text-align: center;
    }

    .cta_red_banner h2 {
        font-size: 38px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .cta_red_banner .image {
        margin: 60px auto 0;
    }

    .footer_top {
        padding: 40px 0;
    }

    .inline_btns a {
        width: 100%;
        margin-top: 15px;
    }

    .platform_panel p {
        margin-bottom: 20px;
    }
}

.border-bottom-1 {
    border-bottom: 1px solid #D8D8D8;
}

.company_widget {
    border-bottom: 1px solid #D8D8D8;
    padding: 30px 0;
}

.company_widget .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.company_widget .top .left {
    position: relative;
    padding-left: 165px;
    min-height: 140px;
}

.company_widget .top img {
    max-width: 138px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.company_widget .top .left .list {
    display: flex;
    margin-bottom: 15px;
}

.company_widget .top .left .list span.score {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 4px 10px;
    background: var(--theme-color);
    border-radius: 6px;
    margin-right: 8px;
}

.company_widget .top .left .list span b {
    font-weight: 900;
}

.company_widget .top .left .list span.rating {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    padding: 6px 10px;
    color: #757575;
}

.company_widget .top .left .list span.rating b {
    font-weight: 600;
    color: #000;
}

.company_widget .top .left .list span.rating i {
    color: #F8BD1C;
}

.company_widget .top h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 29.05px;
    color: var(--theme-color);
    min-height: 50px;
}

.company_widget .top .left .location {
    color: #757575;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}

.company_widget .top .left .location svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4px;
}

.company_widget .top .right .buttons {
    display: flex;
    justify-content: space-around;
}

.company_widget .top .right .buttons .btn_quote {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: center;
    border: 2px solid #FD6553;
    color: #000;
    display: inline-block;
    width: 100%;
    padding: 9px 15px;
    min-width: 139px;
    border-radius: 6px;
    margin-right: 14px;
}

.company_widget .top .right .buttons .btn_profile {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: center;
    border: 2px solid #FD6553;
    background: var(--theme-color);
    display: inline-block;
    width: 100%;
    padding: 9px 15px;
    min-width: 139px;
    border-radius: 6px;
    color: #fff;
}

.company_widget .top .right .buttons .btn_quote:hover,
.company_widget .top .right .buttons a.btn_profile:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.company_widget .center {
    display: flex;
    justify-content: space-between;
}

.company_widget .center .left {
    width: 70%;
}

.company_widget .center .right {
    width: 30%;
}

.company_widget .center .left ul {
    background: #F3F3F3;
    display: flex;
    padding: 6px 14px;
    border-radius: 7px;
    align-items: center;
    justify-content: space-between;
}

.company_widget .center .left ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.36px;
    color: #757575;
}

.company_widget .center .left ul li img {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.company_widget .center .left ul li span.title {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #000;
}

.company_widget .center .left ul li i {
    color: #F8BD1C;
    margin-left: 8px;
}

.company_widget .center .left ul li b {
    font-weight: 500;
    color: #000;
}

.company_widget .content {
    margin-top: 10px;
}

.company_widget .center .response_time {
    background: #F5EAE9;
    padding: 10px 15px;
    margin-left: 35px;
    border-radius: 8px;
}

.company_widget .center .response_time .title {
    font-size: 14px;
    color: #757575;
}

.company_widget .center .response_time .title span {
    color: var(--theme-color);
}

.company_widget .center .response_time p {
    margin-bottom: 0;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 14.52px;
}

.company_widget .tags {
    margin-bottom: 15px;
}

.company_widget .content .tags a {
    background: #EFE3E1;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.94px;
    display: inline-block;
    padding: 10px 20px;
    margin-right: 5px;
    border-radius: 20px;
    color: #7E7E7E;
    margin-bottom: 15px;
}

.company_widget .content .tags a:hover {
    background: var(--theme-color);
    color: #fff;
}

.company_widget .content .chat_title {
    font-size: 16px;
    font-weight: 500;
    color: #757575;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-left: 28px;
    position: relative;
}

.company_widget .content .chat_title img {
    position: absolute;
    top: 0;
    left: 0;
}

.company_widget .content .chat_title a {
    color: var(--theme-color);
}

.company_widget .content h3 {
    color: #FD6553;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.company_widget .content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #757575;
    margin-bottom: 15px;
}

.company_widget .content .readmore_link {
    color: #FD6553;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}

.company_widget .content .readmore_link:hover {
    color: #000;
}

.company_widget .content .score_title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.company_widget .content .score_title:after {
    content: "";
    background: url(../img/info.png);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-bottom: 4px;
}

.company_widget .content ul li {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.company_widget .content ul li span b {
    font-weight: 600;
    margin-right: 10px;
}

.company_widget .content ul li div {
    width: 100%;
    height: 5px;
    background: #D9D9D9;
    max-width: 150px;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
}

.company_widget .content ul li div span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 5px;
    border-radius: 7px;
}

.postal_code ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
}

.postal_code ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    margin-bottom: 25px;
}

.postal_code ul li a:hover {
    color: var(--theme-color);
}

.postal_code {
    padding-top: 60px;
    padding-bottom: 50px;
}

.blog_list_section .liststyle_blog:nth-last-child(1) {
    margin-bottom: 0px;
}

.filter_tabs .total button {
    display: none;
}

@media (max-width: 1023px) {
    .filter_form {
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .filter_form .form_group {
        margin-right: 10px;
    }

    .filter_tabs ul li {
        padding-bottom: 20px;
    }

    .filter_tabs .total {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .company_widget .center {
        display: block;
    }

    .company_widget .center .left {
        width: 100%;
        margin-bottom: 20px;
    }

    .company_widget .center .right {
        width: 100%;
    }

    .company_widget .center .response_time {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .company_widget .content ul li {
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .filter_tabs {
        display: block;
        padding-bottom: 0;
        border-bottom: none;
    }

    .filter_tabs ul {
        display: flex;
        overflow-x: auto;
        margin-bottom: 25px;
        list-style-type: none;
        padding: 0;
        overflow-y: hidden;
        justify-content: space-between;
        border-bottom: 1px solid #D8D8D8;
    }

    .section_title_with_select .sorting_filter {
        display: none;
    }

    .filter_tabs .total {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filter_tabs .total button {
        border: none;
        background: var(--theme-color);
        padding: 7px 14px;
        border-radius: 5px;
        font-weight: 500;
        display: block;
        color: #fff;
    }

    .filter_by_company {
        display: none;
    }
}

@media (max-width: 767px) {
    .postal_code ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .company_widget .top {
        display: block;
        margin-bottom: 20px;
    }

    .company_widget .top .left {
        margin-bottom: 20px;
    }

    .company_widget .center .left ul li {
        text-align: center;
    }

    .company_widget .center .left ul li span {
        margin-top: 5px;
    }

    .company_widget .content ul li {
        margin-right: 10px;
        margin-bottom: 20px;
        font-size: 17px;
        width: 47%;
    }

    .postal_code {
        padding-top: 50px;
        padding-bottom: 35px;
    }

    .postal_code ul li a {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .liststyle_blog {
        display: block;
        margin-bottom: 30px;
    }

    .liststyle_blog .image {
        width: 100%;
        margin-bottom: 25px;
    }

    .liststyle_blog .content {
        width: 100%;
        padding-left: 0;
    }

    .page_banner {
        padding-top: 20px;
    }

    .section_title_with_select {
        display: block;
    }

    .section_title_with_select h2 {
        margin-bottom: 15px;
    }

    .mb_sm_0 {
        margin-bottom: 0px !important;
    }

    .filter_form {
        display: block;
        padding-bottom: 15px;
    }

    .filter_form .form_group {
        margin-right: 0;
        margin-bottom: 12px;
        background: #fff;
    }

    .filter_form button {
        width: 100%;
        background: var(--theme-color);
        color: #fff;
    }
}

@media (max-width: 600px) {
    .company_widget .top .left {
        padding-left: 0px;
        min-height: 140px;
    }

    .company_widget .top img {
        max-width: 100%;
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        border-radius: 10px;
        margin-bottom: 24px;
    }

    .company_widget .top h2 {
        min-height: 0;
    }

    .company_widget .center .left ul {
        display: block;
        padding: 12px 14px;
    }

    .company_widget .center .left ul li {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 11px;
        position: relative;
        padding-left: 25px;
    }

    .company_widget .center .left ul li:nth-child(1) {
        padding-left: 0px;
    }

    .company_widget .center .left ul li:nth-last-child(1) {
        margin-bottom: 0px;
    }

    .company_widget .center .left ul li img {
        width: 18px;
        height: 18px;
        margin-right: 0;
        position: absolute;
        top: 2px;
        left: 0;
    }

    .company_widget .content .tags a {
        margin-bottom: 10px;
    }

    .company_widget .content ul li {
        width: 100%;
    }

    .liststyle_blog .content h3 {
        font-size: 20px;
    }

    .liststyle_blog .content p {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {
    .postal_code ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.business_banner {
    position: relative;
    padding-left: 120px;
    margin-bottom: 40px;
}

.business_banner .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
}

.business_banner h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 51px;
    color: #000000;
}

.business_banner h1:after {
    content: "";
    background: url(../img/verified.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 28px;
    height: 28px;
    display: inline-block;
    margin-left: 10px;
}

.business_banner .rewiews i {
    color: #F8BD1C;
}

.business_banner .rewiews i.bg_light {
    color: #D9D9D9;
}

.business_banner .rewiews {
    font-size: 16px;
    color: #757575;
    margin-bottom: 15px;
}

.business_banner .rewiews span,
.business_banner .rewiews b {
    color: #000;
}

.business_banner .rewiews b {
    margin-left: 6px;
}

.business_banner .title {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.business_banner .time {
    font-size: 16px;
    color: #757575;
    margin-bottom: 25px;
}

.business_banner .time span {
    font-weight: 600;
    color: #34A853;
    margin-right: 5px;
}

.business_banner .time a {
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 600;
    background: #EAEAEA;
    border-radius: 4px;
    display: inline-block;
    padding: 0 10px;
    margin-left: 10px;
}

.business_banner .time a:hover {
    background: var(--theme-color);
    color: #fff;
}

.business_banner .btns_row a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 10px;
    min-width: 180px;
    text-align: center;
    border: 1px solid #D8D8D8;
    margin-right: 7px;
    margin-bottom: 10px;
}

.business_banner .btns_row a.btn_red {
    border-color: var(--theme-color);
}

.business_banner .btns_row a:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.business_banner .btns_row a img {
    vertical-align: text-bottom;
    margin-right: 7px;
    transition: filter 0.3s ease;
}

.business_banner .btns_row a.btn_transparent:hover img {
    filter: invert(1);
    transition: filter 0.3s ease;
}

.border_bottom_title {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.border_bottom_title h2 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
}

.content_fold p {
    font-size: 16px;
    line-height: 30px;
}

.content_fold p a {
    color: var(--theme-color);
}

.service_offer,
.border-top-1 {
    border-top: 1px solid #D8D8D8;
}

.h2_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #000;
}

.h2_title span {
    font-size: 16px;
    color: #7E7E7E;
    font-weight: 500;
    margin-left: 8px;
}

.h2_title i {
    color: var(--theme-color);
    font-size: 20px;
    margin-left: 2px;
    vertical-align: middle;
}

.so_list {
    font-size: 16px;
    color: #000;
    padding-bottom: 20px;
    display: block;
}

.so_list i {
    font-size: 14px;
    margin-left: 6px;
}

.so_list:hover {
    color: var(--theme-color);
}

.business_detail ul li {
    font-size: 16px;
    color: #000;
    padding-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.business_detail ul li i {
    position: absolute;
    top: 6px;
    left: 0px;
    color: var(--theme-color);
    width: 25px;
    text-align: center;
}

.location_map {
    position: relative;
    padding-top: 150px;
    margin-bottom: 25px;
}

.location_map iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.business_detail .link {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
}

.business_detail .link:hover {
    color: #000;
}

ul.score_list {
    max-width: 350px;
}

.score_list li {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.score_list li b {
    font-weight: 500;
    min-width: 135px;
}

.score_list li div {
    width: 100%;
    height: 5px;
    background: #D9D9D9;
    max-width: 150px;
    border-radius: 7px;
    margin: 0 15px;
    position: relative;
}

.score_list li div span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 5px;
    border-radius: 7px;
}

.content_fold .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--theme-color);
}

.content_fold .title i {
    margin-right: 5px;
}

.business_reviews {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

.business_reviews .tabs {
    background: #F3F3F3;
    border-radius: 6px;
    margin-bottom: 25px;
}

.business_reviews .tabs ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.36px;
    color: #757575;
    padding: 20px 20px;
    margin-right: 15px;
    cursor: pointer;
}

.business_reviews .tabs ul li.active {
    border-bottom: 3px solid var(--theme-color);
}

.business_reviews .tabs ul li span.title {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #000;
}

.business_reviews .tabs ul li i {
    color: #F8BD1C;
    margin-left: 8px;
}

.business_reviews .tabs ul li b {
    font-weight: 500;
    color: #000;
}

.business_reviews .tabs ul li img {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.sorting_select select+.select2-container--bootstrap-5 {
    background: #F3F3F3;
    border-radius: 6px;
    min-width: 250px;
}

.sorting_select select+.select2-container--bootstrap-5 span#select2--container {
    color: #000;
    font-size: 16px;
}

.all_review_data {
    padding: 40px 20px;
}

.all_review_data .title {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;
}

.all_review_data .title span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    padding: 6px 0;
}

.all_review_data .star {
    color: #F8BD1C;
}

.all_review_data small {
    display: block;
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    text-align: left;
    color: #7E7E7E;
    margin-top: 10px;
}

.all_review_data ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    margin-bottom: 12px;
}

.all_review_data ul li .bar {
    width: 351px;
    height: 6px;
    border-radius: 8px;
    position: relative;
    background: #F2F6FB;
    margin: 0 16px;
}

.all_review_data ul li .bar span {
    background: #F8BD1C;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 6px;
    border-radius: 8px;
}

.reviews_list {
    border-bottom: 1px solid #F8F7F4;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.reviews_list .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviews_list .top .date {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    margin-bottom: 5px;
    color: #7E7E7E;
}

.reviews_list .top .star {
    color: #F8BD1C;
    margin-bottom: 8px;
}

.reviews_list .top .name span {
    width: 36px;
    height: 36px;
    background: #fd65532b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    line-height: 36px;
    color: #FD6553;
    margin-right: 5px;
    text-transform: uppercase;
}

.reviews_list .top .name {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #000000;
}

.reviews_list .top .post_by {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align: right;
    display: block;
    color: #7E7E7E;
}

.reviews_list .top .post_by span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #000000;
    margin-top: 6px;
}

.reviews_list .top .post_by span img {
    margin-right: 5px;
    height: 24px;
}

.reviews_list p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    margin-bottom: 0;
}

.business_reviews .reviews_list:nth-last-child(1) {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

@media(max-width: 991px) {
    .business_banner {
        padding-left: 0px;
        margin-bottom: 40px;
    }

    .business_banner .image {
        position: relative;
        margin-bottom: 15px;
    }

    .business_banner .btns_row a {
        font-size: 14px;
        margin-right: 4px;
        margin-bottom: 10px;
        min-width: 48%;
    }

    .business_reviews {
        padding: 15px;
    }

    .business_reviews .tabs ul li {
        margin-right: 0;
        width: 49%;
        text-align: center;
        padding: 15px;
    }

    .business_reviews .tabs ul li span {
        display: block;
    }

    .sorting_select select+.select2-container--bootstrap-5 {
        min-width: 100%;
    }

    .all_review_data {
        padding: 40px 0px;
    }

    .all_review_data .title,
    .all_review_data .star,
    .all_review_data small {
        text-align: center;
        font-size: 14px;
    }

    .all_review_data ul {
        margin-top: 25px;
    }

    .all_review_data ul li .bar {
        width: 66%;
    }

    .company_widget .content ul li div {
        max-width: 100%;
    }
}

.category_banner .banner_content {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category_banner::before {
    content: "";
    background: linear-gradient(126.93deg, #FFF5F4 26.38%, #FFC6C0 91.03%);
    position: absolute;
    top: 116px;
    left: 0;
    width: 100%;
    height: 66%;
}

.category_banner .banner_content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.lead_form {
    position: relative;
    box-shadow: 0px 4px 50px 0px #0000000D;
    background: #fff;
    border: 2px solid var(--theme-color);
    border-radius: 20px;
    padding: 25px 30px;
}

.lead_form .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.lead_form .form_field {
    position: relative;
    margin-bottom: 18px;
}

.lead_form .form_field i {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.lead_form .form_field input {
    background: #FBF2F1;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26.63px;
    color: #000;
    padding: 0 18px;
    width: 100%;
}

.lead_form .form_field input::placeholder {
    color: #000;
}

.lead_form .call {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.01em;
    padding-left: 50px;
    margin-bottom: 20px;
}

.lead_form .call span {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.01em;
    display: block;
}

.lead_form .call i {
    position: absolute;
    top: 10px;
    left: 5px;
    transform: rotate(100deg);
    color: var(--theme-color);
    font-size: 30px;
}

.lead_form .sep {
    background: #D9D9D9;
    width: 80px;
    height: 1px;
    margin: 30px auto 25px;
}

.lead_form button {
    background: var(--theme-color);
    border: none;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 10px 0;
}

.lead_form button:hover,
.lead_form button:focus {
    background: #000;
    color: #fff;
}

.zipcode_search {
    position: relative;
    margin-top: 40px;
    max-width: 500px;
    padding-right: 110px;
}

.zipcode_search input {
    border: 1px solid #1E1E1E;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #7F7F7F;
    padding: 10px 16px 10px 50px;
    border-radius: 8px;
    width: 100%;
}

.zipcode_search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #969696;
    font-size: 21px;
}

.zipcode_search button {
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.2px;
    height: 54px;
    position: absolute;
    top: 0;
    right: 0;
}

.zipcode_search button:hover,
.zipcode_search button:focus {
    background: #000;
    color: #fff;
}

.section_title_with_select .subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
}

.section_title_with_select .subtitle svg {
    fill: var(--theme-color);
    color: var(--theme-color);
    margin-left: 5px;
}

.section_title_with_select .title h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.73px;
    text-align: left;
    margin-bottom: 8px;
}

.gray_contentbox {
    background: #EFE3E1;
    padding: 20px;
    border-radius: 6px;
}

.gray_contentbox h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
}

.gray_contentbox p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

@media(max-width:991px) {
    .category_banner {
        background: linear-gradient(126.93deg, #FFF5F4 26.38%, #FFC6C0 91.03%);
        padding: 40px 0;
    }

    .category_banner::before {
        display: none;
    }

    .category_banner .banner_content {
        min-height: auto;
        margin-bottom: 35px;
    }

    .zipcode_search {
        margin-top: 30px;
        max-width: 100%;
        padding-right: 110px;
    }

    .section_title_with_select .subtitle {
        margin-bottom: 20px;
    }

    .gray_contentbox p {
        font-size: 17px;
    }

    .category_banner .banner_content h1 {
        font-size: 35px;
        font-weight: 700;
        line-height: 1.2;
    }

    .lead_form {
        border-radius: 10px;
        padding: 20px 20px;
    }

    .lead_form .form_field input {
        font-size: 16px;
        padding: 0 15px;
    }

    .lead_form button {
        font-size: 20px;
    }
}

.blog_inner_banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 60px;
}

.blog_inner_banner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #FD655399;
}

.blog_inner_banner .content {
    position: relative;
    background: #fff;
    padding: 35px 35px 20px 35px;
}

.blog_inner_banner .content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 50.83px;
    color: #000;
}

.blog_inner_banner .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin-bottom: 25px;
}

.post_pubdetail {
    display: flex;
    align-items: center;
}

.post_pubdetail .author {
    position: relative;
    padding-left: 38px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    display: inline-block;
    margin-right: 30px;
}

.post_pubdetail .author small {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    display: block;
    margin-top: 3px;
}

.post_pubdetail .author img {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    position: absolute;
    top: 3px;
    left: 0;
}

.post_pubdetail .postdate {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: center;
    display: inline-block;
    background: #FD655333;
    padding: 12px 20px;
    border-radius: 6px;
}

.postcontent {
    padding: 35px 35px 40px 35px;
}

.postcontent h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.postcontent h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.postcontent h4,
.postcontent h5,
.postcontent h6 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.postcontent p {
    margin-bottom: 25px;
}

.postcontent ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 35px;
    padding-left: 0px;
}

.postcontent ol {
    list-style: decimal;
    margin-left: 1.5rem;
    margin-bottom: 35px;
    padding-left: 0px;
}

.postcontent li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.postcontent li b {
    font-weight: 700;
}

.blog_sidebar {
    position: sticky;
    padding-left: 32px;
    top: 100px;
    margin-bottom: 50px;
}

.blog_sidebar .toc {
    position: relative;
}

.blog_sidebar .toc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -32px;
    width: 1px;
    height: 100%;
    background: #D8D8D8;
}

.sidebar_widget {
    margin-bottom: 50px;
}

.sidebar_widget .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.sidebar_widget ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.sidebar_widget ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0px;
    width: 7px;
    height: 7px;
    background: var(--theme-color);
    border-radius: 50px;
}

.rblog .image {
    position: relative;
    padding-top: 80%;
}

.rblog .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.rblog .content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.rblog .content h3:hover a {
    color: var(--theme-color);
}

.rblog .content {
    padding-top: 20px;
}

.rblog .content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #757575;
    margin-bottom: 10px;
}

.rblog .content .rblog_btnlink svg {
    width: 36px;
    height: 35px;
    fill: #000;
    margin-left: -8px;
}

.rblog .content .rblog_btnlink:hover svg {
    fill: var(--theme-color);
}

.px_35 {
    padding-left: 35px;
    padding-right: 35px;
}

@media(max-width:767px) {
    .blog_inner_banner {
        padding-top: 40px;
    }

    .blog_inner_banner .content {
        padding: 20px;
    }

    .blog_inner_banner .content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .post_pubdetail {
        display: block;
    }

    .post_pubdetail .author {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .postcontent {
        padding: 20px;
    }

    .px_35 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.business_page_banner .content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.business_page_banner .content p {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    border-left: 3px solid var(--theme-color);
    padding-left: 30px;
    margin-bottom: 25px;
}

.business_page_banner .content ul li {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    padding-left: 35px;
    position: relative;
}

.business_page_banner .content ul li img {
    position: absolute;
    top: 2px;
    left: 0;
}

.select_bg_white span.select2-selection.select2-selection--single {
    background-color: #fff;
    border: 1px solid #1E1E1E;
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px #00000008;
    padding: 16px 15px;
    min-height: 50px;
}

.select_bg_gray span.select2-selection.select2-selection--single {
    background-color: #EFE3E1;
    border: 1px solid #C4C4C4;
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px #00000008;
    padding: 16px 15px;
    min-height: 50px;
}

.select_bg_white .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    font-weight: 400;
    color: #7E7E7E;
}

.estimate_form button {
    border: none;
}

.estimate_form {
    border-top: 1px solid #D8D8D8;
    padding-top: 40px;
    margin-top: 55px;
    padding-bottom: 60px;
}

.estimate_form h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-left: 42px;
}

.estimate_form h2 img {
    position: absolute;
    top: 2px;
    left: 0;
}

.estimate_form p {
    font-size: 16px;
    font-weight: 500;
    color: #757575;
}

.content_section {
    background: #fff;
    padding: 40px;
}

.content_section h2 {
    font-size: 28px;
    font-weight: 700;
}

.content_section .left p {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}

.content_section .left p a {
    color: var(--theme-color);
}

.content_section .left p a:hover {
    text-decoration: underline;
}

.content_section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 50px;
    line-height: 1.5;
}

.content_section .right h3:nth-child(1) {
    margin-top: 0px;
}

.content_section .right p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}

.content_section .right p:nth-last-child(1) {
    margin-bottom: 0px;
}

.find_location_section .title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.find_location_section h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.89px;
    width: 30%;
    margin-right: 10%;
    margin-bottom: 0;
}

.find_location_section h2 span {
    color: var(--theme-color);
}

.find_location_section p {
    font-size: 15px;
    line-height: 24px;
    width: 60%;
    margin-bottom: 0;
}

.find_location_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.find_location_form .form-control {
    background-color: #fff;
    border: 1px solid #1E1E1E;
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px #00000008;
    padding: 13px 15px;
    min-height: 50px;
    color: #000;
}

.find_location_form .form-group {
    position: relative;
    width: 70%;
    margin-right: 2%;
}

.find_location_form .form-group i {
    position: absolute;
    color: var(--theme-color);
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 20px;
}

.find_location_form input[type="text"] {
    padding-left: 40px;
}

.find_location_form span.select2-selection.select2-selection--single {
    background-color: #fff;
    border: 1px solid #1E1E1E;
    border-radius: 8px;
    box-shadow: 0px 2px 4px 0px #00000008;
    padding: 16px 15px;
    min-height: 50px;
    color: #000;
}

.find_location_form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    font-weight: 400;
    color: #7E7E7E;
}

.find_location_form .btn_find {
    background: var(--theme-color);
    color: #fff;
    border: none;
    width: 10%;
    height: 50px;
    border-radius: 8px;
    font-size: 18px;
}

.find_location_form .btn_find:hover,
.find_location_form .btn_find:focus {
    background: #000;
    color: #fff;
}

.find_location_section .subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    margin-bottom: 30px;
}

.find_location_section .subtitle a {
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
    margin-left: 5px;
}

.location_grid {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.location_grid .image {
    position: relative;
    padding-top: 65.2%;
}

.location_grid .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.location_grid .content {
    padding-top: 20px;
}

.location_grid .content .location_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    margin-bottom: 15px;
}

.location_grid .content .rating i {
    color: #F8BD1C;
}

.location_grid .content .rating i.gray {
    color: #D9D9D9;
}

.location_grid .content .rating {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #757575;
    margin-bottom: 15px;
}

.location_grid .content .rating b {
    color: #000;
    margin-left: 5px;
}

.location_grid .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #757575;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}

.location_grid .content p b {
    color: var(--theme-color);
}

.location_grid .content .btn_sm {
    width: 100%;
    margin-top: 12px;
}

.bg_dark_gray {
    background: #F0F0F0;
}

@media(max-width:991px) {
    .find_location_section .title {
        display: block;
    }

    .find_location_section h2 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .find_location_section p {
        width: 100%;
    }
}

@media(max-width:767px) {
    .business_page_banner .content h1 {
        font-size: 32px;
    }

    .business_page_banner .content p {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .estimate_form {
        padding-top: 40px;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .estimate_form h2 {
        font-size: 28px;
    }

    .estimate_form h2 img {
        top: 0px;
    }

    .estimate_form p {
        margin-bottom: 20px;
        line-height: 30px;
    }

    .content_section {
        padding: 25px;
    }

    .content_section h3 {
        margin-top: 35px;
    }

    .find_location_form {
        display: block;
        position: relative;
    }

    .find_location_form .form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 18px;
    }

    .find_location_form .form-group:nth-child(2) {
        max-width: 80%;
    }

    .find_location_form .btn_find {
        width: 16%;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .location_grid {
        padding: 10px;
    }

    .location_grid .content .location_title {
        line-height: 1.6;
    }
}