@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #000;
    --white: #fff;
    --orange: #F47321; 
    --light-grey: #D9D9D9;
    --green : #89C027;
    --midgrey: #5F5F5F;
    --darkgrey: #3E3D44;
    --body-font: "Poppins", sans-serif;
    --heading-font: "Montserrat", sans-serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--midgrey);
    font-size: 13px;
    line-height: 1.7;
    font-family: var(--body-font);
    font-weight: 500;
}
p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    font-family: var(--body-font);
    color: var(--midgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.64px;
    border: 1px solid transparent;
    font-family: var(--heading-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    height: 104%;
    width: 26px;
    background: #ffffff32;
    position: absolute;
    top: -2%;
    left: 22%;
    transform: skewX(-32deg);
    transition: 0.3s ease-in-out;
}
.btn::after {
    content: "";
    height: 104%;
    width: 8px;
    background: #ffffff32;
    position: absolute;
    top: -2%;
    left: 11%;
    transform: skewX(-32deg);
    transition: 0.3s ease-in-out;
}
.btn:hover::before{
    left: 64%;
}
.btn:hover::after{
    left: 53%;
}
.btn-primary{
    background: var(--orange);
    color: var(--white);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: none;
}
.btn-outline{
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}
.btn-line{
    font-weight: 600;
    padding: 0;
    min-width: auto;
    color: var(--orange);
}
.btn-line:hover, .btn-line:focus, .btn-line:active{
    color: var(--orange);
}
.bg-light{
    background: #f5f5f5 !important;
}
.section-heading{
    margin-bottom: 42px;
    max-width: 60%;
}
.about-text h2, .section-heading h2{
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: black;
    font-family: var(--heading-font);
}
.about-text h2 strong, .section-heading h2 strong
{
    color: var(--white);
    font-weight: 600;
}
.section-heading p:last-child{
    margin-bottom: 0;
}
.about-text h4{
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--orange);
    margin-bottom: 12px;
}
.form-control{
    height: 40px !important;
    font-size: 13px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--darkgrey);
    color: var(--darkgrey);
    font-weight: 500;
}
.form-control::placeholder, textarea::placeholder{
    color: var(--darkgrey);
    text-transform: uppercase;
    font-size: 12px;
}
textarea {
    width: 100%;
    height: 80px;
    font-size: 13px;
    border-radius: 0;
    background: transparent;
    border-color: var(--darkgrey);
    color: var(--darkgrey);
    font-weight: 500;
    padding: 12px;
}
.form-control:focus, textarea:focus{
    border-color: var(--orange) !important;
    box-shadow: none;
    border-radius: 0;
    outline: none;
}

/* Header  */
.myHeader{
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 99;
}
.myHeader.fixed, .landing-pg-header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background: var(--black);
    width: 100%;
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.main-header{
    background: #00000064;
    backdrop-filter: blur(4px);
    padding: 20px;
}
.navbar-brand img{
    height: 48px;
    width: auto;
}
.myHeader.fixed .main-header{
    padding: 12px 20px;
}
.myHeader.fixed .navbar-brand img{
    height: 40px;
}
.navbar-nav li a{
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: var(--white);
    position: relative;
    transition: 0.4s ease-in-out;
}
.navbar-nav li{
    margin: 0 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav li.active a, .navbar-nav li:hover a{
    color: var(--orange);
}
ul.sub-menu {
    position: absolute;
    top: calc(100% + 40px);
    left: 0;
    background: var(--black);
    min-width: 180px;
    list-style-type: none;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
ul.sub-menu li {
    margin: 0;
    padding: 8px 20px;
}
ul.sub-menu li a{
    color: var(--white) !important;
}
ul.sub-menu li:hover, ul.sub-menu li:focus, ul.sub-menu li.active{
    background: var(--orange);
}
.navbar-nav li:hover ul.sub-menu{
    top: calc(100% + 18px);
    opacity: 1;
    visibility: visible;
}
.menu-item-has-children {
    padding-right: 20px;
}
.menu-item-has-children::before{
    content: "\F229";
    font-family: 'Bootstrap-icons';
    font-size: 12px;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
}

/* Banner  */
.banner{
    background: var(--darkgrey);
}
.banner-item{
    overflow-x: hidden;
    position: relative;
}
.banner-img {
    position: relative;
    width: 64%;
    padding-top: 56%;
    z-index: -1;
    margin-left: auto;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
}
.banner-img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0000003a;
    z-index: 1;
}
.banner-wrapper{
    position: absolute;
    top:54%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}
.banner-text{
    max-width: 48%;
}
.banner-text h1 {
    font-size: 80px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.banner-text h2{
    color: var(--white);
    font-weight: 400;
    margin-bottom: 40px;
}
.banner-text h4{
    font-size: 26px;
    line-height: 1.4;
    color: var(--white);
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.banner-text p{
    font-size: 13px;
    letter-spacing: 0.4px;
    color: var(--white);
    font-weight: 300;
    font-family: var(--body-font);
    max-width: 60%;
}
h4.banner-count {
    position: absolute;
    left: -9%;
    top: 18%;
    z-index: 999999;
    font-size: 400px;
    font-weight: 800;
    font-family: var(--heading-font);
    color: #ffffff08;
}
.banner-slider .owl-dots {
    position: absolute;
    top: 80%;
    left: 9%;
}
.banner-slider.owl-carousel button.owl-dot{
    background: transparent;
    border: 1px solid var(--orange);
}

.owl-item.active .banner-text{
  animation: fadeInLeft 2s ease-in-out forwards;
  animation-delay: 0.5s;
}
.vertical-line{
    height: 100%;
    width: 1px;
    background: #4a494f;
    position: absolute;
    top: 0;
    left: 6%;
}
.vertical-line:nth-child(2){
    left: 20%;
}
.vertical-line:nth-child(3){
    left: 34%;
}
.banner-social {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 9;
}
.banner-social li:not(:last-child){
    margin-bottom: 8px;
}
.banner-social h6 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    rotate: -90deg;
    position: absolute;
    left: -75px;
    top: 40%;
    text-wrap: nowrap;
}

/* How It Works  */
.work-icon{
    height: 70px;
    width: 70px;
    margin-bottom: 40px;
}
.work-icon img{
    filter: brightness(0) saturate(100%) invert(50%) sepia(33%) saturate(6978%) hue-rotate(11deg) brightness(102%) contrast(87%);
}
.work-icon::before{
    content: "";
    width:90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    left: 20px;
    transition: 0.3s ease-in-out;
}
.work-box:hover .work-icon::before{
    bottom: -12px;
    left: -9px;
    transform: scale(1.3);
}
.work-box{
    background: url(../images/how-work-bg.png) no-repeat center;
    background-size: cover;
    height: 100%;
    padding: 42px;
}
.work-box h3{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--heading-font);
}
.work-box p{
    color: var(--midgrey);
    margin-bottom: 0;
}
.work-box p span{
    font-weight: 700;
    color: var(--orange);
}


/* theme  */
.theme-box{
    z-index: 1;
}
.theme-img{
    position: relative;
    padding-top: 64%;
}
.theme-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.theme-row{
    row-gap: 24px;
}
.theme-box a{
    font-size: 22px;
    line-height: 1.4;
    font-family: var(--heading-font);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    padding:20px;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.theme-box::before{
    content: "";
    width: 100%;
    height: 22%;
    background: #0A090948;
    backdrop-filter: blur(6px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.theme-box::after{
    content: "";
    width: 100%;
    height: 20%;
    background: var(--orange);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.theme-box:hover::before{
    height: 100%;
}
.theme-box:hover::after{
    height: 0;
}
.theme-box:hover a{
    background: transparent;
    height: fit-content;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 24px;
}
.theme-box:hover .serv-icon::before{
    display: none;
}
.theme-box:hover .serv-icon img{
    filter: brightness(0) invert(1);
}
.serv-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}



/* Projects  */
.project-head{
    width: 40%;
}
.project-flex{
    margin:  0 -8px;
}
.project-box{
    padding: 0 8px;
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
}
.project-box.active{
    flex: 2;
}
.project-img{
    height: 400px;
    overflow: hidden;
}
.project-img img{
    transition: 0.3s ease-in-out;
}
.project-box:hover .project-img img, .project-gallery .project-img:hover img{
    transform: scale(1.1);
}
.project-box h3{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.project-box h3, .project-box h3 a{
    font-family: var(--heading-font);
    color: var(--darkgrey);
}
.project-box h5, .single-project .about-text h5{
    font-size: 16px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--orange);
}
.project-box p{
    color: var(--midgrey);
    font-size: 0;
    transition: 0.3s ease-in-out;
}
.project-box.active p{
    font-size: 13px;
}
.project-box .btn {
    font-size: 0;
    min-width: auto;
    width: 40px !important;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--orange);
}
.project-box .btn .bi {
    font-size: 32px;
    color: var(--orange);
    margin-left: -4px;
}
.page-template-home .project-box .btn{
    opacity: 0; 
    visibility: hidden;
}
.project-box.active .btn{
    font-size: 13px;
    width: auto !important;
    min-width: 148px;
    padding: 0 20px;
    border-radius: 0;
    background: var(--orange);
    border: transparent;
    opacity: 1 !important;
    visibility: visible !important;
}
.project-box.active .btn .bi{
    font-size: 0;
}


/* Video Section  */
.video-section h2, .video-section p{
    color: var(--white);
}
.video-box{
    position: relative;
    padding-top: 60%;
}
.video-box video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.video-box video::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #00000040;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.play-button-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	pointer-events: none;
    z-index: 99;
}
#circle-play-b, #circle-play-b1 {
	cursor: pointer;
	pointer-events: auto;
}
#circle-play-b  .bi, #circle-play-b1  .bi {
    display: block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    font-size: 36px;
    background: var(--orange);
    color: var(--white);
    text-align: center;
}
.video-bg{
    height: 62%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video-bg::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #353535c2;
    position: absolute;
    top: 0;
    left: 0;
}

/* Why Us  */
.whyus .about-text{
    padding-right: 64px
}
.why-icon img{
    height: 60px;
    width: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(56%) sepia(26%) saturate(5677%) hue-rotate(349deg) brightness(100%) contrast(92%);
}
.why-icon{
    flex-shrink: 0;
    margin-right: 12px;
}
.why-text h4{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--darkgrey);
    text-transform: uppercase;
}
.why-text p{
    margin-bottom: 0;
}
.whyus-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.whyus-list li{
    max-width: 45%;
    flex: 0 0 45%;
}
.whyus-list::before{
    content: "";
    width: 1px;
    height: 100%;
    background: #c4c4c4;
    position: absolute;
    top: 0;
    left: 50%;
}
.whyus-list li:nth-child(1){
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #c4c4c4;
}
 .whyus-list li:nth-child(4){
    margin-top:-100px;
    padding-top: 40px;
    border-top: 1px solid #c4c4c4;
}
.whyus-list li:first-child{
    margin-top: 60px;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: #c4c4c4;
    color: var(--orange);
    height: 40px;
    width: 40px;
    position: absolute;
    top: 45%;
    left: -48px;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -48px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    background: linear-gradient(90deg, var(--orange), var(--orange));
    color: var(--white);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: var(--midgrey);
}
.owl-carousel button.owl-dot.active{
    background: var(--orange);
}

/* Testimonial  */
.testimonials{
    background-size:  cover !important;
    z-index: 1;
}
.testimonials::before{
    content: "";
    height: 100%;
    width: 100%;
    background: #3e3d44f2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.testimonials::after{
    content: "";
    height: 100%;
    width: 32%;
    background: var(--orange);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.testimonials .btn-primary{
    background: var(--black);
}
.testimonials  h2, .testimonials p{
    color: var(--white);
}
.testimonial-img{
    padding-top: 64%;
}
.testimonial-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.testimonial-slider{
    margin-top: 40px;
}
img.quote{
    height: 75px;
    width: 75px !important;
    object-fit: contain;
}
.review p{
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}
.client-img{
    flex-shrink: 0;
}
.client-img img{
    width: 75px !important;
    height: 75px;
    object-fit: cover;
    border: 2px solid #c4c4c4;
}
.client-data .bi{
    color: var(--orange);
    margin-right: 1px;
}
.client-name{
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}
.client-data .desg{
    color: var(--orange);
    font-size: 14px;
}
.testimonial-slider.owl-carousel .owl-dots {
    text-align: left;
}


/* Partners  */
.partner-logo img{
    height: 120px;
    width: 100%;
    object-fit: contain;
    opacity: 0.4;
    transition: 0.3s ease-in-out;
}
.partner-logo:hover img{
    opacity: 1;
}



/* Footer  */
.footer-top{
    padding: 60px 0;
}
.footer-top::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e1e8f0ed;
}
.footer-top p{
    color: var(--orange);
    margin-bottom: 0;
}
.email-subscribers{
    display: flex;
}

/* Footer  */
.myFooter .about-text h2{
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
}
.footer-logo img{
    height: 60px;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
.ft-note{
    max-width: 80%;
}
.myFooter{
    background-size:  cover !important;
    padding-top: 80px;
    overflow: hidden;
}
.myFooter h3{
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
}
.myFooter .navbar-nav li a{
    font-size: 13px !important;
    font-family: var(--body-font) !important;
    color: #ffffffb3 !important;
    font-weight: 500 !important;
    padding: 4px 0 !important;
}
.myFooter .navbar-nav li a:hover{
    color: var(--white) !important;
}
.myFooter .navbar-nav li.active a{
    color: var(--orange) !important;
}
.myFooter p{
    color: var(--light-grey);
    font-weight: 400;
}
.myFooter .navbar-nav li{
    background: transparent !important;
    margin: 0;
}
.con-box h5 {
    font-size: 12px;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 2px;
}
.con-box, .con-box a{
    font-size: 13px;
    line-height: 1.4;
    color: var(--white);
    font-weight: 400;
}
.con-list .con-box:not(:last-child){
    margin-bottom: 20px;
}
.social.social-list{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}
.con-box{
    padding-left: 50px;
}
.con-box .bi{
    display: block;
    color: var(--white);
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: var(--orange);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
}
.social-list li .bi{
    display: block;
    color: var(--white);
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--white);
    font-size: 14px;
    transition: 0.3s ease-in-out;
}
.social-list li:not(:last-child){
    margin-right: 12px;
}
.social-list li:hover .bi{
    background: var(--orange);
    border-color: var(--orange);
}
.copyright{
    padding: 0 0 20px 0;
}
.copyright p, .main-footer p{
    color: #ffffffb3;
    margin-bottom: 0;
}
.copyright p a{
    color: var(--orange);
    font-weight: 600;
}


/* Inner Banner  */
.inner-banner {
    background-size: cover !important;
    padding: 160px 0 60px;
    position: relative;
    z-index: 1;
}
.inner-banner::before, .pj-footer::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #f17220e2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner h2{
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--heading-font);
}
.inner-banner .breadcrumb-item, .inner-banner .breadcrumb-item a{
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--orange);
}
.breadcrumb{
    padding: 0 !important;
    margin: 0 !important;
}

/* About Page  */
.about-img{
    position: relative;
    padding-top: 84%;
}
.about-img img{
    position: absolute;
    top: 0;
    left: 0;
}


/* Life Cycle  */
.timeline-flow{
    background: #2f2f3f;
}
.timeline-flow .section-heading h2{
    color: var(--white);
}
 .timeline-flow .section-heading p{
    color: #d9d9d980;
}
.timeline {
  width: 100%;
  height: 388px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding-left: 32px;
}
.timeline-content {
  width: calc(100% / 6.2);
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  position: relative;
}
.timeline-content:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content:nth-child(even) {
  align-self: flex-end;
}
.timeline-desc h3 {
  font-family: var(--heading-font);
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}
.timeline-icon {
    height: 68px;
    width: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #3f3f4f;
    text-align: center;
    padding: 16px;
    position: absolute;
    top: 0;
    left: -30px;
    transition: 0.3s ease-in-out;
}
.timeline-icon img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.timeline-content:nth-child(even) .timeline-icon {
    top: auto;
    bottom: 0;
}
.timeline-content:hover .timeline-icon{
    background: var(--orange);
}
.timeline-content:hover .timeline-icon img{
    opacity: 1;
}
.timeline-count {
    font-size: 18px;
    border-top: 4px solid #3f3f4f;
    padding: 4px 0;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--white);
}
.timeline-content:nth-child(even) .timeline-count {
    border-top: none;
    border-bottom: 4px solid #3f3f4f;
}
.timeline-content::before {
    content: "";
    width: 4px;
    height: 190px;
    background: #3f3f4f;
    position: absolute;
    top: 0;
    left: 0;
}
.timeline-content:nth-child(even)::before {
    bottom: auto;
    top: 32px;
    left: 0;
}
.timeline-text {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 80px;
    padding-left: 0;
}
.timeline-content:nth-child(even) .timeline-text {
    padding: 0 0 80px 0;
    flex-direction: column;
}
.timeline-desc {
    height: 108px;
    overflow-y: auto;
}
.timeline-content p {
    font-size: 12px;
    line-height: 1.4;
    color: #d9d9d980;
}
.timeline-text h3, .timeline-text h4, .timeline-text p{
    padding-left: 12px;
}

/* Teams  */
.team-bg{
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.team-bg::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffffb3, #fff);
    position: absolute;
    top: 0;
    left: 0;
}
.teams::after{
    content: "";
    width: 24%;
    height: 100%;
    background: var(--light-grey);
    border-radius: 200px 200px 0 0;
    position: absolute;
    bottom: 0;
    right: 12%;
    z-index: -1;
}
.team-member .social-list li .bi{
    color: #5f5f5f82;
    border-color: #5f5f5f82;
}
.team-member .social-list li:hover .bi{
    color: var(--white);
    border-color: var(--orange);
}
.team-img{
    position: relative;
    padding-top: 132%;
}
.team-img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: bottom;
}
.about .about-text ul, .about .about-text ol{
    list-style-type: none;
    columns: 2;
    margin-bottom: 0;
}
.about .about-text  li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}
.about .about-text li::before {
    content: "\F26A";
    font-family: "Bootstrap-icons";
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--orange);
}

/* Contact Page  */
.map-sec{
    position: absolute;
    top: 0;
    right: 0;
    width: 63%;
    height: 100%;
}
.contact-info a, .contact-info .con-box{
    color: var(--darkgrey);
}
.form-row{
    row-gap: 0 !important;
}

/* Project Page  */
.project-row{
    row-gap: 32px;
    justify-content: center;
}
.project-row .project-box{
    padding: 0;
}
.project-row .project-img {
    height: 320px;
}
.project-row .project-box p {
    display: none;
}
.project-row .project-box .btn {
    position: absolute;
    bottom: 20px;
    right: 0;
}
.project-row .project-box h3, .project-row .project-box h4{
    padding-right: 50px;
}

/* Pooja Interiors Landing Page  */
.page-template-pooja_interiors .myHeader {
    display: none;
}
.landing-pg-header.fixed{
    background: var(--white);
} 
.page-template-pooja_interiors .main-header {
    background: transparent;
    backdrop-filter: none;
    padding: 4px;
}
.page-template-pooja_interiors .navbar-brand img {
    height: 86px;
}
.landing-pg-header.fixed .navbar-brand img {
    height: 68px;
}
.page-template-pooja_interiors .navbar-nav li a {
    color: var(--black);
    font-weight: 600;
}
.page-template-pooja_interiors .navbar-nav li.active a{
    color: var(--green);
}
.page-template-pooja_interiors .btn-primary{
    background: var(--green);
}
.page-template-pooja_interiors .btn-primary:hover, .page-template-pooja_interiors .btn-primary:focus, .page-template-pooja_interiors .btn-primary:active{
    background: var(--black) !important;
    color: var(--green);
}
.btn:hover::before, .btn:hover::after, .btn:hover:focus, .btn:hover:focus, .btn:hover:active, .btn:hover:active{
    opacity: 0.4;
}
.page-template-pooja_interiors .banner-wrapper {
    top: 46%;
}
.page-template-pooja_interiors .banner-img {
    padding-top: 50%;
    width: 100%;
    z-index: 0;
}
.page-template-pooja_interiors .banner-img::before {
    background: #000000a2;
}
.page-template-pooja_interiors .banner-text {
    max-width: 64%;
    margin: 0 auto;
}
.page-template-pooja_interiors .banner-text h1 {
    font-size: 64px;
}
.page-template-pooja_interiors .banner-text p {
    font-size: 15px;
    max-width: 100%;
    font-weight: 500;
}
.statistics{
    margin-top: -64px;
}
.stat-box{
    background: linear-gradient(#343534b8, #000000b8);
    backdrop-filter: blur(12px);
    padding: 32px;
    border: 1px solid var(--midgrey);
}
.stat-box h4{
    color: var(--green);
}
.stat-box p {
    margin-bottom: 0;
    font-weight: 200;
    letter-spacing: 0.4px;
    color: var(--white);
}
.ab-grid{
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.ab-grid .about-img{
    padding-top: 108%;
}
.ab-grid .about-img:nth-child(1){
    grid-column: span 2;
    grid-row: span 2;
}
.landing-about .about-text{
    padding-right: 40px;
    background: var(--white);
    padding-top: 40px;
}
.lab-row::before{
    content: "";
    width: 2px;
    height: 100%;
    background: #c4c4c4;
    position: absolute;
    bottom: 0;
    left: 15px;
}
.page-template-pooja_interiors .project-box p{
    font-size: 14px;
}
.landing-whyus{
    background: #343534;
}
.landing-whyus::before {
    content: "";
    background: url(../images/vector.png) no-repeat top;
    background-size: contain;
    width: 51%;
    height: 72%;
    position: absolute;
    top: 0;
    right: 0;
}
.whyus-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}
.landing-whyus .about-text{
    padding-top: 200px;
}
.landing-whyus h2{
    color: var(--white);
}
.strength-list{
    margin-top: 40px;
}
.strength-list .why-icon {
    height: 70px;
    width: 70px;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 12px;
}
.strength-list .why-icon img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.strength-list li .why-text h4{
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}
.strength-list li .why-text p{
    color: #ffffff80;
    font-weight: 400;
}
.strength-list li:not(:last-child){
    margin-bottom: 20px;
}
.page-template-pooja_interiors .project-slider .project-img{
    padding: 0 !important;
}
.p-testimonials::before {
    content: "";
    width: 2px;
    height: 260px;
    background: var(--green);
    position: absolute;
    right: 8%;
    top: -80px;
}
.p-testimonials .test-box{
    padding: 40px;
}
.p-testimonials .test-box .rating .bi{
    color: #ffbb00;
}
.p-testimonials .client-img img {
    background: #c4c4c4;
    border-radius: 50%;
    border: 4px solid #c4c4c4;
}
.p-testimonials .test-box .review{
    margin: 40px 0;
}
.p-testimonials .review p {
    font-size: 14px;
    font-weight: 400;
}
.p-testimonials .client-name {
    color: var(--black);
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 6px;
}
.p-testimonials .client-data .desg {
    color: #5F5F5F;
    font-family: var(--body-font);
}
.pj-footer {
    background-size: cover !important;
    background-attachment: fixed !important;
    z-index: 1;
}
.pj-footer::before {
    background: #0000008f;
}
.pj-footer h2, .pj-footer p{
    color: var(--white);
}
.pj-footer p{
    font-weight: 300;
}
.pj-footer hr{
    background: var(--white);
    margin: 80px 0;
}
.pj-footer .con-box .bi {
    border: 1px solid var(--white);
    border-radius: 50%;
    background: transparent;
}
.pj-footer .ft-logo{
    max-width: 75%;;
}
.pj-footer .con-box {
    min-height: 36px;
    line-height: 1.4;
}
.pj-footer .copyright-box{
    background: var(--green);
    padding: 20px 0;
}
.pj-footer .copyright a{
    color: var(--black);
}
.pj-footer .form-control, .pj-footer textarea{
    border-color: var(--white);
    color: var(--white);
}
.pj-footer .form-control:focus, .pj-footer textarea:focus{
    border-color: var(--green) !important;
    background: transparent !important;
}
.pj-footer .form-control::placeholder, .pj-footer textarea::placeholder{
    color: var(--white);
}

.single-project .about-text .btn{
    width: fit-content;
}

/* Single Themes Page  */
.theme-slider .about-img {
    padding-top: 68%;
}
.theme-slider.owl-carousel .owl-nav button.owl-next, .theme-slider.owl-carousel .owl-nav button.owl-prev{
    background: transparent;
    color: var(--white);
    font-size: 32px;
    left: 0;
}
.theme-slider.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: 0;
}
.single-theme .btn-primary{
    width: fit-content;
}

/* Single Idea  */
.idea-intro .section-heading{
    padding-left: 40px;
    border-left: 4px solid var(--orange);
}