.bk-tab {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin-inline: auto;
}
.bk-tab__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: white;
  border-radius: 300px;
  padding: 8px 24px;
  width: fit-content;
  min-width: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .bk-tab__nav {
    justify-content: center;
  }
}
.bk-tab__nav__item {
  border: none;
  padding: 10px 16px;
  border-radius: 300px;
  color: black;
  background-color: transparent;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.bk-tab__nav__item:hover {
  cursor: pointer;
}
.bk-tab__nav__item--active {
  color: white;
}
@media screen and (max-width: 768px) {
  .bk-tab__nav__item {
    display: none;
  }
}
.bk-tab__nav__bar {
  position: absolute;
  left: 100px;
  bottom: 8px;
  height: calc(100% - 16px);
  width: 120px;
  border-radius: 300px;
  background: #000;
  -webkit-transition: left 0.4s ease, width 0.4s ease;
  transition: left 0.4s ease, width 0.4s ease;
}
@media screen and (max-width: 768px) {
  .bk-tab__nav__bar {
    display: none;
  }
}
.bk-tab__nav__select {
  display: none;
  border: none;
  padding: 10px 16px;
  border-radius: 300px;
  color: black;
  background-color: white;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bk-tab__nav__select {
    display: block;
  }
}
.bk-tab__nav__select:focus-visible {
  outline: none;
}
.bk-tab__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .bk-tab__container {
    gap: 40px;
  }
}
.bk-tab__container__top{
  overflow: hidden;
  min-height: 350px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bk-tab__container__top {
  min-height: 420px;
}
}
.bk-tab__container__top__single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  /* top: -100%;
  transition: top .6s cubic-bezier(.24,.63,.19,.98); */
  top: 0;
  
}
.bk-tab__container__top__single:first-child {
  top: 0px;
}

.bk-tab__container__top__single.is-disabled {
  /* display: none; */
}

@keyframes slideIn {
  from{
    top : -100%
  } 
  to{
    top: 0px;
  }
}
@keyframes slideInTransform {
  from{
    transform: translateY(-100%)
  } 
  to{
    transform: translateY(0)
  }
}
@keyframes slideInImageContent {
  from{
    transform: translateY(-120px)
  } 
  to{
    transform: translateY(-40px)
  }
}

@keyframes slideInText {
  from{
    top : 100%
  } 
  to{
    top: 80px;
  }
}

@keyframes slideInImage {
  from{
    top : -100%
  } 
  to{
    top: 200px;
  }
}



@media screen and (max-width: 768px) {
  .bk-tab__container__top__single {
    flex-wrap: wrap;
  }
  .bk-tab__container__top__single.active {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
  }
}
.bk-tab__container__top__single__image {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  position: absolute;
  /* top: 50px; */
  top: 100%;
  height: 100%;
  transition: top .6s cubic-bezier(.24,.63,.19,.98);
}
.bk-tab__container__top__single__image.active {
  top: 0;
  animation: slideIn .6s cubic-bezier(.24,.63,.19,.98);
}

@media screen and (max-width: 768px) {
  .bk-tab__container__top__single__image {
    flex: 1 1 100%;
    width: 100%;
    transform: translateY(100%);
    height: fit-content;
    transition: transform .8s cubic-bezier(.24,.63,.19,.98);

  }
  .bk-tab__container__top__single__image.active {
    transform: translateY(0);
    position: relative;
    animation: slideInImage .8s cubic-bezier(.24,.63,.19,.98);
  }
}
.bk-tab__container__top__single__image img {
  max-width: 100%;
  width: 100%;
}
.bk-tab__container__top__single__content {
  flex: 1 1 40%;
  padding: 40px 20px;
  right: 0;
  /* top: 50px; */
  opacity: 0;
  width: 40%;
  position: absolute;
  overflow: hidden;
  height: fit-content;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.24,.63,.19,.98), opacity 1.2s ;
}
.bk-tab__container__top__single__content.active {
  opacity: 1;
  transform: translateY(0);
  animation: slideInTransform .6s cubic-bezier(.24,.63,.19,.98);
}

.bk-tab__container__top__single__content__image{
  /* position: absolute; */
  /* transform: translateY(-140px); */
  /* transition: transform .6s cubic-bezier(.24,.63,.19,.98); */
}
.bk-tab__container__top__single__content__image.active{
  /* position: absolute; */
  /* transform: translateY(-40px); */
  /* animation: slideInImageContent .6s cubic-bezier(.24,.63,.19,.98); */
}

@media screen and (max-width:768px) {
  .bk-tab__container__top__single__content__image{
    /* display: none; */
  }
}

.bk-tab__container__top__single__content__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  /* position: absolute; */
  /* transform: translateY(-300%); */
  /* transition: transform .6s cubic-bezier(.24,.63,.19,.98); */

}
.bk-tab__container__top__single__content__title.active {

  /* transform: translateY(0px); */
  
  /* animation: slideIn .6s cubic-bezier(.24,.63,.19,.98); */

}
@media screen and (max-width: 768px) {
  .bk-tab__container__top__single__content {
    flex: 1 1 100%;
    width: 100%;
    /* top: -10px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    transform: translateY(-140%);
    transition: transform .7s cubic-bezier(.24,.63,.19,.98), opacity 1.2s;
  }
  
  .bk-tab__container__top__single__content__title {
    font-size: 28px;
  }
 
}

.bk-tab__container__top__single__content__text {
  font-size: 16px;
  font-weight: 500;
  /* top: -100%; */
  /* transform: translateY(-500%); */
  /* transition: transform .6s cubic-bezier(.24,.63,.19,.98); */
  /* position: absolute; */
}
.bk-tab__container__top__single__content__text.active {
  /* top: 80px; */
  /* transform: translateY(0px); */

  /* animation: slideInText .6s cubic-bezier(.24,.63,.19,.98); */

}
@media screen and (max-width: 768px) {
  .bk-tab__container__top__single__content__title {
    text-align: center;
  }
  .bk-tab__container__top__single__content__title.active {
    /* transform: translateY(-50px); */
    position: relative;
  }
  .bk-tab__container__top__single__content__text.active {
    /* transform: translateY(-50px); */
    position: relative;
  }
}
.bk-tab__container__icon{
  position: relative;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .bk-tab__container__top__single__content__text {
    text-align: center;
  }
  .bk-tab__container__icon{
    height: 400px;
  }
}

.bk-tab__container__icon__single {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px;
  opacity: 0;
  transition: opacity .6s cubic-bezier(.24,.63,.19,.98);
  position: absolute;
  width: 100%;
  
}
.bk-tab__container__icon__single.active {
  opacity: 1;
}
.bk-tab__container__icon__single.is-disabled {
  display: none;
}
.bk-tab__container__icon__single__content {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slideIn .6s cubic-bezier(.24,.63,.19,.98) ;
}



.bk-tab__container__icon__single__content img {
  max-width: 60px;
  min-width: 60px;
  object-fit: cover;
}
.bk-tab__container__icon__single__content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
  display: none;
}
.bk-tab__container__icon__single__content p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
  width: 65%;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .bk-tab__container__icon__single__content p {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .bk-tab__container__icon__single{
    padding: 0;
  }
  .bk-tab__container__icon__single__content {
    flex: 1 1 50%;
    margin-bottom: 35px;
  }
  .bk-tab__container__icon__single__content p {
    width: 90%;
  }
}

/*# sourceMappingURL=style.css.map */
