.ax-accordion-row {
  display: flex;
  flex-wrap: nowrap !important;
  height: 600px;
  width: 100%;
  background-color: #1a1a1a;
}

.ax-accordion-row > .col {
  flex: 1;
  max-width: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: flex;
  cursor: pointer;
}

.ax-accordion-row > .col.is-active {
  flex: 3.5;
}

.ax-accordion-row > .col > .col-inner {
  position: relative !important;
  height: 100% !important;
  width: 100% !important;
  overflow: hidden;
  background-color: #1a1a1a;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.ax-acc-item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  z-index: 0;
  background-color: #1a1a1a;
}

.ax-acc-item .img-inner {
  height: 100% !important;
  padding-top: 0 !important;
  position: static !important;
  background-color: #1a1a1a;
}

.ax-acc-item .img-inner img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.ax-acc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background-color: #757575;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
  z-index: 10;
  transition: background-color 0.6s ease;
}

.ax-acc-item.is-active .ax-acc-info {
  background-color: rgba(31, 32, 30, 0.95);
}

.ax-acc-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.ax-acc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ax-acc-bottom br {
  display: none !important;
}

.ax-acc-number {
  font-size: 16px;
  color: #ffffff;
}

.ax-acc-contact {
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
}

.ax-acc-contact::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 9px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.220226 7.69488C-0.0086232 7.84943 -0.0688625 8.16022 0.0856777 8.38907C0.240218 8.61792 0.551016 8.67816 0.779866 8.52362L0.500046 8.10925L0.220226 7.69488ZM10.9909 1.45146C11.0435 1.18037 10.8663 0.918002 10.5952 0.865458L6.1774 0.0091986C5.9063 -0.0433459 5.64394 0.133826 5.5914 0.404923C5.53885 0.676021 5.71602 0.938384 5.98712 0.990928L9.91404 1.75205L9.15292 5.67897C9.10038 5.95006 9.27755 6.21243 9.54865 6.26497C9.81974 6.31752 10.0821 6.14034 10.1347 5.86925L10.9909 1.45146ZM0.500046 8.10925L0.779866 8.52362L10.7799 1.77069L10.5 1.35632L10.2202 0.941955L0.220226 7.69488L0.500046 8.10925Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.ax-acc-contact:hover {
    color: #cccccc !important; 
    transform: scale(1.05);
}

.ax-acc-contact:hover::after {
    transform: translate(2px, -2px);
}

.ax-acc-item.is-active .ax-acc-title,
.ax-acc-item.is-active .ax-acc-contact {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (max-width: 849px) {
  .ax-accordion-row {
    flex-direction: column;
    height: 900px;
  }
  .ax-accordion-row > .col {
    width: 100% !important;
  }
}
