/* VARIABLES */
.groupcomp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (min-width: 768px) {
  .groupcomp .boxc {
    display: inline-flex;
    flex-basis: 33%;
  }
}
@media (min-width: 992px) {
  .groupcomp .boxc {
    flex-basis: 25%;
  }
}
.groupcomp .boxc:first-child {
  display: none !important;
}
@media (min-width: 992px) {
  .groupcomp .boxc:first-child {
    display: inline-flex !important;
  }
  .groupcomp .boxc:first-child img {
    max-height: 291px !important;
  }
}
.groupcomp .w-box {
  padding: 8px;
  background: #333333;
  border-radius: 13px;
  position: relative;
  margin-bottom: 25px;
}
.groupcomp .w-box::before, .groupcomp .w-box::after {
  display: table;
  content: "";
}
.groupcomp .w-box .thmb-img {
  text-align: center;
  padding: 10px 0;
}
.groupcomp .w-box .thmb-img i {
  font-size: 64px;
  color: #ffffff;
}
.groupcomp .w-box h2 {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 7px;
  font-weight: 700;
}
.groupcomp .w-box p {
  color: #f1f1f1;
  text-align: center;
}

.panel {
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #e8542e;
  border-radius: 4px;
  box-shadow: none;
}
.panel .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  background-color: #e8542e;
  border-color: #e8542e;
}
.panel .panel-heading .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #ffffff;
}
.panel .panel-body {
  padding: 15px;
  color: #232323;
  font-weight: 600;
}