.residentiall {
    padding: 4% 4%;
    margin: 10% 0%;
}
.residential-btn-class {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.residential-btn-class button{
    padding: 14px 20px 14px 20px;
    border: 2px solid #E0E0E0;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #000000;
}

.residential-btn-class button:hover{
  
    border: 2px solid #656262;
    color: #000000;
    transition: all;
}


/* faq */

.accordion .accordion-item {
    background: #F9F9F9;
    margin: 2% 0%;
    border: none;
    border-radius: 6px;
}
  
.accordion {
    border: none !important;
}
  
  .accordion button {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    padding: 1em 0;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
    line-height: 29px;
  }
  
  .accordion button:hover {
    cursor: pointer;
    color: #3a7cfe;
  }
  
 
  
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 9px;
    width: 28px;
    height: 22px;
  
}
  
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  
  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-weight: 500;
    margin: 2px 32px;
    text-align: center;
    font-size: 16px;
    line-height: 29px;
    padding: 10px 0px;
}

/* end */
/* tabs css */
[data-tab-content] {
    display: none;
  }
  
  .active[data-tab-content] {
    display: block;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 2%;
    padding: 0;
}
  
.tab {
    cursor: pointer;
    padding: 1% 4%;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    color: #767676;
    border: 1PX solid #767676;
}
  
  .tab.active,.tab:hover {
    background-color: #3A7CFE;
    color: #FFFFFF;
}
  
  
  
  .tab-content {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  /* tabs content */
  .img-wrapper {  
    width: 100%;
    overflow: hidden; 
  }
  
  .inner-img {
    transition: 0.3s;
  }
  
  .inner-img:hover {
    transform: scale(1.1);
  }
  
  /* Other styling elements, that are not necessary for the example */
  
  .img-wrapper {
    display: inline-block;
    box-sizing: border-box;
   
  }