@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --bg-color-second: #283a5e;
  --bg-color-light: #f5f5f5;
  --accent-color: #efb817;
  --bd-radius: 10px;
  --bd-radius-btn: 35px;
  --text-color-light: #e3e3e3;
  --text-color-dark: #171717;
  --header-height: 96px;
}
body {
  font-family: "Lato", serif;
  color: var(--text-color-dark);
  position: relative;
}
a {
  transition: 0.3s;
}
p {
  line-height: 1.6;
}

h5 {
  font-weight: bold;
  font-size: 24px;

  color: var(--text-color-dark);
}

h6 {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.section-title-wrap {
  margin-bottom: 24px;
}
.section-title {
  font-size: 45px;
  font-weight: bold;
}
.color {
  color: var(--bg-color-second);
}

.list-unstyled {
  margin-bottom: 0;
}

.section {
  padding: 100px 0;
}

.logo .brand {
  text-transform: capitalize;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
}
.fa-star,
.fa-quote-left {
  color: #ffbc08;
}
.fa-quote-left {
  font-size: 22px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.overlay.active {
  display: block;
}

/* BTN */
.btn {
  border: 1px solid var(--accent-color);
  border-radius: var(--bd-radius-btn);
  color: var(--text-color-dark);
  font-weight: 600;
  transition: 0.2s;
  min-width: 150px;
  text-align: center;

  position: relative;
  overflow: hidden;
  background: var(--accent-color);

  color: #fff;
  padding: 12px;
}
.btn:hover {
  border: 1px solid var(--accent-color);
  background: #a17a05 !important;
  color: var(--text-color-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text-color-dark);
}
.btn-outline:hover {
  background: var(--accent-color) !important;
  color: #fff;
}

/* NAVBAR */
#navbar {
  padding: 0;
}
.navbar {
  background: #fff;
}
.navbar-toggler {
  border: none;
  background-color: transparent;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.navbar-brand {
  color: var(--text-color-dark);
  padding-top: 0 !important;
}
.logo img {
  width: 30px;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.icon-bar {
  width: 21px;
  height: 5px;
  border-top: 1px solid var(--text-color-dark);
  margin-bottom: 3px;
  display: block;
  transition: transform 400ms linear;
}
.icon-bar:nth-child(3) {
  margin-bottom: 0;
}
.bars,
.label {
  display: inline-block;
  vertical-align: middle;
}

.navbar-toggler.open .icon-bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px) translateX(4px);
}
.navbar-toggler.open .icon-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.navbar-toggler.open .icon-bar:nth-child(3) {
  transform: scale(0);
}
.nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  /* visibility: hidden; */
  border-radius: 0 0 var(--bd-radius) var(--bd-radius);

  /* display: block; */
  width: 220px;
  border: none;
  z-index: 99;
  /* opacity: 0; */
  top: var(--header-height);
  left: 0;
  padding: 0;
  overflow: hidden;
  /* transform: translateY(-100%); */
}
.nav-item .dropdown-menu li a {
  color: var(--bg-color-second);
  padding: 16px;
  border-bottom: 1px dashed #e3e3e3;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
  position: relative;
  transition: 0.8s;
}

.navbar.sticky {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--bg-color-light);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--text-color-dark);
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--accent-color);
}

/* HERO */
.hero {
  height: calc(100vh - var(--header-height));
}
.hero-banner-container {
  margin: 0 30px;
  /* max-width: 100% !important; */
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
}
.hero.hero-page-hotels .hero-banner-container {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg/about-img-page.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero.hero-page-hotels-casino .hero-banner-container {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg/hero-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero.hero-page-contact .hero-banner-container {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg/contact-img-page.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-navbar-container {
  padding: 0 60px;
  max-width: 100% !important;
}

.hero-text {
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 631px;
  padding: 0 15px;
}
.hero .btn:hover {
  color: #fff;
}
.hero-text h1 {
  font-size: 60px;
  font-weight: bold;
}
.hero-text p {
  font-size: 20px;
}

/* HOTELS LIST */

.hotels-item {
  position: relative;
}
.hotels-item a,
.section-title-wrap a {
  color: var(--text-color-dark);
  font-weight: bold;
  text-decoration: none;
}
.hotels-item-bottom a {
  text-decoration: underline;
  color: var(--accent-color);
}
.hotels-item-bottom a:hover {
  color: var(--text-color-dark);
}
.hotels-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.hotels-item-bottom span {
  font-size: 20px;

  padding-right: 4px;
}
.hotels-item-bottom p {
  font-weight: bold;
}

.section-title-wrap a:hover {
  color: var(--accent-color);
}
/* .hotels-item i  {
  color: var(--text-color-dark);
} */
.hotels-item-content {
  background: var(--bg-color-light);
  padding: 20px;
  border-radius: 0 0 var(--bd-radius) var(--bd-radius);
}
.hotels-item-img {
  border-radius: var(--bd-radius) var(--bd-radius) 0 0;
  height: 240px;
  object-fit: cover;
  width: 100%;
}
.hotels-wrap .hotels-item-content ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hotels-wrap .hotels-item-content ul img {
  width: 22px;
  margin-right: 4px;
}
.label-span {
  position: absolute;

  top: 20px;
  background: var(--accent-color);
  z-index: 1;
  left: 20px;
  color: var(--text-color-dark);
  border-radius: 4px;
  padding: 3px 5px;
}
.hotels-wrap .hotels-item-content ul li {
  padding-right: 12px;
  padding-bottom: 16px;
  color: rgba(0, 0, 0, 0.7);
}
.hotel-item-location {
  color: rgba(0, 0, 0, 0.7);
}

/* ABOUT */
.about-casino .about-wrap {
  background-image: linear-gradient(260deg, #ffffff00, var(--text-color-dark)),
    url(../img/bg/about-img1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-wrap {
  height: 100%;

  background-image: linear-gradient(260deg, #ffffff00, var(--text-color-dark)),
    url(../img/hotels/hotel-3-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
}
.about-inner {
  padding: 100px;
  color: #fff;
}
.about h2 {
  max-width: 650px;
}
.about p {
  max-width: 580px;
  margin: 30px 0;
}
.about li {
  margin-bottom: 16px;
  font-size: 20px;
  display: flex;
}
.about-icon {
  width: 20px;
}

/* REVIEWS */
.reviews-img img {
  border-radius: var(--bd-radius);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.reviews-user img {
  width: 60px !important;
  border-radius: 50%;
}
.reviews-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: var(--bd-radius);
}
.reviews-title-wrap h2 {
  margin: 12px 0;
}
.reviews-name {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
.owl-theme .owl-dots .owl-dot span {
  background: #efb8179e;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
}
.reviews-img-box {
  background: #ffffffd1;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 325px;
  border-radius: var(--bd-radius);
  padding: 20px;
}
.reviews-img-box h5 {
  font-size: 20px;
  font-weight: bold;
}
.reviews-img-box i {
  font-size: 27px;
  margin-bottom: 16px;
}
/* ADVANTAGES */
.advantages-item {
  background: #efeeec;
  border-radius: var(--bd-radius);
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.advantages-item span {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.advantages-item i {
  font-size: 25px;
  margin-bottom: 16px;
}

/* TEXT */
.text-section h2 {
  max-width: 600px;
}

/* CONTACT */
.contact-wrap {
  padding: 60px;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/bg/subscribe-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
}
.contact-wrap {
  color: #fff;
}
.contact-wrap .btn:hover {
  color: #fff;
}
.contact-wrap h2 {
  margin-bottom: 48px;
}
.contact-item-text {
  margin-bottom: 24px;
}
.contact-item-text h6 {
  color: #fff;
}
.contact-item-text i {
  color: var(--accent-color);
  font-size: 25px;
}
/* Form */
.form-wrap label {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.form-wrap div {
  margin-bottom: 15px;
}

textarea {
  min-height: 110px;
  resize: none;
  padding: 12px;
  background: transparent;
  font-size: 16px;
  width: 100%;
  border-radius: var(--bd-radius);
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.form-wrap form {
  width: 100%;
}
.form-wrap input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px;
  border-radius: var(--bd-radius);
  font-size: 16px;
  width: 100%;
  outline: none;
  background: transparent;
  color: #fff;
}
.page .btn {
  margin-top: 35px;
}

/* PAGE */
.crumbs a:hover {
  color: var(--accent-color) !important;
}

/* FOOTER */
.footer {
  /* background: var(--bg-color-second); */
  color: var(--text-color-dark);
}
.footer a {
  color: var(--text-color-dark);
}
.copyright-area {
  /* padding-top: 20px; */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}
.copyright-area ul {
  justify-content: end;
}
.copyright-area ul li {
  padding: 0 5px;
}
.footer h3 {
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 22px;
}
.footer a {
  text-decoration: none;
}
.footer .logo {
  margin-bottom: 24px;
}
.footer-top li {
  margin-bottom: 10px;
}
.footer li a:hover {
  color: var(--accent-color);
}

/* COOKIE */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #000;
  z-index: 9;
  color: var(--text-color-light);
  width: 300px;
  padding: 20px;
  border-radius: var(--bd-radius);
  display: none;
}
.cookie-bar.active {
  display: block;
}
#cookie-bar-link {
  display: block;
  margin: 15px 0 25px;
  color: var(--accent-color);
  text-decoration: underline;
}
#cookie-bar-link:hover {
  text-decoration: none;
}
.cookie-text {
  line-height: 1.5;
  color: #fff;
}
.cookie-bar .btn:hover {
  color: #fff;
}

/* ANIMATION */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
