.clp_tabs {}

.clp_tabs-title-box {
  max-width: 900px;
  margin: 0 auto 60px;
}
.clp_tabs-title {
  text-align: center;
  font-family: Nunito;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.clp_tabs-info {
  margin: 32px 0 0 !important;
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}

.clp_tabs-header {}
.clp_tabs-navigation {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.clp_tabs-button {
  color: #A3A3A3;
  font-size: 18px;
  cursor: pointer;
  font-family: Nunito;
  font-weight: 500;
  border: none;
  padding: 10px 20px;
  position: relative;
  background: transparent;
  transition: .2s all ease-in-out;
}
.clp_tabs-button:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 4px;
  left: 20px;
  right: 20px;
  background: #A3A3A3;
  transition: .2s all ease-in-out;
}
.clp_tabs-button:hover,
.clp_tabs-button:focus-within,
.clp_tabs-button.active {
  color: #222;
}
.clp_tabs-button:hover:after,
.clp_tabs-button:focus-within:after,
.clp_tabs-button.active:after {
  background-color: #222;
}

.clp_tabs-body {}

.clp_tabs-container {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
  transition: .2s height;
}

.clp_tabs-box {
  z-index: 1;
  opacity: 0;
  transition: .2s opacity;
  position: absolute;
  width: calc(100% - 40px);
  left: 20px;
  top: 0;
  user-select: none;
  pointer-events: none;
}
.clp_tabs-box.active {
  z-index: 2;
  opacity: 1;
  position: relative;
  user-select: auto;
  pointer-events: auto;
  left: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .clp_tabs-title {
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .clp_tabs-info {
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .clp_tabs-container {
    margin: 0 -40px;
    padding: 0 40px;
  }
  .clp_tabs-title-box {
    margin-bottom: 40px;
  }
}