.tab-container {
  display: flex;
}

.tabs {
}

.tabs {
  display: flex;
  flex-direction: column;
}
.tabs-section {
  flex: 0 0 40%;
  margin-top: 0.2em !important;
}
.content-section {
  flex: 0 0 60%;
  position: relative;
}

.desc-icon--mobile {
  display: none;
}

.tab-icon {
  width: 1.2em;
  max-height: 1.2em;
  object-fit: contain;
  margin-right: 1em;
}

.tab-title {
  text-align: left;
  color: #fff !important;
  background-color: transparent;
  border-width: 0;
  display: flex;
  align-items: center;
  opacity: 0.5;
  margin-bottom: 0.5em;
  font-size: 23px;
}

.tab-title:focus {
  outline: none;
}

.tab-title .tab-icon,
.tab-title .tab-title__inner {
  pointer-events: none;
}
.tab-title.is-selected {
  color: #fff !important;
  background-color: transparent !important;
  opacity: 1;
  /* border-width: 0; */
}

.tab-content {
  display: flex;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all linear 0.5s;
  -moz-transition: all linear 0.5s;
  -webkit-transition: all linear 0.5s;
  color: #fff;
  padding-left: 3em;
  
  transition-duration: 0s;
}
.tab-content.is-selected {
  opacity: 1;
  position: relative;
  z-index: 5;
  height: 100%;
  transition-duration: .5s;
}

.tab-desc {
  position: relative;
}
.tab-desc h3 {
  color: #fff;
  text-transform: initial;
  font-size: 36px;
}
.tab-desc p {
  font-size: 23px;
  line-height: 1.3em;
}

.desc-icon {
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.2em;
  margin-top: 1.2em;
  margin-right: 1em;
}


@media (max-width: 1200px) {
  .desc-icon--mobile {
    display: block;
  }
  .desc-icon--desktop {
    display: none;
  }
  .elementor-widget-tab-widget .tab-container {
    flex-direction: column;
  }
  .elementor-widget-tab-widget .tabs {
    display: none;
  }
  .elementor-widget-tab-widget .tab-content {
    position: relative !important;
    opacity: 1 !important;
    margin-bottom: 1.5rem;
  }
  .tab-desc h3 {
    font-size: 22px !important;
  }
  .tab-desc p {
    font-size: 18px
  }
}


@media (max-width: 767px) {
  .tab-content {
    padding-left: 0;
  }
  .desc-icon--mobile {
    position: relative;
    right: unset;
    height: 2rem !important;
    width: 2rem;

  }



}
