@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2')
}

a,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: Montserrat, sans-serif !important
}

*,
html {
    scroll-behavior: smooth
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0
}

.dynamic-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamic-service-list li {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.dynamic-service-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.dynamic-service-list li:hover {
    background-color: #f8f9fa;
    padding-left: 5px;
}

.dynamic-service-list li.active-service {
    background-color: #0056b3;
}

.dynamic-service-list li.active-service a {
    color: #fff;
}

/* --- Floating Call Button Container --- */
.mobile-call-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #28a745; /* Professional Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    /* Optional: Adds the attention-grabbing pulse */
    animation: pulse-green 2s infinite;
}

/* --- The SVG Icon Styling --- */
.mobile-call-float img {
    width: 30px;
    height: 30px;
    /* This forces your RED svg to become WHITE */
    filter: brightness(0) invert(1);
    display: block;
}

/* --- Visibility Logic: Hide on Desktop, Show on Mobile --- */
@media (min-width: 992px) {
    .mobile-call-float {
        display: none;
    }
}

/* --- Pulse Animation --- */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Slight hover effect for those who do see it on larger tablets */
.mobile-call-float:hover {
    transform: scale(1.1);
    background-color: #218838;
}

*,
.page-loader p {
    font-family: Outfit, serif
}

.page-loader,
header {
    background: #fff;
    width: 100%
}

.breadcrumb-group a,
.page-loader p,
.plan-text,
.provide,
.team-mem-datails p {
    text-transform: uppercase
}

*,
.coming-soon-subscribe a,
.search-input input,
.sed,
.small-header-sub p {
    font-style: normal
}



* {
    padding: 0;
    box-sizing: border-box
}

a {
    text-decoration: none
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0
}

.usefulLinks-List,
ul {
    padding-left: 0
}

ul li {
    list-style: none
}

button {
    border: none
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-corner {
    display: none
}

::-webkit-scrollbar-thumb {
    background: padding-box content-box #ff2424
}

::-webkit-scrollbar-track {
    background-color: #171819
}

.page-loader {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px
}

.page-loader .water-drop {
    height: 80px;
    width: 80px;
    border: 7px solid #1228e1;
    transform: rotate(45deg);
    border-radius: 0 50% 50%;
    position: relative;
    animation: .5s linear infinite alternate-reverse move
}

.page-loader .water-drop::before {
    content: "";
    position: absolute;
    height: 55%;
    width: 55%;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #1228e1;
    border-bottom-color: #1228e1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: 1s linear infinite rotate
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes move {
    to {
        transform: translateY(15px) rotate(45deg)
    }
}

.page-loader p {
    font-size: 40px;
    font-weight: 700;
    color: #ff2424;
    letter-spacing: 3px;
    padding-top: 20px
}

.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(.5, .5, 0, 1)
}

.fade_down,
.fade_left,
.fade_right,
.fade_up,
.flip_down,
.flip_left,
.flip_right,
.flip_up,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: 2s
}



/* Container must be relative so the absolute image stays inside it */
.section-one.position-relative {
    position: relative;
    overflow: hidden;
}

/* Forces the image to fill the entire background, sitting behind the text */
.service-header-bg-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales perfectly without stretching */
    z-index: -1; /* Pushes the image behind the text */
}

/* Optional: Add a dark overlay so white text is easy to read */
.service-header-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Adjust the 0.5 to make it darker or lighter */
    z-index: 0;
}

/* Ensure your text container sits on top of the overlay */
.page-img-header {
    position: relative;
    z-index: 1;
    /* Remove any background-image, background-color, or height rules from this class if you use this method! */
}


.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(.5, .5, 0, 1)
}

.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)
}

.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0, 0)
}

.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)
}

.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0)
}

.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%)
}

.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0)
}

.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%)
}

.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px)
}

.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0)
}

.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px)
}

.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0)
}

.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0)
}

.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%)
}

.img-animation-style6 {
    clip-path: circle(15% at 50% 50%)
}

.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%)
}

.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0)
}

.fade_up {
    transform: translateY(-100%)
}

.fade_down {
    transform: translateY(100%)
}

.zoom_in {
    transform: scale(.5)
}

.zoom_out {
    transform: scale(1.5)
}

.fade_right {
    transform: translateX(-100%)
}

.fade_left {
    transform: translateX(100%)
}

.flip_left {
    transform: perspective(400px) rotateY(-90deg)
}

.flip_right {
    transform: perspective(400px) rotateY(90deg)
}

.flip_up {
    transform: perspective(400px) rotateX(-90deg)
}

.flip_down {
    transform: perspective(400px) rotateX(90deg)
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.small-header {
    background: #f5f6f7
}

.small-header-sub-main {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.small-header-sub p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

.brochure-main h3:hover,
.header-contact a p:hover,
.project3-box-main:hover .project3-text,
.recent-post-text-main h2:hover,
.single-services-sub-box ul li a:hover,
.small-header-sub p:hover,
.usefulLinks-List li a:hover {
    color: #ff2424
}

.small-header-sub p img {
    padding-right: 5px
}

.small-header-sub {
    display: flex;
    align-items: center;
    gap: 60px
}

.small-header-media-main {
    display: flex;
    align-items: center;
    gap: 15px
}

header {
    border-bottom: 1px solid #eee;
    z-index: 500;
    position: sticky;
    top: -50px
}

.header-sub {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.book-appointbtn {
    color: var(--5, #fff);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 20px;
    background: #1228e1;
    transition: .3s ease-in-out
}

.call-info,
.hov,
.main li a {
    font-weight: 500
}

.book-appointbtn:hover,
.contact-menu-active,
.diamond-btn,
.hov.active,
.main li a:hover,
.submenu li:hover,
a.submenu-link.active {
    background: #ff2424
}

.header-contact,
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px
}

.media-contact-header {
    display: flex;
    align-items: center;
    gap: 48px
}

.ceo-home-rakshak,
.office-add,
.recent-post-text-main p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.header-contact .enva,
.header-contact a {
    color: #1228e1;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px
}

.media-icon-bg {
    width: 36px;
    height: 36px;
    background-color: rgba(168, 169, 173, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out
}

.contact,
.media-icon-bg:hover {
    background: #ff2424;
    border-radius: 30px 0 30px 30px
}

.contact,
.headphone-icon {
    align-items: center;
    display: flex
}

.main,
.main li a {
    -webkit-transition: .5s ease-in-out
}

.media-icon-bg:hover img,
.process-cir-main:hover img,
.submenu li:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(95deg) brightness(105%) contrast(101%)
}

.contact {
    gap: 10px;
    padding: 6px 30px 6px 6px
}

.headphone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    justify-content: center
}

.call-info {
    color: var(--5, #fff);
    font-size: 14px;
    line-height: 20px
}

.call-info a {
    color: var(--5, #fff);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px
}

.contact-menu a,
.freeplum,
.hov,
.hov:hover,
.main li a,
.why-choose-box:hover .rusted {
    color: #fff
}

.hov,
.main li a {
    line-height: 24px
}

.contact-num-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1228e1;
    border-radius: 0 30px 30px 0
}

.header-menu-main .list-arrow-main {
    display: flex;
    align-items: stretch
}

.header-menu-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -30px
}

.header-menu-main,
.project2-page-img-main,
.search-input,
.search-pop-serch-bar,
.services-box-col {
    position: relative
}

.header-menu-main::before,
.main {
    position: absolute;
    background: #1228e1;
    left: 0
}

.header-menu-main::before {
    content: '';
    width: 50%;
    height: 62px
}

.main {
    -webkit-transform-origin: 50% 0%;
    -webkit-transform: perspective(350px) rotateX(-90deg);
    top: 100%;
    width: 220px;
    border-top: 3px solid #fff
}

.main li a {
    width: 100%;
    font-size: 17px;
    display: block;
    padding: 10px 20px
}

.hov {
    position: relative;
    z-index: 2;
    font-size: 18px;
    padding: 18px 20px;
    cursor: pointer
}

.info,
.search-pop-up,
.slider-text {
    position: absolute
}

.hov:hover {
    background: #ff2424
}

.hov:hover .main {
    transform-origin: top;
    transform: perspective(350px) rotateX(0);
    transition: transform .6s ease-in-out
}

.search-icon-circle {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 6px 6px 6px 200px
}

.search-pop-up {
    right: 0;
    background: #ff2424;
    padding: 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .3s, transform .3s
}

.button-main,
.rusted,
.why-choose-box {
    transition: .3s ease-in-out
}

.search-pop-up.open {
    opacity: 1;
    transform: translateY(0)
}

.search-pop-up img {
    position: absolute;
    right: 35px;
    cursor: pointer
}

.search-pop-up input {
    width: 250px;
    outline: 0;
    border: none;
    background: #f5f6f7;
    padding: 10px 15px;
    color: #000;
    font-size: 18px;
    line-height: 24px
}

.humburger,
.search-bar-menu,
.side-menu-logo,
.side-menu-media {
    display: none
}

.slider-main,
.text-slide.active {
    display: block
}

.slider-main {
    overflow: hidden;
    content-visibility: auto
}

.slider-main img:first-of-type {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.info {
    width: 100%;
    max-width: 1320px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1000;
    margin: 0 auto
}

.slider-text {
    top: 50%;
    z-index: 10
}

.text-slide {
    display: none;
    position: relative
}

.background-img-slider-SecOne {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 760px;
    width: 100%;
    position: relative;
    overflow: hidden
}

.slick-slide {
    height: 100%;
    object-fit: cover;
    object-position: center
}

.slick-list,
.slick-track,
.slider-main {
    height: 100%
}

.slider-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 790px
}

.sec-one-slider-btn {
    width: 80px;
    height: 80px;
    background: #fffF;
    border: 0;
    text-align: center;
    color: #fff;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center
}

.NextArrow {
    position: absolute;
    bottom: 30px;
    left: 383px
}

.NextArrow:before {
    content: url('../images/svg/right-arrow.svg');
    width: 36px;
    height: 36px
}

.PrevArrow {
    position: absolute;
    bottom: 30px;
    left: 300px
}

.PrevArrow:before {
    content: url('../images/svg/left-arrow.svg');
    width: 36px;
    height: 36px
}

.quality {
    color: var(--3, #000);
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    max-width: 630px
}

.residents {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 630px;
    padding-top: 20px
}

.button-main {
    color: var(--5, #fff);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 18px 30px;
    background: #ff2424;
    border-radius: 30px;
    display: inline-block;
    margin-top: 40px
}

.provide,
.yer-of-exp span {
    font-weight: 500;
    font-size: 18px
}

.button-main:hover {
    background: #1228e1;
    border-radius: 30px 0 30px 30px
}

.provide {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--10, #ff2424);
    line-height: 20px;
    margin-bottom: 10px
}

.main-text-sec,
.yer-of-exp {
    color: var(--3, #000);
    font-weight: 700
}

.text-circle-main {
    width: 190px;
    height: 190px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0
}

.text-circle-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px dashed #f5f6f7;
    border-radius: 50%
}

.pip-circle,
.sec-two-img4,
.testimonial-eply-det img {
    border-radius: 50%
}

.text-circle-sub .circular-text {
    animation: 30s linear infinite rotate-animation
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.pip-circle {
    width: 90px;
    height: 90px;
    background: #f5f6f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute
}

#about-section-seven,
.section-four,
.section-two {
    padding: 100px 0
}

.main-text-sec {
    font-size: 48px;
    line-height: 64px
}

.sec-two-row {
    margin: 40px 0 60px
}

.sec-two-img3,
.yer-of-exp {
    margin-top: 30px
}

.pip-sec2 {
    position: absolute;
    left: 0;
    z-index: -1
}

.sec-two-img-group {
    display: flex;
    align-items: flex-start;
    gap: 30px
}

.jackson-deatils,
.yer-of-exp {
    display: flex;
    align-items: center
}

.yer-of-exp {
    font-size: 64px;
    line-height: 64px;
    gap: 15px
}

.yer-of-exp span {
    color: var(--8, #a8a9ad);
    line-height: 26px;
    max-width: 90px
}

.Singale-team-img,
.clients-main img,
.project-imgs,
.pulm-multi,
.sec-two-img2,
.sec-two-img3,
.service-box-img {
    max-width: 100%
}

.sub-text-sec {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.blue-box-ul li,
.jackson {
    font-size: 18px;
    line-height: 24px
}

.sec-two-blue-check-box {
    margin: 30px 0;
    padding: 20px;
    background: #1228e1
}

.jackson,
.vision {
    font-weight: 600;
    padding-bottom: 10px
}

.blue-box-ul li {
    color: var(--5, #fff);
    font-weight: 600;
    padding-bottom: 20px;
    display: flex;
    align-items: stretch;
    gap: 10px
}

.blue-box-ul li::before {
    content: url('../images/svg/check-svg.svg')
}

.jackson-deatils {
    margin-top: 40px
}

.jackson-box,
.vision-box {
    display: flex;
    align-items: center
}

.jackson-box {
    gap: 15px;
    padding-right: 70px;
    border-right: 2px solid rgba(168, 169, 173, .15)
}

.jackson {
    color: var(--11, #1228e1)
}

.ceo-tel-box {
    padding-left: 30px
}

.jack-tel {
    color: #ff2424;
    padding-top: 10px;
    display: block
}

.vision-box {
    gap: 20px
}

.call-svg-main,
.sec-head-text {
    align-items: center;
    display: flex
}

.vision {
    color: var(--3, #000);
    font-size: 24px;
    line-height: 36px
}

.eply-date,
.formDropDown-ul-list a,
.vision-passage {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.section-three {
    padding: 100px 0 170px;
    background: #f5f6f7
}

.reasons {
    max-width: 630px
}

.dui {
    max-width: 520px
}

.sec-head-text {
    justify-content: space-between;
    gap: 20px
}

.choose-us-row {
    gap: 24px 0;
    margin-top: -120px
}

.why-choose-box {
    padding: 30px;
    background: var(--11, #1228e1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%
}

.why-choose-box:hover {
    border-radius: 30px 0 30px 30px
}

.satisfa {
    color: var(--5, #fff);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding: 20px 0 10px
}

.rusted {
    color: var(--8, #a8a9ad);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px
}

.call-svg-main {
    width: 48px;
    height: 48px;
    padding: 10px;
    justify-content: center;
    background: #ff2424
}

.choose-call-box {
    display: flex;
    align-items: center;
    margin-top: 40px;
    width: 100%
}

.choose-call-box a {
    color: var(--10, #ff2424);
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 20px;
    background: #fff;
    width: 100%
}

.our-services-sec,
.single-blog3-row {
    justify-content: center
}

.services-plum {
    max-width: 815px;
    margin: 0 auto;
    text-align: center
}

.services-hov-box {
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: .5s;
    z-index: 1;
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.services-box-col:hover .services-hov-box {
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(96deg, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, .8) 100%);
    backdrop-filter: blur(5px);
    height: calc(100% - 30px)
}

.plumbing-repair {
    color: var(--11, #1228e1);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 10px
}

.Porttitor {
    color: var(--4, #222);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px
}

.process-text,
.project-text-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: center
}

.section-four-row {
    margin-top: 60px;
    margin-bottom: 70px
}

.section-five {
    background-image: linear-gradient(rgba(18, 40, 225, .8) 0, rgba(18, 40, 225, .8) 100%), url('../images/contact-page/fixing-kitchen-sink.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0
}

.free-contact {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(242deg) brightness(102%) contrast(103%)
}

.sec-head-text-btns-group {
    display: flex;
    align-items: center;
    gap: 30px
}

.contact-us-btn {
    background: 0 0;
    border: 2px solid #fffF;
    margin: 0
}

.contact-us-btn:hover {
    background: #ff2424;
    border: 2px solid transparent
}

.get-quote-frr-btn {
    border: 2px solid transparent;
    margin: 0
}

.get-quote-frr-btn:hover {
    background: 0 0;
    border: 2px solid #fffF
}

.section-six {
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.sec-six-pip-img {
    position: absolute;
    top: 0;
    right: 0
}

.blog-sec-row,
.project-sec-row,
.sec-seven-row,
.team-sec-row {
    margin-top: 60px
}

.proejct-sec-col {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.blog-image-container,
.overly-img-container {
    position: relative;
    overflow: hidden
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    transition: .5s;
    z-index: 1
}

.project-text-name {
    padding: 20px;
    background: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    z-index: 2;
    color: var(--11, #1228e1);
    width: calc(100% - 40px);
    animation: .5s forwards fadeDown
}

.overly-img-container:hover .overlay::before {
    opacity: 1
}

.overly-img-container:hover .project-text-name {
    opacity: 1;
    animation: .5s forwards fadeUp
}

@keyframes fadeUp {
    from {
        transform: translate(-50%, 20px);
        opacity: 0
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1
    }
}

@keyframes fadeDown {
    from {
        transform: translate(-50%, 0);
        opacity: 1
    }

    to {
        transform: translate(-50%, 20px);
        opacity: 0
    }
}

.process-cir-main {
    width: 160px;
    height: 160px;
    background: #f5f6f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: .3s ease-in-out
}

.formDropDown,
.input-main {
    display: flex;
    align-items: center
}

.process-cir-main:hover {
    background: #1228e1;
    border-radius: 100px 0 100px 100px
}

.process-text {
    color: var(--3, #000);
    padding-top: 20px;
    padding-bottom: 10px
}

.formDropDown,
.input-main input,
.process-text-sub {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400
}

.process-text-sub {
    color: var(--4, #222);
    text-align: center
}

.form-col {
    background: #000;
    padding: 100px 110px
}

.row.form-row {
    margin-bottom: -200px;
    margin-top: 100px;
    position: relative
}

.orm-pipes-img {
    object-fit: cover;
    height: 100%;
    width: 100%
}

.leo {
    color: #a8a9ad;
    padding-top: 20px
}

#accordionExample .accordion-button,
.formDropDown,
.input-main input {
    padding: 12px;
    background: rgba(168, 169, 173, .1)
}

#single-blog-slider,
.req-form-main {
    margin-top: 30px
}

.input-main {
    gap: 30px;
    margin-bottom: 30px
}

.input-main input {
    border: none;
    height: 48px;
    outline: 0;
    color: #a8a9ad;
    width: 100%
}

.input-main input::placeholder {
    color: #a8a9ad
}

.wrapper {
    width: 100%;
    cursor: pointer
}

.formDropDown {
    position: relative;
    color: #a8a9ad;
    justify-content: space-between
}

.formDropDown-ul-list {
    margin-top: -1px;
    background: #fff;
    padding-left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    z-index: 5;
    border: 1px solid #222;
    display: none
}

.plan-header,
.testimonial-eply-det {
    border-top: 2px solid rgba(168, 169, 173, .3)
}

.formDropDown-ul-list li {
    border-bottom: 1px solid #fff;
    padding: 10px 12px
}

.form-row::before {
    content: url('../images/gat-qote-page/pipe-left.png');
    position: absolute;
    left: -172px;
    top: 4px
}

.form-row::after {
    content: url('../images/gat-qote-page/pipe-right.png');
    position: absolute;
    right: -172px;
    top: 4px
}

.section-eight {
    padding: 300px 0 100px;
    background: var(--12, #f5f6f7)
}

.testimonial-box {
    background: #fff;
    padding: 30px;
    border: 2px solid rgba(168, 169, 173, .3);
    margin: 60px 12px 0;
    overflow: hidden
}

.eget {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 30px
}

.testimonial-eply-det {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    width: 100%
}

.eply-name {
    color: var(--11, #1228e1);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px
}

.overlay-text,
.team-mem-datails h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px
}

.testimonilas-main .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px
}

.plumbing-grid li button,
.testimonilas-main li button {
    font-size: 0px;
    color: #a8a9ad;
    width: 10px;
    height: 10px;
    background: #a8a9ad;
    margin: 5px;
    border-radius: 50%
}

.plumbing-grid .slick-active button,
.testimonilas-main .slick-active button {
    background: #ff2424 !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px
}

.section-nine {
    background: #fff;
    padding: 100px 0
}

.tellus {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px
}

.team-mem-datails {
    position: absolute;
    bottom: -2px;
    padding: 20px;
    background: linear-gradient(96deg, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, .8) 100%);
    backdrop-filter: blur(5px);
    clip-path: polygon(0 0, 85% 0, 100% 99%, 0% 100%);
    width: 100%;
    max-width: 330px
}

.team-mem-datails h3 {
    color: var(--3, #000);
    padding-bottom: 5px
}

.team-mem-datails p {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

.blog-img,
.liquam-grid-main img,
.side-bar-img,
.single-blog-img1,
.team-img-mem {
    width: 100%
}

.team-box .team-img-mem {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out
}

.team-box:hover .team-img-mem {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg)
}

.share-btn-main {
    z-index: 20;
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer
}

.overlay-blog,
.text-overly-box {
    position: absolute;
    bottom: 0;
    width: 100%
}

.team-box .share {
    height: 48px;
    width: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff2424
}

.team-box:hover .submenu li:first-child {
    opacity: 1;
    top: -50px;
    transform: rotate(0);
    transition-delay: 80ms
}

.team-box .submenu li:first-child {
    transform: rotateX(45deg)
}

.team-box:hover .submenu li:nth-child(2) {
    opacity: 1;
    top: -100px;
    transform: rotate(0);
    transition-delay: 0.16s
}

.team-box .submenu li:nth-child(2) {
    transform: rotateX(90deg)
}

.team-box:hover .submenu li:nth-child(3) {
    opacity: 1;
    top: -150px;
    transform: rotate(0);
    transition-delay: 0.24s
}

.team-box .submenu li:nth-child(3) {
    transform: rotateX(135deg)
}

.team-box:hover .submenu li:nth-child(4) {
    opacity: 1;
    top: -200px;
    transform: rotate(0);
    transition-delay: 0.32s
}

.team-box .submenu li:nth-child(4) {
    transform: rotateX(180deg)
}

.team-box .submenu li {
    transition: .5s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    height: 48px;
    width: 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.section-ten {
    padding-bottom: 170px
}

.overlay-blog {
    left: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .9) 100%);
    transition: 2s ease-in-out
}

.blog-image-container:hover .overlay-blog {
    background: linear-gradient(180deg, rgba(255, 36, 36, 0) 0, rgba(255, 36, 36, .9) 100%)
}

.text-overly-box {
    padding: 30px
}

.overlay-text {
    color: var(--5, #fff);
    padding-bottom: 15px
}

.morbi,
.plum-text-blog {
    font-size: 18px;
    font-weight: 400
}

.hr-line {
    width: 100%;
    height: 2px;
    background: #fff;
    mix-blend-mode: soft-light
}

.plum-text-blog {
    color: var(--5, #fff);
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px
}

footer {
    background: #000;
    padding: 100px 0 60px
}

.logo-sec-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--12, #f5f6f7);
    margin-top: -170px
}

.footer-logo-main {
    background: #1228e1;
    padding: 30px
}

.morbi {
    color: var(--8, #a8a9ad);
    line-height: 30px
}

.useful-link-text {
    color: #ff2424;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 40px;
    margin-bottom: 10px
}

.usefulLinks-List li {
    padding: 10px 0
}

.usefulLinks-List li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    transition: .3s ease-in-out
}

.footer-icons-main {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .6s ease-in-out
}

.footer-icons-main:hover {
    background: #ff2424;
    border-radius: 50px 0 50px 50px
}

.footer-icons-main img {
    width: 32px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(62deg) brightness(107%) contrast(100%)
}

.footer-media-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px
}

.copyright-main {
    padding: 15px 0;
    background: var(--4, #222)
}

.rights-reserved a,
.rights-reserved h2 {
    color: var(--5, #fff);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center
}

.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 200;
    background: 0 0;
    cursor: pointer
}

.bottom-top-button .water-drop {
    width: 60px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(95%) saturate(7495%) hue-rotate(243deg) brightness(87%) contrast(103%);
    position: relative
}

.arrow-drop {
    position: absolute;
    top: 34px;
    right: 12px;
    width: 35px
}

#about-bg {
    background-image: linear-gradient(91deg, #eae9e5 40.86%, rgba(234, 233, 229, 0) 50%), url(../images/about-page/page-header-img.webp)
}

.page-img-header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0
}

.img-header-text {
    color: #000;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px
}

.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px
}

.breadcrumb-group a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px
}

#about-section-five {
    margin-top: 100px
}

#about-section-nine,
#about-testimonial,
#get-qoute-working-process,
#get-quote-blog {
    padding-top: 100px
}

.blog-page1-row,
.project-page-row,
.team-page-row,
.testimonial-page-row {
    gap: 24px 0
}

.feugiat {
    padding-top: 20px
}

.contact-team-main {
    padding: 30px 0 40px
}

.contact-team-person,
.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px
}

.contact-team-person a {
    max-width: 300px;
    width: 100%
}

.contact-team-person h2 {
    max-width: 110px;
    width: 100%
}

.contact-team-person h2,
.contact-team-person p,
.progress-title {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px
}

.contact-team-person p {
    color: var(--4, #222);
    font-weight: 400
}

.highQulity {
    color: var(--3, #000);
    font-size: 35px;
    font-weight: 600;
    line-height: 36px
}

.single-team-page-row2 {
    margin-top: 70px
}

.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start
}

#accordionExample,
.experti-list {
    margin-top: 40px
}

.progress-title-holder {
    padding-bottom: 7px;
    position: relative
}

.progress-number-wrapper {
    width: 100%;
    z-index: 10
}

.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.progress-number-mark,
.progress-number-wrapper {
    color: #ff2424;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.progress-content-outter {
    height: 4px;
    border-radius: 2px;
    background-color: rgba(168, 169, 173, .2)
}

#coming-soon-header .media-icon-bg:hover,
.progress-content,
.tabs-btn a.active {
    background-color: #ff2424
}

.progress-content {
    height: 4px;
    border-radius: 2px;
    width: 0%
}

.experti-list {
    display: flex;
    align-items: center;
    gap: 80px
}

.experti-list-ul li {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px
}

.experti-list-ul li::before {
    content: url('../images/svg/rosette-check.svg');
    position: relative;
    top: 4px
}

.tabs-btn {
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.tabs-btn a {
    display: inline-block;
    background-color: #1228e1;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 132px;
    width: 100%;
    padding: 18px 0;
    text-align: center
}

.monthly {
    border-radius: 30px 0 0 30px
}

.yearly {
    border-radius: 0 30px 30px 0
}

.tabContainer {
    width: 100%;
    position: relative
}

.Tabcondent {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity .3s ease-in-out, transform .6s ease-in-out;
    transform: translateY(20px)
}

.tabs-btn a.active {
    color: #fff
}

.Tabcondent.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1
}

.plan-header {
    background: #fff;
    padding: 30px 30px 40px;
    border-left: 2px solid rgba(168, 169, 173, .3);
    border-right: 2px solid rgba(168, 169, 173, .3)
}

.plan-body {
    background: #1228e1;
    padding: 30px;
    position: relative
}

.plan-text {
    color: #ff2424;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    padding-bottom: 15px
}

.coming-soon-box,
.plan-price {
    line-height: 48px;
    font-weight: 700
}

.plan-price {
    color: #000;
    font-size: 48px
}

.coming-soon-box,
.count-down .box h3,
.notified,
.our-website {
    color: var(--5, #fff)
}

.plan-price sub {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px
}

.plan-body ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    display: flex;
    gap: 10px
}

.plan-body ul li:before {
    content: url('../images/svg/rosette-check-white.svg');
    position: relative;
    top: 7px
}

.shape1 {
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(13%) sepia(97%) saturate(5078%) hue-rotate(240deg) brightness(85%) contrast(110%)
}

.pricing-btn {
    margin-top: 20px
}

.get-started-btn {
    width: 100%;
    text-align: center;
    border: 2px solid transparent
}

.get-started-btn:hover {
    border: 2px solid #fffF
}

.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px
}

.accordion-item:first-of-type,
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important
}

.accordion-button:focus {
    box-shadow: none
}

#accordionExample .accordion-button {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 15px
}

.accordion-button:not(.collapsed) {
    color: #ff2424;
    background-color: rgba(255, 36, 36, .1) !important
}

#accordionExample.accordion {
    --bs-accordion-border-color: none
}

#accordionExample .accordion-body {
    padding: 0 0 30px;
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.accordion-button::after {
    background-image: url('../images/svg/down-arrow-black.svg');
    --bs-accordion-btn-icon-width: 2rem
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/down-arrow-red.svg')
}

.error-pge-img-main {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.error-pge-img {
    max-width: 100%;
    animation-name: hanging;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    transform-origin: center top;
    margin-top: -33px
}

@keyframes hanging {
    0% {
        transform: rotate(7deg)
    }

    100% {
        transform: rotate(-7deg)
    }
}

.coming-soon,
.coming-soon-body {
    width: 100%;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0
}

#coming-soon-header .media-icon-bg {
    background-color: #fff
}

.coming-soon-sec {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url('../images/coming-soon/coming-soon-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center
}

#coming-soon-header {
    background: 0 0;
    border-bottom: none;
    position: fixed;
    width: 100%;
    top: 10px
}

.coming-soon-img1 {
    max-width: 100%;
    -webkit-box-reflect: below -75px linear-gradient(transparent, rgba(0, 0, 0, 0.4))
}

.count-down {
    display: flex;
    gap: 55px;
    padding: 10px 0
}

.count-down .box {
    padding: 5px;
    text-align: center
}

.count-down .box h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px
}

.count-down .box span {
    color: var(--8, #a8a9ad);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px
}

.coming-soon-box {
    padding: 10px 20px;
    font-size: 32px;
    background: var(--6, #3447e9);
    max-width: 243px;
    margin: 40px 0
}

.our-website {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 50px
}

.notified {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px
}

.coming-soon-subscribe {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-top: 20px
}

.coming-soon-subscribe input {
    width: 100%;
    max-width: 330px;
    height: 54px;
    border: none;
    background: #fff;
    font-size: 18px;
    color: #222;
    padding: 10px 20px;
    outline: 0
}

.coming-soon-subscribe a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ff2424;
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px
}

.coming-soon-subscribe a:hover,
.diamond-next-btn:hover .diamond-btn {
    background: #1228e1
}

.coming-soon-subscribe-btn {
    position: absolute;
    right: 0;
    top: 0
}

.count-down-col {
    display: flex;
    justify-content: center;
    flex-direction: column
}

#rights-reserved a,
#rights-reserved h2 {
    color: #fffF
}

#rights-reserved {
    position: absolute;
    bottom: 30px
}

.services-page-row {
    gap: 100px 0
}

.handyman-text {
    color: var(--3, #000);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    padding-top: 20px
}

.fusce {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px
}

.plumbing-services-img2 {
    margin: 40px 0;
    max-width: 100%
}

.single-services-list-fetur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 30px
}

#contact-page-form input,
#recent-post-box,
.brochure-main {
    margin-bottom: 20px
}

.plumbing-grid img {
    max-width: 100%;
    padding: 0 12px
}

#contact-page-form,
.ad-details,
.single-services-sub-box ul {
    padding: 30px
}

.plumbing-grid .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.single-services-black-box {
    background: #ff2424;
    padding: 30px
}

.ad-details,
.single-services-sub-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.single-services-black-box h3 {
    color: var(--5, #fff);
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center
}

.single-services-sub-box {
    background-image: linear-gradient(rgba(18, 40, 225, .8) 0, rgba(18, 40, 225, .8) 100%), url(../images/services-page/other-services-bg.jpg)
}

.single-services-sub-box ul li {
    padding: 15px 0;
    border-bottom: 2px solid #f8f9fa3b
}

.single-services-sub-box ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.current-page-active {
    color: #ff2424 !important
}

.ad-box {
    margin-top: 40px;
    position: relative;
    overflow: hidden
}

.ad-box::before {
    content: '';
    width: 114%;
    height: 50px;
    background: #ff2424;
    position: absolute;
    top: 47%;
    right: -32px;
    transform: rotate(156deg)
}

.ad-details {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    background-image: linear-gradient(rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 100%), url('..//images/services-page/mic.jpg');
    overflow: hidden;
    margin-top: -175px;
    text-align: center
}

.logo-ad-details {
    position: absolute;
    top: 10px;
    right: 10px
}

.frist-services {
    color: var(--5, #fff);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    padding: 115px 0 30px
}

.documents-box {
    background: rgba(168, 169, 173, .1);
    padding: 20px;
    margin-top: 40px
}

.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff
}

.brochure {
    width: 60px;
    height: 60px;
    background: #ff2424;
    display: flex;
    align-items: center;
    justify-content: center
}

.brochure-main h3 {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px
}

.project2-box-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .5s ease-out;
    -moz-transition: .5s ease-out;
    -ms-transition: .5s ease-out;
    -o-transition: .5s ease-out;
    transition: .5s ease-out
}

.project2-box-main:hover .project2-page-content {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    transform: perspective(600px) rotateY(0)
}

.project2-page-img-main a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.project2-page-img-main img {
    width: 100%;
    object-fit: cover
}

.project2-page-content {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
    z-index: 1;
    padding: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -ms-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
    border-radius: 10px;
    overflow: hidden;
    transform: perspective(600px) rotateY(20deg)
}

.project2-page-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(18, 40, 225, .9);
    opacity: .9;
    z-index: -1
}

.project2-page-title,
.project2-page-title a {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px
}

.project2-page-info .tag {
    font-size: 18px;
    color: #fff
}

.project2-page-btn {
    text-align: right
}

.circle-btn {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ff2424
}

.project3-box-main {
    padding: 30px;
    background-color: rgba(128, 128, 128, .06);
    transition: .3s ease-in-out
}

.project3-box-main:hover,
.project3-box-main:hover .project3-box-img {
    border-radius: 30px
}

.search-input input,
textarea {
    border: none;
    color: var(--4, #222)
}

.project3-box-img {
    max-width: 100%;
    transition: .3s ease-in-out
}

.project3-text {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    color: #1228e1;
    padding-top: 20px
}

.project3-text-sub {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000
}

.build {
    color: #000;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    padding-bottom: 20px
}

.nunc-text {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.single-project-img {
    margin: 30px 0 20px;
    max-width: 100%
}

.sed {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    padding-bottom: 15px
}

.liquam-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px
}

.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, .2);
    border-bottom: 2px solid rgba(168, 169, 173, .2);
    margin-top: 50px
}

.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer
}

.diamond-next-btn h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px
}

.diamond-next-btn h3:hover {
    color: #1228e1
}

.send-inquiry-form {
    padding: 30px;
    background: rgba(168, 169, 173, .1);
    position: sticky;
    top: 180px
}

.project-info-text {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
    text-align: center
}

.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0
}

.project-info-main p:first-child {
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px
}

.project-info-main p:nth-child(2) {
    color: #ff2424;
    font-size: 20px
}

.single-project-media {
    margin-top: 30px;
    justify-content: center
}

.search-box,
.tag-date {
    align-items: center;
    display: flex
}

.single-project-img video {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, .1)
}

.search-input input {
    width: 100%;
    height: 60px;
    outline: 0;
    padding: 18px 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.search-box {
    width: 60px;
    height: 60px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0
}

#recent-post-box {
    margin-top: 40px;
    background: #000
}

.recent-post-text-main h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px
}

.tag-date-sub p,
textarea {
    font-size: 18px;
    font-weight: 400
}

.tag-date {
    gap: 20px;
    padding: 30px 0 20px;
    border-bottom: 2px solid #000
}

.tag-date-sub p {
    color: #000;
    line-height: 24px
}

.qoute-box {
    padding: 40px;
    background: rgba(168, 169, 173, .15);
    margin: 35px 0;
    position: relative
}

.qoute-box h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic
}

.line_client {
    display: flex;
    align-items: center;
    margin-top: 15px
}

.line {
    border-top: 2px solid #ff2424;
    width: 60px
}

.jordon {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px
}

.interdum {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 30px;
    margin-bottom: 10px
}

.leave-replyfrom input {
    height: 60px;
    padding: 10px 15px;
    color: #000
}

.input-main-blog input::placeholder {
    color: #000
}

.map-iframe {
    width: 100%;
    height: 100%
}

textarea {
    width: 100%;
    height: 120px;
    padding: 15px 20px;
    line-height: 30px;
    outline: 0;
    margin-bottom: 30px;
    resize: none
}
