.tabs-block {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

.btn-group {
  margin: 40px 0;
  display: flex !important;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  justify-content: center;
}

.btn-group .btn-tab-title {
  height: 40px;
  background: none;
  color: #717271;
  border-top: 1px solid #cac8c8 !important;
  border-bottom: 1px solid #cac8c8 !important;
  border-radius: 0;
  font-family: 'FFSanukWebBold';
  width: auto;
}

.btn-group .btn-tab-title:hover {
  background: #f6f6f6;
  color: #717271;
}

.btn-group .btn-tab-title.active:hover,
.btn-group .btn-tab-title.active {
  background: #0085ca;
  color: #fff;
}

.btn-group .btn-tab-title:first-child {
  border-left: 1px solid #cac8c8 !important;
}

.btn-group .btn-tab-title:last-child {
  border-right: 1px solid #cac8c8 !important;
}

.tabs-content {
  position: relative;
}

.tabs-content > div {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  text-align: center;
  z-index: -1;
  display: none;
}

.tabs-content > div .title {
  color: #2c3a66;
  font-size: 28pt;
  text-align: center;
  font-family: 'FFSanukWeb';
}

.tabs-content > div a.btn {
  background: #2D3560;
  color: #fff;
  border-radius: 0;
  margin-bottom: 50px;
  min-width: 180px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'FFSanukWebMedium';
  text-transform: uppercase;
}

.tabs-content > div.active {
  opacity: 1;
  position: static;
  transition: all 0.3s ease;
  display: initial;
}
