.cp-tabs .cell-wrapper > h2 {
    margin: 0 0 36px;
  	position: relative;
}

.tabs {
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-link {
    cursor: pointer;
    margin-right: 20px;
    height: fit-content;
    border-radius: 10px 10px 0px 0px;
	  background-color: #F2F2F2;
    transition: background-color 0.5s ease, 
                width 0.5s ease-in-out, 
                height 0.5s ease-in-out, 
                font-size 0.5s ease;
    padding: 10px 20px 20px 20px;
    line-height: 18px;
}

.tab-link:not(.active):hover {
  padding-bottom: 30px;
}

.tab-link.active {
    padding: 30px 20px;
    line-height: 26px;
    font-size: 18px
}

.tab-content {
  position: relative;
}

.nav-buttons {
  position: absolute;
  top: 50px;
  right: 40px;
  display: flex;
  gap: 20px;
}

.nav-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 25px;
  padding: 5px;
}

.nav-icon:disabled {
  cursor: not-allowed;
}

.tab-item {
    display: none;
    opacity: 0;
    border-radius: 0px 20px 20px 20px;
    padding: 50px 50px 70px 50px;
    transition: opacity 0.5s  ease;
}

.tab-item.active {
    display: block;
    opacity: 1;
}

.tab-item-inner {
    display: flex;
    column-gap: 50px;
    row-gap: 50px;
    flex-wrap: wrap-reverse;
}

.text-section {
    flex: 1;
    max-width: 430px;
}

.text-section p {
    margin
}

.text-section ul {
    padding: 0;
}

.text-link {
  width: fit-content;
}

@media (max-width: 1920px) {
  .image-section img {
    max-width: 500px;
  }
}

@media (max-width: 1240px) {
  .image-section img {
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .tabs {
      font-size: 12px;
  }
  .tab-link {   
      margin-right: 15px;
      padding: 10px 10px 10px 10px;
  }

  .tab-link:not(.active):hover {
    padding-bottom: 20px;
  }

  .tab-link.active {
      padding: 20px 10px;
      font-size: 15px
  }
  
  .tab-item {
      padding: 30px 30px 50px 30px;
  }
  
  .nav-buttons {
    top: 30px;
    right: 30px;
  }
}