#header .logo img {
  max-height: 90px;
} 

p {
  font-size: 18px !important;
}

/* #hero .carousel-inner .carousel-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */


section#hero
{
  padding: 120px 0px 60px !important;
}

  
#header {
  background: #715f51;
}   
.navbar a, .navbar a:focus, .header-social-links a {
  color: white !important;
}


.header-social-links a i.bu:hover {
color: #ba8f35;
transition: all 0.3s ease-in-out 0s;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}
.why-us .content {
  padding: 30px;
  background: #715f51;
  border-radius: 4px;
  color: #fff;
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content p {
  margin-bottom: 30px;
}
.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}
.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  color: #715f51;
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #715f51;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}
section#why-us {
  margin-top: -100px;
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.aboutn .icon-boxes h4 {
  font-size: 18px;
  color: #7f6d68;
  margin-bottom: 15px;
}
.aboutn .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #554945;
  margin-bottom: 15px;
}
.aboutn .icon-box {
  margin-top: 40px;
}
.aboutn .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #715f51;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}
.aboutn .icon-box .icon i {
  color: #715f51;
  font-size: 32px;
}
.aboutn .icon-box:hover .icon {
  background: #715f51;
  border-color: #715f51;
}
.aboutn .icon-box:hover .icon i {
  color: #fff;
}
.aboutn .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.aboutn .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.aboutn .icon-box .title a:hover {
  color: #715f51;
}
.aboutn .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.aboutn .video-box {
  background: url("../img/about-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.aboutn .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#715f51 50%, rgba(255, 88, 33, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.aboutn .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.aboutn .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(197, 23, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.aboutn .play-btn:hover::after {
  border-left: 15px solid #715f51;
  transform: scale(20);
}
.aboutn .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}




/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #715f51;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
  margin-bottom: -20px;
}
.cta h3 {
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #715f51;
}

/* all custom.css  */

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values .card {
    border: 0;
    padding: 160px 20px 20px 20px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .our-values .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    transition: ease-in-out 0.4s;
    border-radius: 5px;
  }
  .our-values .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }
  .our-values .card-title a {
    color: #150517;
  }
  .our-values .card-text {
    color: #5e5e5e;
  }
  .our-values .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.4s;
  }
  /* .our-values .read-more a:hover {
    text-decoration: underline;
  }
  .our-values .card:hover .card-body {
    background: #715f51;
  } 
  .our-values .card:hover .read-more a, .our-values .card:hover .card-title, .our-values .card:hover .card-title a, .our-values .card:hover .card-text {
    color: #fff;
  }
  */


  .our-values .card {
    box-shadow: 0 0 29px 0 rgb(18 66 101 / 8%);
}   


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.abouttt {
    background: url("../img/tmp.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    color: white;
  }
  .abouttt:before {
    content: "";
    /* background: rgb(153 27 30);
    background: rgb(153 27 30); */
    background: rgba(113,95,81, 0.9);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  .abouttt .about-img {
    position: relative;
    transition: 0.5s;
  }
  .abouttt .about-img img {
    max-width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  .abouttt .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #efba67;
    border-top: 5px solid #efba67;
    transition: 0.5s;
  }
  .abouttt .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #efba67;
    border-bottom: 5px solid #efba67;
    transition: 0.5s;
  }
  .abouttt .about-img:hover {
    transform: scale(1.03);
  }
  .abouttt .about-img:hover::before {
    left: 10px;
    top: 10px;
  }
  .abouttt .about-img:hover::after {
    right: 10px;
    bottom: 10px;
  }
  .abouttt .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  .abouttt .content ul, .approch .content ul {
    list-style: none;
    padding: 0;
  }
  .abouttt .content ul li, .approch .content ul li {
    padding-bottom: 10px;
  }
  .abouttt .content ul i, .approch .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #efba67;
  }
  .abouttt .content p:last-child, .approch .content p:last-child {
    margin-bottom: 0;
  }
  .approch
{
 padding: 30px 0px;
}

.approch ul li p {
  margin-left: 34px;
  margin-bottom: 5px;
}
.approch ul li i {
  float: left;
}


.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}


.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ba8f35;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}



  @media (min-width: 1024px) {
    .abouttt {
      background-attachment: fixed;
    }
  } 
  




/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clientsss {
    padding: 15px 0;
    text-align: center;
  }
  .clientsss img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
  }
  .clientsss img:hover {
    filter: none;
    transform: scale(1.15);
  }
  @media (max-width: 768px) {
    .clientsss img {
      max-width: 40%;
    }
  }

  

section#clientsss {
    background-color: #efba67;
    background-image: linear-gradient(to right, #efba67 , #d9bf6b);
}
  
.abouttt .content {
    position: relative !important;
}


.copyright {
  line-height: 36px;
}
#footer .footer-top {
   background: #ba8f35 !important;
}
#footer .footer-top .footer-contact p, #footer .footer-top .footer-links ul a, #footer .footer-newsletter
{
color: white;
}
#footer .social-links a:hover, .back-to-top:hover {
  background: #ba8f35;
}
#footer .footer-top .footer-links ul i {
  color: #715f51;
}
.our-values .card-body
{
  /* background: rgba(239,186,103, .96); */
  background: white;
}
.our-values .card-text
{
  color: #333;
}
.header-social-links {
  border-left: 1px solid white !important;
}

.breadcrumbs {
  background: #715f51;
  margin-top: 120px;
  background: #ba8f35;
}



.about-page .abouttt:before {
  background: white;
}

.about-page .abouttt {
  color: #111;
}
section#breadcrumbs h2 {
  margin-bottom: 0px;
}
.navbar a {
  font-size: 14px;
}

.section-title h2 {
  margin-bottom: 10px !important;
  padding-bottom: 8px !important;
  font-size: 28px !important;
}

.section-title.txt-left
{
  text-align: left !important;
}
.section-title.txt-left h2::after {
  left: 0px;
}


.servicesss .about-img {
  position: relative;
  transition: 0.5s;
  height: 100% !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicesss .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow: 2px 2px 12px rgb(117 114 105 / 40%);
  object-fit: cover !important;
    /* height: 300px; */
}
.servicesss .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
 
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #efba67;
  border-top: 5px solid #efba67;
  transition: 0.5s;
}
.servicesss .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #efba67;
  border-bottom: 5px solid #efba67;
  transition: 0.5s;
}
.servicesss .about-img:hover {
  transform: scale(1.03);
}
.servicesss .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.servicesss .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.row.servicesss {
  padding: 30px 0px;
}
.section-title
{
  padding-bottom: 24px !important;

}
section.service-div {
  padding: 20px 0px;
}
/* .detailed-design .servicesss .about-img img {
  height: 200px;
} */

.servicesss .about-img.size300 img
{
  height: 300px;
}

.row.servicesss > div {
  margin-top: 20px;
  margin-bottom: 20px;
}


.servicesss .about-img.threehund img
{
  height: 300px;

}

section.service-div.fabric-designs .row.servicesss > div {
  margin-top: 10px;
  margin-bottom: 10px;
}

section#project-consultancys {
  background: #715f51;
}

section#project-consultancys h2, section#project-consultancys p {
  color: white;
}
section#project-consultancys .section-title h2::after
{
  background: white;
}



.portfolio .portfolio-item .portfolio-info {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  border-radius: 50px;
  transform: translate(-50%);
}

.portfolio .portfolio-item .portfolio-info .preview-link {
  position: relative;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-item .portfolio-info .preview-link i {
  font-size: 40px;
}
.contact .info span {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact.footer-contact .info {
  background: transparent !important;
}

#footer .footer-newsletter .footer-contact h4 {
  padding-bottom: 0px;
  margin-bottom: 5px;
}

.contact.footer-contact .info {
  margin-bottom: 15px;
}

.contact.footer-contact .info a {
  font-weight: 600;
}
#footer .footer-top .footer-contact p, #footer .footer-top .footer-links a {
  font-size: 16px !important;
}
.cta-project {
  background: none;
  color: #111;
  padding: 20px 0px;
}
.cta.cta-project a.cta-btn.scrollto:hover {
  border-color: #715f51;
  color: #715f51;
  background-color: white;
}

.cta.cta-project a.cta-btn.scrollto {
  border-color: #715f51;
  background-color: #715f51;
  color: white;
}

.our-values .card-body {
  position: relative;
  bottom: -80px;
}
section#our-values {
  padding: 60px 0px 140px;
}

.our-values .card-title {
  font-size: 18px !important;
}

section#abouttt .content {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}

/* .home-page .section-title h2::after {
  background: white !important;
} */

ul#portfolio-flters {
  display: none;
}


#footer .footer-top {
  background: white !important;
  box-shadow: 0px 2px 15px rgb(70 65 65 / 50%) !important;
  margin-top: 20px;
}


#footer .footer-top .footer-contact p, #footer .footer-top .footer-links ul a, #footer .footer-newsletter, #footer .footer-top h4, #footer .footer-newsletter h4, #footer .footer-top .footer-contact h3

{
  color: #111;
}

p.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
}
.cta .cta-btn {
  margin-top: 24px;
}

.home-page .abouttt .section-title h2::after {
  background: white !important;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ba8f35;
  font-weight: 600;
}

a.back-to-top.d-flex.align-items-center.justify-content-center.active {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%) !important;
}

span.error {
  font-size: 12px !important;
  color: red;
  margin-left: 5px;
  display: inline-block;
}

/*  Thankyou Page  */


.fluxx {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #411c03 !important;
  flex-direction: column;

}

h4.thankyoupage-heading {
  font-size: 65px;
  text-align: center;
  line-height: 1.5;
  color: #cfa93f;
  text-shadow: 2px 3px 4px #3f1c05;
}

p.thankyoupage-para {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  color: #cfa93f;
}
.thankyoupage-logo img {
  width: 200px;
}
.thankyoupage-btn a {
  color: white !important;
  font-family: sans-serif;
  text-decoration: none;
  margin-bottom: 0px !important;
}

.thankyoupage-btn a {
  padding: 10px 30px;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #cfa93f;
  box-shadow: 2px 3px 4px #3f1c05;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

body.thankyoupage {
  padding: 0px;
  margin: 0px;
}
h4.thankyoupage-heading {
  margin: 0px;
}


@media(max-width: 767px)
{
  .navbar-mobile a
  {
    color: #111 !important;
  }
  .mobile-nav-toggle
  {
   color: white;
  }
  section.service-div.fabric-designs .row.servicesss > div {
    margin-top: 20px;
    margin-bottom: 20px;
}

.header-social-links.d-flex {
  display: none !important;
}


}

