* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f57c00;
}

::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c97826;
}

body {
    overflow-x: hidden;
}

p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

li {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

a {
    transition: .4s;
    text-decoration: none;
}

.container {
    max-width: 1470px;
    width: 96%;
}

.common-btn a {
    border: 2px solid #FFF;
    display: flex;
    height: 56px;
    padding-left: 50px;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.common-btn a span {
    background-image: url('../images/arrow-w.png');
    width: 50px;
    height: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 2px solid #fff;
    padding: 0px 24px;
}

.common-btn a:hover {
    background: #000;
    border: 2px solid #000;
}

.common-btn.black a {
    color: #000;
    border: 2px solid #000;
    padding-left: 20PX;
}

.common-btn.black {
    max-width: max-content;
}

.common-btn.black a span {
    border-left: 2px solid #000;
    background-image: url(../images/arrow-b.png);
    margin-left: 20px;
}

.common-btn.black a:hover {
    color: #fff;
}

.common-btn.black a:hover span {
    background-image: url('../images/arrow-w.png');
    border-left: 2px solid #fff;
}

/* HEADER */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid hwb(0deg 100% 0% / 69%);
    border-bottom: 1px solid hwb(0deg 100% 0% / 69%);
    padding: 0px 60px;
}

/* LOGO */
.logo {
    max-width: 411px;
    height: 204px;
    background: #292728;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.logo a {
    display: block;
    text-align: center;
    padding: 18px 0px;
}

.social_links {
    display: flex;
    gap: 10px;
}

.logo-menu-wrp {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}

.header_details {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.header-time {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.header-time a{
    color:#fff;
}
.header-time a:hover{
    color:#f57c00;
}
.header-time.details {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    padding-right: 50px;
}

.header-time.details .ti {
    margin-right: 2px;
    font-size: 17px;
}

.header-time.details span:first-child .ti {
    position: relative;
    top: 2px;
}
.top-header-container {
    padding: 8px 60px;
    display: flex;
    justify-content: flex-end;
}

header.header.fixed {
    position: fixed;
    background: #000;
    width: 100%;
    top: 0px;
    z-index: 99;
}

header.header.fixed .logo {
    width: 100%;
    position: relative;
    max-width: 125px;
    height: auto;
    padding: 0px;
    background: transparent;
}

header.header.fixed .logo-menu-wrp {
    padding: 0;
    width: 100%;
    align-items: center;
}

header.header.fixed img {
    max-width: 100%;
    display: block;
}

.fixed .top-header-container {
    display: none;
}

/* NAV MENU */
.nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    align-items: center;
    padding-left: 140px;
}

.nav ul li {
}

.nav ul li a {
    color: #FFF !important;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    position: relative;
    transition: 0.3s;
}

.nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f57c00;
    transition: 0.3s;
}

.nav ul li a:hover::before, 
.nav ul li.current_page_item a::before,
.nav ul li.current-menu-parent a::before{
    width: 100%;
}

/* SEARCH */
.search-box {
    position: relative;
    right: 70px;
}

.search-box input {
    outline: none;
    transition: 0.4s;
    opacity: 1;
    justify-content: space-between;
    align-self: stretch;
    border-radius: 54px;
    border: 1px solid #F0F0F0;
    display: flex;
    width: 327px;
    height: 40px;
    padding: 8px 42px 8px 20px;
    align-items: center;
    gap: 19px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    background-color: transparent;
}

.search-box input::placeholder {
    color: #fff;
}

.search-box.active .search-input {
    width: 327px;
    opacity: 1;
}

.search-btn {
    background-color: transparent;
    background-image: url('../images/search.png');
    width: 24px;
    height: 24px;
    border: none;
    padding: 8px 10px;
    color: #fff;
    position: absolute;
    right: 14px;
    top: 6px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

section.hero:after {
    content: '';
    position: absolute;
    right: 78px;
    bottom: 0;
    max-width: 438px;
    width: 100%;
    height: 100%;
    border-left: 1px solid hwb(0deg 100% 0% / 60%);
    border-right: 1px solid hwb(0deg 100% 0% / 60%);
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: #292728;
    opacity: .7;
}

.banner_content_wrp {
    width: 100%;
    border-top: 1px solid hwb(0deg 100% 0% / 60%);
    border-bottom: 1px solid hwb(0deg 100% 0% / 60%);
    display: flex;
    justify-content: space-between;
    padding: 0px 80px;
    margin-bottom: 90px;
    z-index: 9;
    align-items: center;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 1080px;
    width: 100%;
    padding: 10px 0px 28px;
}

.hero h1 {
    margin-bottom: 20px;
    color: #FFF;
    font-family: Inter;
    font-size: 91px;
    font-style: normal;
    font-weight: 700;
    line-height: 105px;
}

.hero p {
    margin-bottom: 0;
    color: #FFF;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    padding-right: 6%;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #f57c00;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ff9800;
    transform: translateY(-3px);
}

/* RIGHT BOX */
.hero-box {
    background: #f57c00;
    padding: 45px;
    max-width: 435px;
    width: 100%;
}

.hero-box h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 137px;
    font-style: normal;
    font-weight: 700;
    line-height: 115px;
}

.banner_content_wrp .hero-box p {
    color: #FFF;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 0 34px;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-up.delay-2 {
    animation-delay: 0.6s;
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeRight 1s forwards;
    animation-delay: 0.8s;
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.building-section {
    text-align: center;
    padding: 80px 0px 0px;
    overflow: hidden;
}

h6.h6_title {
    color: #ED8300;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

h6.h6_title span {
    position: relative;
    padding-left: 0px;
}

h6.h6_title span:before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url('../images/arrow2.png');
    width: 25px;
    height: 25px;
    opacity:0
}

h2.h2_title {
    color: #292728;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

h2.h2_title span {
    /* display: block; */
}
h4.h4_title {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px; 
    text-transform: capitalize;
}
.building-section .badge span {
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.building-section .badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0px 30px;
    justify-content: center;
}

.building-section .badge span {
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.building-section .badge {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.building-section h2.h2_title {
    padding: 0px 0px 0px;
}

.building-section .common-btn.black {
    margin: 0px auto 115px;
}

.big_fonts {
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #ED8300;
    color: #fff;
    font-family: 'Inter';
    font-size: 135px;
    font-style: normal;
    font-weight: 700;
    line-height: 145px;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    word-spacing: 1rem;
}

img.img_triangle {
    position: relative;
}

.why-choose {
    background: #292728;
    padding: 80px 0px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.top-content h2 {
    color: #fff;
    text-align: left;
    padding: 0px 0px 20px;
}

.top-content p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 940px;
    width: 100%;
}

/* Cards */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: transparent;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #FFF;
    position: relative;
}

.why-card:hover {
    border: 1px solid #ed8300;
    transform: translateY(-5px);
}

.inn-card {
    padding: 30px 30px 120px;
}

.why-card .icon {
    background: #ed8300;
    display: flex;
    width: 104px;
    height: 104px;
    padding: 14px 15px;
    align-items: flex-start;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.why-card h4 {
    margin-bottom: 15px;
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.6px;
}

.why-card p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.common-btn.cta-btn span {
    margin-left: 50px;
}

.common-btn.cta-btn a:hover, .cta_btn_content .common-btn a:hover {
    background: #ED8300;
    border: 2px solid #ED8300;
}

.services-section {
    padding: 80px 0px;
}
section.services-section h2.h2_title {
    padding: 14px 0 38px;
}
/* Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Card */
.service-card {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    text-align: left;
    position: relative;
    transition: 0.3s;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 32%;
}

.service-card h3 {
    margin: 35px 0 20px;
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.6px;
    min-height: 100%;
}

.service-card p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.icon-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ed8300;
    color: #fff;
    padding: 10px;
    font-size: 18px;
}

/* Hover */
.service-card:hover {
    border: 1px solid #ed8300;
    transform: translateY(-5px);
}

.inn-service-card {
    padding: 30px 5px 135px;
}

.services-container {
    padding: 0px 80px;
}

.service-card .icon {
    background: #ed8300;
    display: flex;
    width: 104px;
    height: 104px;
    padding: 14px 15px;
    align-items: flex-start;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ser_img img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

.services-content {
    margin-bottom: 50px;
}

.services-content h6 {
    text-align: center;
    margin: 0;
}

.services-content .common-btn {
    margin: auto;
}

.services-content h2 {
    padding: 25px 0px 45px;
}

.services-content .common-btn.black a {
    padding-left: 40px;
}

.services-content .common-btn.black a span {
    margin-left: 50px;
}

.cta-section {
    background: url('../images/cta_bg.png') center/cover no-repeat;
    padding: 144px 0px;
    position: relative;
}

.cta-overlay {
    background: linear-gradient(0deg, rgba(41, 39, 40, 0.28) 0%, rgba(41, 39, 40, 0.28) 100%);
    border-top: 1px solid hwb(0deg 100% 0% / 60%);
    border-bottom: 1px solid hwb(0deg 100% 0% / 60%);
    position: relative;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
    padding: 30px 0px;
}

.cta-text h2 {
    color: #FFF;
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 49.2px;
    margin-bottom: 10px;
}

.cta-text p {
    color: #fff;
    max-width: 885px;
    width: 100%;
}

.cta-overlay .container {
    border-left: 1px solid hwb(0deg 100% 0% / 60%);
    border-right: 1px solid hwb(0deg 100% 0% / 60%);
}

.cta-section:before {
    content: '';
    position: absolute;
    left: 27px;
    width: 1px;
    height: 100%;
    border-left: 1px solid hwb(0deg 100% 0% / 60%);
    top: 0;
}

.cta-section:after {
    content: '';
    position: absolute;
    right: 27px;
    width: 1px;
    height: 100%;
    border-left: 1px solid hwb(0deg 100% 0% / 60%);
    top: 0;
}

.cta_btn_content p {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.cta-text {
    width: 68%;
}

.cta_btn_content {
    width: 30%;
}

.cta_btn_content .common-btn a {
    padding-left: 95px;
}

.how-section {
    padding: 80px 80px;
}

.how-section h3 {
    padding: 12px 0;
}

.desc {
    font-size: 14px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    position: relative;
    margin-bottom: 60px;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    border-bottom: 1px solid #ED8300;
}

.step h4 {
    color: #292728;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    /* 117.857% */
    margin: 0;
    padding: 20px 0px;
}

.step p {
    padding-bottom: 20px;
}

/* Bottom CTA */
.cta-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #292728;
    font-weight: 600;
}

span.s-text {
    color: #ED8300;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
}

.inn-step {
    position: relative;
}

img.how-arrow {
    position: absolute;
    right: -124px;
    top: 28px;
    width: 70%;
}

section.how-section .services-content {
    text-align: center;
    margin-bottom: 30px;
}

section.how-section .services-content p {
    width: 60%;
    margin: auto;
}

.step h4 span {
    display: block;
}

.step:last-child img.how-arrow {
    display: none;
}

.gallery-section {
    padding: 80px 80px;
    text-align: center;
}

.gallery-section .common-btn.black {
    margin: auto;
    padding-top: 50px;
}

.gallery-title h2 {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

.gallery-grid a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../images/solar_eye.png');
    background-color: hwb(0deg 0% 100% / 35%);
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

.gallery-grid a:hover::after {
    opacity: 1;
}

.top-content.ab h2, .top-content.ab p {
    color: #000;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #fff;
    overflow: hidden;
    text-align: left;
    border-bottom: 2px solid #ED8300;
    padding-bottom: 10px;
    transition: 0.3s;
    height: 100%;
}

.before-after {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.before-after img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 3;
}

.slider-handle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 20px;
    height: 20px;
    background: #f39c12;
    border-radius: 50%;
    transform: translateY(-50%);
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
}

.before-after-project {
    padding: 0px 80px;
}

.before-after-project .content {
    min-height: 150px;
}

.project-card h3 {
    color: #292728;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 0px;
    margin-bottom: 0
}

.project-card .content p {
    margin-bottom: 10px;
}

.project-card .content ul {
    padding: 0 0 0 20px;
}

.project-card .content li {
    margin-bottom: 5px;
}

.project-card:hover {
    border-bottom: 1px solid #000;
    transform: translateY(-5px);
}

.testimonial-section {
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    text-align: left;
    display: flex;
    gap: 20px;
}

.testimonial-card img {
}

/* arrows */
.swiper-button-next, .swiper-button-prev {
    stroke-width: 2px;
    color: #000;
    display: flex;
    width: 80px;
    height: 80px;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #ED8300;
    transition: .3s;
    top: auto;
    right: 0px;
    left: auto;
    z-index: 99;
    bottom: 0;
}

.swiper-button-prev {
    right: 140px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #ED8300;
}

.testimonial-container {
    padding: 70px 170px 0px;
    position: relative;
}

section.testimonial-section .big_fonts {
    left: 0;
    top: 0;
}

.t_img {
    width: 50%;
}

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

.testi_items_box {
    width: 40%;
    padding-top: 75px;
}

.testi_content_box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.t_img img {
    max-height: 550px; 
    object-fit: cover;
}

.tcontent_box p {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 12px;
}

.t_details {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 78px;
}

span.client_detail h6 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin: 0;
}

span.client_detail p {
    color: #696969;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.swiper.testimonails-Swiper {
    padding-bottom: 110px;
}

.swiper-pagination-bullet {
    opacity: 1;
}

.swiper-pagination {
    position: relative;
    bottom: 0 !important;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid #ED8300;
    background: #F5F5F5;
}

.swiper-pagination-bullet-active {
    background: #ED8300;
}

.faq-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.faqs-title h2 {
    padding: 10px 0 15px;
    margin: 0;
}

.faq {
    max-width: 1150px;
    margin: auto;
    text-align: left;
}

.faqs-title {
    margin-bottom: 40px;
}

.faq-question {
    cursor: pointer;
    position: relative;
    display: flex;
    padding: 16px 65px 16px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid #ED8300;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.386px;
    /* 140% */
    overflow: hidden;
}

.faq-item.active .faq-question {
    background: #292728;
    color: #fff;
    /* border-top: 1px solid #292728; */
}

.faq-item:last-child .faq-question {
    border-bottom: 1px solid #ED8300;
}

.faq-question .icon {
    position: absolute;
    right: 0;
    font-size: 30px;
    transition: 0.3s;
    background: transparent;
    display: flex;
    width: 50px;
    height: 100%;
    transform: rotate(180deg);
    padding: 1.987px 6.624px;
    justify-content: center;
    align-items: center;
    gap: 6.624px;
    top: 0;
    border: none;
}

.faq-item.active .icon {
    transform: rotate(0deg);
    top: 0px;
    background: #ED8300;
    color: #fff;
}

.faq-answer {
    overflow: hidden;
    transition: 0.4s ease;
    padding: 20px 10px;
    background: #F9F9F9;
    display: none;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.faq-item.active .faq-answer {
    display: block;
    margin-bottom: 8px;
}

.footer {
    position: relative;
    background: url('../images/footer_bg.png') center/cover no-repeat;
    color: #fff;
}

.footer .badges {
    padding: 30px 0px;
    display: flex;
    gap: 25px;
}

/* Content box */
.footer .footer-content {
    position: relative;
    background: #ED8300;
    display: flex;
    max-width: 94%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    z-index: 2;
    padding: 57px 120px 37px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}

.footer-col p {
    color: #fff;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

/* Badges */
.footer .badges img {
}

.footer-bottom p {
    color: #FFF;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 15.501px;
    text-transform: uppercase;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1166px;
    margin: auto;
    width: 100%;
    padding-bottom: 100px;
}

/* Scroll button */
#scrollTopBtn {
    position: fixed;
    right: 15px;
    bottom: 105px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #f39c12;
    color: #000;
    cursor: pointer;
    z-index: 3;
    font-size: 28px;
}

.footer-col.col-1 {
    width: 38%;
    padding-right: 4%;
}
.footer-col.col-3 {
    width: 17%;
}
.footer-copyright {
    width: 100%;
    padding-top: 20px;
}

.footer-copyright p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}
.footer-copyright p a{
    color: #fff;
}
.footer-copyright p a:hover{
    color: #000;
}
.footer_social_links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-col.col-3 p span {
    display: block;
}

.footer-col.col-3 p {
    margin-bottom: 20px;
}

.footer-col a {
    color: #fff;
}

.footer-col a:hover, .footer-col li.current-menu-item a {
    color: #000;
}

.footer-border {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: auto;
    background: #ED8300;
}

.footer-border:after, .footer-bottom:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-right: 1px solid hwb(0deg 100% 0% / 60%);
}

.footer-border:before, .footer-bottom:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid hwb(0deg 100% 0% / 60%);
}
.footer-border-wrp {
    position: relative;
}

.footer-border-wrp:after{
    content: '';
    position: absolute;
    right: 0px;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: hwb(0deg 100% 0% / 60%);
}

.footer-border-wrp:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 79px;
    width: 100%;
    height: 1px;
    background: hwb(0deg 100% 0% / 60%);
}
.footer-col.col-1 h3 {
    margin-bottom: 15px;
}

.footer-bottom img {
    width: 100%;
}

.scroll-text {
    display: inline-block;
    animation: scrollText 30s linear infinite;
}

/* Animation */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.inner-banner-section {
    padding: 230px 0px 115px;
    background-size: cover;
    background-position: center;
}

.inner_banner_content_wrp h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.breadcrumb {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    justify-content: center;
    gap: 8px;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover, span.bread_title {
    color: #ED8300;
}

.menu-main-menu-container {
    display: flex;
}

.contact-section {
    background: #272729;
}

.contact-wrapper {
    display: flex;
    /* align-items: center; */
    gap: 0px;
}

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

.contact-image {
    width: 50%;
}

.contact-form-box {
    width: 50%;
    color: #fff;
    padding: 50px 20px 60px;
    border-radius: 10px;
}

.contact-form-box h3.h3_title {
    margin-bottom: 15px;
    color: #FFF;
}

.contact-form-box p {
    color: #fff;
}

.inner-form-box {
    max-width: 700px;
    margin: auto;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 12px 0px;
    border: none;
    border-bottom: 1px solid #A4A4A4;
    background: transparent;
    border-radius: 0px;
    outline: none;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    /* 155.556% */
}

.form-row textarea {
    height: 120px;
    resize: none;
}

.form-row.full {
    flex-direction: column;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ff8c00;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #e67600;
}

.c-content-box {
    margin-bottom: 30px;
}

.form-row input::-webkit-input-placeholder, .form-row textarea::-webkit-input-placeholder {
    color: #fff;
}

.form-row input:-ms-input-placeholder, .form-row textarea:-ms-input-placeholder {
    color: #fff;
}

.form-row input::placeholder, .form-row textarea::placeholder {
    color: #fff;
}

input.bt.submit-input {
    background: transparent;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 12px 30px;
    transition: 0.4s;
}

input.bt.submit-input:hover {
    background: #ED8300;
}

span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-not-valid {
    border-bottom: 1px solid #dc3232 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 12px;
    border: none;
    padding: 12px 0 0;
    margin: 0;
}

.container-fluid.for-section {
    padding: 80px 0px;
}

.pfg-filters {
    border-bottom: 1px solid #623600;
    justify-content: space-between;
    gap: 0 !important;
}

button.pfg-filter {
    color: #404040;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    /* 168% */
    border-radius: 0px !IMPORTANT;
    background: transparent;
    width: 16%;
    justify-content: center;
    height: 80px;
    padding: 16px 10px;
}

button.pfg-filter.pfg-filter--active, button.pfg-filter:hover, .pfg-filter:focus {
    background: #623600 !important;
    color: #fff;
}

.contact-page {
    padding: 80px 0px;
}

.contact-wrappers {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-infos {
    flex: 1;
}

.contact-infos h2 {
    font-size: 52px;
    text-align: left;
    line-height: normal;
    color: #292728;
    margin-bottom: 15px;
}

.contact-infos ul li {
    color: #292728;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-infos ul li a {
    color: #292728;
}

.contact-infos ul li a:hover {
    color: #ED8300;
    text-decoration: underline;
}

.contact-infos p {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

.contact-infos ul {
    padding: 0px;
    padding-top: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-forms {
    flex: 1;
}
.header-time strong {
    color: #000;
    font-size: 17px;
    display: block;
    margin-bottom: 15px;
}

.header-time {
    padding-top: 20px;
}

.contact-infos .header-time p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
}
.form-rows {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.form-rows input, .form-rows textarea, .form-rows select {
    width: 100%;
    padding: 14px 0px;
    border: none;
    border-bottom: 1px solid #623600;
    background-color: transparent;
    outline: none;
    color: #404040;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.form-rows.full_width {
    display: block;
}

.form-rows.full_width textarea {
    height: 126px;
    resize: none;
}

.form-bottoms {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    position: relative;
}

.form-bottoms input.btn-submit {
    background: #ED8300;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 15px 30px;
    transition: 0.4s;
}

.form-bottoms input.btn-submit:hover {
    background: #000;
}

.form-bottoms span.wpcf7-spinner {
    position: absolute;
    bottom: -28px;
}

.form-bottoms label {
    color: #404040;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.form-bottoms input[type="checkbox"] {
    border: 1px solid #ADADAD;
    background: #FFF;
    width: 18px;
    height: 18px;
}

.map-section iframe {
    display: block;
}

section.befores-afters-section {
    padding: 80px 0px;
}

.top-content.ab.new-wrp, .top-content.ab.new-wrp h2 {
    text-align: center;
    justify-content: center;
}

.befores-afters-section .content {
    min-height: 100%;
    padding-bottom: 15px;
}

section.befores-afters-section .row {
    row-gap: 40px;
}

.how-work .steps {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.how-work .step-box {
    flex: 1;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.how-work .step-box span {
    background: #7a1f1f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.servicep-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

h3.h3_title {
    color: #292728;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 22px;
}

.services-section .row {
    padding: 0px 40px 90px;
}

.counter-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding-top: 30px;
}

.counter-section .counter, span.sign {
    color: #292728;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    line-height: normal;
}

.counter-section .label {
    color: #292728;
    font-size: 14px;
    font-weight: 600;
    line-height: 33.478px;
    text-transform: uppercase;
}

.service-counter p {
    margin-bottom: 24px;
}

.service_Row .service-card {
    background: #FAF6F0;
    border: 1px solid #FAF6F0;
}

.servicep-content {
    /* padding-right: 7%; */
    text-align: center;
}

.top-how-work {
    text-align: center;
    margin-bottom: 45px;
}

.top-how-work p {
    padding: 0% 28%;
}

.step-box {
    border-radius: 16px;
    border: 1px solid #ED8300;
    text-align: center;
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.step-box span {
    border-radius: 60px;
    background: #650202;
    color: #FFF;
    text-align: center;
    font-size: 39px;
    font-weight: 500;
    display: flex;
    width: 177px;
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.step-box h4 {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
}

.step-box p {
    color: #3D3D3D;
    padding: 0px 30px;
}

.c_div {
    text-align: center;
}

.industry {
    background: #FFF7EC;
    display: flex;
    padding: 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px 0px 40px;
}

.industry h6 {
    color: #000;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.serve-content {
    display: flex;
    align-items: center;
    padding-left: 59px;
}

.industry img {
    margin-bottom: 10px;
}

.services-how-work .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
    margin-bottom: 0px;
}

section.who-we-serve {
    padding: 80px 0px;
}

.serve-client h3 {
    margin-bottom: 0px;
}

section.services-clients .row {
    align-items: center;
}

.serve-client p {
    margin-bottom: 25px;
}

.serve-client p:last-child {
    margin: 0;
}

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

section.services-clients .row {
    margin-bottom: 50px;
}

section.services-clients {
    padding-bottom: 80px;
}

.services-logos .swiper-slide {
    margin: 0px 0px;
    text-align: center;
}

.renovation-section {
    padding: 80px 0px 20px;
    background: transparent;
    text-align: center;
}


.sub-heading {
    color: #ff7a00;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    margin-bottom: 15px;
}

.description {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.renovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.renovation-card {
    background: #fff;
    padding: 12px;
    text-align: left;
    transition: 0.3s;
}

.renovation-card img {
    width: 100%;
    border-radius: 0px;
    margin-bottom: 28px;
    max-height: 415px;
}

.renovation-card h3 {
    margin-bottom: 10px;
    color: #000;
    text-transform: capitalize;
}

.renovation-card p {
    color: #000;
    margin-bottom: 0px;
    padding: 10px 0px 20px;
}

.renovation-card ul {
    padding-left: 18px;
}

.renovation-card ul li {
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

.renovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Stats */
.count_stats {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 0px;
}

.count_stats span.counter, .count_stats span.sign {
    color: #F4EEE6;
    font-size: 150px;
    font-weight: 700;
    display: inline-block;
}

.label_content {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 16px;
    margin: auto 0;
}

.counter-boxes {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-section {
    padding: 80px 0px;
    background: #FAF6F0;
}


/* GRID */
.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.second-row {
    margin-top: 20px;
}

/* IMAGE */
.img-box img {
    width: 100%;
    display: block;
}

/* CONTENT */
.content-box .tag {
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-box p {
    color: #292728;
    margin-bottom: 12px;
}

.content-box ul {
    padding-top: 15px;
    padding-left: 35px;
    margin: 0;
}

.content-box ul li {
    margin-bottom: 6px;
}

.approach-grid:nth-child(2n) {
    flex-direction: row-reverse;
}

.approach-grid .img-box, .approach-grid .content-box {
    width: 48%;
}

.approach-grid:last-child {
    margin-bottom: 0;
}

.about-section {
    padding: 80px 0px;
    background: #ffffff;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 66px;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.about-content .tag {
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.about-content h2 {
    text-align: left;
    padding: 10px 0px 21px;
}

.bold-text {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 20px;
}

/* INFO BOXES */
.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 15px 0;
}

.info-card {
    background: #FFF;
    box-shadow: 4px 4px 32px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
}

.about-content .info-card h5 {
    color: #292728;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.about-stats h3 {
    font-size: 24px;
    font-weight: 700;
}

.about-stats p {
    font-size: 13px;
    color: #666;
}

.about-content h5 {
    color: #292728;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
}

.about-content .info-card p {
    margin: 0;
}

.label_acontent span {
    display: block;
}

.abt-counter-boxes span {
    color: #292728;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    line-height: 65.097px;
}

.abt-counter-boxes .label_acontent, .abt-counter-boxes .label_acontent span {
    color: #292728;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.label_acontent span {
    display: block;
}

.about-content li strong {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 22px;
    display: block;
}

.about-content li {
    background-image: url('../images/icon-park.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    list-style: none;
    padding-left: 65px;
    margin-bottom: 40px;
    line-height: normal;
}
section.about-section.second .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-content ul {
    padding: 0;
}

.about-content h3 span {
    /* display: block; */
    font-weight: 400;
}
.second .services-container {
    margin-bottom: 80px;
}
section.about-section.second {
    padding-bottom: 0px;
    padding-top: 40px;
}

.trust-section {
  padding: 80px 0px;
  background: #FAF6F0;
}


/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 103px;
  align-items: center;
}

/* LEFT */
.trust-left .tag {
  color: #ff7a00;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.trust-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-left p {
  color: #000;
}

.trust-image {padding: 30px 0px;}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #000;
  color: #fff;
}

/* RIGHT */
.trust-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.trust-item {
  display: flex;
  gap: 50px;
  align-items: center;
}

.trust-item i {
  font-size: 28px;
  color: #b07a3f;
}

.trust-item h4 {
  color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
}

.trust-item p {
 color: #000;
}

section.core-value-section {
    padding: 80px 0px;
    text-align: center;
}

.cores-content {
    border: 1px solid #A4A4A4;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
}

.core-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-top: 45px;
}
.core-value-wrp {
    padding: 0px 200px;
}

.cores-content h5 {
    color: #000;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 25px; 
}

.cores-content p {
    color: #000;
}
section.our-process-section {
    background: #FAF6F0;
    padding: 80px 0px;
}

.process-content {
    border-radius: 16px;
    border: 1px solid #ED8300;
    background: #FFF;
    box-shadow: 4px 4px 42px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.process-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 45px 0px;
}

.process-content h5 {
    color: #000;
    font-size: 22px;
    line-height: normal;
    margin-bottom:15px;
}

.process-content p {
    color: #000;
}
.renovation-top-content {
    margin-bottom: 30px;
}

/* Dropdown Menu */
.menu-item-has-children{
    position: relative;
}
.sub-menu {
    position: absolute;
    top: 28px;
    left: 0;
    min-width: 320px;
    background: transparent;
    padding: 0px 0px !important;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
    display: block !important;
    border-radius:0px;
}

/* Show Dropdown on Hover */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Dropdown Items */
.sub-menu li {
    list-style: none;
     background: #292728;
}
.sub-menu li a:before{
    display: none;
}
/* Dropdown Links */
.sub-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.sub-menu li a:hover {
    background: transparent;
    color: #ED8300;
}

/* Optional Arrow */
.menu-item-has-children > a::after {
    content: "\ea5f"; /* Tabler chevron down */
    font-family: "tabler-icons";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}
section.for-section {
    padding: 50px 0px;
}
.search-box-item h3 a {
    color: #f57c00;
    font-size: 1.6rem;
}
.search-box-item h3 a:hover{
    color: #000;
}
.search-box-item h3 {
    margin-bottom: 15px;
}

.search-box-item h3:last-child {
    margin-bottom: 0px;
}

.container-fluid.for-section h2 {
    margin-bottom: 20px;
}
.cta-content.services {
    display: block;
    text-align: center;
    width: 100%;
}

.cta-content.services .cta-text {
    margin: auto;
}

.cta-content.services .common-btn {
    display: inline-flex;
    padding-top:20px;
	margin-bottom:10px;
}

.cta-content.services .common-btn a span {margin-left: 30px;}
.services-grid .swiper-pagination {
    padding-top: 15px;
}
.services-grid .swiper-slide{
	padding:0px 15px;
}
section.how-section h3.h3_title {
    margin-bottom: 5px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
}
select option{
	color: #000;	
	padding:0px 12px;
}
@media (min-width: 992px) {
    .services-grid .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 2%;
    }

    .services-grid .swiper-pagination {
        display: none;
    }
}
.page-id-7 li#menu-item-421 a {
    color: #000;
}
section.about-section.second .common-btn.black a , .trust-grid .common-btn.black a{
    padding-left: 35PX;
}
section.about-section.second .common-btn.black a span , .trust-grid .common-btn.black a span{
    margin-left: 40px;
}
.page-id-223 .inn-service-card {
    padding: 20px 20px 135px;
}
.page-id-223 .services-section .row {
    padding-bottom: 40px;
}
select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    background-image: url('../images/select.png');
    background-repeat: no-repeat;
    background-position: right 5px center;
}

.contact-forms input::placeholder,
.contact-forms textarea::placeholder,
.contact-forms select {
    color: #404040;
}

.contact-forms select:focus,
.contact-forms input:focus,
.contact-forms textarea:focus {
    outline: none;
}

.form-row.full select {
    background-image: url('../images/select2.png');
	background-repeat: no-repeat;
    background-position: right 5px center;
}

.client_logos {
    padding: 30px 0;
    background: #f4f4f4a6;
}


.client_logos .logotxt {
    display: flex;
    align-items: center;
    height: 70px;
}

.client_logos .n_p.client_logotxt {
    padding-right: 15px
}

.client_logos .logotxt p {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #ED8300;
}

.client_logos .logos {
    border-left: 2px solid #ED8300;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 0 25px
}

.client_logos .logos img {
    height: 70px;
}
.client_logos .container {
    max-width: 1020px;
}