.tab-example {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 50px; /* 20px */
}
.max-width-460 {
  max-width: 460px;
}
.tabs {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  list-style: none;
  min-height: 200px;
  color: var(--color-blue-dark);
}

.tabs-horizontal {
  flex-direction: row;
}

.tabs-vertical {
  flex-direction: column;
  row-gap: 30px;
}

.display-column {
  display: flex;
  flex-direction: column;
}
.display-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tab-box {
  border-radius: 10px;
  padding: 20px 50px 60px 20px;
  transition: .4s all ease;
}
.tab-box:hover {
  box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
  -webkit-box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
  -moz-box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
}
.content-box-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.tab-content-box {
  position: relative;
  /* min-height: 145px;
  min-width: 270px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid rgba(0,49,62,0.08); */
  /* box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 5%);
  -webkit-box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 5%);
  -moz-box-shadow: 2px 5px 6px 0px rgba(3,88,103,0.05); */
  transition: .4s all ease;
}
.tab-content-box:hover {
  transform: scale(1.07);
  /* box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
  -webkit-box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
  -moz-box-shadow: 2px 5px 6px 0px rgb(3 88 103 / 8%);
  border: 1px solid transparent; */
}
.display-center-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 15px;
}
.cta-mobile-tab-bar {
  display: none;
}
.display-row {
  display: flex;
  align-items: flex-start;
}
/* container icons */
.container-icons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.icon-background-white-tab-bar-vertical {
  background-color: var(--color-white-opacity);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,49,62,0.08);
  padding: 15px;
  margin-right: 17px;
}
.icon-background-white-tab-bar-vertical img {
  height: 100%;
  width: 100%;
}
/* .items-slider-one .tab-content-box img {
  height: 40px;
  width: 40px;
}
.items-slider-two .tab-content-box img {
  height: 30px;
  width: 30px;
} */
/* end container icons */

[type="radio"] {
  display: none; /* hide the radio button */
}

.tab-label {
  /* display: inline-block;
  padding: 5px 10px;
  text-align: center; */
  cursor: pointer;
  /* background: #9cf;
  white-space: nowrap;  *//* prevent label from wrapping */
}

.tab-label-horizontal {
  width: 80px;
  height: 15%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
[type="radio"]:checked ~ .tab-label-vertical > .tab-box {
  background: rgba(245, 248, 249,.7);
  border-radius: 10px;
  /* box-shadow: 2px 5px 6px 0px rgba(3,88,103,0.05);
  -webkit-box-shadow: 2px 5px 6px 0px rgba(3,88,103,0.05);
  -moz-box-shadow: 2px 5px 6px 0px rgba(3,88,103,0.05); */
}

[id^="tab-content-"] {
  display: none; /* hide the content of all tabs (not selected) */
  /* padding: 5px 10px;
  background: #06f; */
  width: 100%;
  height: 100%;
}

[id*="tab-content-vertical"] {
  position: absolute; /* layout as the content area for all tabs */
  top: 0;
  left: 599px; /* width of label */
  max-width: 590px; /* adjust according to width of label */
}

[type="radio"]:checked ~ [id^="tab-content-"] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 40px;
}
@media (max-width: 1300px) and (min-width: 990px) { /* max-width: 1237px min-width: 1139px */
  .cta-desktop-tab-bar {
    display: none;
  }
  [type=radio]:checked ~ .cta-mobile-tab-bar,
  .cta-mobile-tab-bar {
    display: flex;
    margin-top: 20px;
  }
  .tab-example {
    max-width: 820px;
  }
  [id*=tab-content-vertical] {
    position: initial;
    max-width: inherit;
    top: inherit;
    left: inherit;
  }
  [type="radio"]:checked ~ [id^="tab-content-"],
  [id^=tab-content-] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
  }
  /* .content-box-link {
    width: 31%;
    height: 50%;
    top: 22%;
    left: 35%;
  } */
  /* .items-slider-one .tab-content-box,
  .items-slider-two .tab-content-box {
    min-width: 230px;
    /* min-width: 45%; */ /*
  } */
  .items-slider-one .tab-content-box img,
  .items-slider-two .tab-content-box img {
    height: 70%;
    width: 70%;
    padding-bottom: .5rem;
  }
  .items-slider-one .tab-content-box,
  .items-slider-two .tab-content-box {
    /* min-width: 200px; */
    /* min-width: 135px; */
    max-width: 150px;
    /* min-width: 45%;
    min-height: 125px; */
  }
  [type="radio"]:checked ~ .tab-label-vertical > .tab-box {
    background: transparent;
    border-radius: 0;
  }
  .tab-box {
    margin: 35px 0;
    max-width: 100%;
    padding: 20px 30px 30px 20px;
    
    background: transparent ; /* rgba(245, 248, 249,.7) */
    border-radius: 0; /* 10px */
    cursor: initial;
  }
  .tab-box:hover {
    box-shadow: inherit;
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
  }
}
@media (max-width: 990px) and (min-width: 767px) {
  .cta-desktop-tab-bar {
    display: none;
  }
  [type=radio]:checked ~ .cta-mobile-tab-bar,
  .cta-mobile-tab-bar {
    display: flex;
    margin-top: 20px;
  }
  .tab-example {
    max-width: 590px;
  }
  [id*=tab-content-vertical] {
    position: initial;
    max-width: inherit;
    top: inherit;
    left: inherit;
  }
  [type="radio"]:checked ~ [id^="tab-content-"],
  [id^=tab-content-] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 40px;
  }
  .items-slider-one .tab-content-box img,
  .items-slider-two .tab-content-box img {
    height: 70%;
    width: 70%;
    padding-bottom: .5rem;
  }
  .items-slider-one .tab-content-box,
  .items-slider-two .tab-content-box {
    /* min-width: 200px; */
    /* min-width: 135px; */
    max-width: 150px;
    /* min-width: 45%;
    min-height: 125px; */
  }
  [type="radio"]:checked ~ .tab-label-vertical > .tab-box {
    background: transparent;
    border-radius: 0;
  }
  .tab-box {
    margin: 35px 0;
    max-width: 100%;
    padding: 20px 30px 30px 20px;
    
    background: transparent ; /* rgba(245, 248, 249,.7) */
    border-radius: 0; /* 10px */
    cursor: initial;
  }
  .tab-box:hover {
    box-shadow: inherit;
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
  }
}
@media (max-width: 767px) {
  .tabs {
    min-height: auto;
    height: fit-content;
  }
  .tab-example {
    padding-top: 10px;
  }
  .cta-desktop-tab-bar {
    display: none;
  }
  [type=radio]:checked ~ .cta-mobile-tab-bar,
  .cta-mobile-tab-bar {
    display: flex;
    margin-top: 20px;
  }
  [id*=tab-content-vertical] {
    position: initial;
    max-width: inherit;
    top: inherit;
    left: inherit;
  }
  [type="radio"]:checked ~ [id^="tab-content-"],
  [id^=tab-content-] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 20px;
  }
  /* [type=radio]:checked ~ [id^=tab-content-] {
    /* justify-content: center; */ /*
    flex-wrap: nowrap;
    overflow: hidden;
    column-gap: 20px;
    cursor: grab;
  } */
  /* .content-box-link {
    width: 31%;
    height: 50%;
    top: 22%;
    left: 35%;
  } */
  .items-slider-one .tab-content-box img,
  .items-slider-two .tab-content-box img {
    height: 70%;
    width: 70%;
    padding-bottom: .5rem;
  }
  .items-slider-one .tab-content-box,
  .items-slider-two .tab-content-box {
    /* min-width: 200px; */
    /* min-width: 135px; */
    max-width: 140px;
    /* min-width: 45%;
    min-height: 125px; */
  }
  .icon-background-white-tab-bar-vertical {
    box-sizing: initial!important;
  }
  /* .items-slider-one .tab-content-box img {
    height: 30px;
    width: 30px;
    box-sizing: initial!important;
  }
  .items-slider-two .tab-content-box img {
    height: 25px;
    width: 25px;
    box-sizing: initial!important;
  } */
  .tab-content-box > p {
    font-size: 12px;
  }
  [type="radio"]:checked ~ .tab-label-vertical > .tab-box {
    background: transparent;
    border-radius: 0;
  }
  .tab-box {
    /* margin: 35px 0; */
    max-width: 100%;
    padding: 20px 30px 30px 20px;
    
    background: transparent ; /* rgba(245, 248, 249,.7) */
    border-radius: 0; /* 10px */
    cursor: initial;
  }
  .tab-box:hover {
    box-shadow: inherit;
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
  }
  .display-center-start {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 425px) {
  .tabs {
    display: block;
  }

  .tab-label {
    width: 100%;
    border-radius: 0;
  }

  [id^="tab-content-"] {
    position: static;
    width: 100%;
    border-top: none;
  }
}
/* tiny mobile */
@media (max-width: 320px) {
  .icon-background-white-tab-bar-vertical {
    display: none;
  }
  .tab-content-box {
    min-width: 190px;
    min-height: 130px;
  }
}