/*
Theme Name: Neve Child
Template: neve
Version: 1.0.0
*/


.mt-hero,
.mt-section {
  padding: 64px 20px;
}

.mt-hero{
  padding: 5% 0;
}


.mt-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.mt-narrow {
  max-width: 900px;
}

.mt-hero {
  background: #fff;
}

.mt-hero .mt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.mt-copy,
.mt-photo {
  flex: 1 1 0;
}

.mt-copy {
	text-align:center;
}

.mt-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a6a3f;
}

.mt-hero h1,
.mt-section h2 {
  margin: 0 0 18px;
  color: #1e1e1e;
  line-height: 1.08;
}

.mt-hero h1 {
  font-size: 58px;
  max-width: 620px;
}

.mt-section h2 {
  font-size: 38px;
}

.mt-sub,
.mt-section p,
.mt-services li {
  font-size: 18px;
  line-height: 1.75;
  color: #4c4c4c;
}

.mt-sub {
  max-width: 620px;
  margin: 0 0 24px;
}

.mt-cta {
  margin: 0 0 22px;
  font-size: 20px !important;
}



.mt-cta a {
  display: inline-block;
  padding: 15px 28px;
  background: #1f1f1f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mt-cta a:hover {
  background: #000;
  color: #fff;
}

.mt-trust {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mt-trust li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #4c4c4c;
}

.mt-trust li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a6a3f;
  font-weight: 700;
}

.mt-photo img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-left: auto;
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.mt-section {
  background: #f7f7f7;
    border-top: 1px solid #efefef;
	margin-bottom:5%;
}

.mt-dark {
  background: #1f1f1f;
}

.mt-dark h2,
.mt-dark p,
.mt-dark .mt-services li {
  color: #fff;
}

.mt-services {
  columns: 2;
  column-gap: 40px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.mt-services li {
  margin: 0 0 12px;
}

@media (max-width: 991px) {
  .mt-hero .mt-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .mt-hero h1 {
    font-size: 44px;
  }

  .mt-section h2 {
    font-size: 32px;
  }

  .mt-photo img {
    margin: 0;
    max-width: 440px;
  }

  .mt-services {
    columns: 1;
  }
}

@media (max-width: 767px) {
  .mt-hero,
  .mt-section {
    padding: 5% 6%;
  }

  .mt-hero h1 {
    font-size: 34px;
  }

  .mt-section h2 {
    font-size: 28px;
  }

  .mt-sub,
  .mt-section p,
  .mt-services li {
    font-size: 16px;
    line-height: 1.65;
  }

  .mt-cta a {
    width: 100%;
    text-align: center;
  }

  .mt-trust li {
    font-size: 15px;
  }
}


.mt-projects p {
  margin-bottom: 26px;
}

.mt-gallery-heading {
  margin: 38px 0 18px;
  font-size: 28px;
  line-height: 1.2;
  color: #1e1e1e;
}

.mt-project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 12px;
}

.mt-project {
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 3px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.mt-project h4 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  color: #1e1e1e;
}

.mt-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*gap: 14px;*/
}

.mt-project figure,
.mt-finished-grid figure {
  margin: 0;
}

.mt-project img,
.mt-finished-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  background: #f3f3f3;
}

.mt-project figcaption,
.mt-finished-grid figcaption {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
margin-bottom:5%;
}

.mt-finished-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 991px) {
  .mt-finished-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mt-gallery-heading {
    font-size: 24px;
  }

  .mt-ba,
  .mt-finished-grid {
    grid-template-columns: 1fr;
  }

  .mt-project,
  .mt-project img,
  .mt-finished-grid img {
    height: auto;
  }
}

.mt-ba-three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .mt-ba-three {
    grid-template-columns: 1fr;
  }
}


#mt-quote-btn,
#mt-quote-btn:visited,
#mt-quote-btn:hover,
#mt-quote-btn:focus,
#mt-quote-btn:active,
#mt-bottom-quote-btn{
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

#mt-quote-btn:hover,
#mt-quote-btn:focus {
  background: #000 !important;
  color: #fff !important;
}


#mt-quote-btn, #mt-bottom-quote-btn{
display:block;
width:100%;
}



#mt-quote-form {
  background: #fff !important;
  margin-top: 20px;
}

#mt-quote-form .ff-el-group,
#mt-quote-form .ff-el-input--label,
#mt-quote-form .ff-el-form-control,
#mt-quote-form .ff-t-cell,
#mt-quote-form .ff_submit_btn_wrapper {
  background: transparent !important;
}

#mt-quote-form .ff-el-input--label label,
#mt-quote-form .ff-el-input--label,
#mt-quote-form .ff-el-form-top label {
  display: block;
  text-align: left !important;
  justify-content: flex-start !important;
}

#mt-quote-form .ff-el-input--label label {
  width: 100%;
}

.mt-quote-hidden {
  display: none !important;
}

.mt-quote-visible {
  display: block !important;
}



.mt-hero {
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.mt-hero .mt-wrap {
  background: #ffffff !important;
}

.mt-copy {
  background: #ffffff !important;
}


.scroll-to-top, .scroll-to-top:hover {
background:#111;
}


.scroll-to-top{
margin-bottom: 45px;
}


/* Fluent Forms submit button styled like site CTA */

form.fluent_form_3 .ff-btn-submit {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 26px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
  display: inline-block;
}

/* hover */
form.fluent_form_3 .ff-btn-submit:hover {
  background: #222222 !important;
}

/* remove blue focus outline */
form.fluent_form_3 .ff-btn-submit:focus {
  outline: none !important;
  box-shadow: none !important;
}



/* tighten instruction text above project textarea */

.mt-form-note {
  margin: 0 0 -3%;
  /*font-size: 13px;*/
  line-height: 1.5;
  /*color: #666;*/
text-align:left;
font-weight:bold;
}

/* tighten spacing above the textarea field */

.fluentform .ff-el-group:last-of-type .ff-el-form-control,
.fluentform .ff-el-group textarea {
  margin-top: 4px;
}

.privacy {
text-align:left;
}




.mt-footer {
  background:#111;
  color:#fff;
  padding:40px 20px;
  text-align:center;
}

.mt-footer-inner {
  max-width:1200px;
  margin:0 auto;
}

.mt-footer-nav {
  margin-bottom:18px;
}

.mt-footer-menu {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.mt-footer-menu li a {
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.mt-footer-menu li a:hover {
  text-decoration:underline;
}

.mt-footer-meta {
  font-size:13px;
  color:#ccc;
}


.component-wrap{
display:none;
}
 


.nav-ul li.nv-active>.wrap .caret, .nav-ul li.nv-active>.wrap>a {
color:#222;
}






