

.veb-fo-tabs-item-title-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  cursor: pointer;
}

.veb-fo-tabs-title-wrap {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-width: 150px;
  transition: ease all .3s;
  align-self: flex-start;
}

.veb-fo-tabs-title-wrap:hover {
  transform: scale(.96);
}

.veb-fo-tabs-img-title {
  font-size: 14px;
}

.veb-fo-tabs-title {
  text-align: center;
}

.veb-fo-tabs-title,
.veb-fo-tabs-title-inside {
  margin: 0;
}

.veb-fo-tabs-title-inside {
  color: #008ECA;
  margin-bottom: 30px;
}

.veb-fo-tabs-item-text-wrap {
  margin-top: 50px;
  border-radius: 10px;
}

.veb-fo-tabs-Text-wrap {
  display: none;
  text-align: left;
  max-width: 960px;
}

.veb-fo-tabs-text {
  margin-bottom: 30px;
}

.veb-fo-tabs-close {
  display: inline-block;
  cursor: pointer;
  transition: ease all .3s;
}

.veb-fo-tabs-close:hover {
  transform: rotate(180deg);
}

.veb-fo-image {
  display: inline-block;
  margin: 0 auto;
}


/* Responsive Styles 
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */

/* Phone
----------------------------------------------------------------------------- */

@media screen and (min-width: 768px){

  /* Tabs
  --------------------------------------------- */
  .veb-fo-tabs-title-wrap {
    max-width: calc(20% - 30px);
  }

}