.hotel-section {
  
    margin: 48px 0 96px;
}

.hotel-container * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hotel-container {
    display: flex;
    height: 601px;
    max-width: 1500px;
    width: 100%;
    overflow: hidden;
    margin: 48px auto 0;

    border-radius: 40px 0 40px 0;
}

.hotel-bar {
    width: 95px;
    min-width: 50px;
    transition: width 0.4s ease;
    background: #0072CE;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.hotel-bar .label {
    writing-mode: vertical-rl;
    width: 100%;
    transform: rotate(180deg);
    padding: 20px 10px;
    font-weight: 400;
    color: white;
    height: 100%;
    display: flex;
    justify-content: flex-start;
}

.hotel-bar.expanded {
    width: 100%;
}

.hotel-bar.expanded .label {
    display: none;
}

.hotel-content {
    display: none;
    flex-direction: row;
    gap: 30px;
    padding: 0 0 0 40px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hotel-bar.expanded .hotel-content {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.hotel-content .hotel-info {
    width: 45%;

    color: white;
}

.hotel-content .hotel-info h2 {
    margin-bottom: 20px;
}

.hotel-info p{
  letter-spacing: 1px;
}

.hotel-content .hotel-info a {
    margin-top: 20px;

    display: block;
    background-color: white;
    text-align: center;
    padding: 8px 0;
    width: 120px;

    text-decoration: none;
    color: #054E72;
    font-weight: bold;

    text-transform: uppercase;

    border-radius: 16px;

    transition: 0.2s;
}

.hotel-content .hotel-info a:hover {
    color: #0072CE;
}

.hotel-content .image {
    width: 55%;
    height: auto;

    position: relative;
    bottom: -2px;
}

.hotel-content .image img{
    width: auto;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
  .hotel-container {
    flex-direction: column;
    height: auto;

    border-radius: 0;
  }

  .hotel-bar {
    width: 100%;
    border-right: none;
    flex-direction: column;
  }

  .hotel-bar .label {
    writing-mode: horizontal-tb;
    transform: none;
    height: 50px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 20px;

    border-bottom: 1px solid white;
    color: white;
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
  }

    .hotel-bar.expanded .label {
    display: flex;
  }

  .hotel-content {
    overflow: hidden;

    height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    padding: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;

    gap: 0;
  }

  .hotel-content .hotel-info {
    margin: 20px 0;
    
    width: 90%;

    text-align: center;
  }

    .hotel-content .hotel-info a{
        margin: 24px auto 0;
  }


  .hotel-content .image img {
    width: 100%;
    object-fit: cover;
  }

  .hotel-content .image {
    width: 100%;  

    margin-bottom: 12px;
  }
}

