

#rooms{
    padding: 100px 0px;
  }

  #rooms .header{
    text-align: center;
    position: relative;
    margin-bottom: 40px;
  }

  #rooms  .header h1{
    color: #192D5F;
    font-size: 36px;
    font-family: Montserrat;
    letter-spacing: 3px;
}

  #rooms .header::before{
    content: ""; 
    position: absolute;
    top: -90px;
    left: calc(50% - 275px);
    width: 550px;
    height: 156px;
    background-image: url('../images/titlehightlight.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}


#rooms .rooms_content{
    display: flex;
    margin-top: 50px;
    gap: 30px;
    overflow: scroll;
    width: 100%;
}

.rooms_content::-webkit-scrollbar {
  display: none;
}
.rooms_content {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


.rooms_content img{
  height: 100%;
  width: 100%;
  min-height: 200px;
  min-width: 300px;
}

#rooms button{
    background:none;
    background-color: #4F66FF;
    border: none;
    padding: 18px 80px;
    border-radius: 50px;
    color: white;
    margin-top: 50px;
    font-size: 18px;
    cursor: pointer ;
    font-weight: bold;
}

#rooms .contact{
  margin-left: 20px;
}
#rooms .contact button{
  background-color: #ff7f50;
}

#rooms .btn_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


@media screen and (max-width:1024px) {
  #rooms{
    padding-top: 0;
  }

  #rooms .rooms_content{
    display: flex;
    margin-top: 50px;
    gap: 30px;
    overflow: scroll;
    width: 100%;
  }

  #rooms .header::before{
    display: none;
  }
}

@media (max-width: 600px) {
  #rooms{
      overflow: hidden;
  }
  #rooms .btn_container a {
    display: table;
    margin: auto;
  }
  #rooms .btn_container a button {
    width: 300px;
  }
}