@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); 

:root {
    --white: #ffffff;
    --black-1: #000000;
    --black-2: #1A1A1D;
    --theme-1: #F37321;
    --open-sans: 'Open Sans', sans-serif;
    --inter: 'Inter', sans-serif;
    --poppins: 'Poppins', sans-serif;
}

*, ::before, ::after {
    box-sizing: border-box;
}

*:focus-visible {
    outline: none !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: var(--open-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--black-2);
    background-color: var(--white);
    text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--black-2);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin: 0px;
}

small {
    font-size: 0.875rem;
}

strong {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:focus-visible {
    outline: none;
}

a:focus,
a:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}


ul, ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

li {
    margin: 0px;
    padding: 0px;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, textarea, select, button {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: var(--light-red);
    opacity: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem;
    text-align: left;
}

.mt-40 {
    margin-top: 40px;
}

.section-padding {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 64px 0px;
    }
}

/* ========================================
   Header Style
======================================== */

.fr-main-header .header-top .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fr-main-header .header-top .inner p {
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.fr-main-header .header-top {
    padding: 8px 0px;
    background: var(--black-2);
}

.fr-main-header .header-top .contact-area img {
    background: var(--theme-1);
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.fr-main-header .header-top .contact-area a {
    color: rgb(255, 255, 255) !important;
}

.fr-main-header .header-top .contact-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.page-template-homepage .fr-main-header {
    position: absolute;
	background: rgba(18, 19, 21, 0.5) !important;
}

.fr-main-header {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    position: relative;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 19, 21, 0.5) !important;
    backdrop-filter: blur(17px);
    top: 0;
}

.menu-container {
    max-width: 1040px;
}

.fr-main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0px;
    gap: 15px;
    margin-top: 0;
}

.fr-main-header .logo {
    display: flex;
    align-items: center;
}

.fr-main-header .logo img {
    height: 100%;
    width: 100%;
    max-width: 150px;
}

.fr-main-header .logo-text {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    background-color: rgb(51, 51, 51);
    padding: 8px 12px;
    border: 2px solid rgb(255, 102, 0);
}

.fr-main-header .mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.fr-main-header .mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 4px 0px;
    transition: 0.3s;
}

.fr-main-header .mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    position: absolute;
    top: -6px;
}

.fr-main-header .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.fr-main-header .mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.fr-main-header .main-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.fr-main-header .main-nav > li {
    position: relative;
}

.fr-main-header .main-nav > li > a {
    position: relative;
    color: rgb(254, 248, 244) !important;
    text-decoration: none;
    padding: 10px 13px;
    display: block;
    font-size: 16px;
}

.fr-main-header .main-nav > li > a svg {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0px;
    top: 50%;
    bottom: 50%;
    transform: translate(50%, -50%);
}

.fr-main-header .main-nav > li > a > svg path {
    stroke: rgb(255, 255, 255);
    margin-left: 5px;
}

.contact-btn {
    background-color: var(--black-2);
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: 0;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-btn:hover {
    background-color: var(--theme-1);
    color: var(--white);
}


.fr-main-header .has-submenu {
    position: relative;
}

/* Add dropdown indicator for submenu items */
.fr-main-header .has-submenu > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgb(254, 248, 244);
    transition: transform 0.3s;
}

/* Rotate arrow when submenu is active (mobile) */
.fr-main-header .has-submenu.active > a::after {
    transform: rotate(180deg);
}

.fr-main-header .submenu {
    position: absolute;
    top: 126%;
    left: 0px;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: 998;
}

.fr-main-header .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.fr-main-header .submenu li {
    border-bottom: 1px solid rgb(240, 240, 240);
}

.fr-main-header .submenu li:last-child {
    border-bottom: none;
}

.fr-main-header .submenu li a {
    color: rgb(51, 51, 51) !important;
    padding: 12px 20px;
    display: block;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.fr-main-header .submenu li a:hover {
    background-color: rgb(245, 245, 245);
    padding-left: 25px;
    color: rgb(0, 0, 0);
}

.fr-main-header .mega-menu {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 100%;
    background-color: white;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: 999;
}

.fr-main-header .has-mega-menu {
    position: static;
}

/* Add dropdown indicator for mega menu items */
.fr-main-header .has-mega-menu > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgb(254, 248, 244);
    transition: transform 0.3s;
    position: absolute;
    top: 21px;
}

/* Rotate arrow when mega menu is active (mobile) */
.fr-main-header .has-mega-menu.active > a::after {
    transform: rotate(180deg);
}

.fr-main-header .has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.fr-main-header .mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 20px;
    gap: 30px;
    max-width: 1320px;
    margin: 0px auto;
}
.fr-main-header .mega-menu-content.mega-menu-cols-8 {
    grid-template-columns: repeat(8, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-7 {
    grid-template-columns: repeat(7, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-6 {
    grid-template-columns: repeat(7, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.fr-main-header .mega-menu-content.mega-menu-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 768px) {
    .fr-main-header .mega-menu-content {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.fr-main-header .mega-column h3 {
    color: rgb(51, 51, 51);
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(240, 240, 240);
}

.fr-main-header .mega-column ul {
    list-style: none;
}

.fr-main-header .mega-column ul li {
    margin-bottom: 8px;
}

.fr-main-header .mega-column ul li a {
    color: rgb(102, 103, 104) !important;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    padding: 5px 0px;
}

.fr-main-header .mega-column ul li a:hover {
    color: var(--white);
    background-color: rgb(245, 245, 245);
    padding-left: 8px;
}

.fr-main-header .tagline {
    background-color: rgb(254, 238, 227);
    text-align: center;
    padding: 12px;
}

.fr-main-header .tagline p {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
}

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

.fr-main-header .main-nav > li > a{
    padding: 5px 10px;
    font-size: 14px;
}

}

@media screen and (max-width: 1199px) {
    .fr-main-header .mega-menu-content {
        gap: 20px;
        padding: 20px 15px;
    }

    .fr-main-header .header-top {
        padding: 12px 0px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .fr-main-header .header-top .inner {
        flex-flow: column wrap;
        gap: 5px;
    }

    .fr-main-header .mobile-toggle {
        display: flex;
        z-index: 1001;
        margin-left: 0;
    }

    .fr-main-header .mobile-toggle.active {
        margin-left: 0px;
        margin-top: 0;
        position: absolute;
        top: -40px;
        left: auto;
        right: -10px;
        /* transform: translate(50%, -50%); */
        padding-top: 0;
    }

    .fr-main-header .menu-container {
        position: fixed;
        left: -100%;
        top: 0px;
        flex-direction: column;
        background-color: rgb(102, 102, 102);
        width: 90%;
        height: 100vh;
        padding: 0 0px 20px;
        transition: left 0.3s;
        overflow-y: auto;
        align-items: stretch;
        gap: 0px;
        z-index: 2;
    }
    .fr-main-header .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .fr-main-header .menu-container.active {
        left: 0px;
    }

    .fr-main-header .main-nav > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .fr-main-header .main-nav > li > a {
        padding: 15px 20px;
        font-size: 16px;
    }

    /* Position dropdown arrows on mobile */
    .fr-main-header .has-submenu > a::after,
    .fr-main-header .has-mega-menu > a::after {
        position: absolute;
        right: 20px;
        margin-left: 0;
		top: 50%;
    }

    .fr-main-header .has-mega-menu {
        position: relative;
    }

    .fr-main-header .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0px;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .fr-main-header .has-mega-menu.active .mega-menu {
        max-height: 100%;
    }

    .fr-main-header .main-nav > li > a svg {
        right: 40px;
    }

    .fr-main-header .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 0px;
        gap: 0px;
        background-color: rgb(85, 85, 85);
    }

    .fr-main-header .mega-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    .fr-main-header .mega-column h3 {
        color: white;
        font-size: 14px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 8px;
    }

    .fr-main-header .mega-column ul li a {
        color: rgb(221, 221, 221) !important;
        padding: 8px 0px;
        font-size: 14px;
    }

    .fr-main-header .mega-column ul li a:hover {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .fr-main-header .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: max-height 0.3s;
        background-color: rgb(85, 85, 85);
    }

    .fr-main-header .has-submenu.active .submenu {
        max-height: 500px;
    }

    .fr-main-header .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fr-main-header .submenu li a {
        color: rgb(221, 221, 221) !important;
        padding: 12px 20px 12px 35px;
        font-size: 14px;
    }

    .fr-main-header .submenu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        padding-left: 40px;
    }

    .fr-main-header .main-nav::before {
        content: "";
        position: fixed;
        top: 0px;
        right: 0px;
        width: 0px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s, width 0.3s;
        pointer-events: none;
    }

    .fr-main-header .main-nav.active::before {
        width: 100vw;
        opacity: 1;
        transition: opacity 0.3s;
        pointer-events: auto;
    }
    .fr-main-header .main-nav {
        width: 100%;
    }
}

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


    .tagline p {
        font-size: 12px;
    }
}
.fr-pagination-wrapper {
    display: flex;
    justify-content: space-between;
}

/* ========================================
   Footer Style
======================================== */

.main-footer {
    background: rgb(26, 26, 29);
    padding: 80px 80px 200px;
    position: relative;
    overflow: hidden;
}

.main-footer .logo img {
    max-width: 188px;
    width: 100%;
}

.footer-left-area .contact-1 li {
    color: rgb(179, 179, 180);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 20px;
    transition: 500ms;
}

.footer-left-area .contact-1 li:hover a{
    color: var(--white);
}

.footer-left-area .contact-1 li:last-child {
    border-bottom: 1px solid rgb(51, 52, 54);
    margin-bottom: 0px;
    padding-bottom: 16px;
}

.footer-left-area .contact-2 li {
    color: rgb(179, 179, 180);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 20px;
    transition: 500ms;
}

.footer-left-area .contact-1 li a, .footer-left-area .contact-2 li a{
    transition: 500ms;
}

.footer-left-area .contact-1 li:hover a, .footer-left-area .contact-2 li:hover a{
    color: var(--white);
    padding-left: 5px;
}

.footer-left-area .contact-2 li:first-child {
    padding-top: 20px;
}

.footer-left-area .contact-2 li:last-child {
    margin-bottom: 0px;
    padding-bottom: 20px;
}

.footer-left-area .contact-3 {
    display: flex;
    align-items: center;
    gap: 21px;
}

.footer-left-area .contact-3 img {
    width: 32px;
    height: 32px;
}

.footer-links h4 {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 28px;
    margin-bottom: 24px;
}

.footer-links h4::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 86px;
    height: 3px;
    background: rgb(51, 52, 54);
}

.footer-links ul li {
    color: rgb(179, 179, 180);
    font-size: 20px;
    margin-bottom: 16px;
    transition: 500ms;
}

.footer-links ul li a{
    transition: 500ms;
}

.footer-links ul li:hover a{
    color: var(--white);
    padding-left: 5px;
}

.footer-links ul li:last-child {
    margin-bottom: 0px;
}

.footer-links p {
    color: rgb(179, 179, 180);
    font-size: 20px;
    line-height: 1.8;
}

.footer-left-area {
    padding-right: 110px;
}

.footer-right-area {
    padding-left: 40px;
}

.footer-bottom p {
    font-size: 144px;
    line-height: normal;
    font-weight: 700;
    color: rgb(51, 52, 54);
    text-align: center;
    margin-top: 62px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

.footer-bottom img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 125px;
}

.footer-left-area ul.contact-1 {
    margin-top: 40px;
}

/* update */

.footer-copyright-wrapper p {
    color: #B3B3B4;
    font-size: 20px;
}

.footer-copyright-wrapper .copyright {
    margin-top: 24px;
}

.footer-copyright-wrapper {
    border-top: 1px solid #333436;
    margin-top: 64px;
    padding-top: 24px;
}

.footer-copyright-wrapper .copyright a{
	color: var(--white);
}

.footer-copyright-wrapper .copyright a:hover {
    color: var(--theme-1);
}

.footer-left-area a.logo {
    display: inline-block;
}

@media screen and (max-width: 1440px) {
    .main-footer {
        padding: 60px 40px 150px;
    }

    .footer-left-area {
        padding-right: 0px;
        margin-bottom: 40px;
    }

    .footer-right-area {
        padding-left: 0px;
    }

    .footer-bottom p {
        font-size: 100px;
        bottom: 0px;
    }

    .footer-bottom img {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 70px;
    }

    .footer-bottom p {
        font-size: 38px;
        margin-top: 26px;
    }

    .footer-bottom img {
        height: auto;
    }
}

@media screen and (max-width: 425px) {
    .fr-main-header .header-top .contact-area a, .fr-main-header .header-top .inner p {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 32px;
    }

    .footer-left-area .logo img {
        max-width: 140px;
    }

    .footer-bottom img {
        height: auto;
    }
	
	.footer-copyright-wrapper br{
		display: none;
	}
	
	.footer-copyright-wrapper{
		margin-top: 44px;
	}
	
	.footer-left-area ul.contact-1 {
		margin-top: 20px;
	}

}


/* ========================================
   Hero Section Style
======================================== */

.fr-hero-section {
    position: relative;
}

.fr-hero-wrapper {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 290px 0px 100px;
}

.fr-hero-wrapper .lines {
    position: absolute;
    inset: 0px;
}

.fr-hero-wrapper::before {
    background: linear-gradient(rgba(255, 255, 255, 0) -1.94%, rgba(0, 0, 0, 0.65) 59.6%);
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fr-hero-section .lines img {
    width: 100%;
    height: 100%;
}

.fr-hero-content {
    position: relative;
}

.fr-hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -1.44px;
    color: var(--white);
    margin-bottom: 40px;
    margin-top: 20px;
}

.fr-hero-content h1 span {
    font-style: italic;
    color: var(--theme-1);
}

.theme-btn {
    position: relative;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    background: var(--theme-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.theme-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--black-2);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s;
    z-index: -1;
}

.theme-btn:hover::before {
    transform: scaleX(1);
}

.theme-btn svg {
    transition: transform 0.3s;
}

.theme-btn:hover {
    color: var(--white);
}
.theme-btn:hover svg {
    transform: rotate(45deg);
}

.fr-hero-content .hero-logo {
    float: inherit;
    width: 100%;
    max-width: 548px;
    margin: 48px 0 0 0;
}

.fr-hero-img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.fr-hero-img .image-box .man {
    width: 344px;
    height: 312px;
    border-radius: 889px;
    border: 4px solid var(--theme-1);
    box-shadow: rgba(255, 255, 255, 0.39) 0px 50px 100px 0px;
}

.video-btn-box .video-btn {
    width: 88px;
    height: 88px;
    background: var(--theme-1);
    color: var(--white);
    position: absolute;
    bottom: 140px;
    right: -10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    transition: 500ms ease-in-out;
}

.video-btn-box .video-btn:hover {
    background: var(--black-2);
    transform: scale(1.1);
}

.fr-hero-img p {
    padding: 22px 24px;
    margin-top: 48px;
    background: rgba(17, 16, 16, 0.7);
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 30px;
    max-width: 540px;
    margin-left: auto;
}

.fr-hero-img .image-box .star {
    position: absolute;
    top: -5px;
    right: 225px;
}

.hero-array-button {
    margin-top: 0px;
    position: absolute;
    bottom: 40px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.hero-array-button .swiper-pagination-bullet {
    position: relative;
    width: 20px;
    height: 4px;
    background: rgb(77, 77, 79);
    opacity: 1;
    border-radius: 4px;
}

.hero-array-button .swiper-pagination-bullet-active {
    position: relative;
    background: rgb(255, 255, 255);
}

.hero-logo-block {
    display: flex;
    max-width: 550px;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-logo-block a {
    display: inline-block;
    overflow: hidden;
    transition: transform 0.35s ease;
    will-change: transform;
}

.hero-logo-block img {
    width: 100%;
    max-width: 115px;
    height: auto;
    transition: transform 0.35s ease;
    will-change: transform;
}

/* Hover Scale Effect */
.hero-logo-block a:hover img {
    transform: scale(1.08);
}

.hero-logo-block img:hover {
    transform: scale(1.08);
}

/* ===== Responsive Adjustments ===== */

/* Large Tablet */
@media (max-width: 992px) {
    .hero-logo-block {
        margin-top: 32px;
        gap: 14px;
    }

    .hero-logo-block img {
        max-width: 95px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-logo-block {
        justify-content: center;
        max-width: 100%;
    }

    .hero-logo-block img {
        max-width: 85px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-logo-block {
        gap: 12px;
    }

    .hero-logo-block img {
        max-width: 70px;
    }
}




@media screen and (max-width: 991px) {
    .fr-hero-content h1 {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 24px;
    }

    .fr-hero-img {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .fr-hero-img p {
        margin-top: 0px;
        font-size: 14px;
        line-height: 20px;
        padding: 8px;
    }

    .fr-hero-img .image-box .star {
        top: 125px;
    }

    .video-btn-box .video-btn {
        bottom: 0px;
    }
}

@media screen and (max-width: 425px) {
    .fr-hero-wrapper {
        padding: 216px 0px 48px;
    }

     .fr-hero-img .image-box .man {
        width: 143px;
        height: 115px;
        border: 1px solid var(--theme-1);
        border-radius: 208.139px;
    }

    .fr-hero-img .image-box .star {
        top: 70px;
        right: 100px;
        width: 7%;
    }

    .video-btn-box .video-btn {
        bottom: -15px;
        right: 0px;
        width: 64px;
        height: 64px;
        font-size: 14px;
        line-height: 18px;
    }
}

.title-area h4 {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-size: 20px;
/* 	font-weight: 700; */
    padding-bottom: 16px;
}

.title-area h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
}

.title-area {
    margin-bottom: 48px;
}

/* ========================================
   Sophisticated Section Style
======================================== */

.sophisticated-content-wrapper .title-area h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

.sophisticated-content-wrapper .video-area {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.sophisticated-content-wrapper .video-area .img-box img {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    border: 4px solid var(--theme-1);
}

.sophisticated-content-wrapper .video-area .inner {
    position: relative;
    flex: 0 0 37%;
}

.sophisticated-content-wrapper .video-area .inner .video-btn-box .video-btn {
    bottom: 0px;
    right: -20px;
    width: 68px;
    height: 68px;
    font-size: 14px;
    line-height: 20px;
}

.sophisticated-content-wrapper .video-area p {
    font-size: 20px;
    line-height: 30px;
}

.sophisticated-content-wrapper {
    padding: 0px 85px 0px 80px;
}

.theme-btn.two {
    background: var(--white);
    border: 1px solid var(--theme-1);
    color: var(--theme-1);
}

.theme-btn.two:hover{
    border: 1px solid var(--black-2);
}

.sophisticated-content-wrapper .btn-area {
    display: inline-flex;
    gap: 8px;
}

.sophisticated-slider-wrapper .slider-wrapper {
    width: 455px;
    height: 100%;
    margin: 0px auto 0px 50px;
}

.sophisticated-slider-wrapper .swiper {
    width: 100%;
    height: 100%;
}

.sophisticated-slider-wrapper .swiper-slide {
    background: rgb(255, 255, 255);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3.801px 9.598px 0px;
}

.sophisticated-slider-wrapper .swiper-slide a {
    border: 12px solid rgb(255, 255, 255);
    overflow: hidden;
}

.sophisticated-slider-wrapper .swiper-slide img {
    width: 430px;
    height: 498px;
    object-fit: cover;
}

.sophisticated-mapping {
    position: relative;
    overflow: hidden;
}

.sophisticated-mapping::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to right, rgb(254, 248, 244) 0%, rgb(254, 248, 244) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
    z-index: 0;
}

.sophisticated-mapping .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .sophisticated-slider-wrapper .slider-wrapper {
        width: 400px;
        margin: 0px auto 0px 30px;
    }

    .sophisticated-content-wrapper {
        padding: 0px 0px 0px 80px;
    }
}

@media (max-width: 1199px) {
    .sophisticated-slider-wrapper .slider-wrapper {
        width: 300px;
        margin: 0px auto;
    }

    .sophisticated-content-wrapper {
        padding: 0px 0px 0px 20px;
    }

    .sophisticated-slider-wrapper .swiper-slide img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .sophisticated-mapping::before {
        background: linear-gradient(rgb(254, 248, 244) 0%, rgb(254, 248, 244) 41%, rgb(255, 255, 255) 41%, rgb(255, 255, 255) 100%);
    }

    .sophisticated-content-wrapper {
        padding: 100px 0px 0px;
        text-align: center;
    }

    .sophisticated-slider-wrapper .slider-wrapper {
        max-width: 270px;
    }

    .sophisticated-content-wrapper .video-area .inner {
        position: relative;
        flex: 0 0 27%;
    }

    .sophisticated-content-wrapper .btn-area {
        flex-direction: column;
    }

    .sophisticated-content-wrapper .title-area h4 {
        justify-content: center;
    }

    .sophisticated-content-wrapper .video-area {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .title-area {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .sophisticated-mapping::before {
        background: linear-gradient(rgb(254, 248, 244) 0%, rgb(254, 248, 244) 39%, rgb(255, 255, 255) 39%, rgb(255, 255, 255) 100%);
    }

    .title-area h2, .sophisticated-content-wrapper .title-area h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .title-area h4 {
        font-size: 16px;
        gap: 6px;
        padding-bottom: 8px;
    }
}

@media (max-width: 425px) {
    .sophisticated-mapping::before {
        background: linear-gradient(rgb(254, 248, 244) 0%, rgb(254, 248, 244) 38%, rgb(255, 255, 255) 38%, rgb(255, 255, 255) 100%);
    }
}


/* ========================================
   Glowing Review Slider Style
======================================== */

.glowing-reviews-section {
    background: rgb(245, 246, 252);
    overflow-x: hidden;
}

.glowing-reviews-section .title-area {
    text-align: center;
}

.glowing-reviews-section .title-area h4 {
    justify-content: center;
}

.glowing-box-1 .inner {
    padding: 16px 18px 20px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    /* gap: clamp(32px, 26vw, 195px); */
	min-height: 429px;
}

.glowing-box-1 {
    padding: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glowing-box-1 .inner h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
}

.glowing-box-1 .inner h5 {
    font-size: 16px;
    border-top: 1px solid rgb(230, 230, 230);
    padding-top: 16px;
}

.glowing-box-2 .inner,
.glowing-box-3 .inner {
    padding: 24px;
    position: relative;
}

.glowing-box-2 .inner img,
.glowing-box-3 .inner img {
    width: 100%;
    height: 100%;
}

.glowing-box-2 .inner .video-btn,
.glowing-box-3 .inner .video-btn {
    bottom: 44px;
    right: 44px;
}

.glowing-slider {
    margin-right: -425px;
}

.glowing-array-button {
    gap: 16px;
    margin-top: 32px;
}

.glowing-array-button svg {
    width: 20px;
}

.glowing-array-button button {
    padding: 12px;
    border: 1px solid rgb(51, 52, 54);
    transition: 500ms;
}

.glowing-array-button button:hover {
    background: var(--theme-1);
    border: 1px solid var(--theme-1);
}

.glowing-array-button button:hover svg path {
    fill: var(--white);
}

/* Main wrapper: align box + slider side-by-side */
.gr-main-wrapper-area {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Left box (video / glowing box) */
.glowing-box-3 {
    position: static;
    max-width: 415px;
    width: 100%;
    flex: 0 0 415px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Right side slider */
.glowing-review-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}
/* Tablet & below: stack */
@media (max-width: 991px) {
    .gr-main-wrapper-area {
		display: block
        /* flex-direction: column; */
    }

    .glowing-box-3 {
        max-width: 100%;
        flex: 0 0 auto;
		margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .glowing-slider {
        margin-right: inherit;
    }

}

.expertise-box-wrapper {
    background: var(--black-1);
}

.expertise-box-wrapper .image-box img {
    width: 100%;
    height: 100%;
}

.expertise-box-wrapper .content-area {
    padding: 24px;
}

.expertise-box-wrapper .content-area h3 {
    font-size: 32px;
    line-height: 42px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 48px;
}

.theme-btn.three {
    background: var(--black-2);
    border: 1px solid rgb(128, 128, 130);
}

.expertise-section .big-text {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 128px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgb(230, 230, 230);
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .expertise-section .title-area h2 br {
        display: none;
    }

    .expertise-section .big-text {
        font-size: 52px;
        top: 0px;
        right: 5px;
    }
}

@media (max-width: 767px) {
    .expertise-box-wrapper .content-area h3 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 32px;
    }
	
	.glowing-box-1 .inner{
		min-height: 355px;
	}
	
	.expertise-box-wrapper .image-box img{
		height: 200px;
	}

	.expertise-box-wrapper {
		height: 420px;
		display: flex;
		align-content: center;
		justify-content:space-between;
		flex-direction: column;
	}
}


/* ========================================
   Fortified Rating Slider Style
======================================== */

.fortified-rating-section {
    padding-top: 80px;
    background: linear-gradient(rgb(254, 248, 244) 0%, rgb(255, 255, 255) 100%), -509.671px -108.558px / 158.872% 137.921% no-repeat lightgray;
    overflow: hidden;
}

.fortified-rating-section .big-text .text-1 {
    color: rgba(244, 141, 75, 0.2);
    text-align: center;
    font-family: var(--poppins);
    font-size: 244px;
    font-style: normal;
    font-weight: 600;
    line-height: 215px;
    display: block;
}

.fortified-rating-section .big-text .text-2 {
    text-align: center;
    font-family: var(--poppins);
    font-size: 354px;
    font-style: normal;
    font-weight: 600;
    line-height: 440px;
    background: linear-gradient(rgb(252, 232, 221) 19.22%, rgb(254, 250, 246) 91.24%) text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: -70px;
}

.fortified-rating-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 80px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.fortified-rating-wrapper .rating-box .inner .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -12px;
    width: 2px;
    height: 24px;
    background: #FEF8F4;
}

.fortified-rating-section .container {
    position: relative;
}

.fortified-rating-wrapper .rating-box {
    background: rgb(255, 255, 255);
    box-shadow: rgba(203, 203, 203, 0.47) 0px 5px 15px 0px;
    padding: 24px;
}

.fortified-rating-wrapper .rating-box p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.fortified-rating-wrapper .rating-box .text-3 {
    font-weight: 600;
    margin-top: 8px;
}

.fortified-rating-wrapper .rating-box .text-3 span {
    color: var(--theme-1);
}

.fortified-rating-wrapper .rating-box .inner {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.fortified-rating-wrapper .rating-box .inner .box {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.fortified-rating-wrapper .rating-box .inner .box h5 {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.estimate-btn-box a {
    width: 180px;
    height: 180px;
    background: var(--theme-1);
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 50%;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 300ms;
}

.estimate-btn-box a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black-2);
    transition: transform 400ms;
    transform: translateX(0px);
    z-index: -1;
}

.estimate-btn-box a:hover::before {
    transform: translateX(100%);
}

.fortified-slider-wrapper .image-box img {
    width: 100%;
    max-width: 1115px;
    height: 700px;
    margin: 0px auto;
}

.fortified-array-button {
    position: absolute;
    bottom: 18px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.fortified-array-button .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: rgb(77, 77, 79);
    opacity: 1;
}

.fortified-array-button .swiper-pagination-bullet-active {
    background: rgb(255, 255, 255);
}

.fortified-rating-section .big-text {
    margin-bottom: -260px;
}

.fortified-slider-wrapper .image-box {
    position: relative;
}

.fortified-slider-wrapper .image-box::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 130px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}

@media (max-width: 1399px) {
    .fortified-rating-section .big-text .text-1 {
        font-size: 200px;
        line-height: 180px;
    }

    .fortified-rating-section .big-text .text-2 {
        font-size: 280px;
        line-height: 350px;
        margin-top: -50px;
    }
}

@media (max-width: 1199px) {
    .fortified-rating-section .big-text .text-1 {
        font-size: 150px;
        line-height: 130px;
    }

    .fortified-rating-section .big-text .text-2 {
        font-size: 220px;
        line-height: 300px;
    }

    .fortified-slider-wrapper .image-box img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .fortified-rating-section .big-text .text-1 {
        font-size: 58px;
        line-height: 58px;
    }

    .fortified-rating-section .big-text .text-2 {
        font-size: 84px;
        line-height: 84px;
        margin-top: 0px;
    }

    .fortified-slider-wrapper .image-box img {
        height: 200px;
    }

    .fortified-rating-wrapper .rating-box {
        padding: 18px;
    }

    .fortified-rating-section .big-text {
        margin-bottom: 0px;
    }

    .fortified-rating-wrapper .rating-box p {
        font-size: 14px;
        line-height: 22px;
    }

    .fortified-rating-wrapper .rating-box .text-3 {
        margin-top: 0px;
    }

    .fortified-rating-wrapper .rating-box .inner {
        margin-top: 12px;
        gap: 24px;
    }

    .estimate-btn-box a {
        width: 136px;
        height: 136px;
        font-size: 14px;
    }

    .fortified-rating-section {
        padding-top: 40px;
        padding-bottom: 220px;
        background: rgb(254, 248, 244);
    }

    .fortified-rating-wrapper {
        align-items: end;
        flex-direction: column-reverse;
        gap: 250px;
        right: 18px;
        bottom: -175px;
    }
	
	.fortified-slider-wrapper{
		position: relative;
		z-index: 2;
	}
}

/* ========================================
   Advantages Section Style
======================================== */

.advantages-section {
    background: rgb(245, 246, 252);
}

.advantage-box {
    background: rgb(255, 255, 255);
    padding: 24px;
   	min-height: 285px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.advantage-box h4 {
    font-size: 28px;
    line-height: 36px;
    padding: 40px 0px 16px;
}

.advantage-box img {
    width: 64px;
    height: 64px;
}

@media (max-width: 767px) {
    .title-area h2 br {
        display: none;
    }

    .g-rev-item,
    .advantage-item {
        display: none;
    }

    .advantage-box {
        padding: 20px;
		min-height: 250px;
		justify-content: center;
    }

    .advantage-box h4 {
        padding: 16px 0px 8px;
    }
}

/* ========================================
   Location Search Style
======================================== */

.fr-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.fr-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.fr-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 470px;
    height: 56px;
    margin: 32px auto;
    background: rgb(245, 246, 252);
    position: relative;
}

.fr-search-wrap, .fr-category-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.fr-search-wrap input {
    height: 100%;
    width: 300px;
    border: none;
    padding: 0px 0px 0px 60px;
    font-size: 14px;
    outline: none;
    color: rgb(102, 103, 104);
    background: transparent;
}

.fr-category-wrap select {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-image: initial;
    border-left: 1px solid rgb(217, 217, 217);
    padding: 0px 20px 0px 20px;
    font-size: 14px;
    outline: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    color: rgb(102, 103, 104);
}

.fr-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    z-index: 1;
}

.fr-clear-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.fr-clear-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.fr-clear-icon svg {
    display: block;
}

.fr-filter-icon {
    /* position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%); */
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14px;
}

.fr-category-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M0.75 4.74997C0.75 4.74997 3.69596 0.750009 4.75003 0.75C5.80411 0.749991 8.75 4.75 8.75 4.75' stroke='%23333436' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.fr-location-wrapper {
    display: flex;
}

.fr-location-wrapper .map-box {
    flex: 0 0 50%;
}

.fr-map {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.fr-map iframe {
    width: 100%;
    height: 100%;
    border: 0px;
}

.fr-map-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background: rgb(255, 255, 255);
    padding: 0px;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 25px;
    max-width: 330px;
}

.fr-map-card img {
    width: 100%;
    height: 136px;
    object-fit: cover;
    border-radius: 0px;
    background: rgb(240, 240, 240);
}

.fr-map-card .content {
    position: relative;
    padding: 10px 16px 16px 30px;
}

.fr-map-card .content p {
    position: relative;
    max-width: 205px;
}

.fr-map-card .content p::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f37321' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.fr-map-card h5 {
    font-size: 16px;
    margin: 0px 0px 8px -24px;
}

.fr-map-card p {
    font-size: 16px;
    margin: 0px;
}

.location-box {
    padding: 40px;
    min-height: 740px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-box h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 24px;
}

.location-box .two {
    margin-top: 32px;
}

.fr-location-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scroll-behavior: smooth;
}

.fr-location-list::-webkit-scrollbar {
    width: 6px;
}

.fr-location-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.fr-location-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.fr-location-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fr-location-item {
    padding: 10px 12px 10px 36px;
    border-radius: 0px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    border: 1px solid rgb(238, 238, 238);
    transition: 0.3s;
    font-size: 14px;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.fr-location-item::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.fr-location-item:hover::before, .fr-location-item.active::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f37321' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.fr-location-item:hover, .fr-location-item.active {
    background: rgb(26, 26, 29);
    border-color: rgb(26, 26, 29);
    color: rgb(255, 255, 255);
}

/* Pagination Styles */
.fr-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.fr-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 0px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fr-pagination-btn:hover:not(:disabled) {
    background: #f37321;
    border-color: #f37321;
    color: #fff;
}

.fr-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fr-pagination-btn svg {
    width: 12px;
    height: 12px;
}

.fr-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fr-pagination-number {
    min-width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 0px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fr-pagination-number:hover {
    background: var(--theme-1);
    border-color: #f37321;
    color: var(--white);
}

.fr-pagination-number.active {
    background: var(--theme-1);
    border-color: var(--theme-1);
    color: #fff;
}

.fr-pagination-ellipsis {
    padding: 0 8px;
    color: #999;
    font-size: 14px;
}

/* Contact Button Wrapper */
.fr-contact-wrapper {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.fr-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    background: #f37321;
    color: #fff;
    border: 2px solid #f37321;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fr-contact-btn:hover {
    background: var(--black-2);
    border-color: var(--black-2);
    color: #fff;
}

@media (max-width: 991px) {
    .fr-location-wrapper {
        flex-direction: column;
    }

    .fr-location-wrapper .map-box {
        flex: 0 0 100%;
    }

    .fr-map {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .fr-filter-bar {
        max-width: 100%;
    }

    .fr-location-list {
        grid-template-columns: repeat(2, 1fr);
        max-height: 500px;
    }

    .fr-map {
        height: 300px;
    }

    .location-box {
        padding: 24px;
    }

    .location-box h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .fr-search-wrap input {
        min-width: 250px;
    }

    .fr-category-wrap select {
        min-width: 180px;
    }
}

@media (max-width: 515px) {
    .fr-category-wrap select {
        min-width: 100px;
        padding: 0px 70px 0px 10px;
    }

    .fr-search-wrap input {
        width: inherit;
    }
}

@media (max-width: 480px) {
    .fr-location-list {
        grid-template-columns: 1fr;
        max-height: 400px;
    }

    .fr-filter-bar {
        align-items: stretch;
    }

    .fr-search-wrap input, .fr-category-wrap select {
        width: 100%;
        min-width: auto;
    }

    .fr-map-card {
        display: none;
    }
    
    .fr-pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .fr-pagination-btn {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .fr-pagination-btn span {
        display: none;
    }
    
    .fr-pagination-number {
        min-width: 36px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 399px) {
    .fr-category-wrap select {
        padding: 0px 40px 0px 8px;
    }

    .fr-category-wrap::after {
        display: none;
    }
}

@media (max-width: 362px) {
    .fr-category-wrap select {
        padding: 0px 40px 0px 8px;
    }

    .fr-search-wrap input {
        padding: 0px 0px 0px 17px;
    }

    .fr-search-icon {
        display: none;
    }
	
	.fr-contact-btn{
		padding: 4px 8px;
		font-size: 12px;
	}
	
	.fr-pagination,
	.fr-contact-wrapper{
		margin-top: 15px;
	}
}


/* ========================================
   Quality Accordion Style
======================================== */

.quality-main-img {
    max-width: 430px;
    width: 100%;
    border-radius: 5px;
}

.quality-accordion-box .accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: rgb(10, 102, 118);
    border-bottom: 1px dashed rgb(39, 120, 134);
    box-shadow: none;
    border-radius: 5px 5px 0px 0px;
}

.quality-accordion-box .accordion-body {
    background-color: rgb(10, 102, 118);
    color: var(--white);
    padding: 24px;
    border-radius: 0px 0px 5px 5px;
}

.quality-accordion-box .accordion-button::after {
    color: var(--white);
}

.quality-accordion-box .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 15C18 15 13.5811 9.00001 12 9C10.4188 8.99999 6 15 6 15' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    transform: rotate(0deg);
}

.quality-accordion-box .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 9.00005C18 9.00005 13.5811 15 12 15C10.4188 15 6 9 6 9' stroke='%231A1A1D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 24px 24px;
}

.quality-accordion-box .accordion-button {
    font-size: 20px;
    line-height: 30px;
    padding: 16px 24px;
    border-radius: 4px;
    background: rgb(243, 247, 248);
}

.quality-accordion-box .accordion-item {
    border: none;
}

.quality-accordion-box .accordion-item:not(:last-child) {
    margin-bottom: 16px;
}

@media (max-width: 425px) {
    .quality-accordion-box {
        margin-top: 15px;
    }

    .quality-image-box .title-area h4 {
        justify-content: center;
    }

    .quality-image-box .title-area h2 {
        text-align: center;
    }
}

/* ========================================
   REVIEW SECTION STYLES
======================================== */

.fr-review-section {
    background: rgb(245, 246, 252);
}

.fr-review-section .title-area h4 {
    justify-content: center;
}

.fr-review-section .title-area h2 {
    text-align: center;
}

.summary-box {
    background: rgb(255, 255, 255);
    margin: 0px auto 32px;
    max-width: 850px;
    padding: 24px;
    border-radius: 5px;
    position: relative;
}

.summary-box .shape img {
    position: absolute;
    top: 0px;
    right: 0px;
}

.summary-box .icon-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-box .icon-box h5 {
    margin-bottom: 5px;
}

.summary-box .star-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.summary-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-box ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.summary-box ul li:not(:last-child) {
    margin-bottom: 16px;
}

.google-review-box {
    padding: 24px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    height: 100%;
}

.google-review-box .g-icon-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.google-review-box .star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
    float: inherit;
    padding: 0;
}

.google-review-box .author-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.google-review-box .author-box .posted-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.google-review-box .author-box .posted-by h5 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.google-review-box .author-box .posted-by svg {
    margin-top: 5px;
}

.google-review-box .author-box .date p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.review-text {
    position: relative;
}

.review-text .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    color: var(--theme-1);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
}

.read-more-btn:hover {
    color: #d35e15;
    text-decoration: underline;
}

.read-more-btn:focus {
    outline: none;
}

/* ========================================
   REVIEW MODAL
======================================== */

.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.review-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.review-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Custom scrollbar for modal */
.review-modal-content::-webkit-scrollbar {
    width: 8px;
}

.review-modal-content::-webkit-scrollbar-track {
    background: #f5f6fc;
    border-radius: 10px;
}

.review-modal-content::-webkit-scrollbar-thumb {
    background: #d0d2e0;
    border-radius: 10px;
}

.review-modal-content::-webkit-scrollbar-thumb:hover {
    background: #b8bace;
}

/* ========================================
   MODAL CLOSE BUTTON
======================================== */

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f6fc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    padding: 0;
}

.review-modal-close:hover {
    background: #e5e7f2;
    transform: rotate(90deg);
}

.review-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.review-modal-close svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   MODAL HEADER
======================================== */

.review-modal-header {
    margin-bottom: 24px;
    padding-right: 30px;
}

.review-modal-header .g-icon-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.review-modal-header .g-icon-box img {
    width: 24px;
    height: 24px;
}

.review-modal-header .g-icon-box span {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.review-modal-header .star-rating {
    display: flex;
    gap: 5px;
    float: inherit;
    padding: 0;
}

/* ========================================
   MODAL BODY
======================================== */

.review-modal-body {
    margin-bottom: 24px;
}

.review-modal-body p {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    margin: 0;
}

/* ========================================
   MODAL FOOTER
======================================== */

.review-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 12px;
}

.review-modal-footer .posted-by {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-modal-footer .posted-by h5 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    text-transform: capitalize;
}

.review-modal-footer .posted-by svg {
    flex-shrink: 0;
}

.review-modal-footer .date p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* ========================================
   SLIDER STYLES
======================================== */

.google-review-area .theme-btn {
    margin-top: 48px;
}

.inner-slider-wrapper .gr-slider {
    margin-left: -425px;
}

.inner-slider-wrapper .gr-2-slider {
    margin-right: -425px;
}

/* Navigation arrows */
.glowing-array-button {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.glowing-array-button button {
    background: white;
    border: 1px solid #e5e7f2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.glowing-array-button button:hover {
    background: var(--theme-1);
    border-color: var(--theme-1);
}

.glowing-array-button button:hover svg path {
    fill: white;
}

/* ========================================
   BODY SCROLL LOCK
======================================== */

body.modal-open {
    overflow: hidden;
    padding-right: 0;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

@media (max-width: 991px) {
    .review-container {
        padding: 0px 15px;
    }
    
    .inner-slider-wrapper .gr-slider,
    .inner-slider-wrapper .gr-2-slider {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .review-modal-content {
        padding: 24px;
        max-height: 85vh;
        border-radius: 8px;
    }
    
    .review-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .review-modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .review-modal-header {
        padding-right: 25px;
    }
    
    .review-modal-body p {
        font-size: 15px;
    }
    
    .review-modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .google-review-box {
        padding: 20px;
    }
    
    .google-review-box .author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 425px) {
    .summary-box {
        padding: 20px;
    }
    
    .summary-box .shape img {
        max-width: 60px;
    }
    
    .summary-box ul li {
        gap: 12px;
        font-size: 14px;
    }
    
    .review-modal {
        padding: 15px;
    }
    
    .review-modal-content {
        padding: 20px;
        max-height: 80vh;
    }
    
    .review-modal-header .g-icon-box span {
        font-size: 13px;
    }
    
    .review-modal-body p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-modal-footer .posted-by h5 {
        font-size: 16px;
    }
    
    .google-review-box {
        padding: 16px;
    }
    
    .google-review-box .author-box .posted-by h5 {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .review-modal-content {
        padding: 16px;
    }
    
    .review-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }
}

@media print {
    .review-modal {
        display: none !important;
    }
}


/* ========================================
   Need Help Style
======================================== */

.need-help-wrapper {
    display: flex;
}

.need-form-area {
    flex: 1 1 0%;
    padding: 80px 80px 80px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.need-form-area::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.7);
}

.help-form-box {
    max-width: 560px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.help-form-box .form-row-custom {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.help-form-box .form-group {
    width: 100%;
    margin-bottom: 0px;
}

.help-form-box .form-group:last-child {
    margin-bottom: 0px;
}

.help-form-box .form-group .form-control {
    width: 100%;
    font-size: 14px;
    color: rgb(102, 103, 104);
    padding: 18px 16px;
    border: 0px;
    border-radius: 0px;
    background: rgb(245, 246, 252);
}

.help-form-box button {
    margin-top: 24px;
}

.need-map-area {
    flex: 1 1 0%;
}

.need-map-area #needHelpMap {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.need-contact-form textarea {
    height: 140px;
}

@media (max-width: 1399px) {
    .need-form-area {
        padding: 70px 60px 70px 0px;
    }

    .help-form-box {
        max-width: 520px;
    }
}

@media (max-width: 1199px) {
    .need-form-area {
        padding: 60px 40px 60px 0px;
    }

    .help-form-box {
        max-width: 480px;
    }

    .help-form-box .form-group .form-control {
        padding: 16px 14px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .need-help-wrapper {
        flex-direction: column;
    }

    .need-form-area {
        padding: 60px 40px;
    }

    .help-form-box {
        max-width: 100%;
        margin: 0px auto;
    }

    .need-map-area iframe,
    .need-map-area #needHelpMap {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .help-form-box .form-row-custom {
        flex-direction: column;
        gap: 12px;
    }

    .need-form-area {
        padding: 50px 24px;
    }

    .help-form-box button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .need-form-area {
        padding: 40px 16px;
    }

    .help-form-box .form-group .form-control {
        padding: 14px 12px;
    }

    .need-map-area iframe,
    .need-map-area #needHelpMap {
        height: 410px;
        min-height: 410px;
    }
}

/* ========================================
   Blog Section Style
======================================== */

.fr-blog-section {
    background: rgb(245, 246, 252);
}

.fr-blog-title h2 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 48px;
}

.fr-blog-title h2::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0px;
    width: 86px;
    height: 3px;
    background: var(--theme-1);
}

.fr-blog-title h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 13px;
    width: 86px;
    height: 3px;
    background: var(--theme-1);
}

.fr-blog-wrapper .blog-box {
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgb(255, 255, 255);
    margin-bottom: 16px;
    padding: 12px;
    box-shadow: rgba(213, 213, 213, 0.25) 0px 40px 80px 0px;
}

.fr-blog-wrapper .blog-box img {
    width: 100%;
    max-width: 98px;
    height: 64px;
    object-fit: cover;
    object-position: center center;
}

.fr-blog-wrapper .blog-box h5 a {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    transition: all 500ms ease;
}

.fr-blog-wrapper .blog-box h5 a:hover{
    color: var(--theme-1);
}

.fr-blog-wrapper .theme-btn {
    margin-top: 20px;
}

@media (max-width: 575px) {
    
    .fr-blog-wrapper .blog-box h5 a {
        font-size: 16px;
        line-height: 24px;
    }

    .need-finance-wrapper .theme-btn {
        width: 100%;
    }

}

/* ========================================
   Need Finance Style
======================================== */

.need-finance-wrapper {
    position: relative;
    background: rgb(10, 102, 118);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.need-finance-wrapper .content-area img {
    width: 80px;
    height: 80px;
}

.need-finance-wrapper .content-area h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    margin-top: 16px;
}

.need-finance-wrapper .content-area p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
    color: rgb(255, 255, 255);
}

.need-finance-wrapper .image-area {
    position: absolute;
    bottom: -175px;
    right: 53px;
}

.need-finance-wrapper .image-area img {
    width: 100%;
    max-width: 582px;
    margin: 0px 0px 0px auto;
}

@media (max-width: 1399px) {
    .need-finance-wrapper .image-area img {
        width: 80%;
    }
}

@media (max-width: 1199px) {
    .need-finance-wrapper {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .need-finance-wrapper .image-area img {
        display: none;
    }

    .need-finance-wrapper .content-area img {
        margin: 0px auto;
    }

    .need-finance-wrapper .content-area h2 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ========================================
   Popup Video Cross Style
======================================== */

.mfp-iframe-holder .mfp-close {
    top: 0px;
    right: -62px;
    background: rgb(255, 255, 255);
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 300;
    padding-left: 7px;
    padding-top: 2px;
}


/* ========================================
   Others Reset Style
======================================== */

.pt-200{
    padding-top: 200px;
}

.need-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.need-contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.need-contact-form .wpcf7 form.payment-required .wpcf7-response-output{
    color: #fff;
}


.glowing-box-1 .inner {
    justify-content: space-between;
}


body.page-template-page-generic-with-sub-nav,
body.archive.category-blog,
body.page-template-page-about, body.page-template-page-video-testimonial-quotes-slider-inline, body.page-template-page-review, body.page-template-page-contact, body.page-template-page-competitor, body.page-template-page-generic, body.page-template-page-service-area-schema {
    padding-top: 0;
}

.gm-style-iw.gm-style-iw-c {
    border-radius: 0;
}

.swiper.swiper-cards{
	padding-bottom: 16px;
}

.slider_testimony_image {
    display: flex;
    justify-content: center;
}