.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.services-content-wrapper {
max-width: 1400px;
width: 98%;
margin-inline: auto;
padding: 30px 15px;
}

.flex-row {
display: flex;
flex-flow: row wrap;
gap: 15px;
margin: auto;
padding: 25px 15px;
}

.flex-col-2 {
flex: 1 460px;
justify-content: space-around;
margin-inline: auto;
}

.tuckpoint-estimate {
text-align: center;
}

.main-wrapper-reverse {
flex-flow: row-reverse wrap;
}

.repair-services-wrapper {
padding: 20px;
margin: 25px auto;
text-align: center;
}

.repair-services-list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 15px;
	justify-content: center;
	margin: 20px auto 50px;
}

.repair-item h3 {
width: 315px;
text-align: start;
margin-inline: auto;
}

.repair-item h3 span {
	vertical-align: middle;
	margin-right: 10px;
	color: #019f48;
}

.repair-item {
text-align: center;
margin: auto;
}

.svc-overview-item h3 {
	font-size: 30px;
}

/* -- Home - Estimate Box */

.estimate-box {
	background: var(--accent-color);
	margin: auto;
	padding: 25px;
	color: #ffffff;
	max-width: 500px;
	text-align: center;
	position: relative;
	z-index: 2;
	top: 0px;
	-webkit-box-shadow: 2px 2px 15px 5px rgba(0, 0, 0, 0.15);
	box-shadow: 2px 2px 15px 5px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.maincontent_wrapper form {
	padding: 10px 15px!important;
}


.estimate-box h3 {
    font-weight: 700;
    text-transform: uppercase;
}


.estimate-heading {
    color: var(--accent-color);
    margin: 10px 0;
    font-weight: bold;
}

.estimate-box .form_field_wrapper {
    padding: 3px;
    margin-bottom: 8px;
}

.estimate-box .form_field_wrapper:hover {
    background: none;
}

.estimate-box .form_field_content {
    width: 100% !important;

}

.estimate-box .form_field_text,
.form_field_select,
.estimate-box .form_field_textarea {
    width: 100%;
    background: #ffffff;
}

.estimate-box .required_field_element {
    display: none;
}

.estimate-box .required_field {
    width: 100% !important;
}


.estimate-box .thank_you_content {
    background: var(--accent-color);
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.estimate-box .form_field_title {
    display: none;
}


.estimate-box .btn.btn-primary {
    border: 3px solid #ffffff;
    color: #ffffff;
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
    width: 40%;
    padding: 12px 0;
}

.estimate-box .btn.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

@media (max-width: 700px){
.repair-services-list {
	grid-template-columns: repeat(1,1fr);
}

.repair-item {
	text-align: center;
	margin: -10px auto;
}
}

/*** Box Gallery ****/
.portfolio-wrapper,
.gallery-wrapper {
  max-width: 92%;
  width: 100%;
  margin-inline: auto;
  padding-block: 20px;
  }
  
  .box-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    width: 100%;
    position: relative;
justify-content: center;
  }

  .box-gallery h3 {
    position: absolute;
    top: -55px;
  }
  .box-gallery .box-gallery-item{
    position: relative;
    height: 250px;
    margin-inline: auto;
    overflow: hidden;
    flex: 0 1 18em;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
  }


  .box-gallery .box-gallery-item i {
    position: absolute;
    bottom: 40%;
    left: 50%;
    margin: 0 0 -28px -28px;
    font-size: 2em !important;
    border-radius: 50%;
    padding: 10px;
    background: var(--accent-color);
    color: #fff;
    opacity: 0;
    transition: all 0.25s;
  }
  .box-gallery .box-gallery-item:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }
  .box-gallery .box-gallery-item:hover i {
    bottom: 50%;
    opacity: 1;
  }
  .box-gallery .box-gallery-item:hover figure {
    opacity: 0.6;
  }
  .box-gallery .box-gallery-item figure {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    background-size: cover;
  }
  .box-gallery .box-gallery-item figure:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }/*# sourceMappingURL=Untitled-1.css.map */