.tabsDynContentSection {
  overflow: hidden;
  position: relative;
}

.tabsDynContentSectionBackground {
  display: none;
}

.tabsDynContentSection {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.tabsDynContentSection h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  font-family: Arial Black;
  margin: 60px 0;
  text-align: center;
}

.tabsSection {
  display: flex;
  gap: 30px;
  max-width: 100%;
}

.tabsSection .tabs {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  margin: auto;
}

.tabsSection .tab {
  display: flex;
  gap: 15px;
  border: 0;
  background: none;
  align-items: center;
  cursor: pointer;
  font-family: Lato;
  font-size: 18px;
  line-height: 21px;
  color: #444;
}

.tabsSection .tab.is-active {
  font-weight: 700;
  color: #0F2F95;
}

.tabsSection .tab img {
  height: 58px;
  width: 58px;
}

.dynContentContainer {
  position: relative;
  height: 100%;
  margin: auto;
  max-width: 50%;
}

.dynContent {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dynContent img {
    min-width: 500px !important;
    max-width: 100% !important;
}

.dynContent:not(.is-active) {
    animation-duration: .5s;
    animation-name: fadeOut;
    opacity: 0
    position: relative;
    left: -9999999999px
}

.dynContent.is-active {
    animation-duration: .7s;
    animation-name: slideLeft;
    height: auto;
    position: relative;
    left: 0
}

@media screen and (max-width: 780px) {
  .tabsSection {
    flex-direction: column-reverse;
  }
  
  .dynContent {
    max-width: 100%;
  }
  
  .dynContent img {
    margin: 0 auto;
    display: block;
}
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(30%)
    }

    20% {
        opacity: 0
    }

    50% {
        transform: translateX(-1%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}