/*=================       Tabs     ======================*/
h3 + .resp-tabs {
  margin-top: 16px!important;
}
.resp-tabs-list {
  margin-right: 18px;
}
.resp-tabs-list li {
  position: relative;
  cursor: pointer;
  float: left;
  font: 700 19px/20px 'Raleway', sans-serif;
  text-transform: uppercase;
  color: #FFF;
  padding: 20px 10px;
  min-width: 129px;
  text-align: center;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  z-index: 0;
}
.resp-tabs-list li:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #2f2f2f;
  -moz-transform: skew(-28.5deg);
  -ms-transform: skew(-28.5deg);
  -o-transform: skew(-28.5deg);
  -webkit-transform: skew(-28.5deg);
  transform: skew(-28.5deg);
  z-index: -1;
}
.resp-tabs-list li:hover,
.resp-tabs-list li.resp-tab-active {
  color: #0BA4D3;
}
.resp-tabs-list li + li {
  margin-left: 5px;
}
.resp-tabs-list__md {
  overflow: hidden;
  padding-left: 16px;
}
.resp-tabs-list__md li {
  min-width: 120px;
}
.resp-accordion {
  display: none;
  position: relative;
  cursor: pointer;
  text-align: center;
  width: 87%;
  font: 700 19px/20px 'Raleway', sans-serif;
  text-transform: uppercase;
  color: #FFF;
  padding: 20px 10px;
  margin: 10px 0 3px 18px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  z-index: 0;
}
.resp-accordion:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #2f2f2f;
  -moz-transform: skew(-28.5deg);
  -ms-transform: skew(-28.5deg);
  -o-transform: skew(-28.5deg);
  -webkit-transform: skew(-28.5deg);
  transform: skew(-28.5deg);
  z-index: -1;
}
.resp-accordion:hover,
.resp-accordion.resp-tab-active {
  color: #0BA4D3;
}
.resp-tab-content {
  display: none;
}
.resp-tab-content-active {
  display: block;
}
@media (min-width: 768px) and (max-width: 979px) {
  .resp-tabs .box_right {
    margin-right: 20px;
  }
  .resp-tabs-list li {
    min-width: 115px;
  }
}
@media (max-width: 767px) {
  .resp-accordion {
    display: block;
  }
  .resp-tabs-list {
    display: none;
  }
}
@media (max-width: 320px) {
  .resp-accordion {
    width: 77%;
  }
}
