.gap-20 {
  gap: 20px;
}

.tab {
  display: flex;
  border: 1px solid #008dff;
  border-radius: 8px;
  overflow: hidden;
  margin-block: 80px;
}

.tab button {
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  height: 100%;
  margin: 0;
}

.tab .benefits-tab-btn {
  color: #008dff;
  background: #fff;
  transition: all 0.3s;
}

.tab .benefits-tab-btn.active {
  color: #fff;
  background: #008dff;
}

.card {
  padding: 32px;
  box-shadow: 0px 54px 50px 0px #43434412;
  border-radius: 15px;
}

.tab-content .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: none;
  width: 100%;
}

.tab-content .card .card-icon {
  width: 60px;
  height: 60px;
}

.tab-content .card .title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
}

.tab-content .card .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  margin-bottom: 0;
}

@media (max-width: 1512px) {
  .tab {
    margin-block: 63px;
    border-radius: 6px;
  }

  .tab button {
    padding: 16px;
    font-size: 20px;
  }

  .tab-content .card .card-icon {
    width: 47px;
  }

  .tab-content .card .title {
    font-size: 20px;
  }

  .tab-content .card .description {
    font-size: 16px;
  }

  .tab-content .benefit-card {
    gap: 19px;
  }

  .card {
    padding: 24px;
    border-radius: 12px;
  }
}

@media (max-width: 1400px) {
  .tab {
    margin-block: 58px;
  }

  .tab button {
    padding: 15px 17px;
    font-size: 19px;
  }

  .tab-content .card .card-icon {
    width: 44px;
  }

  .tab-content .card .title {
    font-size: 19px;
  }

  .tab-content .card .description {
    font-size: 15px;
  }

  .tab-content .benefit-card {
    gap: 17px;
  }

  .card {
    padding: 22px;
    border-radius: 11px;
  }
}

@media (max-width: 1200px) {
  .tab{
    margin-block: 50px;
    border-radius: 8px;
  }
}

@media (max-width: 992px) {
  .tab{
    margin-block: 41px;
    border-radius: 6.5px;
  }

  .tab button {
    padding: 12px 14px;
    font-size: 16px;
  }

  .tab-content .card .description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .tab{
    margin-block: 32px;
    border-radius: 5px;
  }

  .tab button {
    padding: 9px 10px;
    font-size: 12px;
  }

  .tab-content .card .title {
    font-size: 16px;
  }

  .tab-content .card .description {
    font-size: 12px;
  }

  .card {
    padding: 12px;
    border-radius: 11px;
  }
}

@media (max-width: 576px) {
  .tab{
    margin-block: 12px;
  }

  .tab-content .card .title {
    font-size: 16px;
  }

  .tab-content .card .description {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .tab-content .card .title {
    font-size: 16px;
  }

  .tab-content .card .description {
    font-size: 12px;
  }
}

@media (min-width: 576px) {
  .w-sm-50 {
    width: 50% !important;
  }
}
