/*
 *
 * Prefix Css Page
 *
 */
/*
 *
 * Colors Css
 *
 */
/*== Start Color Text Classes ==*/
.text-grey {
  color: #777;
}

/*
 *
 * Prefix Css Page
 *
 */
/*
 *
 * Extend Css
 *
 */
.dFlexCenterCenter, nav .list-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexAroundCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexBetweenCenter, nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.backgroundImage {
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*
 *
 * Global Css Page
 *
 */
body {
  font-family: Raleway, sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.row {
  direction: ltr;
}

.error {
  color: red;
  display: block;
  width: 100%;
  text-align: left;
}

.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*== Start Scroll ==*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1d4d4f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #27a10c;
}

/*
 *
 * Navbar Css Page
 *
 */
nav {
  width: 100%;
  position: fixed;
  z-index: 99;
  padding: 10px;
  direction: rtl;
}
nav img {
  width: 125px;
}
nav .btn-booking-container .btn-booking {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: solid #27a10c;
  padding: 8px 40px 10px;
  color: #1d4d4f;
}
nav .btn-booking-container .btn-booking:hover {
  background-color: #27a10c;
  color: white;
}
nav .list-container ul {
  direction: ltr;
}
nav .list-container ul li {
  display: inline-block;
  margin: 0 10px;
}
nav .list-container ul li a {
  color: #1d4d4f;
}

.scroll-active {
  background-color: white;
  -webkit-box-shadow: 10px 0 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 10px 0 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 10px 0 5px rgba(0, 0, 0, 0.08);
  box-shadow: 10px 0 5px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/*=== Responsive ===*/
@media (max-width: 992px) {
  nav .list-container .menu-icon {
    width: 30px;
    cursor: pointer;
  }
  nav .list-container .menu-icon span {
    width: 100%;
    height: 1px;
    background-color: #1d4d4f;
    margin-bottom: 7px;
    display: block;
  }
  nav .list-container ul {
    position: fixed;
    top: 0;
    left: -1600px;
    width: 100%;
    background-color: #1d4d4f;
    height: 100vh;
    padding-top: 20px;
  }
  nav .list-container ul li {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  nav .list-container ul li a {
    color: #ddd;
    font-size: 30px;
  }
  nav .list-container ul .close-icon {
    color: #ddd;
    font-size: 30px;
  }
}

/*# sourceMappingURL=navbar.css.map */
