@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@media (min-width: 1400px) and (max-width: 1599px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1170px;
    }

}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        transition: all 0.5s ease;
    }

}

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

body {
    font-family: "Oswald", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;

}

ul {
    padding: 0;

}

a {
    display: inline-block;
    text-decoration: none;
}

li {
    list-style: none;
}

.myClass {
    overflow: hidden;
}

/* Light glow */
.cursor-light {
    position: fixed;
    width: 160px;
    height: 160px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle,
            rgba(212, 212, 108, 0.25) 0%,
            rgba(255, 255, 8, 0.15) 35%,
            rgba(255, 255, 0, 0.07) 55%,
            transparent 55%);
    transform: translate(-50%, -50%);
    filter: blur(18px);
    z-index: 99;
}

.sub-heading {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 38px;
    line-height: 132%;
    text-transform: uppercase;
    color: #141414;
}

.nav-link:focus,
.nav-link:hover {
    color: rgb(255 213 0);
}

/* width */
::-webkit-scrollbar {
    width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: red;
}

/* =========================== header start ======================== */
.main-header {
    position: relative;
    transition: 0.3s;
    padding: 10px 40px;
    background: #082839;
    z-index: 99;
}

.main-header.scrolled {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 999;
    box-shadow: rgba(59, 59, 59, 0.34) 2px 0px 10px 0px;
    transition: 0.3s;
    animation: goDown 0.5s ease-in-out forwards;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar-brand {
    margin: 0 !important;
}

.navbar-brand img {
    object-fit: cover;
    width: 100%;
}

.all-same-btn {
    background: #FFD500 !important;
    border: 1px solid #FFD500 !important;
    color: #141414 !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding: 11px 12px;
    transition: all 0.3s ease;
	text-align:center !important;
}

.all-same-btn:hover {
    transition: all 0.3s ease;
    background: #F49321 !important;
    border-color: #F49321 !important;
    border-radius: 10px 0 10px;
}

.all-same-btn:hover svg {
    color: #FFD500 !important;

}

.main-menus ul li {
    margin: 0 18px;
}

.main-menus ul li a {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-right: 0 !important;
    padding-left: 0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.main-menus ul li:hover>a::after {
    width: 100%;
    transition: 0.5s;
}

.main-menus ul li>a::after {
    content: "";
    background-color: #ffda6a;
    display: block;
    height: 2px;
    position: absolute;
    width: 0px;
    left: 0px;
    right: 0px;
    transition: 0.5s;
    bottom: -2px;
}

.main-menus ul li a:hover {
    transition: all 0.3s ease;
    color: #FFD500 !important;
}

.main-menus ul li .dropdown-toggle::after {
    display: none;
}

.main-header .dropdown-item {
    color: black !important;
}

.main-header .dropdown-item:hover {
    color: black !important;
}

.main-header .dropdown-menu {
    border-radius: 0 !important;
    border-top: 5px solid #FFD500;
    padding: 0 !important;
    overflow: hidden !important;
}

.main-header .dropdown-menu li {
    margin: 0;
}
/* ==================== .hero-banner  start =========================== */

.hero-banner {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.hero-banner-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-banner-video::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background: #0000004D;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-banner-main {
    position: relative;
    z-index: 22;
    background: #00000080;
    padding: 66px 40px;
    clip-path: polygon(69% 0, 88% 21%, 100% 33%, 95% 100%, 0 100%, 0% 60%, 0 8%);
}

.hero-banner-main h1 {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 46px;
    line-height: 62px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.hero-banner-main p {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    margin: 15px 0;
}

.hero-banner-main .btn-wrap a {
    padding: 16px 26px;
}


.banner-bottom-bar,
.banner-top-bar {
    background: #F49321;
    position: relative;
    padding: 13px;
}

.banner-bottom-bar ul,
.banner-top-bar ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.banner-bottom-bar ul li,
.banner-top-bar ul li {
    color: #141414;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.banner-bottom-bar ul li a,
.banner-top-bar ul li a {
    color: inherit;
    border-bottom: 1px solid #000;
}

/* ==================== our-professional start =========================== */

.our-professional {
    position: relative;
    padding: 78px 40px;
}

.all-same-heading {
    color: #141414;
    font-weight: 500;
    font-size: 38px;
    line-height: 62px;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-align: center;
}

.our-professional-meta,
.our-professional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    margin-top: 36px;
    margin-bottom: 30px;
}

.our-professional-card {
    transition: all 0.5s ease;
}

.our-professional-card:hover {
    box-shadow: rgba(59, 59, 59, 0.34) 3px 13px 16px 2px;
    transition: all 0.5s ease;
}

.our-professional-img {
    width: 100%;
    height: 208px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.our-professional-img:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.our-professional-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.our-prof-card-contnt {
    background: #F5F5F7;
    padding: 20px 18px;
}

.opcc-height {
    height: 125px;
}

.our-prof-card-contnt h3 {
    color: #141414;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0%;
}

.our-prof-card-contnt h3 a {
    color: inherit;
}

.our-prof-card-contnt p {
    color: #424242;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-top: 10px;
    min-height: 50px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-transform: capitalize;
    overflow: hidden;
}

.read-more-btn {
    background: #4F5251;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    width: 100%;
    padding: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #F49321;
    color: #141414;
    transition: all 0.3s ease;
}

.our-professional .btn-wrap {
    text-align: center;
}

.our-professional .btn-wrap a {
    padding: 16px 20px;
}


/* ====================about us sectoin start =========================== */

.about-us {
    background: #0D1B2A;
    position: relative;
    padding: 70px 0;
}

.about-overly {
    bottom: 0;
    position: absolute;
    left: 10px;
}

.about-overly img {
    object-fit: cover;
    width: 100%;
}

.about-us-main {
    position: relative;
    padding-right: 4.5rem;
    border-right: 1px solid #F49321;
}

.about-us-main h2 {
    color: white;
    text-align: start;
    margin-bottom: 15px;
    line-height: 50px;
}

.about-us-main p {
    color: #FFFFFFBF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin: 15px 0;
}

.about-us-main .all-same-btn {
    padding: 16px 27px;
}

.about-us-img {
    width: 100%;
    height: 350px;

}

.about-us-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}

.about-us-main-images {
    position: relative;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==================== why choose sectoin start =========================== */
.why-choose {
    position: relative;
    padding: 80px 0;
}

.why-choose-img {
    width: 100%;
    height: 444px;
    clip-path: polygon(69% 0, 88% 21%, 100% 33%, 95% 100%, 0 100%, 0% 60%, 0 8%);
}

.why-choose-img-right {
    width: 100%;
    height: 444px;
    clip-path: polygon(31% 0, 12% 21%, 0 33%, 5% 100%, 100% 100%, 100% 60%, 100% 8%);
    position: relative;
}

.why-choose .why-choose-main p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #424242;
    margin-top: 20px;
}

.why-choose-img img,
.why-choose-img-right img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.why-choose-img-right img {
    object-position: top;
}

.why-choose-main {
    position: relative;
    padding-left: 40px;
}

.why-choose-main .all-same-heading {
    text-align: start;
    padding-right: 4rem;
    line-height: 50px;
}

.why-choose-main ul {
    padding: 0;
    margin-top: 20px;
}

.why-btns {
    margin-top: 30px;
}

.why-choose-main ul li {
    color: #141414;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    margin-top: 10px;
}

.why-choose-main ul li span {
    margin-right: 5px;
}


/* ==================== serving section start =========================== */

.serving-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 0;
    position: relative;
    z-index: 1;
}

.serving-section::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background: #0D1B2AE3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.serving-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-btn {
    color: #FFD500;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    position: relative;
}

.view-btn::after,
.view-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFD500, #b3a76e);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.view-btn::before {
    top: -5px;
    transform-origin: left;
}

.view-btn:hover::after,
.view-btn:hover::before {
    transform: scaleX(1);
}

.serving-section-heading .all-same-heading {
    color: white;
}

.all-same-heading span {
    color: #F49321;
}

.serving-sectiom-meta { 
    margin-top: 48px;
}

.serving-sectiom-meta ul {
    position: relative;
    column-count: 4;
    column-gap: 60px;
    column-rule: 1px solid #F49321;
    border-left: 1px solid #F49321;
    padding-left: 25px;
}
.serving-sectiom-meta ul li {
    padding: 2px 0;
}
.serving-sectiom-meta ul li a {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    transition: all 0.3s ease;
}

.serving-sectiom-meta ul li a:hover {
    color: #F49321;
    transition: all 0.3s ease;
    padding-left: 8px;
}


/* ==================== our-projects start =========================== */

.our-projects {
    position: relative;
    padding: 78px 40px;
}

.our-projects-main-img {
    width: 100%;
    height: 431px;
    position: relative;
}

.our-projects-main-img:hover::after {
    width: 100%;
    left: 0px;
}

.our-projects-main-img::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* 🔴 ye zaroori hai */
    color: #fff;
    width: 0px;
    height: 100%;
    z-index: 1;
    right: 0px;
    top: 0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 34px;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
    overflow: hidden;
}

.our-projects-main-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.our-projects-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.our-projects-meta-img {
    width: 100%;
    height: 205px;
    position: relative;

}

.our-projects-meta-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.our-projects-meta-img:hover::after {
    width: 100%;
    left: 0px;
}

.our-projects-meta-img::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* 🔴 ye zaroori hai */
    color: #fff;
    width: 0px;
    height: 100%;
    z-index: 1;
    right: 0px;
    top: 0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 34px;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
    overflow: hidden;
}

/* ======================== testimonial section=========================== */

.testimonial-section {
    background: #F5F5F7;
    position: relative;
    padding: 60px 0;
}

.testimonial-heading {
    text-align: center;
}

.testimonial-heading p {
    color: #424242;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.heading-star {
    margin: 10px 0;
}

.heading-star img {
    object-fit: cover;
    width: auto;
}

.testimonial-section-meta .testimonial-carousel {
    margin-top: 50px;
    position: relative;
}

.testimonial-section-meta .testimonial-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 358px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #F5F5F7 0%, rgba(245, 245, 247, 0) 100%);

}

.testimonial-section-meta .testimonial-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 358px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(270deg, #F5F5F7 0%, rgba(245, 245, 247, 0) 100%);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 27px;
    background: #FFFFFF;
    padding: 28px 24px;
}

.testtimonial-description {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 12px;
}

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

.testimonial-card P {
    color: #000000BF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
}

.testtimonial-description h5 {
    color: #141414;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 21.21px;
    letter-spacing: 0px;
}

.google-img {
    border: 1px solid #DFDFDF;
    border-radius: 100px;
    padding: 11px;
}

.testimonial-section-meta .testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    width: 80%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
}

.testimonial-section-meta .testimonial-carousel .owl-nav button {
    background: #E6E3DF !important;
    color: #000000;
    font-weight: 700;
    border-radius: 3px !important;
    font-size: 18px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    width: 38px;
    height: 38px;
}

.testimonial-section-meta .testimonial-carousel .owl-nav button:hover {
    color: #000000 !important;
    background-color: #FFDCEA;
}


/* ==================== get in touch start =========================== */

.get-in {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 0;
    position: relative;
    z-index: 1;
}

.get-in::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background: #00000099;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.get-in-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.get-in-heading .all-same-heading {
    color: #FFFFFF;
}

.get-in-heading p {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    flex: 0 0 47%;
}

.get-in-left {
    background: #000000B2;
    padding: 30px;
    height: 100%;
}

.get-in h3 {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
}

.get-in-left ul {
    padding: 0;
    margin-top: 30px;
}

.get-in-left ul li {
    margin-bottom: 35px;
}

.get-in-left ul li:last-child {
    margin-bottom: 0 !important;
}

.get-in-left ul li a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.get-in-cont h5 {
    color: #FFD500;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0%;
}

.get-in-cont p {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0%;

}

.get-in-right {
    background: #000000B2;
    padding: 30px;
    height: 100%;
}

.get-in-right .form-group {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.get-in-right form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.get-in-right form label {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
}

.get-in-right form .form-control,
.get-in-right form select {
    background: #242424;
    border: 1px solid #242424;
    border-radius: 0 !important;
    color: #FFFFFF66;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-top: 5px;
}

.get-in-right form .form-control::placeholder {
    color: #FFFFFF66;
}

.get-in-right form .all-same-btn {
    width: 100%;
}

span.red-dot {
    color: #FF0000;
}

/* ==================== Serving-section-start-css  =========================== */
.connecticut-section {
    padding: 50px 0;
    background: #F49321;
}



.section-heading p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #141414;
}


.connecticut-section .sub-heading {
    margin-bottom: 15px;
}

.connecticut-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
}

.connecticut-btns .all-same-btn {
    width: 321px;
    text-align: center;
    background: #fff;
    border-color: #fff;
}


/* ==================== Serving-section-end-css =========================== */
/* ==================== footer start =========================== */


.main-footer {
    background: #0D1B2A;
    position: relative;
    padding-top: 84px;
}

.footer-meta ul {
    padding: 0;
}

.col-12 .footer-meta {
    border-bottom: 1px solid #FFFFFF14;
    padding-bottom: 38px;
    margin-bottom: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-top-right {
    display: flex;
    align-items: center;
    gap: 21px;
}

.soical-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-meta h4 {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    height: 25px;
}

.footer-meta ul li a {
    color: #FFFFFFD1 !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    position: relative;
    transition: 0.5s;
}
.hours-time li a {
    color: #FFFFFFD1 !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px !important;
    letter-spacing: 0%;
}

.footer-meta ul li:hover>a::after {
    width: 100%;
    transition: 0.5s;
}

.footer-meta ul li>a::after {
    content: "";
    background-color: #ffda6a;
    display: block;
    height: 2px;
    position: absolute;
    width: 0px;
    left: 0px;
    right: 0px;
    transition: 0.5s;
    bottom: -5px;
}

.quick-links {
    margin-top: 26px;
}

.quick-links li {
    margin-bottom: 10px;
}

.hours-time {
    margin-top: 26px;
}

.hours-time li {
    color: #FFFFFFD1;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0%;
}

.hours-time li span {
    display: block !important;
}

.footer-top-right h4 {
    font-weight: 700;
}

.copy-right-section {
    margin-top: 58px;
    padding: 25px;
    text-align: center;
    border-top: 1px solid #FFFFFF14;
}

.copy-right-section p {
    color: #FFFFFF99;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0%;
}


.category-section-img:hover::after {
    width: 100%;
    left: 0px;
}

.category-section-img::after {
    content: "";
    font-family: FontAwesome;
    width: 0px;
    height: 100%;
    z-index: 1;
    right: 0px;
    top: 0px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
    overflow: hidden;
}

/* =====================================extra-banner-section-css-start==================================== */
.extra-banner {
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: end;
    position: relative;
    padding: 60px 0;
}

.extra-banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 22, 33, 0.2) 0%, rgba(0, 22, 33, 0.523244) 31.15%, rgba(0, 22, 33, 0.85) 100%);
}

.extra-banner-main {
    position: relative;
    z-index: 2;
}

.extra-banner-main h1 {
    font-weight: 500;
    font-size: 46px;
    line-height: 135%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-family: "Oswald", sans-serif;
}

.extra-banner-main p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin: 20px 0 32px;
}

/* =====================================extra-banner-section-css-end==================================== */
/* =====================================chimney-trust-section-css-start==================================== */
.chimney-trust-section {
    padding: 80px 0;
}

.chimney-trust-section .chimney-trust-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 45px;
    align-items: center;
}

.ctg-content {
    padding: 0 45px;
    border-left: 4px solid #d9d9d9;
}

.ctg-content .sub-heading {
    margin-bottom: 20px;
}

.ctg-img {
    width: 100%;
}

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

.ctg-content .section-heading p {
    text-align: justify;
}

/* =====================================chimney-trust-section-css-end==================================== */
/* =====================================chimney-heading-section-css-start==================================== */
.chimney-btm-heading h5 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 135px;
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 1.5px #eaeaea;
}

ul.pagination {
    display: none;
}

.our-professional nav .pagination {
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.our-professional nav .pagination .page-link {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #171717;
    padding: 8px 15px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.our-professional nav .pagination .page-link i {
    font-family: 'FontAwesome';
}

.our-professional nav .pagination ul li:first-child a {
    border: none !important;
}

.our-professional .page-item:first-child .page-link,
.our-professional .page-item:last-child .page-link {
    border: none;
    border-radius: 0;
}

.our-professional nav .pagination .active .page-link {
    background: #ffd500;
    border-color: transparent;
}

/* =====================================chimney-heading-section-css-start==================================== */

/* =====================================certified-section-css-start==================================== */

.certified-section {
    padding: 75px 0;
}

.certified-section .why-choose-top {
    margin-bottom: 75px;
}

.certified-section .sub-heading {
    margin-bottom: 20px;
}

.certified-section .section-heading p {
    text-align: justify;
}

/* =====================================certified-section-css-end==================================== */
/* =====================================timeline-section-css-end==================================== */




.timeline-section {
    background: #0d1b2a;
    padding: 75px 0;
}

.timeline {
    width: 100%;
    /* box-sizing: border-box; */
    /* position: relative; */
}

/* .timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #c5c5c5;
} */

.timeline ul {
    padding: 0;
    margin: 0;
}

.timeline ul li {
    list-style: none;
    position: relative;
    width: 70%;
    padding: 20px 40px;
    box-sizing: border-box;
    border-left: 1px solid #ffffff;
}

/* .timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
} */

.timeline ul li {
    float: right;
    text-align: left;
    clear: both;
}

.content {
    padding-bottom: 20px;
}

/* .timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    right: -6px;
    background: rgba(233, 33, 99, 1);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.2);
} */

.timeline ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    width: 14px;
    height: 14px;
    background: #f49321;
}

.timeline ul li h3 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 24px;
    line-height: 208%;
    text-transform: uppercase;
    color: #fff;
}

.timeline ul li p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: rgba(255, 255, 255, 0.75);
    margin: 10px 0 0;
    padding: 0;
}


/* .timeline ul li:nth-child(odd) .time {
    position: absolute;
    top: 12px;
    right: -165px;
    margin: 0;
    padding: 8px 16px;
    background: rgba(233, 33, 99, 1);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.3);
} */

.timeline ul li .time {
    position: absolute;
    top: 0;
    left: -15rem;
    margin: 0;
    color: #fff;
}

.time h4 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 68px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 0.5px #eaeaea45;
}

@media(max-width:1000px) {
    .timeline {
        width: 100%;
    }
}

@media(max-width:1199px) {
    .timeline ul li {
        padding: 20px 20px 20px 40px;
    }

    .timeline ul li p {
        font-size: 15px;
    }

    .timeline ul li:before {
        left: -7.5px;
    }
}

@media(max-width:991px) {
    .timeline {
        width: 100%;
        padding-bottom: 0;
    }



    .timeline:before {
        left: 20px;
        height: 100%;
    }

    .timeline ul li:nth-child(odd),
    .timeline ul li {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .timeline ul li:before {
        top: 0;
        left: -7px;
    }

    .timeline ul li .time {
        position: unset;
    }
}

/* =====================================timeline-section-css-end==================================== */
/* =====================================services-newyork-section-css-start==================================== */

.services-newyork-section {
    padding: 75px 0;
}

.sn-gitem p {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #141414;
}

.bxx {
    width: 12px;
    height: 12px;
    background: #f49321;
}

.sn-gitem a {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f7;
    padding: 15px 50px;
}

.services-newyorkgrid {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 38px 0 60px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.Counties-main {
    margin-top: 60px;
}

.Counties-main .sub-heading {
    font-size: 28px;
    line-height: 221%;
}

.Counties-main .section-heading {
    margin-bottom: 35px;
}

.counties-maps a {
    display: block;
    width: 100%;
}

.counties-maps a img {
    width: 100%;
    object-fit: cover;
}

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

.counties-griditme>.all-same-btn {
    background: #f5f5f7;
    border: none;
    width: 100%;
    text-align: center;
    padding: 14px 0;
}

.Counties-bxx {
    margin-bottom: 30px;
}

.counties-btns {
    text-align: center;
}

.bb-bar {
    margin-top: -35px;
    position: relative;
}

.bb-bx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bb-item a {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase;
    color: #141414;
    background: #f49321;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.bb-item {
    width: 100%;
}

.bb-item a p {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bb-bx .bb-item:last-child a {
    background: #FFD500;
}

/* =====================================services-newyork-section-css-end==================================== */
/* =====================================our-mission-section-start==================================== */


.our-mission-section {
    padding: 75px 0;
    position: relative;
}

.our-mission-section:after {
    background: #f5f5f7;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}


.mission-bxx {
    border: 5px solid #f49321;
    box-shadow: 0 6px 13px 0 rgba(209, 209, 209, 0.1), 0 24px 24px 0 rgba(209, 209, 209, 0.09), 0 54px 32px 0 rgba(209, 209, 209, 0.05), 0 96px 38px 0 rgba(209, 209, 209, 0.01), 0 150px 42px 0 rgba(209, 209, 209, 0);
}

.section-heading .mission-us-main-images {
    display: block;
}

.our-mission-section .section-heading p {
    margin: 20px 0 25px;
}

.our-mission-section .mission-us-img {
    width: 100%;
    height: 385px;
}

.our-mission-section .mission-us-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}

.our-mission-section .mission-us-main-images {
    position: relative;
    width: 100%;
    display: block;
}

.our-mission-section .youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.what-we-do {
    background: #0d1b2a;
}

.what-we-do .all-same-heading {
    color: #fff;
}

.what-we-do ul li {
    color: #fff;
}

.what-we-do {
    background: #0d1b2a;
}

.what-we-do .all-same-heading {
    color: #fff;
}

.what-we-do .why-choose-main p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
}

.badge-img {
    position: absolute;
    left: 2rem;
    bottom: 1rem;
    width: 165px;
}

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

/* =====================================our-mission-section-end==================================== */

/* ===================================================================================contact-us-page-css-start========================================================================= */


.contact-us-section {
    padding: 75px 0;
    background: #082839;
}

.contact-main .section-heading p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #404040;
    margin: 10px 0 40px;
}

.contact-main input,
.contact-main textarea {
    outline: 0;
    box-shadow: none !important;
    width: 100%;
    padding: 11px 16px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    color: #606060 !important;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    font-family: 'Poppins';

    font-size: 15px;
    line-height: 175%;
    text-align: left;
}

.contact-main input::placeholder,
.contact-main textarea::placeholder {
    color: #606060;
}

.contactform-bx .form-flx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-main .form-group {
    margin-bottom: 20px;
}

.contact-main textarea {
    height: 150px;
    border-radius: 0;
}

.contact-main .form-group .btn-all {
    background: #053D57;
}

.cf-bxxx {
    padding: 30px;
}

.contactform-bx button {
    margin: 0 auto;
}

.contact-main figure {
    width: 100%;
    height: 100%;
    border: 5px solid #ffd500;
    overflow: hidden;
}

.contact-main figure iframe {
    width: 100%;
	height:100% !important;
    object-fit: cover;
    height: 100%;
    display: block;
}

.contact-us-section .sub-heading,
.contact-us-section .section-heading p {
    color: #fff;
}

/* ===================================================================================contact-us-page-css-end========================================================================= */
/* ===================================================================================gallery-section-start========================================================================= */

.galley-section {
    padding: 100px 0;
    background-color: #082839;
}

.galley-section .container {
    width: 100%;
    max-width: 70rem;
    margin: 0 auto;
}


.galley-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 15px;
}

.g-left,
.g-right {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, auto);
}

.galley-item {
    width: 100%;
    margin-bottom: 15px;
}

/*.galley-item {
    width: 100%;
}*/

.g-left-wrapper,
.g-right-wrapper {
    display: grid;
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    height: 100%;
}

.g-right .galley-item {
    height: 100%;
}

.g-right .galley-item img {
    height: 100%;
}

.g-left .gallery-first,
.g-left .gallery-sec,
.gallery-firstsec {
    flex: 0 0 50%;
}

.g-left .gallery-first {
    column-count: 3;
    column-gap: 15px;   
}


.gallery-first .galley-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-firstsec .galley-item {
    height: 100%;
}

.gallery-firstsec .galley-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.g-left-wrapper>.galley-item img,
.g-right>.galley-item img {
    width: 100%;
    object-fit: cover;
}

.galley-item.video-item {
    height: 100%;
    position: relative;
}

.galley-item.video-item video,
.galley-item.video-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.g-left-wrapper>.galley-item {
    height: 100%;
}

.g-left-wrapper>.galley-item img {
    height: 100%;
}

.video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: transparent;
    z-index: 5;
    cursor: pointer;
}

.galley-item.video-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.galley-item.video-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .galley-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .g-left,
    .g-right {
        flex-direction: column;
    }
}

/* ===================================================================================gallery-section-ends========================================================================= */
/* ===================================================================================small-banner-start========================================================================= */

.small-banner {
    padding: 70px 0 100px 0;
    background: rgba(245, 245, 247, 1);
}

.small-banner .extra-banner-main h1 {
    color: #082839;
}

.small-banner .extra-banner-main p {
    color: #141414;
}

/* ===================================================================================small-banner-ends========================================================================= */
/* ===================================================================================single-blog-section-css-start========================================================================= */
.sidebar-page-container {
    position: relative;
    padding: 120px 0px 90px;
}

.sidebar-page-container .content-side {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

/* Sidebar */
.sidebar-page-container .sidebar-side {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .sidebar {
    position: relative;
}

.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}

.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
    padding: 30px;
    background: #f4f5f8;
}

.sidebar-title {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-title h4 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #404040;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
}

.sidebar .services ul {
    position: relative;
}

.sidebar .services ul li {
    position: relative;
    line-height: 48px;
    font-size: 16px;
    text-transform: capitalize;
    color: #404040;
    margin-bottom: 5px;
}

.sidebar .services ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background: #ffffff;
    border-radius: 0px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .services ul li:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    border-left: 2px solid var(--thm-base);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .services ul li:last-child {
    margin-bottom: 0;
}

.sidebar .services ul li a {
    position: relative;
    display: block;
    line-height: 48px;
    font-size: 16px;
    text-transform: capitalize;
    color: #404040;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
    color: #404040;
}

.sidebar .services ul li:hover:before,
.sidebar .services ul li.active:before,
.sidebar .services ul li:hover:after,
.sidebar .services ul li.active:after {
    opacity: 1;
}

.sidebar .services ul li a:after {
    position: absolute;
    right: 0;
    top: -1px;
    font-family: "Flaticon";
    content: "\f15f";
    opacity: 1;
    font-size: 10px;
    line-height: 48px;
    font-weight: 700;
    z-index: 1;
}

.sidebar .services ul li a:hover:before,
.sidebar .services ul li.active a:before {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
}

.sidebar .call-up .widget-inner {
    background: #404040;
    color: #999b9f;
}

.sidebar .call-up .sidebar-title h4 {
    color: #ffffff;
}

.sidebar .call-up .text {
    position: relative;
    display: block;
}

.sidebar .call-up .phone {
    position: relative;
    margin-top: 20px;
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--thm-font);
    font-weight: 300;
}

.sidebar .call-up .phone .icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: var(--thm-base);
    font-size: 20px;
    padding-right: 15px;
}

.sidebar .call-up .phone a {
    position: relative;
    color: #ffffff;
}

.sidebar .call-up .phone a:hover {
    text-decoration: underline;
}

.sidebar .search-box .widget-inner {
    padding: 0;
    background: none;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.dd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.dd-image {
    width: 100%;
}

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

.sidebar .search-box .form-group input[type=text],
.sidebar .search-box .form-group input[type=search] {
    position: relative;
    padding: 10px 80px 10px 15px;
    background: #f4f4f4;
    color: #404040;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
}

.sidebar .search-box .form-group ::-webkit-input-placeholder {
    opacity: 1;
    color: inherit;
}

.sidebar .search-box .form-group :-ms-input-placeholder {
    opacity: 1;
    color: inherit;
}

.sidebar .search-box .form-group ::-ms-input-placeholder {
    opacity: 1;
    color: inherit;
}

.sidebar .search-box .form-group ::placeholder {
    opacity: 1;
    color: inherit;
}

.sidebar .search-box .form-group input:focus {
    border-color: #404040;
}

.sidebar .search-box .form-group button {
    position: absolute;
    right: 0;
    top: 0px;
    height: 100%;
    width: 60px;
    display: block;
    font-size: 18px;
    color: #404040;
    background: none;
    font-weight: normal;
    border: none;
}

.sidebar .search-box .form-group input:focus+button,
.sidebar .search-box .form-group button:hover {
    color: #181b1f;
}

.sidebar .recent-posts .post {
    position: relative;
    font-size: 20px;
    color: #404040;
    padding: 7px 0px 0px 75px;
    min-height: 62px;
    margin-bottom: 20px;
}

.sidebar .recent-posts .post:last-child {
    margin-bottom: 0px;
}

.sidebar .recent-posts .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 62px;
    height: 62px;
    border-radius: 0%;
}

.sidebar .recent-posts .post-thumb img {
    position: relative;
    display: block;
    width: 100%;
    object-fit: cover;

}

.sidebar .recent-posts .text {
    font-size: 16px;
    color: #404040;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins';
}

.sidebar .recent-posts .text a {
    color: #404040;
}

.sidebar .recent-posts .text a:hover {
    color: #404040;
}

.sidebar .popular-tags .tags-list {
    padding-right: 20px;
}

.sidebar .popular-tags .tags-list li,
.sidebar .popular-tags .tags-list a {
    position: relative;
    color: #404040;
    display: inline-block;
}

.sidebar .popular-tags .tags-list a {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #404040;
    text-transform: capitalize;
    font-family: 'Poppins';
}

.sidebar .popular-tags .tags-list a:hover {
    color: #404040;
}

.sidebar .archives ul {
    position: relative;
}

.sidebar .archives ul li {
    position: relative;
    line-height: 30px;
    font-size: 16px;
    text-transform: capitalize;
    color: #404040;
    margin-bottom: 10px;
}

.sidebar .archives ul li:last-child {
    margin-bottom: 0;
}

.sidebar .archives ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    color: #404040;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    font-family: "Poppins", sans-serif;
}

.sidebar .archives ul li:hover a,
.sidebar .archives ul li.active a {
    color: #404040;
    font-weight: 400;
}

.sidebar .archives ul li a:after {
    position: absolute;
    right: 0;
    top: -1px;
    font-family: "fontawesome";
    content: "\f061";
    opacity: 1;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    z-index: 1;
}



/* Post Details */
.post-details {
    position: relative;
    margin-bottom: 30px;
}

.post-details .inner-box {
    position: relative;
    display: block;
}

.post-details .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.post-details .image-box a {
    display: block;
}

.post-details .image-box img {
    display: block;
    width: 100%;
    object-fit: cover;
}



.post-details .lower-box {
    position: relative;
    padding: 30px 0px 0px;
}

.post-details .post-meta {
    position: relative;
    display: block;
}

.post-details .post-meta ul {
    position: relative;
    display: block;
}

.post-details .post-meta ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 5px 0px;
    font-size: 14px;
    font-family: 'Poppins';
}

.post-details .post-meta ul li .far,
.post-details .post-meta ul li .fa {
    position: relative;
    top: -2px;
    color: #ffd500;
    font-size: 14px;
    padding-right: 3px;
    vertical-align: middle;
}

.post-details .lower-box h4 {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.1em;
    color: #404040;
    margin-bottom: 20px;
}

.post-details .lower-box h4 a {
    color: #404040;
}

.post-details .lower-box h4 a:hover {
    color: var(--thm-base);
    text-decoration: underline;
}

.post-details .lower-box .text {
    position: relative;
    display: block;
}

.post-details .lower-box .text p {
    position: relative;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.post-details .info-row {
    position: relative;
    display: block;
    padding: 28px 0px 0px;
    border-top: 1px solid #e9ebee;
    font-size: 16px;
    line-height: 30px;
}

.post-details .info-row strong {
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #404040;
}

.post-details .info-row a {
    color: #404040;
}

.post-details .info-row a:hover {
    text-decoration: underline;
}

.post-details .info-row .tags-info {
    position: relative;
    float: left;
}

.post-details .info-row .cat-info {
    position: relative;
    float: right;
}

.sidebar-page-container .post-control-two {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-page-container .post-control-two .control-col {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .post-control-two .control-inner {
    position: relative;
    display: block;
    padding: 55px 50px;
    background: #f4f5f8;
    height: 100%;
    min-height: 100%;

}

.sidebar-page-container .post-control-two .control-inner:hover {
    background: var(--thm-base);
}

.sidebar-page-container .post-control-two .over-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sidebar-page-container .post-control-two .control-inner h4 {
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.1em;
    color: #404040;
    margin-bottom: 0px;
}

.sidebar-page-container .post-control-two .control-inner h4 a {
    color: #404040;
}

/***
 

====================================================================
51.		Leave Comments Form
====================================================================

 ***/
.leave-comments {
    position: relative;
}

.leave-comments form .row {
    margin: 0 -10px;
}

.leave-comments form .form-group {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.leave-comments form .form-group:last-child {
    margin-bottom: 0;
}

/* ===================================================================================single-blog-section-css-end========================================================================= */
/* -------------------------------------------post-section-css-start------------------------------------------------ */

.post-section .big-heading a {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 28px !important;
    line-height: 114%;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}


.post-section .post-image a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 35%;
    position: relative;
}



.post-section .post-image a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 35%;
    position: relative;
}

.post-section .post-image a img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.post-section .post-content {
    padding-top: 15px;
}

.post-section .post-content p {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #141414;
    margin: 10px 0;
}

.post-section .post-content p span {
    color: #000;
}

.post-section .post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}

.post-section .post-card {
    height: 100%;
}

.post-section .post-grid .post-card .post-content p {
    margin: 10px 0;
}

.post-section .custom-pagination .pagination {
    display: flex;
    gap: 8px;
}

.post-section .custom-pagination .page-item .page-link {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background: #e5e5e5;
    color: #000;
    font-weight: 500;
}

.post-section .custom-pagination .page-item.active .page-link {
    background: #000;
    color: #fff;
    border-radius: 0;
}

.post-section .custom-pagination .page-item .page-link:hover {
    background: #000;
    color: #fff;
}

.post-section .post-content h5 a {
    color: #141414;
}

.post-section .custom-pagination .page-item.dots .page-link {
    pointer-events: none;
    background: #e5e5e5;
}

.post-section {
    padding: 0 0;
    margin-top: -100px;
}

.post-section .pgin-bxx {
    margin-top: 60px;
}

.post-section .pgin-bxx nav.custom-pagination ul {
    justify-content: center;
}

/* -------------------------------------------post-section-css-end------------------------------------------------ */
/* -------------------------------------------our-professional-css-start------------------------------------------------ */

.our-professional {
    padding: 78px 40px 50px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.our-professional-meta {
    margin-bottom: 0;
}

.extra-btm {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 8;
    padding: 15px 0;
    align-items: flex-end;
}

.extra-item h5 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 22px;
    line-height: 145%;
    color: #fff;
}

.extra-item ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    font-family: 'Oswald';
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}



.extra-banner-content .btn-all {
    background: #fff;
    color: #000;
    margin: 30px auto 30px;
}

/* -------------------------------------------our-professional-css-end------------------------------------------------ */
/* -------------------------------------------rockland-section-css-start------------------------------------------------ */


.rockland-section {
    padding: 75px 0 0;
}


.rockland-main ul li {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 200%;
    color: #424242;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rockland-main ul li:before {
    background: #f49321;
    width: 30px;
    height: 3px;
    content: "";
    position: relative;
    display: inline-block;
}

.rockland-main ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.rockland-main {
    margin-top: 44px;
}

.county-section {
    background: #F5F5F7;
    padding: 70px 0;
}

.county-main {
    margin-top: 40px;
}

.county-main ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.county-main ul li {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #141414;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.county-main ul li:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f49321;
}

.need-chimney-section .section-heading-wrap {
    background: #ffd500;
    padding: 40px;
}

.need-chimney-section .sub-heading {
    font-size: 28px;
}

.need-chimney-section .section-heading p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #1c1c1c;
    margin: 20px 0;
}

.need-chimney-section .section-heading .all-same-btn {
    background: #fff;
}

.need-chimney-section {
    padding: 0 00 78px;
}

.need-chimney-section .section-heading {
    width: 55%;
    margin: 0 auto;
    text-align: center;
}

/* -------------------------------------------rockland-section-css-end------------------------------------------------ */

/* -----------------------------------------------------------mobile-menu-start-css----------------------------------------------------------- */
nav.site-navigation {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.navbar-nav .dropdown-menu-mb {
    position: fixed;
    border: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background: red;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s;
}

.navbar-nav .dropdown-menu-mb.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}

.nav-item-sub {
    color: #000;
    font-weight: 500;
    font-size: 15px;
}

.open-submenu {

    display: flex;

    align-items: center;

    justify-content: flex-end;
}

.offcanvas-header {
    padding: 10px;
}

.submenu-transform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.35s;
    z-index: 1;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #0D1B2A;
}

.submenu-transform.active {

    transform: translate3d(0, 0, 0);
}

.menu-list-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-menu-back {
    margin-left: 0;
    margin-right: 10px;
    width: 30px;
}

.nav-text-sub {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    color: #000;
}

.mega-menu-header {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-back-text {
    color: #fff;
}

/* -----------------------------------------------------------mobile-menu-end-css----------------------------------------------------------- */

/* ==== 27/12/2025 (Kunal CSS) ==== */

.city-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 90vh;
}
.city-banner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.city-banner:before{
    content: '';
    background: rgba(52, 66, 86, 0.8);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.city-banner-content{
    position: relative;
}
.city-banner-content h1 {
    font-weight: 500;
    font-size: 46px;
    line-height: 135%;
    text-transform: uppercase;
    color: #fff;
    font-family: "Oswald", sans-serif;
}
.city-banner-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    margin: 20px 0 32px;
}
.city-banner-content h1 span{
    color: #FFD500;
}
.city-banner-content .all-same-btn {
    padding: 16px 28px;
}
.city-features {
    display: flex;
    gap: 40px;
    position: relative;
}
.city-features .features-card {
    display: flex;
    gap: 20px;
    position: relative;
    align-items: center;
}
.city-features .features-card .content-box h5 {
    color: #FFF;
    font-size: medium;
    margin: 0;
}
.city-features .features-card .content-box p {
    font-size: small;
    margin: 0;
}
.city-features .features-card .icon-box {
    background: #ffd5006F;
    border-radius: 100px;
    color: #FFF;
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
}
.section-heading{
    display: block;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}
.section-heading h5.sub-heading{
    color: #ffd500;
    font-size: medium;
    margin-bottom: .5rem;
}
.section-heading h2{
    text-transform: capitalize;
    text-align: center !important;
}
.city-services{
    background: #F5F5F7;
    padding: 80px 0;
}

.timeline > * {
    color: #fff;
}

.success-msg {
    color: green !important;
}
.error-msg {
    color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white !important;
}