/*  =======================================================================

Template:       Phoenixal Services- Architecture & Interior Design HTML5 Template
Version:        1.0
Last change:    24/10/25 
Author:         https://digitaltechsolution.co.in/

========================================================================= */

/*=========================================================================
[Table of contents]

1.0  - General
2.0  - Typography
3.0  - Global Style
4.0  - Navigation
5.0  - Page Title Section
6.0  - Slider Section
7.0  - Creative Section
8.0  - About Section
9.0  - Service Section
10.0 - Why Choose Us Section
11.0 - Projects Section
12.0 - Team Section
13.0 - Appointment Section
14.0 - Testimonial Section
15.0 - Blog Section
16.0 - Newsletter Section
17.0 - Footer Section

=========================================================================*/


/*  =========== Variables =========== */
:root {
    --primary: #FDC830;
    --primary-dark: #C99212;
    --accent: #2FB7A8;
    --light: #F8F8F8;
    --dark: #111212;
    --light-dark:#161616;
    --surface: #1d1f1f;
    --muted: #c7c0b2;
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.text-primary{color: var(--primary)!important;}
.btn-primary{background-color: var(--primary)!important;border-color: var(--primary)!important;border-radius: 0;}
.border-primary{border-color: var(--primary)!important;}
.bg-dark{background-color: var(--dark)!important;}
.bg-light-dark{background-color: var(--light-dark)!important;}

/*  =========== General =========== */
body{
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    color: var(--light);
    background:
        radial-gradient(circle at 12% 8%, rgba(253, 200, 48, .09), transparent 28%),
        linear-gradient(135deg, #111212 0%, #191a1a 48%, #0d0f0f 100%);
    background-color: var(--dark);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{font-family: "Albert Sans", sans-serif;color: var(--light);}
h1{font-weight: 800!important;line-height: 1.08;}
p{font-family: "DM Sans", sans-serif;color: rgba(248, 248, 248, .82);line-height: 1.75;}
.header{
    background: rgba(17, 18, 18, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.logo{
    align-items: center;
    display: flex;
    gap: 12px;
}
.logo img{
    height: 48px;
    object-fit: contain;
    width: 48px;
}
.logo h1{text-transform: uppercase;font-size: 25px;}
a{text-decoration: none;}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/* For modern browsers */
::placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Firefox */
input:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Internet Explorer (optional/legacy support) */
input:-ms-input-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}
.form-control{color: var(--light);border-radius: 0;}
.form-floating>label{color: var(--dark);}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    color:var(--primary)!important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 999px;
    letter-spacing: .2px;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #111212;
    box-shadow: 0 14px 30px rgba(253, 200, 48, .22);
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    background-color: var(--accent)!important;
    border-color: var(--accent)!important;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link::before {
    background: var(--primary);
    bottom: 22px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar-toggler{color:var(--light)!important;padding: 0;border: 0;}
.navbar-toggler:focus{box-shadow: none;}
.navbar-toggler-icon{
    background-image: none!important;
    color: var(--light)!important;
    font-size: 30px;
    width: auto;
    height: auto;
}

@media (max-width: 991.98px) {
    .logo img{
        height: 40px;
        width: 40px;
    }

    .logo h1{
        font-size: 20px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar.sticky-top{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary)!important;
}
.dropdown-item{
    transition: .5s;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--dark);
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primary)!important;
    color:var(--light)!important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        width: 240px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width:430px) and (max-width:930px){
    .navbar-nav{
        height: 250px;
        overflow-y: scroll;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .42) 54%, rgba(0, 0, 0, .2) 100%),
        linear-gradient(0deg, rgba(17, 18, 18, .42), rgba(17, 18, 18, .08));
}

.header-carousel .owl-carousel-item {
    min-height: 740px;
}

.header-carousel .owl-carousel-item > img {
    height: 740px;
    object-fit: cover;
    width: 100%;
}

.header-carousel h1 {
    max-width: 900px;
    text-shadow: 0 12px 38px rgba(0, 0, 0, .55);
}

.header-carousel p {
    max-width: 700px;
}

.hero-kicker {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-kicker::before {
    background: var(--accent);
    content: "";
    height: 2px;
    margin-right: 14px;
    width: 46px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions .btn-outline-body {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .35);
    color: #FFFFFF;
}

.hero-actions .btn-outline-body:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--dark);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof div {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    min-width: 132px;
    padding: 16px 18px;
}

.hero-proof strong {
    color: #FFFFFF;
    display: block;
    font-family: "Albert Sans", sans-serif;
    font-size: 26px;
    line-height: 1;
}

.hero-proof span {
    color: rgba(255, 255, 255, .74);
    display: block;
    font-size: 13px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: rgba(17, 18, 18, .86);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transition: .5s;
    overflow: hidden;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    background: var(--accent);
    content: "";
    display: inline-block;
    height: 2px;
    margin-left: 14px;
    vertical-align: middle;
    width: 42px;
}


/*** Facts ***/
.fact-item {
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    transition: .45s;
}

.fact-item:hover {
    transform: translateY(-8px);
}

.fact-item h3{color: var(--dark);font-weight: 700;font-size: 24px;}
.fact-item p{color:#535353;}
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.02);
    transition: .6s;
}

.service-item .service-text {
    background: var(--light);
    border: 1px solid rgba(255, 255, 255, .12);
    min-height: 390px;
    transition: .5s;
    width: 100%;
}

.service-item:hover .service-text {
    background: rgba(17, 18, 18, .82);
    backdrop-filter: blur(4px);
}

.service-item:hover .bg-img {
    transform: scale(1.08);
}

.service-item * {
    transition: all 0.5s ease;
}

.service-item:hover * {
    color: #FFFFFF;
}
.service-item h3{font-size: 25px;}
.service-item h3, .service-item p{color:var(--dark);}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project {
    overflow: hidden;
}

.project .container {
    position: relative;
}

.project .container::before {
    background: linear-gradient(135deg, rgba(253, 200, 48, .14), rgba(47, 183, 168, .08));
    content: "";
    height: 72%;
    left: 12px;
    position: absolute;
    right: 12px;
    top: 120px;
    z-index: -1;
}

.project .row.wow {
    align-items: stretch;
}

.project .nav.nav-pills {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    padding: 18px;
}

.project .nav .nav-link {
    background: var(--surface);
    transition: .5s;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    color: var(--light);
    isolation: isolate;
    overflow: hidden;
    padding: 28px 30px !important;
    position: relative;
}

.project .nav .nav-link::before {
    background: rgba(253, 200, 48, .16);
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    transition: .35s;
    width: 0;
    z-index: -1;
}

.project .nav .nav-link::after {
    color: rgba(255, 255, 255, .26);
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    margin-left: auto;
    transition: .35s;
}

.project .nav .nav-link span{
    color:var(--light);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.project .nav .nav-link.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 18px 45px rgba(253, 200, 48, .22);
    transform: translateX(10px);
}

.project .nav .nav-link.active span {
    color: #111212 !important;
}

.project .nav .nav-link.active::after {
    color: #111212;
    transform: translateX(4px);
}

.project .nav .nav-link:hover::before {
    width: 100%;
}

.project .tab-content {
    background: rgba(17, 18, 18, .78);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    min-height: 100%;
    padding: 28px;
}

.project .tab-pane .row {
    align-items: center;
}

.project .tab-pane .position-relative {
    overflow: hidden;
}

.project .tab-pane img {
    box-shadow: var(--shadow);
    transition: .6s;
}

.project .tab-pane.active img {
    transform: scale(1.02);
}

.project .tab-pane h1 {
    font-size: clamp(2rem, 3vw, 3.4rem);
    margin-bottom: 20px !important;
}

.project .tab-pane p {
    color: rgba(248, 248, 248, .84);
}

.project .tab-pane p:has(.fa-check) {
    align-items: center;
    background: rgba(255, 255, 255, .045);
    border-left: 3px solid var(--primary);
    display: flex;
    margin-bottom: 12px;
    padding: 12px 14px;
}

.project .tab-pane .btn {
    margin-top: 18px !important;
}

.project .tab-pane .col-md-6:first-child::after {
    background: linear-gradient(180deg, rgba(17, 18, 18, 0), rgba(17, 18, 18, .58));
    bottom: 0;
    content: "Featured Project";
    font-family: "Albert Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    left: 0;
    letter-spacing: 1.5px;
    padding: 60px 24px 22px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .project .container::before {
        top: 150px;
    }

    .project .nav.nav-pills {
        margin-bottom: 24px;
    }

    .project .nav .nav-link.active {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .project .nav.nav-pills,
    .project .tab-content {
        padding: 14px;
    }

    .project .nav .nav-link {
        padding: 20px !important;
    }

    .project .nav .nav-link span {
        font-size: 17px;
    }
}

.project-showcase .container::before {
    background:
        linear-gradient(135deg, rgba(253, 200, 48, .12), rgba(47, 183, 168, .08)),
        rgba(255, 255, 255, .025);
    height: calc(100% - 130px);
    top: 96px;
}

.project-head {
    align-items: end;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 42px;
}

.project-head > div {
    max-width: 760px;
}

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

.project-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
    color: var(--light);
    display: flex;
    flex-direction: column;
    min-height: 430px;
    overflow: hidden;
    position: relative;
    transition: .42s;
}

.project-card-featured {
    grid-column: span 2;
}

.project-card img {
    aspect-ratio: 16 / 10;
    display: block;
    height: auto;
    object-fit: cover;
    transition: .6s;
    width: 100%;
}

.project-card-featured img {
    aspect-ratio: 16 / 8.4;
}

.home-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-project-grid .project-card {
    min-height: 100%;
}

.home-project-grid .project-card img {
    aspect-ratio: auto;
    height: 255px;
}

.project-card-body {
    background:
        linear-gradient(180deg, rgba(29, 31, 31, .82), rgba(17, 18, 18, .98));
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.project-card span {
    color: var(--primary);
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.project-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.project-card p {
    color: rgba(248, 248, 248, .74);
    margin-bottom: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.project-tags b {
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(248, 248, 248, .78);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    text-transform: uppercase;
}

.project-card::after {
    align-items: center;
    background: var(--primary);
    color: var(--dark);
    content: "\f061";
    display: flex;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    height: 46px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 22px;
    top: 22px;
    transform: translateY(-8px);
    transition: .35s;
    width: 46px;
}

.project-card:hover {
    color: var(--light);
    transform: translateY(-8px);
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .project-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .home-project-grid {
        grid-template-columns: 1fr;
    }

    .project-card-featured {
        grid-column: auto;
    }

    .project-card,
    .project-card-featured {
        min-height: auto;
    }

    .project-card-featured img,
    .project-card img {
        aspect-ratio: 4 / 3;
    }

    .home-project-grid .project-card img {
        height: 260px;
    }

    .project-card-body {
        padding: 24px;
    }
}


/*** Gallery ***/
.gallery-filter {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.gallery-filter span {
    border: 1px solid rgba(255, 255, 255, .18);
    cursor: pointer;
    color: var(--light);
    font-size: 14px;
    line-height: 1;
    padding: 12px 16px;
    text-transform: uppercase;
    transition: .3s;
}

.gallery-filter span.active,
.gallery-filter span:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #111212;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 24px;
}

.gallery-item {
    min-height: 230px;
    overflow: hidden;
    position: relative;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
    width: 100%;
}

.gallery-item::after {
    background: linear-gradient(180deg, rgba(17, 18, 18, 0) 20%, rgba(17, 18, 18, .9) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.gallery-overlay {
    bottom: 0;
    left: 0;
    padding: 28px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.gallery-overlay span {
    color: var(--primary);
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gallery-overlay h3 {
    font-size: 22px;
    margin: 0;
}

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

.gallery-cta {
    align-items: center;
    background: var(--light-dark);
    border-left: 5px solid var(--primary);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 34px;
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-filter {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        display: block;
    }

    .gallery-item,
    .gallery-item-lg,
    .gallery-item-tall {
        height: 280px;
        margin-bottom: 20px;
    }

    .gallery-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px;
    }
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item h3{color: var(--dark);font-size: 18px;}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.appointment-form {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: var(--shadow);
    padding: 34px;
}

.appointment-form .form-control,
.appointment-form .form-select {
    background-color: rgba(255, 255, 255, .08)!important;
}

.appointment-form .alert {
    border: 0;
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .appointment-form {
        padding: 22px;
    }
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    border: 3px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    width: 100%;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    border-color: var(--primary);
    opacity: 1;
}

.testimonial-item {
    position: relative;
}

.testimonial-item::before {
    color: rgba(253, 200, 48, .22);
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-size: 54px;
    font-weight: 900;
    left: 34px;
    line-height: 1;
    position: absolute;
    top: 28px;
}

.testimonial-item::after {
    color: var(--primary);
    content: "\f005  \f005  \f005  \f005  \f005";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-item p {
    position: relative;
    z-index: 1;
}

.testimonial-item h3 {
    margin-top: 24px;
    margin-bottom: 4px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .form-control:focus{
    color: var(--light)!important;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p{
    color: var(--light);
}

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

.footer .copyright a:hover {
    color: var(--primary);
}

/*** Visual Refresh ***/
.container-xxl {
    position: relative;
}

.bg-light {
    background-color: #f7f4ec!important;
}

.display-1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.display-6 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.page-header {
    min-height: 360px;
}

.team-item,
.gallery-item,
.project .tab-pane .position-relative,
.form-control,
.form-select {
    border-radius: 0;
}

.team-item .bg-light {
    border-bottom: 4px solid var(--primary);
}

.team-item img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.testimonial-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    padding: 46px;
}

.testimonial-item p {
    color: rgba(248, 248, 248, .9);
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, .06)!important;
    border: 1px solid rgba(255, 255, 255, .16);
    color: var(--light);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, .1)!important;
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(253, 200, 48, .14);
    color: var(--light);
}

.form-select option {
    color: var(--dark);
}

.footer {
    background:
        linear-gradient(135deg, rgba(47, 183, 168, .08), transparent 28%),
        #161616!important;
}

.footer h3 {
    position: relative;
}

.footer h3::after {
    background: var(--primary);
    content: "";
    display: block;
    height: 2px;
    margin-top: 12px;
    width: 42px;
}

.back-to-top {
    box-shadow: 0 18px 45px rgba(253, 200, 48, .24);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link::before {
        bottom: 6px;
        width: 36px;
    }

    .header-carousel .owl-dots {
        bottom: 22px;
        flex-direction: row;
        height: auto;
        right: 50%;
        top: auto;
        transform: translateX(50%);
        width: auto;
    }

    .header-carousel .owl-dots .owl-dot,
    .header-carousel .owl-dots .owl-dot.active {
        height: 42px;
        width: 42px;
    }

    .project .nav .nav-link {
        padding: 22px!important;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item > img {
        min-height: 620px;
        height: 620px;
    }

    .owl-carousel-inner {
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .section-title {
        letter-spacing: 2px;
    }

    .service-item .service-text {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .logo h1 {
        font-size: 16px;
    }

    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item > img {
        min-height: 560px;
        height: 560px;
    }

    .testimonial-item {
        padding: 30px 22px;
    }

    .gallery-overlay {
        padding: 22px;
    }
}

.testimonial-item {
    overflow: hidden;
    padding: 56px 48px 44px;
}

.testimonial-item::after {
    margin-top: 8px;
}

@media (max-width: 575.98px) {
    .testimonial-item {
        padding: 42px 24px 34px;
    }

    .testimonial-item::before {
        font-size: 42px;
        left: 22px;
        top: 22px;
    }
}

.no-border{
    border: none;
}

.map-style{
    height: 450px;
}

/*  =========== Margins =========== */

.mt-0 {
	margin-top: 0px!important;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-50 {
	margin-top: 50px;
}
.mt-60 {
	margin-top: 60px;
}
.mt-70 {
	margin-top: 70px;
}
.mt-80 {
	margin-top: 80px;
}
.mt-90 {
	margin-top: 90px;
}
.mt-100 {
	margin-top: 100px !important;
}
.mt-110 {
	margin-top: 110px;
}
.mt-120 {
	margin-top: 120px;
}
.mt-130 {
	margin-top: 130px;
}
.mt-135 {
	margin-top: 135px;
}
.mt-140 {
	margin-top: 140px;
}
.mt-150 {
	margin-top: 150px!important;
}
.ml-10 {
	margin-left: 10px;
}
.ml-15 {
	margin-left: 15px;
}
.ml-20 {
	margin-left: 20px;
}
.ml-30 {
	margin-left: 30px;
}
.ml-40 {
	margin-left: 40px;
}
.ml-50 {
	margin-left: 50px;
}
.ml-60 {
	margin-left: 60px;
}
.ml-70 {
	margin-left: 70px;
}
.ml-80 {
	margin-left: 80px;
}
.mb-0 {
	margin-bottom: 0px!important;
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mb-70 {
	margin-bottom: 70px;
}
.mb-80 {
	margin-bottom: 80px;
}
.mb-90 {
	margin-bottom: 90px;
}
.mb-100 {
	margin-bottom: 100px;
}
.mb-110 {
	margin-bottom: 110px;
}
.mb-120 {
	margin-bottom: 120px;
}

.mr-0 {margin-right: 0px!important;}
.mr-5 {margin-right: 5px;}
.mr-10 {margin-right: 10px;}
.mr-20 {margin-right: 20px;}
.mr-30 {margin-right: 30px;}
.mr-40 {margin-right: 40px;}
.mr-50 {margin-right: 50px;}
.mr-60 {margin-right: 60px;}
.mr-70 {margin-right: 70px;}
.mr-80 {margin-right: 80px;}
.mr-90{margin-right: 90px;}
.mr-100{margin-right: 100px;}
.mr-110{margin-right: 110px;}
.mr-120{margin-right: 120px;}
