.home_banner {
  background-image: url(../assets/images/banner-img.jpg);
  background-position: center;
  background-size: cover;
  padding: 0;
}

.home_banner .overlay {
  background: #364352c4;
  height: calc(100vh - 139px);
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.service_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10px;
}

.service_list li {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.service_list li h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service_list li span:first-child {
  background-color: #ffc51330;
  border-radius: 50px;
  padding: 10px;
}

/* Tab Section */

.services {
  background-image: url(../assets/images/row-bgimage.jpg);
  background-color: #f7f7f7;
  background-size: cover;
  background-repeat: repeat;
  background-position: center bottom;
}

.nav.nav-tabs {
  display: block;
  border: none;
}

.service__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
}

.service__text {
  font-size: 17px;
  line-height: 28px;
}

#nav-tab .nav-link {
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 2px;
  background-color: #fff;
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  gap: 10px;
  color: #364352;
  position: relative;
}

#nav-tab .nav-link.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 13px solid transparent;
  border-left: 13px solid #1500c6;
}

#nav-tab .nav-link:hover,
#nav-tab .nav-link.active {
  color: #fff;
  background-color: #1500c6;
}

#nav-tab .nav-link:hover img,
#nav-tab .nav-link.active img {
  filter: brightness(0) invert(1);
}

.specific_list {
  background-color: #1500c6;
  border-radius: 10px;
  padding: 40px 20px;
  margin: 30px 0 0;
}

.specific_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.specific_list ul li {
  border-right: 2px solid #fff;
  padding: 0 25px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.specific_list ul li:last-child {
  border: none;
}
@media (max-width: 1200px) {
  .service_list li h4 {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .home_banner .overlay {
    height: 100%;
    padding: 50px 0;
  }

  #nav-tab .nav-link {
    width: 65%;
    margin: 20px auto;
  }

  .tab-content img {
    width: 50%;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .specific_list ul {
    flex-wrap: wrap;
    gap: 30px;
  }

  .specific_list ul li {
    width: 80%;
    justify-content: flex-start;
    border: none;
  }
}

@media (max-width: 576px) {
  .home_banner .overlay {
    height: 100%;
  }

  .service_list li {
    width: 100%;
  }
  #nav-tab .nav-link.active::after {
    display: none;
  }
  #nav-tab .nav-link {
    width: 85%;
    justify-content: center;
  }
  .specific_list {
    display: none;
  }
}
