/*faq*/

.faq-sec{
    position: relative;
    padding: 3rem 0;
}

/*gallery*/
.gall-sec{
    posotion: relative;
    padding: 3rem 0;
}

.gall-sec-card{
    padding: 30px 25px;
    background: #f3f3f5;
    max-width: fit-content;
    margin: 2rem auto 0;
}
.gall-sec-img{
    overflow: hidden;
    
}
.gall-sec-img img{
    transition: all .4s ease-in-out;
    width:100%;
    
}
.gall-sec-tlt{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}
.gall-sec-tlt h6{
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0;
}
.gall-sec-card:hover .gall-sec-img img{
    transform: scale(1.1);
}


/*why chhose us detail*/

.why-us-det{
    position: relative;
    padding: 4rem 0 3rem;
    margin-bottom: 16rem;
    background-size: cover;
    background-position: bottom;
    background-image: url(../../assets/images/detail-page/why-us-det-back.webp);
    /*height: 400px;*/
    background-size: cover;
    z-index: 1;
    margin:0;
}
.why-us-det:after{
    content: "";
    position: absolute;
    top: 0;
    left:0;
    width:100%;
    height:60%;
    /*background-image: url(../../assets/images/detail-page/why-us-det-back.webp);*/
    /*background-size:cover;*/
    background: #f3f3f5;
    z-index:-1;
    
}
.why-us-det:before{
    content: "";
    position: absolute;
    top: 0;
    width: 85px;
    height: 225px;
    left: 0;
    animation: float-light infinite alternate 5s linear;
    opacity: 0.7;
    background-image: url(../../assets/images/detail-page/interior-light.webp);
    background-size: cover;
    background-position: no-repeat;
    z-index: 1;
}
@keyframes float-light{
    50% {
        transform: translateX(30px);
    }
}

.why-us-det-side-cnt{
    text-align: justify;
    padding: 1rem;
}
.why-us-det-card{
    margin-top: 30px;
    padding: 40px;
    background-color: #fff;
    /*background: transparent;*/
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    position: relative;
    z-index: 9;
    border-radius: 5px;
}
.why-us-det-card:before{   
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/contact/about-image.webp);
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.why-us-det-card:after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.why-us-det-count{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 48px;
    opacity: 0.2;
    margin-bottom: 40px;
    display: inline-block;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}
.why-us-det-tlt{
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    /*text-align: center;*/
    transition: all 0.4s ease-in-out;
}
.why-us-det-card p{
    text-align: justify;
    transition: all 0.4s ease-in-out;
}

.why-us-det-icon{
    margin-top: 25px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 9;
    width: 50px;
    color: #000;
}
.why-us-det-icon img{
    transition: all 0.4s ease-in-out;
}

.why-us-det-card:hover:before,
.why-us-det-card:hover:after{
    opacity: 0.7;
    visibility: visible;
}    
.why-us-det-card:hover .why-us-det-count{
    -webkit-text-stroke-color: #fff;
    opacity: 1;
}
.why-us-det-card:hover .why-us-det-tlt,
.why-us-det-card:hover p{
    color: #fff;
}
.why-us-det-card:hover .why-us-det-tlt{
    border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.why-us-det-card:hover .why-us-det-icon img{
    filter: invert(99%) sepia(0%) saturate(4816%) hue-rotate(205deg) brightness(123%) contrast(97%);
}
.why-us-det-card.active:before,
.why-us-det-card.active:after{
    opacity: 0.7;
    visibility: visible;
}
.why-us-det-card.active .why-us-det-count{
    -webkit-text-stroke-color: #fff;
     opacity: 1;
}
.why-us-det-card.active .why-us-det-tlt{
    border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.why-us-det-card.active .why-us-det-tlt,
.why-us-det-card.active  p{
    color: #fff;
}
.why-us-det-card.active .why-us-det-icon img{
    filter: invert(99%) sepia(0%) saturate(4816%) hue-rotate(205deg) brightness(123%) contrast(97%);
}

/*detail-main-cnt*/
.det-main-cnt{
    position: relative;
    padding: 3rem 0;
}

.det-left-cnt{
    position: relative;
}
.det-big-tlt{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 46px;
    color: var(--primary);
    text-transform: capitalize;
}
.det-left-cnt p{
    text-align: justify;
}
.det-left-img{
    margin-bottom: 1.5rem;
    margin-top: 0.7rem;
    text-align: -webkit-center;
}
.det-left-img img{
    border-radius: 5px;
}
.det-checks{
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    padding-left: 0px;
}
.det-checks li{
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 18px;
}
.det-checks li:last-child{
    padding: 0px;
}

.det-checks li .det-check-icon{
    position: absolute;
    width: 35px;
    min-width: 35px;
    border-radius: 50%;
    /*box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;*/
    background-color: var(--secondary);
    /*background: #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    top: 5px;
    padding-top: 5px;
    transition: 0.5s ease;
}
.det-checks li .det-check-icon i{
    color: var(--primary);
    font-size: 18px;
    transition: 0.5s ease;
}
.det-checks li p{
    margin-left: 55px;
    margin-bottom: 0;
    padding-top: 6px;
    font-weight: 600;
    text-align: justify;
}
.det-checks li:hover .det-check-icon{
    background: var(--primary);
}
.det-checks li:hover .det-check-icon i{
    color: #fff;
}









/*datail-sidebar*/
.det-rgt-cnt{
    position: sticky;
    top: 20%;
}
.det-rgt-cnt .det-side-bar{
    background-color: #fff;
    padding: 0 20px;
    position: relative;
    border-style: dashed;
    border-width: 8px;
    border-image-source: url(../images/bg/back-stripe.webp);
    border-image-repeat: repeat;
    border-image-slice: 8;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.det-sec-smal-tlt{
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2rem;
    /*letter-spacing: 25px;*/
    color: var(--primary);
    text-transform: capitalize;
}
.det-side-bar hr{
    width: 35%;
    height: 3px;
    background: var(--primary);
    border-radius: 20px;
    opacity: 1;
}
.det-side-bar ul{
    position: relative;
    padding-left: 0;
}
.det-side-bar ul li{
    position: relative;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--secondary);
    transition: 0.5s ease;
}
.det-side-bar ul li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.5s ease;
    justify-content: space-between;
}
.det-side-bar ul li a p{
    /*margin-right: 50px;*/
    text-align: justify;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom:0;
    transition: 0.5s ease;
}
.det-side-bar ul li a i{
    transform: rotate(315deg);
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 5px;
    opacity: 0;
    transition: 0.5s ease;
}
.det-side-bar ul li:hover a i{
    opacity: 1;
}
.det-side-bar ul li:hover a p{
    color: var(--primary);
    transform: translateX(18px);
}
.det-cont-card{
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 45px 20px;
    border-radius: 5px;
    background: url(../images/contact/plesent-interior.webp);
    z-index: 1;
    background-size: cover;
    background-position: center;
}
.det-cont-card:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
}
.det-side-call{
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #fff;
    padding: 10px;
    color: #fff;
    border-radius: 30px;
    display: block;
    max-width: fit-content;
    margin-bottom: 1.3rem;
    margin: 0 auto 1.2rem;
    font-weight:500;
    
}
.det-side-call i{
    color: #fff;
    /*font-size: 1.3rem;*/
    padding-right: 5px;
}
.det-cont-card .det-cl-cnt{
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
}
.det-cont-card .det-cl-btn{
    /*display: inline-block;*/
    border-radius: 30px;
    position: relative;
    padding: 7px 16px;
    color: var(--primary);
    background-color: #fff;
    margin: 1rem 1.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.det-cont-card .det-cl-btn i{
    transform: rotate(270deg);
    display: inline-block;
    font-size: 24px;
    transition: 0.3s ease-in-out;
}
.det-cl-btn:hover .arr{
    opacity: 0;
}
.det-cl-btn p{
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: 0.3s ease-in-out;
}
.det-cont-card .det-cl-btn .arr-1{
    position: absolute;
    bottom: 0;
    left: 64%;
    opacity: 0;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.det-cl-btn:hover .arr-1{
    bottom: 8px;
    left: 75%;
    color: #fff;
    opacity: 1;
    
}
.det-cl-btn:hover{
    /*font-weight: 600;*/
    background: var(--primary);
    
}
.det-cl-btn:hover p{
    color: #fff;
}



.img-det-fs{
    position: relative;
    padding: 6rem 0 3rem;
}
.img-det-fs:before{
    content:"";
    height: 20%;
    left: 0;
    width: 500px;
    min-width: 400px;
    top: 40%;
    position: absolute;
    background-color: var(--primary);
}

    
#circle-txt{
    position: absolute;
    left: 4%;
    top: -14%;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    animation:rounded 14s linear infinite;
}
#circle-txt-1{
    position: absolute;
    right: 4%;
    top: -13%;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    animation:rounded 14s linear infinite;
}


@keyframes rounded{
    100%{
        transform:rotate(360deg);
    }
}
.left-img-det{
    position: relative;
    padding: 1rem;
    max-width:546px;
    margin:0 auto;
    /*border: 2px solid;*/
}
.cir-dot{
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 0.8%;
    left: 1.5%;
    background: var(--primary);
}
.left-img-det:before{
    content: '';
    position: absolute;
    top: -0.8%;
    right: -0.7%;
    height: 50%;
    width: 5px;
    z-index: 4;
    border-right: 5px solid var(--primary);
    opacity: 1;
}
.left-img-det:after{
    content: '';
    position: absolute;
    top: -0.8%;
    right: -0.7%;
    height: 5px;
    width: 50%;
    z-index: 4;
    border-top: 5px solid var(--primary);
    opacity: 1;
}
.left-img-cnt{
    position: relative;
    padding: 10px;
}
.left-img-cnt p{
    text-align: justify;
}

.left-img-det-box{
    position: absolute;
    left: -20px;
    bottom: -20px;
    padding: 50px;
    border: 2px solid var(--primary);
    animation: float-box infinite alternate 3s linear;
}
@keyframes float-box{
    50% {
        transform: translateY(20px);
    }
}

.img-det-fs-1{
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
}
.img-det-fs-1:before{
    content:"";
    height: 20%;
    right: 0;
    width: 500px;
    min-width: 400px;
    top: 40%;
    position: absolute;
    background-color: var(--primary);
}

.right-img-det{
    position: relative;
    padding: 1rem;
    max-width:546px;
    /*border: 2px solid;*/
}
.right-img-det:before{
    content: '';
    position: absolute;
    top: -0.8%;
    left: -0.7%;
    height: 50%;
    width: 5px;
    z-index: 4;
    border-left: 5px solid var(--primary);
    opacity: 1;
}
.right-img-det:after{
    content: '';
    position: absolute;
    top: -0.8%;
    left: -0.7%;
    height: 5px;
    width: 50%;
    z-index: 4;
    border-top: 5px solid var(--primary);
    opacity: 1;
}
.right-img-cnt{
    position: relative;
    padding: 10px;
}
.right-img-cnt p{
    text-align: justify;
}

.right-img-det-box{
    position: absolute;
    right: -20px;
    bottom: -20px;
    padding: 50px;
    border: 2px solid var(--primary);
    animation: float-box infinite alternate 3s linear;
}
.cir-dot-1{
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 0.8%;
    right: 1.5%;
    background: var(--primary);
}


/*detail contact form*/


.det-cont-frm{
    position: relative;
    padding: 5rem 0 3rem;
    overflow: hidden;
    background-image: url('../../assets/images/detail-page/contact-background.webp');
    background-size: cover;
}
.det-cont-frm:before{
    content: '';
    height: 70%;
    left: 65%;
    width: 250px;
    top: 0px;
    position: absolute;
    background-color: var(--primary);
    animation: bgg-mover 8s ease-in-out infinite alternate;
}
@keyframes bgg-mover{
    50%{
        transform: translateX(80px);
    }
}
.det-cont-frm:after{
    content: "";
    position: absolute;
    top: -5%;
    left: 0;
    background-image: url('../../assets/images/detail-page/right-lamp.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 180px;
    height: 350px;
    animation: float-twin-light infinite alternate 6s linear;
    
}
@keyframes float-twin-light{
    50% {
        transform: translateX(60px);
    }
}
.det-cont-rgt{
    position: relative;
    /*padding-right: 2rem;*/
    text-align: right;
}
.det-cont-rgt .ul-line{
    position: relative;
    margin-bottom: 2.5rem;
}
.ul-line:before{
    content: "";
    position: absolute;
    border-bottom: 1px solid #fff;
    bottom: -18px;
    right: 0;
    width: 33%;
}
.det-cont-highlight{
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px white;
    margin: 0 0 28px 10px;
    font-size: 30px;
    line-height: 60px;
    font-weight: 400;
}

.det-cnt{
    position: relative;
    background: transparent;
    padding: 1.3rem 2.2rem;
    max-width: 700px;
    margin: 0;
    margin-left: 8rem;
}
.det-cnt input, select, textarea{
    color: #fff !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 10px 25px;
    height: 60px;
    border-color: var(--secondary);
}
.det-cnt input::placeholder, textarea::placeholder{
    color: #fff !important;
}
.det-cnt select option{
    color: #000;
    /*border-radius: 0 !important;*/
}

.subm-btn{
    background: var(--primary);
    color: #fff;
    width: 100%;
    padding: 0.7rem 2.1rem 0.7rem 2.8rem;
    border-radius: 40px;
    font-size: 1.1rem;
    margin-top: 0.3rem;
    display: inline-block;
    position: relative;
    border: 2px solid var(--primary);
    transition: 0.3s ease;
} 
.subm-btn:before{    
    content: "";
    position: absolute;
    left: 39%;
    /*background: #f3f3f5;*/
    height: 8px;
    width: 8px;
    top: 53%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.subm-btn:hover{
    background: transparent;
    border-color: var(--secondary);
}
.form-control:focus{
    border-color: var(--primary);
}

.det-main-service .tp-gallery-content{
    color: #fff;
    transform: none;
}

.det-main-service .tp-btn-border:hover {
    color: var(--primary);
    /*background: #fff;*/
}
.det-main-service .tp-btn-border:hover:after {
    height: 150%;
}
.det-main-service .tp-gallery-content:after{
    content: "";
    background: #fff;
    position: absolute;
    height: 0;
    width: 100%;
    top: 0;
    left: 0;
    transition: 0.5s ease-out;
    z-index: -1;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index:-1;
}
.tp-gallery-content p{
    -webkit-line-clamp: 4;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.quote-req{
    padding-bottom:10px;
}
.text-area-size{
    height:110px;
}
.pastel-location-map{
    padding:0 0 4rem;
}
