@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root,
html {


    --Manrope-font: "Manrope", sans-serif;
    --Raleway-font: "Raleway", sans-serif;
    --accent-blue: #1B6BA7;
    --cta-yellow: #FBFB4C;
    --text-white: #fff;
    --muted-white: rgba(255, 255, 255, 0.9);
    --thin-line: rgba(255, 255, 255, 0.12);
    --hover-color: #9A1313;
}

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



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--Raleway-font);
}

a {
    text-decoration: none;
}

body {
    font-family: var(--Manrope-font);

    margin: 0;
    padding: 0;
}

header {
    position: absolute;
    top: 15px;
    z-index: 111;
    width: 100%;
}

.header-wrap {
    background: #fff;
    border-radius: 40px;
    padding: 8px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    width: auto;
}

.header-wrap .navbar {
    background: transparent !important;
    padding: 0;
    width: 100%;
}

.header-wrap .navbar .container-fluid {
    gap: 16px;
}

.header-wrap .navbar-brand img {
    height: 48px;
    width: auto;
    display: block;
}

.header-wrap .navbar-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.header-wrap .nav-link {
    color: #000;
    font-weight: 400;
    padding: 0 1rem;
    line-height: 1;
}

.search-wrap {
    margin-left: auto;
    display: flex;
    gap: 14px;
    align-items: center;
}

.search-control {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.04);
    font-size: 15px;
}

.search-text {
    display: inline-block;
}

.phone-pill {
    border-radius: 40px;
    padding: 10px 18px;
    font-weight: 700;
    background: #FFEB00;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-pill:hover {
    background: var(--hover-color) !important;
    color: white;
}

.navbar-toggler {
    border: 0;
}

@media (max-width:1199.98px) {
    .header-wrap {
        left: 12px;
        right: 12px;
        top: 12px;
        border-radius: 28px;
        padding: 8px 12px;
    }

    .header-wrap .navbar-nav,
    .search-control,
    .phone-pill {
        display: none !important;
    }
}

#hero {
    margin-top: 0;
}





.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0) 15%, rgb(86 86 86 / 0%) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero .owl-carousel,
.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item,
.hero .item,
.hero .slide {
    height: 100% !important;
}

.hero .owl-stage {
    display: flex;
    align-items: stretch;
}

.slide {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #000;
    z-index: 1;
}

.slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 50%;
    margin-left: 40px;
    margin-top: 40px;
    color: #fff;
}

.badge {
    color: #fff;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.badge::after {
    content: "";
    height: 1px;
    width: 100px;
    background: #FBFB4C;
    position: absolute;
    top: 50%;
    transform: translate(7px, 50%);
}

.headline {
    font-size: clamp(28px, 6.2vw, 72px);
    margin: 0 0 10px;
    font-weight: 800;
    color: #fff;
}

.subcopy {
    color: #fff;
    max-width: 400px;
    margin: 21px 0;
    font-size: 16px;
    display: block;
}



.btn-cta {
    background: #ffeb00;
    color: #111;
    padding: 12px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
    display: inline-block;
    transition: all.3s;
}

.btn-cta:hover {
    background: var(--hover-color);
    color: white
}

.hero-bottom {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slide-index {
    display: flex;
    align-items: center;
}

.slide-index button {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 14px;
    padding: 3px 8px;
    cursor: pointer;
    font-weight: 800;
    border-right: 1px solid;
}

.slide-index button:last-child {
    border-right: none;
}

.slide-index button[aria-current="true"] {
    color: #ffeb00;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.progress-line .inner {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.25);
    transition: width .45s ease;
}

.nav-circles {
    display: flex;
    gap: 10px;
}

.circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero .owl-dots,
.hero .owl-nav {
    display: none;
}

.about-section {
    padding: 3rem 0;
}


.title-wrapper h2 {
    font-size: 50px;
    font-weight: 700;
}

.title-wrapper>span {
    position: relative;
    color: white !important;
}

.title-wrapper>span::after {
    content: "";
    height: 1px;
    width: 100px;
    background: white;
    position: absolute;
    top: 50%;
    transform: translate(7px, 50%);
}

.title-wrapper>span {
    position: relative;
}

.title-wrapper span {
    color: #656565;
}

.about-content p {
    line-height: 30px;
}

a.btn-about {
    background: black;
    color: white;
    padding: 12px 21px;
    display: inline-block;
    border-radius: 32px;
    margin: 1rem 0;
    transition: all .3s;
}

a.btn-about:hover {
    background: var(--hover-color) !important;
    color: white
}



.counter-wrapper>h3 {
    display: inline-block;
    position: relative;
    padding: 10px 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #e8e8e8;
}

.counter-wrapper.text-center {
    padding: 80px 0 0 0;
}

#counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin-top: -15px;

}

#counters .counter {
    padding: 40px 60px;
    border-right: 1px solid #e8e8e8;
    text-align: left;
}

#counters .counter:nth-child(1) {
    padding-left: 28px;
    padding-right: 28px;
}

#counters .counter:last-child {
    border-right: none;
}

#counters .value {
    font-weight: 700;
    font-size: 75px;
    position: relative;
    display: inline-block;
    color: #000;
    margin-bottom: 12px;
    font-family: var(--Raleway-font);
}

#counters .value::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 10px;
    width: 100%;
    height: 16px;
    background: #ffeb00;
    border-radius: 2px;
    z-index: -1;
}

#counters .labels {
    font-size: 17px;
    color: #000000;
}


.feacture-img-sec {
    position: relative;
    background: #000;
    padding: 3rem 0;
}

.feacture-img-sec::before {
    content: "";
    height: 250px;
    position: absolute;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1;
}

.feacture-img-sec-wrap {
    position: relative;
    z-index: 1;
}




.our-service-sec {
    background: #000;
    padding: 3rem 0;
}



.our-service-sec {
    background: #000;
    color: #fff;
    padding: 3rem 0;
}

.our-service-sec .d-flex {
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.our-service-sec .view-all {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    text-decoration: none;
}

.our-service-sec .row.g-4 {
    margin-top: 8px;
}

.service-card {
    position: relative;
    background: transparent;
    padding: 18px 14px 26px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
    text-align: center;
}

.service-card-content {
    padding: 10px 1.5rem;
}


.service-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.6);
}

.service-img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
    position: relative;
    transition: transform .45s ease, filter .35s ease;
    z-index: 1;
}


.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.62) 70%);
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-card h4 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: color .22s ease;
}

.service-card:hover h4 {
    color: #ffe600;
}

.service-card p {
    font-size: 16px;
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    max-width: 100%;
}

.read-more,
.read-more-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
    margin-top: 10px;
    z-index: 3;
    font-size: 14px;
    font-weight: 600;
}

.service-card:hover .read-more,
.service-card:hover .read-more-btn {
    background: var(--cta-yellow);
    color: #000;
    border-color: var(--cta-yellow);
    font-weight: 600;
}

.read-more:focus,
.read-more-btn:focus {
    outline: 3px solid rgba(255, 230, 0, 0.22);
    outline-offset: 3px;
    border-radius: 22px;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
}

.award-sec {
    padding: 3rem 0;
    padding-top: 0;
}

.award-sec .title-wrapper>span {
    color: black !important;
}

.award-sec .title-wrapper>span::after {
    background: black;
}

.award-card {
    background: #F0F0F0;
    padding: 25px;
    margin: 2rem 0;
    border-radius: 25px;
}

.award-top-title {
    color: black;
    font-weight: 700;
}

.award-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    justify-content: space-between;
    flex-flow: wrap;
}

.award-icons .award-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.award-icons img {
    width: 85px;
    height: auto;
}

.award-icons a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.award-icons a:hover {
    text-decoration: underline;
}


.current-listing-sec {
    background: #000;
    padding: 3rem 0;
    color: white;
}

.listing-card img {
    border-radius: 20px;
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.listing-card-content {
    text-align: center;
    max-width: 500px;
    margin: 25px auto;
}

.listing-card-content .read-more {
    background: var(--cta-yellow);
    color: black;
}

.listing-card-content .read-more:hover {
    background: var(--hover-color);
    color: white;
}

.our-project-sec {
    padding: 3rem 0;
    background: var(--cta-yellow);
    color: #000;
    position: relative;
}


.our-project-sec .title-wrapper>span {
    color: #000 !important;
}

.our-project-sec .title-wrapper>span::after {
    background-color: #000;
}

.gallery-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-left {
    flex: 1;
}

.gallery-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-left .gallery-item {
    height: 100%;
    min-height: 400px;
}

.gallery-middle .gallery-item {
    height: calc(50% - 10px);
    min-height: 250px;
}

.gallery-right .gallery-item:first-child {
    height: 65%;
    min-height: 180px;
}

.gallery-right .gallery-item:last-child {

    height: 35%;
    min-height: 320px;
}

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

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: white;
}

.item-number {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--cta-yellow);
}

.item-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.view-all-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.9); */
    transition: opacity 0.3s ease;
    font-weight: 400;
    position: relative;
}

.view-all-btn::after {
    content: "";
    background-color: white;
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    margin-left: 10px;
    transform: translate(0, 50%);
}

.view-all-btn:hover {
    opacity: 0.7;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    /* position: absolute;
    bottom: 70px; */
}

.filter-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    background: #000;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-sec {
    padding: 2rem 0;
}

.testimonial-wrapper {
    padding: 2rem;
    border-radius: 20px;
    color: white;
    position: relative;
}


.quote-img {
    width: 75px !important;
    height: auto;
    margin: 20px auto;
}

.tesimonial-slider {
    background: #EDE6FF;
    color: black;
    padding: 40px;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
    border-radius: 40px;
    position: relative;
}

.testimonial-card p {
    font-size: 28px;
    font-family: var(--Raleway-font);
}

.reviewer-name {
    font-weight: 700;
    margin: 2rem 0;
}

.testimonial-card {
    padding: 40px 80px;
}


.testimonial-sec .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}


.testimonial-sec .owl-nav button.owl-prev,
.testimonial-sec .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: #ffffff00 !important;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    position: relative;
    border: 1px solid white;
}


.testimonial-sec .owl-nav button.owl-prev span,
.testimonial-sec .owl-nav button.owl-next span {
    font-size: 28px;
    color: white;
    line-height: 1;
    font-weight: 600;
}

.testimonial-sec .owl-nav button.owl-prev {
    margin-left: -70px;
}


.testimonial-sec .owl-nav button.owl-next {
    margin-right: -70px;
}

.testimonial-sec .owl-nav button.owl-prev:hover,
.testimonial-sec .owl-nav button.owl-next:hover {
    background: #f9f9f9 !important;
    transform: scale(1.08);
    transition: all 0.2s ease;
}

.testimonial-sec .owl-nav button.owl-prev:hover span,
.testimonial-sec .owl-nav button.owl-next:hover span {
    color: #000 !important;
}

.testimonial-sec a.view-all {
    color: white;
}


.video-section {
    padding: 3rem 0;
    position: relative;
}

.video-section .title-wrapper>span {
    color: #000 !important;
}

.video-section .title-wrapper>span::after {
    background: #000;
}


.media-section {
    padding: 3.5rem 0;
}

.video-thumb,
.interior-img {
    border-radius: 22px;
    overflow: hidden;
    display: block;
}

.video-thumb {
    position: relative;
    z-index: 3;
    max-height: 450px;
}


.interior-img {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .overlap-left {
        margin-right: -10%;
    }
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-btn {
    pointer-events: auto;
    background: white;
    border-radius: 36px;
    height: 67px;
}

.media-section img {
    border-radius: 30px;
}


.modal-dialog {
    max-width: 900px;
}

.modal-content {
    padding: 0 !important;
}

.modal-content iframe {
    width: 100%;
    height: 70vh;
    /* increases iframe height */
}



.contact-us-section {
    padding: 3rem 0;

}

.quote-section {
    padding: 24px 16px;
    display: flex;
    justify-content: center;
}

.quote-panel {
    width: 100%;
    max-width: 1101px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(6, 40, 74, 0.06);
}



.quote-panel h2 {
    text-align: center;
    margin: 0px 0 30px;
    font-size: 40px;
    font-weight: 600;
    color: #111;
}

.quote-form .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    align-items: start;
}

@media (max-width: 720px) {
    .quote-form .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding: 10px;
}

.field input::placeholder,
.field textarea::placeholder {
    font-size: 14px;
    color: #000000 !important;
    font-weight: 600;
    margin-left: 2px;
    text-transform: capitalize;
}

.field input,
.field select,
.field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0 0 0);
    height: 40px;
    padding: 6px 8px;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
    color: #111;
    resize: vertical;
    padding-left: 0;
    border: none !important;
    border-bottom: 1px solid black !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-quote {
    background-color: var(--hover-color);
}

.field select {
    appearance: none;
    padding-right: 28px;
    font-size: 14px;
    color: #000000 !important;
    font-weight: 600;
    margin-left: 2px;
    width: 100%;
}

.field textarea {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    resize: none;
    width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-bottom-color: rgba(0, 0, 0, 0.32);
    box-shadow: 0 4px 18px rgba(6, 40, 74, 0.06);
}



.form-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-quote {
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    margin: 2rem 0;
    transition: all .3s;
    background-color: var(--hover-color);
}

.btn-quote:hover {
    background: var(--cta-yellow);
    color: black;
}


.quote-form input:invalid,
.quote-form select:invalid,
.quote-form textarea:invalid {
    border-bottom-color: #000;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(0, 0, 0, 0.28);
}


.bold-heading-center h3 {
    text-align: center;
    font-size: 150px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 98px;
    user-select: none;
    margin-top: 40px;
    color: white;
}


.bold-heading-center h3 span {
    display: block;
    text-transform: lowercase;
    color: #FBFB4C;
    font-weight: 500;
    position: relative;
}


.site-footer {
    position: relative;
    background: #050505;
    color: #bfbfbf;
    padding: 5rem 1rem 0;
    overflow: hidden;
}


.footer-brand {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    font-family: var(--Raleway-font);
}

.footer-brand span {
    color: #666565;
    font-weight: 500;
}

.contact-list {
    margin-top: 1rem;
    padding-left: 0;
}

.contact-list li {
    list-style: none;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fffff7;
    font-size: 0.95rem;
}

.contact-list li .fa-fw {
    width: 1.1em;
    color: #bfbfbf;
}

.newsletter {
    margin-top: 0;
    max-width: 500px;
}



.newsletter label {
    color: #fffff7;
    font-weight: 600;
}

.newsletter .input-group {
    margin-top: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 95%;
}

.newsletter input {
    background: transparent;
    border: 0;
    outline: none;
    color: #fffff7;
    padding: 0.45rem 0;
    box-shadow: none;
}

.newsletter .btn-sign {
    background: transparent;
    border: 0;
    color: #d8d300;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}

.newsletter input::placeholder {
    color: #fffff7;
}

.footer-col h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 20px;
}



.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links a {
    display: block;
    margin-bottom: 0.6rem;
    color: #fffff7;
}

.social-links a .fa-fw {
    width: 1.2em;
}


.copyright {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    text-align: end;
}

.watermark {
    width: 100%;
    text-align: center;
    font-weight: 800;
    font-size: 280px;
    color: #1B1B1B;
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.form-control:focus {
    background-color: transparent;
    border-color: none;
    outline: 0;
    box-shadow: none;
    color: white;
}


.footer-links {
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    margin-bottom: 0.55rem;
}

.footer-links li a {
    color: #8f8f8f;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: underline;
}



.container {
    width: 100%;
    padding-left: 28px !important;
    padding-right: 28px !important;
    margin-left: auto;
    margin-right: auto;
}





@media (max-width: 1450px) {
    .testimonial-sec .owl-nav button.owl-prev {
        margin-left: 0;
    }

    .testimonial-sec .owl-nav button.owl-next {
        margin-right: 0;
    }


}

@media (min-width: 1450px) {
    .container {
        max-width: 1700px !important;
    }
}


@media (max-width: 1199px) {


    .service-img {
        height: 300px;
    }
}


@media (max-width: 1024px) {
    .gallery-wrapper {
        flex-direction: column;
    }

    .gallery-left .gallery-item {
        min-height: 400px;
    }

    .testimonial-card {
        padding: 30px 10px;
    }

    .testimonial-card p {
        font-size: 17px;
    }

    .bold-heading-center h3 {
        font-size: 124px;
        line-height: 74px;
    }

    .gallery-middle,
    .gallery-right {
        flex-direction: row;
    }

    .gallery-middle .gallery-item {
        width: calc(50% - 10px);
        height: 300px;
    }

    .gallery-right .gallery-item:first-child,
    .gallery-right .gallery-item:last-child {
        width: calc(50% - 10px);
        height: 300px;
    }

    .container {
        max-width: 100%;
    }
}


@media (max-width: 991px) {
    .watermark {
        font-size: 140px;
        bottom: -25%;
    }

    .copyright {
        position: static;
        margin-top: 1.6rem;
        text-align: center;
    }

    .site-footer {
        padding-bottom: 4.5rem;
    }

    .our-service-sec {
        padding: 44px 0;
    }



    .service-img {
        height: 260px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 50px;
    }

    .tph-footer-bg {
        font-size: 250px;
    }

    #counters .counter:nth-child(2) {
        border-right: none;
    }

    #counters .value {
        font-size: 50px;
    }

    #counters .counter:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }

    #counters .counter {
        padding: 41px 0;

    }

    .award-content {
        margin: 2rem 0;
    }

    .title-wrapper h2 {
        font-size: 38px;
    }

    .title-wrapper h2 {
        font-size: 30px;
    }

    #counters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-right {
        max-width: 100%;
    }


}


@media (max-width: 768px) {

    .gallery-middle,
    .gallery-right {
        flex-direction: column;
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .gallery-middle .gallery-item,
    .gallery-right .gallery-item:first-child,
    .gallery-right .gallery-item:last-child {
        width: 100%;
        height: 280px;
        min-height: 280px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .service-card-content {
        padding: 10px 0;
    }

    .bold-heading-center h3 {
        font-size: 70px;
        line-height: 55px;
    }
}

@media(max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .tph-footer-bg {
        font-size: 180px;
    }

    .our-service-sec {
        padding: 32px 0;
    }

    .service-img {
        height: 200px;
        border-radius: 12px;
    }

    .service-card {
        padding: 12px 10px 18px;
        border-radius: 12px;
    }

    .read-more,
    .read-more-btn {
        padding: 6px 12px;
        font-size: 16px;
    }

    .footer-brand {
        font-size: 22px;
    }

    .watermark {
        font-size: 90px;
        bottom: -28%;
        letter-spacing: -3px;
    }

    #counters {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    #counters .counter {
        border-right: none !important;
        border-bottom: 1px solid #8080803b;
        text-align: center;
    }

    #counters .counter:last-child {
        border-bottom: none !important;
    }

    .title-wrapper h2 {
        font-size: 23px;
    }

}


/*  remove  */

ul.navbar-nav.mx-auto {
    flex-flow: wrap;
}