.custom-banner {
  display: flex;
  background-color: #313d4d;
  min-height: 750px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}


.image-block {
  flex: 0 0 40%;
  background-image: url('https://static.tildacdn.com/tild3135-6162-4232-b334-613832623032/__2023-05-13__095911.png');
  background-size: cover;
  background-position: center;
  animation: zoomIn 1.7s ease-in-out forwards;
  transform: scale(1.2);
}


.text-block {
flex: 1;
    padding: 80px 200px;
    position: relative;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 850px;
}

.economy-label {
  display:flex;
  color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: NaN;
    font-weight: 400;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  align-items: center;
  margin-bottom: 40px;
}

.headline {
  color: #ffffff;
    font-size: 28px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.30;
    font-weight: 400;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.description {
  color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.50;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}


.button-wrapper {
  margin-top: 40px;
  width: 220px;
  height: 220px;
  position: relative;
}

.circular-button {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  animation: rotate 26s linear infinite;
}

.circular-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animations */
@keyframes zoomIn {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@media (max-width: 768px) {
.image-block{
  display: none;
}
.text-block{
  padding: 40px 90px;
}
}