@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

body {  
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
	color: #9b9898;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: orange;   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);   
}




/*---- header-area start ---*/
.header-area {
    background-color: #fff;
    padding: 25px 0;
    padding-top: 45px;
}




.header-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
   width: 201px;
   height: 40px;
   display: block;
}



.header-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: right;
}

.header-nav ul li {
    display: inline-block;
    padding-left: 29px;
}

.header-nav ul li a {
    color: #696969;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s all ease;
}




.header-nav ul li a:after {
    content: "";
    clear: both;
    width: 10%;
    display: block;
    height: 2px;
    border-radius: 5px;
    position: relative;
    top: -1px;
    transition: 0.3s all ease;
}

.header-nav ul li a:hover:after {
    width: 100%;
    background-color: #EF4C4D;
}


.header-nav ul li.active a:after {
    width: 90%;
    background-color: #EF4C4D;
}






.header-nav ul li:last-child a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 9px;
    display: inline-block;
    padding: 9px 14px;
    transition: 0.3s all ease;   
}

.header-nav ul li:last-child a:after {
    background: none;
    height: 0px;
}

.header-nav ul li:last-child a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}


.menu-part {
    display: none;
}

.menu-part i {
    color: #696969;
    font-size: 27px;
    cursor: pointer;    
}


.menuicon2 {
    display: none;
}


/* Slideshow CSS */ 
#featured-post {
    background-image: url(img/bg5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 21px;
    position: relative;
}
    
#slide-container {   
    width: 100%;
    height: 740px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    z-index: 10;
    top: 29px;
}


#slides article {   
  top: 100%;
  width: 100%;   
  height: 100%;      
  position: absolute;    
  display: block;
  z-index: 0;
}




.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}



#slides article:first-child {
  top: 0;
  z-index: 2;
}


/* Slideshow caption */ 

#slides article .caption-container {
  max-width: 600px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  display: block;
  margin: 0 auto;
  top: 30%;
  transition-duration: 0.3s;
  color: black;
  border-radius: 5px;
}

#slides article .caption-container:hover {
  background-color: white; 
  transition-duration: 0.3s;
}

#slides article .caption {
  text-align: center;
  width: 80%; height: 80%;
  position: relative;
  margin: 0 auto;
  top: 10%;
  letter-spacing: 1px;
  font-family: "Times New Roman", Georgia, Serif;
  padding: 5% 0;
}



#slides article .caption h1{
  text-align: center;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 3px;
}


       

.dots-container {
    position: absolute;
    margin: 0;
    padding: 0;
    z-index: 10;
    left: 2%;
    bottom: 47px;
}

.dots-container ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.dots-container li{
  width: 13px;
  height: 13px;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
  border-radius: 50%;
  border: 1px solid #D26B89;

}

.dots-container li:hover{
  background-color: #D26B89;
  cursor: pointer;
  -webkit-transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:   all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1); 
}

#dots .selected {
  background-color: #D26B89;
-webkit-transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:   all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1); 
}


.dnimpmoblie-top {
    position: relative;
}

.dnimpmoblie-top h2 {
    color: #FFD100;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    background-color: #23221F;
    text-align: center;
    width: 427px;
    padding: 9px 0;
    position: absolute;
    top: -49px;
    z-index: 19;
    left: 34%;
    right: 34%;    
}

.featured-article {
    position: relative;
}


.featured-article_bg img {
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
}

.featured-article_bg_color1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 999;    
}



.slider-area  {
    background-image: url('img/bg5.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 251px 0;
}



.slider-part h2 {
    color: #696969;
    font-size: 99px;
    font-weight: bold;
    margin: 0;
    line-height: 107px;
}

.slider-part p {
    color: #9b9898;
    font-size: 25px;
    font-weight: 400;
    margin: 0;
    padding-bottom: 40px;    
}

.slider-part a {
    color: #fff;
    font-size: 16px;
    background-color: #d6728f;
    display: inline-block;
    padding: 15px 23px;
    border-radius: 12px;   
    transition: 0.3s all ease;
}

.slider-part a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}



.slider-part img {
    position: relative;
    top: 100px;    
}


.circal1 {
    position: absolute;
    top: 17px;
    right: 51px;
}

.circal2 {
    position: absolute;
    bottom: 0;
    right: 42%;    
}




/*--- chooseus-area start---*/
.chooseus-area {
    padding: 30px 0;
}


.chooseus-top h2 {
    color: #696969;
    font-size: 35px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-bottom: 35px;   
}

.chooseus-item-area {
    padding: 50px 0;
    padding-bottom: 39px;
    box-shadow: 0px 3px 13px rgba(0,0,0,0.2);   
}


.chooseus-item-part {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}


.chooseus-item img {
    height: 80px;
    display: block;
    margin: auto;
    width: 80px;
}

.chooseus-item p {
    color: #9b9898;
    font-size: 12.52px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding-top: 11px;
    text-transform: uppercase;   
}



/*--- aboutus-area start---*/
.aboutus-area {
    padding: 60px 0;
    padding-bottom: 0px;
}


.aboutus-left img {
    width: 100%;
    height: 618px;
    margin-top: 42px;
    margin-bottom: -52px;
}


.aboutus-right {
    text-align: right;
}

.aboutus-right h2 {
    color: #696969;
    font-size: 73px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 25px;
}

.aboutus-right p {
    color: #9b9898;
    font-size: 22px;
    margin: 0;
    line-height: 35px;
    font-weight: 400;
    
}

.aboutus-right h6 {
    margin: 0;
    padding-top: 50px;
}

.aboutus-right h6 a {
    color: #D26B89;
    font-size: 25px;
    font-weight: 600;   
}



/*--- design-area start---*/
.design-area {
    padding: 60px 0;
    padding-bottom: 10px;
}

.design-top h2 {
    color: #696969;
    font-size: 39px;
    text-align: center;
    margin: 0;
    font-weight: 600;
    padding-bottom: 60px;   
}

.design-part {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    grid-column-gap: 65px;
    grid-row-gap: 35px;
}

.design-item img {
    width: 218px;
    height: 191px;
    display: block;
    margin: auto;
    margin-bottom: 16px;

}

.design-item h2 {
    color: #696969;
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-bottom: 8px;
}

.design-item p {
    color: #9b9898;
    font-size: 13px;
    text-align: center;
    font-weight: 400;
    margin: 0;
    line-height: 17px;
}


/*--- Review-area start---*/
.Review-area {
    padding: 60px 0;
}

.Review-top h2 {
    color: #696969;
    font-size: 39px;
    text-align: center;
    margin: 0;
    font-weight: 600;
    padding-bottom: 25px;   
}

.Review-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-column-gap: 20px;
    grid-row-gap: 35px;
}


.Review-item img {
    width: 100%;
    height: 328px;
    display: block;
    margin: auto;
}



/*--- newReview-area start---*/
.newReview-area {
    padding: 60px 0;
    background-color: #53189F;
}


.newReview-left img {
    width: 328px;
    height: 271px;
    display: block;   
}

.newReview-right {
    padding-left: 155px;
}

.newReview-right p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 22px;
    padding-top: 35px;
}

.newReview-right p a {
     color: #FFFFFF;   
}



.newReview-right img {
    width: 174px;
    margin-top: 42px;
    display: block;
}






/*--- solutions-area start---*/
.solutions-area {
    padding: 30px 0;
}


.solutions-top h2 {
    color: #696969;
    font-size: 35px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-bottom: 35px;   
}

.solutions-item-area {
    padding: 28px 0;
    padding-bottom: 19px;
    box-shadow: 0px 3px 13px rgba(0,0,0,0.2);
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;   
}


.solutions-item-part {
    display: flex;
    align-items: center;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}


.solutions-item img {
    height: 97.67px;
    display: block;
    margin: auto;
    width: 97.67px;
}

.solutions-item p {
    color: #9b9898;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding-top: 11px;
    text-transform: uppercase;   
}





/*--- warranty-area start---*/
.warranty-area {
    padding: 60px 0;
    background-color: #FFF3F7;
}


.warranty-part {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 35px;    
}


.warranty-item img {
    width: 74px;
    height: 74px;
    display: block;
    margin: auto;
    margin-bottom: 35px;
}

.warranty-item h2 {
    color: #696969;
    font-size: 17px;
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding-bottom: 10px;    
}

.warranty-item p {
    color: #9b9898;
    font-size: 13px;
    text-align: center;
    font-weight: 700;
    margin: 0;
    line-height: 18px;   
}




.book-btn {
    text-align: center;
    padding-top: 80px;
}

.book-btn a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 18px;
    display: inline-block;
    padding: 17px 40px;    
    transition: 0.3s all ease;
}

.book-btn a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}




/*--- kitchen-area start---*/
.kitchen-area {
    padding: 0px 0;
    background-color: #fff;
    padding-top: 0px;
}


.kitchen-top h2 {
    color: #696969;
    font-size: 43px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-bottom: 40px;
    position: relative;
    z-index: 999;
}

.kitchen-top h2 span {
    color: #D26B89;
}



.kitchen-box-area {
    background-color: #D26B89;
    padding: 50px 0;
}


.kitchen-box-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 30px;    
}



.kitchen-bg1 {
    background-image: url(img/bg1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 416px;
    border-radius: 25px;
    padding: 35px;
    position: relative;
}



.kitchen-box-imgs {
    display: flex;
    align-items: start;
    height: 200px;
}

.kitchen-box-img1 {
   width: 50%;  
}

.kitchen-box-img2 {
   width: 50%;  
}

.kitchen-box-img1 img {
    width: 113px;
    height: 113px;
    display: block;
}

.kitchen-box-img2 img {
    width: 52px;
    height: 52px;
    display: block;
    margin: auto;
    margin-right: 0;    
}



.kitchenbox-btn-text {
    position: absolute;
    bottom: 30px;
}

.kitchenbox-btn-text a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 9px;
    display: inline-block;
    padding: 9px 14px;    
    transition: 0.3s all ease;
}

.kitchenbox-btn-text a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}



.kitchenbox-btn-text h3 {
    color: #696969;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding-top: 10px;    
}

.kitchenbox-btn-text p {
    color: #696969;
    font-size: 12.2px;
    font-weight: 600;
    margin: 0;
    padding-top: 1px;    
}





/*--- footer-area start---*/
.footer-area {
    padding: 60px 0;
    background-color: #1D1647;
}



.footer-logo-part img {
   width: 201px;
   height: 40px;
   display: block;
}


.footer-icon ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: right;
}

.footer-icon ul li {
    display: inline-block;
    padding-left: 12px;
}

.footer-icon ul li a {
    color: #bbb9c8;
    font-size: 28px;
    display: block;
    transition: 0.3s all ease;  
}

.footer-icon ul li a:hover {
    color: #ff7aa1;
}




.footer-text {
    padding: 80px 0;
    padding-top: 58px;
}

.footer-text p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin: 0; 
}

.footer-last-text {
    padding-top: 90px;  
}

.footer-last-text p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin: 0; 
}






.footer-inner-part {
   padding-left: 127px;
}



.footer-inner-item h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    padding-bottom: 2px;
}

.footer-inner-item ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-left: 9px;
}

.footer-inner-item ul li {
    display: block;
}

.footer-inner-item ul li i {
    color: #fff;
    font-size: 6px;
    position: relative;
    top: -4px;
    padding-right: 10px;
}

.footer-inner-item ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-decoration: 2px underline;
    display: inline-block;
    transition: 0.3s all ease;  
}

.footer-inner-item ul li a:hover {
    color: #ff7aa1;
}



.footer-inner-right {
    padding-bottom: 60px;
}

.footer-inner-right h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    padding-bottom: 2px;
}

.footer-inner-right ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-inner-right ul li {
    display: block;
}

.footer-inner-right ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    transition: 0.3s all ease;  
}

.footer-inner-right ul li a:hover {
    color: #ff7aa1;
}




/*--- portfilio-area start---*/
.portfilio-area {
    background-color: #fff;
    padding: 60px 0;
    padding-top: 0px;
    position: relative;
}


.portfilio-top h2 {
    color: #696969;
    font-size: 62px;
    font-weight: 600;
    text-align: right;
    margin: 0;
    padding-bottom: 7px;
    padding-right: 17px;  
}



.portfilio-item {
    border-radius: 21px;
    overflow: hidden;
    width: 100%;
    position: relative;
    cursor: pointer;
    transition: 0.6s all ease;
}

.portfilio-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.portfilio-bg-color {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0; 
    transition: 0.6s all ease;
}


.portfilio-item h3 {
    color: #696969;
    font-size: 25px;
    margin: 0;
    position: absolute;
    bottom: 23px;
    left: 45px;
    font-weight: 400;
    transition: 0.6s all ease;
}


.portfilio-item:hover .portfilio-bg-color {
    opacity: 1;
}

.portfilio-item:hover h3 {
    color: #fff;
    font-size: 33px;
    margin: 0;
    position: absolute;
    font-weight: 600;
    bottom: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-portfilio {
    padding: 32px 0px;    
}


.portfilio-item1 {
     height: 357px;   
}


.portfilio-item2 {
     height: 273px;   
}


.portfilio-item2 h3 {
    color: #fff;
}




.portfilio-item3 {
     height: 273px;   
}


.portfilio-item3 h3 {
    color: #fff;
}



.portfilio-item4 {
     height: 665px;   
}


.portfilio-item4 h3 {
    color: #fff;
}

.portfilio-item5 {
    height: 273px;
    margin-top: 32px;  
}

.portfilio-item5 h3 {
    color: #fff;
}

.show-more-btn h6 {
    margin: 0;
    text-align: right;
    padding-top: 14px;
    position: relative;
    z-index: 999;
}

.show-more-btn h6 a {
    color: #D26B89;
    font-size: 25px;
    font-weight: 600;
}

.book-btns {
    text-align: center;
    padding-top: 10px;
    position: relative;
    z-index: 999;
}

.book-btns a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 18px;
    display: inline-block;
    padding: 17px 40px;    
    transition: 0.3s all ease;
}

.book-btns a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}







/*--- blogs-area start ---*/

.blogs-area {
    background: #fff;
    padding: 60px 0;
    padding-bottom: 80px;
}

.blogs-part {
    padding-bottom: 65px;
}


.blogs-top h2{
    color: #696969;
    font-size: 65px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.9);
}


.blogs-part img {
    width: 100%;
    height: 499px;
}


.blogs-part h2 {
    color: #696969;
    font-size: 43px;
    font-weight: bold;
    margin: 0;
    margin-top: 22px;
    margin-bottom: 7px;
}

.blogs-part p {
    color: #9b9898;
    font-size: 25px;
    font-weight: 300;
    margin: 0;
    line-height: 29px;
}


/*--- Pagination-area start ---*/

.Pagination-part {
  padding-top: 90px;
}


.Pagination-part ul {
    list-style-type: none;
    text-align: center;
}

.Pagination-part ul li {
    display: inline-block;
}


.Pagination-part ul li a {
    color: #696969;
    font-size: 20px;
    font-weight: 400;
    width: 39.16px;
    height: 47px;
    border-radius: 18.07px;
    text-decoration: none;
    border: 2px solid #696969;
    display: block;
    line-height: 47px;
    text-align: center;
    margin: 3.5px;
    transition: 0.3s all ease;
}

.Pagination-part ul li a:hover {
    color: #fff;
    background: #696969;
}

.Pagination-part ul li.active a {
    /*color: #696969;*/
    color: #ffffff;
    background: #696969;
    border: 1px solid #696969;
}

/*--- blogs-bottom-area start ---*/
.blogs-bottom {
    text-align: center;
    padding-top: 130px;
    padding-bottom: 33px;
}

.blogs-bottom a {
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 18px;
    transition: 0.3s all ease;
}

.blogs-bottom a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}


/*--- ouremploee-area start ---*/
.ouremploee-area {
   background-color: #fff; 
   padding-top: 30px;
   padding-bottom: 100px;
}

.ouremploee-heading h2 {
    color: #696969;
    font-size: 60px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    padding-bottom: 35px;   
}


.ouremploee-part {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding: 0 98px;
}


.ouremploee-img img {
    width: 209px;
    height: 262px;
    display: block;
    margin: auto;
}


/*--- aboutreview-area start ---*/
.aboutreview-area {
   background-color: #53189F; 
   padding: 30px 0;
}

.aboutreview-heading h2 {
    color: #fff;
    font-size: 60px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    padding-bottom: 35px;   
}




.aboutreview-text {
    width: 453px;
    display: block;
    margin: auto;
}



.aboutreview-text p {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 23px;
}

.aboutreview-text p a {
    color: #fff;
}

.aboutreview-user {
    padding-top: 35px;
}


.aboutreview-user span {
    width: 73px;
    height: 73px;
    display: block;
    background-color: #D9D9D9;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
}

.aboutreview-user h3 {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    margin: 0;    
}

.aboutreview-user p {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    margin: 0;
    padding-top: 2px;   
}






/*--- abouthero-area start ---*/
.abouthero-bg {
   background-image: url('img/abouthero.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   padding: 0px 0;
}


.abouthero-area {
   background-color: rgba(28, 15, 111, 0.5);
   padding: 280px 0;
}

.abouthero-part h1 {
    color: #fff;
    font-size: 99px;
    text-align: center;
    margin: 0;
    font-weight: 700;
}

.abouthero-part p {
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;   
}









/*--- aboutplayicon-area start ---*/
.aboutplayicon-area {
   background-color: #555555;
   padding: 320px 0;
}


.aboutplayicon-part img {
    width: 165px;
    height: 155px;
    display: block;
    margin: auto;
}


/*--- about4box-area start ---*/
.about4box-area {
   background-color: #fff;
   padding: 60px 0;
   padding-top: 0px;
}

.about4box-part {
    background-color: #D26B89;
    border-radius: 40px;
    padding: 80px 45px;
    margin-top: -137px;
    position: relative;
    overflow: hidden;
}



.about4box-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    position: relative;
    bottom: -389px;
    transition: 0.6s all ease;
 }


 .about4box-item img {
    width: 100%;
    height: 295px;
    display: block;
    border-radius: 17.71px;
 }

.about4box-part:hover .about4box-items  {
    position: relative;
    bottom: 0px;  
}




/*--- customized-area start ---*/
.customized-area {
    background-color: #fff;
    padding: 0px 0;
    padding-top: 10px;
    margin-bottom: -136px;
}



.customized-part h2 {
    color: #696969;
    font-size: 43px;
    margin: 0;
    font-weight: bold;
    padding-bottom: 22px;
}

.customized-part p {
    color: #9b9898;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    line-height: 40px;
    padding-bottom: 24px;    
}


.progress-part {
    width: 397px;
    margin-left: 8px;
}

.progress-part h6 {
    display: block;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9b9898;
    margin-bottom: 13px;
    padding-top: 3px;
}

.progress-part .progress {
    height: 11px;
    border-radius: 48px;
    border: 1px solid #000000;
    background: none;
}

.progress-part .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
}

.progress-part .progress-bar {
    text-align: left;
    border-radius: 20px;
    transition-duration: 3s;
    background-color: #d26b89;
}


/*--- homeimg-area start ---*/
.homeimg-area {
   padding: 0px 0;

}

.homeimg-area img {
    width: 100%;
    display: block;
    margin: auto;
}




/*--- contacthero-area start ---*/
.contacthero-area {
   padding: 100px 0;
   background-color: #fff3f7;
}


.contacthero-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    padding: 0 37px;
}

.contactform-part {
    margin-bottom: -54px;
    padding-left: 127px;
    padding-right: 90px;
}

.contacthero-item {
    width: 100%;
    background-color: #fff;
    border-radius: 35px;
    height: 377px;
    padding: 60px 20px;
    padding-bottom: 30px;
    text-align: center;
    display: grid;
    align-items: center;
}

.contacthero-item img {
    width: 61px;
    display: block;
    margin: auto;   
}

.contacthero-item p {
   margin: 0;  
}

.contacthero-item p a {
    color: #9b9898;
    font-size: 30px;
    font-weight: bold;    
}

.contacthero-item h2 {
    color: #696969;
    font-size: 50px;
    font-weight: bold;
    margin: 0;   
}



.contacthero-item {
    width: 321px;
    background-color: #fff;
    border-radius: 35px;
    height: 377px;
    padding: 60px 20px;
    padding-bottom: 30px;
    text-align: center;
    display: grid;
    align-items: center;
}



.contacthero-item2 p a {
  color: #9b9898;
    font-size: 22px;
    font-weight: bold;  
}



.contacthero-item p a {
    font-size: 22px;
    font-weight: bold;
}




/*--- contactform-area start ---*/
.contactform-area {
   padding: 90px 0;
   background-color: #fff;
   padding-bottom: 0px;
   
}

.contactform-part {
    margin-bottom: -65px; 
}



.contactform-part input[type="text"] {
    color: #696969;
    font-weight: 600;
    font-size: 28px;
    width: 100%;
    border-radius: 30px;
    border: 3px solid #696969;
    height: 79px;
    padding: 15px 95px;
    margin-bottom: 26px;
    outline: none;
}

.contactform-part input[type="text"]::placeholder {
    color: #d6d6d6;
    font-weight: 600;
    font-size: 28px;
}



.contactform-part input[type="email"] {
    color: #696969;
    font-weight: 600;
    font-size: 28px;
    width: 100%;
    border-radius: 30px;
    border: 3px solid #696969;
    height: 79px;
    padding: 15px 95px;
    margin-bottom: 26px;
        outline: none;
}

.contactform-part input[type="email"]::placeholder {
    color: #d6d6d6;
    font-weight: 600;
    font-size: 28px;
}


.contactform-part textarea {
    color: #696969;
    font-weight: 600;
    font-size: 28px;
    width: 100%;
    border-radius: 30px;
    border: 3px solid #696969;
    height: 349px;
    padding: 15px 95px;
        outline: none;
    margin-bottom: 26px;
}

.contactform-part textarea::placeholder {
    color: #d6d6d6;
    font-weight: 600;
    font-size: 28px;
}


.contactform-part button {
    color: #696969;
    font-size: 25px;
    font-weight: 600;
    width: 157px;
    height: 64px;
    border-radius: 30px;
    border: 3px solid #696969;
    background: none;
        outline: none;
    text-align: center;
}

.contactform-part button img {
    position: relative;
    max-width: 100%;
    right: -31px;
    margin-left: -17px;    
}


/*--- aboutproject-area start ---*/
.aboutproject-area {
    background-color: #fff;
    padding: 26px 0;
    border-bottom: 18px solid #f0f0f0;

}

.aboutproject-part {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    grid-column-gap: 40px;
    grid-row-gap: 35px;
}

.aboutproject-nember {
    width: 136px;
    height: 136px;
    display: block;
    line-height: 110px;
    text-align: center;
    border: 15px solid #6423B9;
    border-radius: 50%;
    margin: auto;
}

.aboutproject-nember span {
    font-family: "Luckiest Guy", cursive;
     color: #53189F;
    font-size: 33px;   
}

.aboutproject-item p {
    color: #696969;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-top: 15px;    
}




/*---- servicehero-area start ---*/
.servicehero-area {
    background-color: #fff;
    padding: 80px 0;
}



.servicehero-left {
   background-image: url('img/servicesimg.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   padding: 30px;
   height: 771px;
   box-sizing: border-box;
}


.servicehero-left h2 {
    color: #fff;
    font-size: 99px;
    text-align: center;
    font-weight: bold;
    margin: 0;  
}

.servicehero-left p {
    color: #FFFFFF;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 0;    
}



.servicehero-right ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-left: 30px;
}

.servicehero-right ul li {
    display: block;
    color: #696969;
    font-size: 30px;
    font-weight: 500;
    border: 3px solid #696969;
    height: 79px;
    line-height: 79px;
    text-align: center;
    border-radius: 30px;
    margin-top: 15px;
   
    cursor: pointer;
}

.servicehero-right ul li:hover {
   background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
   color: #fff;
   border: none;
}



/*---- servicetext-area start ---*/
.servicetext-area {
    background-color: #fff;
    padding: 60px 0;
}


.servicetext-left p {
    color: #696969;
    font-size: 25px;
    font-weight: 300;
    margin: 0;
    line-height: 31px;
}

.servicetext-image img {
    max-width: 100%;
}





/*---- allimages-area start ---*/
.allimages-area {
    background-color: #fff;
    padding: 60px 0;
    padding-bottom: 180px;
}


.topallimages-btn {
    padding-bottom: 80px;
    position: relative;
}

.topallimages-btn button {
    color: #696969;
    font-size: 35px;
    font-weight: 600;
    width: 227px;
    height: 42px;
    background-color: #F4A6BD;
    border-radius: 13px;
    border: none;
    line-height: 42px;
}

.topallimages-btn button img {
    max-width: 100%;
}


.topallimages-btn ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 294px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    position: absolute;
    background-color: #fff;
    top: 46px;
    display: none;
}

.topallimages-btn ul li {
    display: block;
}

.topallimages-btn ul li a {
    color: #696969;
    font-size: 35px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #000;
    padding: 8px 10px;
    transition: 0.3s all ease;
}


.topallimages-btn ul li a:hover {
    color: #fff;
    background: linear-gradient(90deg, #F4A6BD 0%, #D26B89 100%);

}



.scroll-part {
    overflow: hidden;
    overflow-y: scroll;
    height: 800px;
    padding-right: 20px;    
}


.allimages-part {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 44px; 
}

.allimages-item img {
    width: 100%;
    height: 190px;
    border-radius: 11px;
    display: block;
    margin: auto;
}




/* width */
.scroll-part::-webkit-scrollbar {
  width: 9px;

}

/* Track */
.scroll-part::-webkit-scrollbar-track {
  width: 9px;
  border-radius: 30px;
  border: 2px solid #000;
  background-color: #fff;
}

/* Handle */
.scroll-part::-webkit-scrollbar-thumb {
  background: #D26B89;
    border-radius: 30px;
}

/* Handle on hover */
.scroll-part::-webkit-scrollbar-thumb:hover {
  background: #D26B89;
}





.allimages-btn {
    text-align: center;
    padding-top: 35px;
}

.allimages-btn a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 18px;
    display: inline-block;
    padding: 17px 40px;
    transition: 0.3s all ease;
}

.allimages-btn a:hover {
    color: #696969;
    background: rgba(255, 219, 183, 1);
}





/*---- Potroliohero-area start ---*/
.Potroliohero-area {
    background-color: #fff;
    padding: 60px 0;
    overflow: hidden;
}




.Potroliohero-part {
   background-image: url('img/protfoloimg.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   padding: 181px 0;
   box-sizing: border-box;
   position: relative;
}


.Potroliohero-part h2 {
    color: #fff;
    font-size: 99px;
    text-align: center;
    font-weight: bold;
    margin: 0;  
}

.Potroliohero-part p {
    color: #FFFFFF;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 0;    
}



.circals1-img {
    width: 327px;
    height: 327px;
    position: absolute;
    top: -49px;
    left: -146px;
}

.circals2-img {
    width: 128px;
    height: 128px;
    position: absolute;
    bottom: -38px;
    right: 16px;    
}



.button3-item {
    padding-bottom: 40px;
}

.button3-item ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.button3-item ul li {
    display: inline-block;
}

.button3-item ul li a {
    color: #696969;
    font-size: 19.04px;
    font-weight: 500;
    width: 154px;
    height: 45px;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 15px;
    line-height: 45px;
    text-align: center;
    margin-right: 13px;   
}

.button3-item ul li a:hover {
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    color: #fff;
    border: 2px solid #D26B89; 
}





/*---- Potrolio3box-area start ---*/
.Potrolio3box-area {
    background-color: #fff;
    padding: 170px 0;
    padding-top: 0;
}


.Potrolio3box-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 44px;   
}


.Potrolio3box-item {
    height: 529px;
    width: 100%;
    overflow: hidden;
    position: relative;
}


.Potrolio3box-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.Potrolio3box-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(29, 22, 71, 0.5);
    position: absolute;
    left: 0;
    transition: 0.6s all ease;
    bottom: -1000px;
}


.Potrolio3box-itemtexts {
    position: absolute;
    display: grid;
    width: 100%;
    height: 100%;
    left: 0;
    padding: 40px;
    align-items: center;
    bottom: -1000px;
    transition: 0.6s all ease;  
}

.Potrolio3box-itemtext h2 {
    color: #FFFFFF;
    font-size: 44px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
}

.Potrolio3box-itemtext p {
    color: #FFFFFF;
    font-size: 19px;
    margin: 0;
    text-align: justify;
    font-weight: 400;
}



.Potrolio3box-item:hover .Potrolio3box-bg {
    bottom: 0;
}


.Potrolio3box-item:hover .Potrolio3box-itemtexts {
    bottom: 0;
}


.tree1-img {
    position: absolute;
    bottom: -93px;
    right: 0px;
    max-width: 100%;
}


.portfilio-part {
    position: relative;
    z-index: 999;
}


.contacthd .header-nav ul li:last-child {
    display: none;
}



/*---- estimate-area start ---*/
.estimate-area {
    padding: 40px 0;
    overflow: hidden;

}

.estimate-part {
    width: 757px;
    height: 572px;
    display: block;
    margin: auto;
    background-color: #fff;
    border-radius: 18px;
    padding: 100px 60px;
    position: relative;
}

.property-type {
    position: relative;
    z-index: 999;
}

.property-type p {
    color: #696969;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 6px;
    padding-left: 12px;
}



.property-type ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 141px;
    border: 2px solid #EFE2FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.property-type ul li {
    display: inline-block;
    width: 50%;
}

.property-type ul li:first-child a {
    color: #e48aa4;
    font-size: 12px;
    text-align: center;
    background-color: #ecdffc;
    height: 38px;
    display: block;
    width: 100%;
    border-radius: 12px 0px 0px 12px;
    line-height: 38px;
}

.property-type ul li:last-child a {
    color: #696969;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    height: 38px;
    display: block;
    width: 100%;
    border-radius: 0px 12px 12px 0px;
    line-height: 38px;
}




.room-type {
    position: relative;
    z-index: 999;
}


.room-type p {
    color: #696969;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 11px;
    padding-left: 12px;
    padding-top: 56px;
}

.room-type ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-around;
    grid-column-gap: 61px;
    grid-row-gap: 30px;
}

.room-type ul li {
    display: inline-block;
}

.room-type ul li a {
    color: #696969;
    font-size: 22px;
    width: 113px;
    height: 48px;
    border: 2px solid #000000;
    display: block;
    line-height: 48px;
    text-align: center;
    border-radius: 18.07px;
    transition: 0.3s all ease;
}

.room-type ul li.active a {
   background-color: #696969;
   color: #fff;
   border: 2px solid #000000;
}

.room-type ul li a:hover {
   background-color: #696969;
   color: #fff;
   border: 2px solid #000000;
}



.estimate-btns {
    position: relative;
    z-index: 9999;
}


.estimate-btns ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: right;
    padding-top: 35px;
}

.estimate-btns ul li {
    display: inline-block;
}

.estimate-btns ul li a {
    color: #fff;
    font-size: 19.44px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 11.67px;
    padding: 8px 25px;    
}


.estimatebtn ul li:last-child a {
    padding: 0;
}

.estimatebtn ul li {
    padding-left: 16px;
}


.estimate-btns ul li a button {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(95.29deg, #D26B89 -12.26%, #F4A6BD 109.97%);
    border-radius: 11.67px;
    padding: 7px 21px;
    border: none;  
}



.estimate-btnss ul li {
   padding-left: 24px;
}



.tree2-img {
   position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;    
}



.estimate-dots ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.estimate-dots ul li {
    display: inline-block;
}

.estimate-dots ul li a {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 2px solid #000000;
    border-radius: 50%;
    padding: 1px;
    cursor: pointer;
}

.estimate-dots ul li.active a {
    background-color: #D26B89;
}




.estimate-circal1 {
    width: 213px;
    height: 213px;
    background: linear-gradient(92.86deg, #D26B89 -6.5%, #F4A6BD 100.57%);
    border-radius: 50%;
    position: absolute;
    top: -37px;
    right: -60px;    
}


.estimate-circal2 {
    width: 74px;
    height: 74px;
    background: linear-gradient(92.86deg, #D26B89 -6.5%, #F4A6BD 100.57%);
    border-radius: 50%;
    position: absolute;
    top: 189px;
    right: -75px;    
}


.work-required ul {
    width: 225px;
}


.work-required ul li:first-child {
    width: 84px;
}


.work-required ul li:last-child {
    width: 130px;
}



.work-required ul li:first-child a {
    width: 84px;
}


.work-required ul li:last-child a {
    width: 130px;
}

.estimate-circals1 {
    top: -65px;
    right: 96px;    
}

.estimate-circals2 {
    top: 93px;
    right: -4px;   
}




.estimate-part form {
    position: relative;
    z-index: 999;
}



.estimateform-left p {
    color: #696969;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 6px;
    padding-left: 12px;
}



.name-mobile input {
    font-size: 16px;
    width: 100%;
    border: 1px solid #EFE2FF;
    border-radius: 15px;
    height: 38px;
    padding: 5px 9px;
    outline: none;
    padding-left: 81px;
    margin-bottom: 8px;   
}

.name-mobile span {
    /*color: #9876C6;*/
    color:white;
    font-size: 13px;
    text-align: center;
    /*background-color: #ecdffc;*/
    background: linear-gradient(92.86deg, #D26B89 -6.5%, #F4A6BD 100.57%);
    height: 38px;
    width: 75px;
    display: block;
    border-radius: 12px 0px 0px 12px;
    line-height: 38px;
    position: absolute;
    top: -1px;    
}






.last2-box textarea {
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    border: 3px solid #EFE2FF;
    height: 144px;
    border-radius: 18.07px;
    padding: 10px;
    width: 100%;
    outline: none;
}

.last2-box textarea::placeholder {
  color: #e48aa4;
  font-size: 12px;  
  font-weight: 400;
}


.date-box-part {
    background-color: #EFE2FF;
    background: linear-gradient(92.86deg, #D26B89 -6.5%, #F4A6BD 100.57%);
    height: 144px;
    border-radius: 18.07px;
    padding: 13px 15px;
    width: 100%;
}

.date-box-part p {
    color: #e48aa4;
    color:white;
    font-size: 12px;
    padding-left: 0;    
}

.date-box-part input {
    color: #e48aa4;
    color:#e48aa4;
    font-size: 12px;
    width: 100%;
    height: 27px;
    border-radius: 5px;
    border: none;
    text-align: center;
    outline: none;
    margin-top: 15px;   
}


.date-box-part input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(img/icon99.png) no-repeat;
    width: 22px;
    height: 22px;
    border-width: thin;
    margin-top: 12px;
    margin-right: -8px;
}






.estimate-circalls1 {
    top: 1px;
    right: 59px;
    width: 156px;
    height: 156px;   
}

.estimate-circalls2 {
    top: -41px;
    right: -35px;  
}
