/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

.features_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature_card {
  background: #ffffff;
  border: 1px solid rgba(75, 149, 5, 0.15);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon_wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e8f5d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_wrap svg {
  width: 24px;
  height: 24px;
}

.feature_body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature_title {
  font-weight: 600;
  color: #000000;
}
@media (min-width: 525px) {
  .ush_menu_1 .w-nav-list.level_2 {
    max-width: 500px;
    width: max-content;
  }
  .w-nav.type_desktop .w-nav-anchor:not(.level_1) {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .features_grid {
    grid-template-columns: 1fr;
  }
  .feature_card {
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 570px) {
  #heading-form .w-form-h {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px;
  }

  #heading-form .w-form-message {
    flex-basis: 100%;
  }

  #heading-form .w-form-row {
    width: 30%;
  }
}

#advantages .wpb_column .vc_column-inner h4 {
  color: #fff;
}
#advantages .wpb_column .vc_column-inner {
  background: #4b9505;
  margin: 5px 15px;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
}
.work_blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}

@media (min-width: 700px) {
  .work_blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.work_block {
  background: #f6faf1;
  border: 1px solid #d8e8c8;
  border-radius: 14px;
  padding: 28px 24px;
}

.work_block h3 {
  display: block;
  font-size: 20px;
  color: #3a7304;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #4b9505;
}

.hero_price_badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 6px 16px;
  margin: 15px 0;
}
.price_value {
  font-size: 20px;
  font-weight: 700;
  color: #70de07;
}
.hero_price_badge a {
  color: #70de07 !important;
}
.hero_price_badge a:hover {
  color: #70de07 !important;
  border-bottom: 2px solid !important;
}
.services_main_page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 10px;
}

.service_main_page_img{
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service_main_page_link.service_main_page_link{
  line-height: 20px;
}
.service_main_page_link:has(img){
  position:relative;
  display: block;
  border-radius: 0.3rem;
  overflow: hidden;
  margin-bottom: 5px;
}
.service_main_page_link:has(img):before{
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  inset: 0;
  background-color: hsl(91deg 94% 30% / 20%);
  transition: background-color 0.3s ease-in-out;
}
.service_main_page_link:has(img):hover:before{
  background-color: hsl(91deg 94% 30% / 5%);
}
@media(max-width:600px){
  .services_main_page {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}