

.c-tabs {
  display: flex;
  justify-content: space-between;
  text-align: center;
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
}

.c-tab {
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  margin: 0 2px;
  width: 100%;
  justify-content: center;
}

.clean-base.tab-content,
.tab-content,
.tab-content.show-mobile,
.tab-content.show-tablet{
  display: none !important;
}

.c-tab {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}


.tab-content.active,
.clean-base.tab-content.active {
  display: flex !important;
}

.c-tab-mobile-head {
  display:none;
}

.tab-feature-con .custom {
 margin: auto; 
}

@media (max-width: 575px) {
  {# Hide the c-tabs and show the select menu #}
  .c-tabs {
    display: none;
  }
  .c-tab-mobile-head {
    display:block;
    margin-bottom: 15px;
  }
  select {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10.293 3.293L6 7.586 1.707 3.293a1 1 0 011.414-1.414L6 5.758l3.879-3.879a1 1 0 011.414 1.414z' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
  }

  select:focus {
    outline: none;
    border-color: #0078d7;
    box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.3);
  }
}