* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
body{
  overflow-x:hidden;
}

.header {
  width: 100%;
  height: 100vh;
  padding-left: 8%;
  padding-right: 8%;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.5) 50%
    ),
    url("../images/prospective.jpg");
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  overflow: hidden;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.menu-icon {
  width: 25px;
  cursor: pointer;
  display: none;
}

.nav-links nav {
  flex: 1;
  text-align: right;
}

.nav-links nav ul li {
  display: inline-block;
  list-style: none;
  margin-right: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.nav-links ul li::after {
  content: "";
  width: 0px;
  height: 3px;
  background: #0077b6;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;

  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.col-1 {
  flex-basis: 60%;
  position: relative;
  margin-left: 30px;
  color: #ffffff;
}

.col-1 h1 {
  font-family: "Baskervville", serif;
  font-size: 75px;
  font-size: 5vw;
  padding-left: 20px;
  margin-top: 5%;
  letter-spacing: 2px;
}

.col-1 h3 {
  font-weight: 100;
  font-size: 6vw;
  font-family: "Montserrat";
  font-size: 50px;
  padding-left: 20px;
  margin-top: 7%;
  letter-spacing: 2px;
}

.col-1 h2 {
  font-weight: 100;
  font-family: "Montserrat";
  font-size: 35px;
  font-size: 2vw;
  padding-left: 20px;
  letter-spacing: 2px;
}

.col-2 {
  position: relative;
  flex-basis: 40%;
  display: flex;
  align-items: center;
}

.col-2 img {
  width: 70%;
}

.main-buttons {
  display: flex;
  width: 80%;
  margin: auto;
  transform: translateY(-120px);
}

.box {
  background-color: #0077b6;
  width: 70px;
  height: 300px;
  flex-grow: 1;
  text-align: center;
  transition: 0.5s;
  margin-right: 25px;
}

.box:last-child {
  margin-right: 0;
}

.box a {
  text-decoration: none;
}

.main-buttons .box:hover {
  background-color: #0b5a85;
  cursor: pointer;
}

.main-buttons .box:hover img {
  height: 100px;
  width: auto;
}

.main-buttons img {
  height: 70px;
  margin-top: 30px;
  width: auto;
  transition: 0.5s;
}

.main-buttons h2 {
  font-weight: 100;
  font-size: 30px;
  color: white;
  margin-top: 10px;
}

.main-buttons p {
  color: white;
  margin-top: 15px;
  padding: 0 30px;
}

.services {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 5%;
}

.slider-wrap {
  flex-basis: 40%;
  width: 40%;
}
/* 
.slider-wrap .slider-buttons{
 position: absolute;
 display: flex;
 width: fit-content;
 margin: auto;
bottom: 10%;
}

.slider-wrap #prev, .slider-wrap #next {
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: white;
  text-decoration: none;
  
  transition: all 150ms ease;
}
.slider-wrap #prev:hover, .slider-wrap #next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0;
}

.slider-wrap #next{
  margin-left: 100px;
}
 */



.services .services-box {
  flex-basis: 60%;
  position: absolute;
  right: 0;
  top: auto;
  background-color: #ffffff;
  height: 95%;
  width: 60%;
  z-index: 1;
  transform: translateY(-17px);
}

.services .services-box h1 {
  font-family: "Montserrat";
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
  font-size: 35px;
  font-size: 2.5vw;
}

.services .services-box ul {
  margin-top: 50px;
  margin-left: 50px;
  list-style-position: inside;
}

.services .services-box ul li {
  width: 50%;
  font-size: 16px;
  font-size: 1.2vw;
  margin-top: 10px;
  margin-bottom: 5px;
  float: left;
}

.room-rates {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  width: 100%;
  height: 500px;
  background-image: linear-gradient(
      to bottom,
      rgba(21, 42, 118, 0.5) 50%,
      rgba(21, 42, 118, 0.5) 50%
    ),
    url("../images/rm.jpg");
  background-size: cover;
}

.room-rates h1 {
  font-family: "Montserrat";
  font-size: 70px;
  font-weight: 100;
  color: #fff;
}

.room-rates div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.room-rates div button {
  width: 170px;
  height: 50px;
  border: 0;
  margin-top: 20px;
  padding: 12px 10px;
  outline: none;
  color: white;
  background-color: rgb(8, 41, 149);
  border-radius: 6px;
  cursor: pointer;
  transition: width 0.5s;
  font-size: 15px;
}

.room-rates button img {
  width: 30px;
  display: none;
}

.room-rates button:hover img {
  display: block;
}

.room-rates button:hover {
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news{
  padding-bottom: 100px;
}
.news h1 {
  font-weight: 400;
  font-family: "Montserrat";
  padding-left: 100px;
  padding-top: 100px;
}

.news h4 {
  padding-left: 100px;
  margin-top: 20px;
  padding-bottom: 200px;
}

/*Our Location*/
/**/

/*Blog list*/
/**/

.blogs-list {
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 4px;
  grid-auto-flow: column;
  margin: 20px 0;
}

.blog-item {
  margin: 15px;
  width: 270px;
  height: 320px;
  cursor: pointer;
  transition: 0.5s;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

#post-date {
  margin-left: 10px;
  color: black;
  margin-top: 10px;
  font-family: "Montserrat";
}

#post-title {
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Montserrat";
  margin-top: 10px;
}

.postMore{
  display: flex;
  justify-content: center;
}
#showMoreNews {
  color: black;
  font-family: "Montserrat";
  display: none;
}
#noPosts{
  font-family: "Montserrat";
  display: flex;
}

/* animation */

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (max-height: 600px){
  .main-buttons {
    transform:unset;
    margin: 100px auto;
  }
}

@media only screen and (max-width: 1200px) {
  .services {
    margin: 0 40px;
  }

  .services .services-box ul {
    margin-top: 5px;
    margin-left: 5px;
  }

  
.services .slider-wrap {
  flex-basis: 40%;
  width: 45%;
  height: 280px;
}

#slider img{
  height: 280px;
}

.services .services-box {
  flex-basis: 60%;
  position: absolute;
  right: 0;
  top: auto;
  background-color: #ffffff;
  height: 100%;
  width: 60%;
  z-index: 1;
  transform:unset;
}

.services .services-box{
  padding: 10px;
}


  .blogs-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: unset;
    margin: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .blogs-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: unset;
  }

  .box {
    height: 240px;
  }
  .main-buttons img {
    height: 40px;
    margin-top: 30px;
    width: auto;
    transition: 0.5s;
  }

  .main-buttons h2 {
    font-weight: 100;
    font-size: 20px;
    color: white;
    margin-top: 10px;
  }

  .main-buttons p {
    color: white;
    margin-top: 15px;
    padding: 0 30px;
  }

  .main-buttons .box:hover img {
    height: 50px;
    width: auto;
  }
}

@media only screen and (max-width: 700px) {
  .header {
    width: 100%;
    height: fit-content;
    margin: 0;
    background-position: center;
    background-size: cover;
    display: block;
  }

  .nav-links {
    margin: 15px 0;
  }
  .nav-links nav ul {
    width: 100%;
    background-color: #0077b6;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 2;
  }

  .nav-links nav ul li {
    display: block;
    list-style: none;
    margin: 10px;
  }

  .nav-links nav ul li a {
    color: #ffffff;
    font-size: 15px;
  }

  .menu-icon {
    display: block;
  }

  #menuList {
    overflow: hidden;
    transition: 0.5s ease;
  }

  .row {
    flex-direction: column-reverse;
    margin: 0;
    padding-bottom: 30px;
  }

  .col-2 {
    flex-basis: 100%;
    margin-bottom: 10px;
  }

  .col-2 img {
    width: 30%;
    margin: auto;
  }

  .col-1 {
    flex-basis: 100%;
    text-align: center;
    margin: 0;
  }

  .col-1 h3 {
    font-weight: 200;
    font-size: 35px;
    font-weight: normal;
    font-size: 6vw;
    padding-right: 0;
    padding-left: 0;
    margin-top: 2%;
  }

  .col-1 h2 {
    font-size: 20px;
    font-size: 4vw;
    font-weight: normal;
    margin-top: 10px;
    padding-right: 0;
    padding-left: 0;
  }

  .col-1 h1 {
    font-size: 40px;
    font-size: 9vw;
    padding-right: 0;
    padding-left: 0;
  }

  .main-buttons {
    flex-wrap: wrap;
    width: 80%;
    transform: translateY(0);
    margin-top: 30px;
  }

  .box {
    box-sizing: border-box;
    margin-top: 20px;
    margin-right: 0;
    background-color: #0077b6;
    width: 100%;
    height: 110px;
    flex-grow: 1;
    flex-basis: 100%;
    text-align: center;
    transition: 0.5s;
    display: grid;
    grid-template-columns: 1fr 3fr;
  }

  .main-buttons img {
    height: 40px;
    vertical-align: middle;
    width: auto;
    margin-left: 10px;
    transition: 0.5s;
  }

  .main-buttons .texts {
    margin: auto 0;
  }

  .main-buttons h2 {
    font-weight: normal;
    font-size: 20px;
    color: white;
    margin-top: 0;
    margin-left: 10px;
    text-align: left;
  }

  .main-buttons p {
    font-weight: normal;
    font-size: 13px;
    color: white;
    margin-top: 5px;
    padding: 0 10px;
    text-align: left;
  }
  .main-buttons .box:hover img {
    height: 45px;
    width: auto;
  }

  .services {
    
    flex-direction: column;
    margin: 25px 0 0 0;
  }

  .services .slider-wrap {
    margin-top: 30px;
    flex-basis: 100%;
    width: 90%;
  }

  #slider img{
    width: 100%;
    height: auto;
  }


  .services .services-box {
    flex-basis: 100%;
    width: 90%;
    position: relative;
    margin: 0;
    height: fit-content;
    padding-bottom: 20px;
    transform: unset;
  }

  .services .services-box h1 {
    font-size: 25px;
    margin-top: 15px;
  }

  .services .services-box ul {
    margin-top: 10px;
    text-align: left;
    margin-left: 20px;
  }

  .services .services-box ul li {
    width: 100%;
    font-size: 15px;
  }
  .room-rates {
    margin-top: 25px;
    height: 300px;
    background-size: cover;
  }
  .room-rates h1 {
    font-size: 40px;
  }

  .room-rates button {
    width: 130px;
    height: 40px;
    margin-top: 20px;
    padding: 12px 10px;
    transition: width 0.5s;

    font-size: 15px;
  }

  .news h1 {
    font-weight: 400;
    padding-left: 30px;
    font-size: 25px;
    padding-top: 50px;
  }

  .news h4 {
    padding-left: 30px;
    margin-top: 20px;
    padding-bottom: 100px;
  }

  .blogs-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: unset;
    margin: 20px;
    padding: 0;
    gap: 1px;
  }

  .blog-item {
    margin: 15px;
    width: 150px;
    height: 230px;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
  }

  .card-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  #post-date {
    margin-left: 10px;
    color: black;
    margin-top: 5px;
    font-family: "Montserrat";
    font-size: 10px;
  }

  #post-title {
    padding-left: 10px;
    padding-right: 10px;
    font-family: "Montserrat";
    margin-top: 10px;
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}