@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Vidaloka&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.header {
  background-image: url(../../images/background4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.header .nav-link {
  letter-spacing: 5px;
  transition: all 0.3s;
  position: relative;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background-color: rgb(52, 169, 204);
  left: -7%;
  bottom: -3px;
  transition: all 0.3s;
}
.header .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background-color: rgb(52, 169, 204);
  right: -7%;
  bottom: -3px;
  transition: all 0.5s;
}
.header .nav-link:hover::before {
  width: 50%;
  right: 50%;
}
.header .nav-link:hover::after {
  width: 50%;
  left: 50%;
}
.header nav {
  position: relative;
  z-index: 2;
  padding: 20px;
  transition: all 0.5s;
}
.header nav .container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav .container .content .logo {
  transition: all 0.3s;
  border-radius: 10%;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header nav .container .content .logo {
    z-index: 1050;
  }
}
.header nav .container .content .logo:hover {
  transform: translateY(-5px);
  box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
}
.header nav .container .content .logo .image-content img {
  width: 70px;
  height: 70px;
}
.header nav .container .content .right-side .navbar {
  display: flex;
  gap: 35px;
  align-items: center;
}
.header nav .container .content .right-side .navbar .lang-content {
  height: 32px;
  width: 32px;
  overflow: hidden;
  transition: all 0.2s;
}
.header nav .container .content .right-side .navbar .lang-content:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 1024px) {
  .header nav .container .content .right-side .navbar .about-menu {
    display: none;
  }
}
.header nav .container .content .right-side .navbar .about-menu .about-menu-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.header nav .container .content .right-side .navbar .about-menu .about-menu-content .nav-item .nav-link {
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
}
.header nav .container .content .right-side .navbar .about-menu .about-menu-content .icon {
  font-size: 32px;
  transition: 0.3s all;
}
.header nav .container .content .right-side .navbar .about-menu .about-menu-content .icon:hover {
  color: rgb(52, 169, 204);
  transform: translateY(-4px);
}
.header nav .container .content .right-side .navbar .about-menu .about-menu-content .booking-icon {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}
.header nav .container .content .right-side .navbar .menu.active {
  left: -8%;
}
@media screen and (min-width: 680px) {
  .header nav .container .content .right-side .navbar .menu.active {
    left: -35%;
  }
}
@media screen and (min-width: 1190px) {
  .header nav .container .content .right-side .navbar .menu.active {
    left: -65%;
  }
}
.header nav .container .content .right-side .navbar .menu {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, rgba(52, 169, 204, 0.897) 10%, rgb(10, 81, 128) 70%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.2s all;
  z-index: 1040;
  padding-right: 9%;
}
@media screen and (max-width: 1024px) {
  .header nav .container .content .right-side .navbar .menu {
    width: 80%;
  }
}
.header nav .container .content .right-side .navbar .menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}
.header nav .container .content .right-side .navbar .menu .nav-menu .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 680px) {
  .header nav .container .content .right-side .navbar .menu .nav-menu .nav-item .nav-link {
    font-size: 22px;
  }
}
@media screen and (min-width: 1190px) {
  .header nav .container .content .right-side .navbar .menu .nav-menu .nav-item .nav-link {
    font-size: 25px;
  }
}
.header nav .container .content .right-side .navbar .menu .nav-menu .nav-item .nav-link i {
  color: rgb(13, 41, 121);
}
.header nav .container .content .right-side .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.header nav .container .content .right-side .hamburger.active .bar:first-child {
  transform: translateY(7px) rotate(45deg);
  background-color: rgb(52, 169, 204);
}
.header nav .container .content .right-side .hamburger.active .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
  background-color: rgb(52, 169, 204);
}
.header nav .container .content .right-side .hamburger {
  cursor: pointer;
}
.header nav .container .content .right-side .hamburger:hover .bar {
  background-color: rgb(52, 169, 204);
}
.header nav .container .content .right-side .hamburger .bar {
  display: block;
  width: 45px;
  height: 4px;
  transition: all 0.3s ease-in-out;
  background-color: #e5e5e5;
}
.header nav .container .content .right-side .hamburger .bar:nth-child(2) {
  margin: 3px 0px;
}
.header .nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 0 5px;
  background: rgba(0, 0, 0, 0.651);
  box-shadow: rgba(0, 0, 0, 0.808) 0px 25px 20px -20px;
}
.header .nav.sticky .logo {
  transition: all 0.3s;
  transform: scale(0.7);
}
.header .nav.sticky .logo:hover {
  transform: scale(0.8) !important;
}
.header .nav.sticky .logo img {
  width: 100%;
  height: 100%;
}
.header .title-header {
  margin-top: 35%;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 680px) {
  .header .title-header {
    margin-top: 2%;
  }
}
.header .title-header .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 135px;
}
.header .title-header .container .content .upper-text {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 680px) {
  .header .title-header .container .content .upper-text {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1190px) {
  .header .title-header .container .content .upper-text {
    font-size: 1.5rem;
  }
}
.header .title-header .container .content .upper-text::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 25px;
  background-color: rgb(52, 169, 204);
  box-shadow: rgb(10, 81, 128) 0px 7px 29px 0px;
}
.header .title-header .container .content .upper-text::after {
  content: "";
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 25px;
  background-color: rgb(52, 169, 204);
  box-shadow: rgb(10, 81, 128) 0px 7px 29px 0px;
}
.header .title-header .container .content .title {
  margin-top: 7px;
  font-family: "Oleo Script", cursive;
  font-size: 2.5rem;
  color: transparent;
  text-shadow: 1px 1px 1px rgb(10, 81, 128), 1px 2px 1px rgb(10, 81, 128), 1px 3px 1px rgb(10, 81, 128), 1px 4px 1px rgb(10, 81, 128), 1px 5px 1px rgb(10, 81, 128), 1px 6px 1px rgb(10, 81, 128), 1px 7px 1px rgb(10, 81, 128), 1px 8px 1px rgb(10, 81, 128), 1px 9px 1px rgb(10, 81, 128), 1px 10px 1px rgb(10, 81, 128), 1px 18px 6px rgba(0, 0, 0, 0.329);
  color: rgb(52, 169, 204);
}
@media screen and (min-width: 680px) {
  .header .title-header .container .content .title {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1190px) {
  .header .title-header .container .content .title {
    font-size: 5.5rem;
    letter-spacing: 4px;
    line-height: 1.2;
  }
}
.header .title-header .container .content .title h1 {
  display: flex;
  flex-direction: column;
}
.header .title-header .container .content .btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  flex-direction: column;
}
@media screen and (min-width: 680px) {
  .header .title-header .container .content .btn-group {
    font-size: 15px;
    flex-direction: row;
  }
}
.header .title-header .container .content .btn-group .btn-one {
  background-color: rgb(10, 81, 128);
  border: solid transparent;
  border-radius: 10px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #e5e5e5;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 10px 12px;
  text-align: center;
  transform: translateZ(0);
  transition: 0.3s all;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.header .title-header .container .content .btn-group .btn-one:hover {
  transform: scale(1.07);
}
.header .title-header .container .content .btn-group .btn-one::after {
  background-clip: padding-box;
  background-color: rgb(52, 169, 204);
  border: solid transparent;
  border-radius: 10px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.header .title-header .container .content .btn-group .btn-sec {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: transparent;
  border: 4px solid rgb(52, 169, 204);
  border-radius: 10px;
  border-width: 2px 2px 4px;
  box-sizing: border-box;
  color: #e5e5e5;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 8px 7px;
  text-align: center;
  transform: translateZ(0);
  transition: 0.3s all;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.header .title-header .container .content .btn-group .btn-sec:hover {
  transform: scale(1.07);
}
.header .curve {
  position: absolute;
  background-image: url(../../images/rotten-curve-5.png);
  width: 100%;
  height: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
}
.header .read-more {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  color: #e5e5e5;
  text-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;
  font-size: 0.9rem;
}

#about-us {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: url(../../images/nature/bcg-1.webp);
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1190px) {
  #about-us {
    padding: 40px 0;
  }
}
#about-us .curve {
  position: absolute;
  background-image: url(../../images/rotten-curve-4.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  z-index: 1;
}
#about-us .slide-image {
  display: none;
}
@media screen and (min-width: 1190px) {
  #about-us .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: url(../../images/slide-img-min.webp) no-repeat center/cover;
    display: block;
  }
}
#about-us .container {
  position: relative;
  padding: 0 10px;
}
#about-us .container .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 680px) {
  #about-us .container .content {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1190px) {
  #about-us .container .content {
    padding: 0 100px;
  }
}
#about-us .container .content .video-content {
  flex: 1 1;
  height: 520px;
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .video-content {
    height: 600px;
  }
}
#about-us .container .content .video-content .video {
  position: relative;
  height: 100%;
  display: block;
}
#about-us .container .content .video-content .video .image-content {
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .video-content .video .image-content {
    height: 100%;
    width: 100%;
  }
}
#about-us .container .content .video-content .video .image-content img {
  height: 100%;
  width: 100%;
}
#about-us .container .content .video-content i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
  transform: translate(-50%, -50%);
  color: rgb(52, 169, 204);
}
#about-us .container .content .text-content {
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  flex: 1 1;
  color: #000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 5px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .text-content {
    padding: 25px 10px;
  }
}
#about-us .container .content .text-content p:first-child {
  align-self: center;
  color: #e5e5e5;
  font-size: 1.1rem;
  position: relative;
}
@media screen and (min-width: 680px) {
  #about-us .container .content .text-content p:first-child {
    color: #e5e5e5;
  }
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .text-content p:first-child {
    font-size: 1.3rem;
    align-self: flex-start;
  }
}
#about-us .container .content .text-content p:first-child::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 25px;
  background-color: rgb(52, 169, 204);
  box-shadow: rgb(52, 169, 204) 0px 7px 29px 0px;
}
@media screen and (min-width: 680px) {
  #about-us .container .content .text-content p:first-child::before {
    display: none;
  }
}
#about-us .container .content .text-content p:first-child::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 25px;
  background-color: rgb(52, 169, 204);
  box-shadow: rgb(52, 169, 204) 0px 7px 29px 0px;
}
@media screen and (min-width: 680px) {
  #about-us .container .content .text-content p:first-child::after {
    display: none;
  }
}
#about-us .container .content .text-content p:nth-child(3) {
  margin-bottom: 25px;
  color: #e5e5e5;
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .text-content p:nth-child(3) {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 680px) {
  #about-us .container .content .text-content p:nth-child(3) {
    color: #000;
  }
}
#about-us .container .content .text-content h2 {
  margin: 15px 0;
  font-size: 2rem;
  font-family: "Yeseva One", cursive;
  text-align: center;
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .text-content h2 {
    font-size: 2.6rem;
    text-align: start;
  }
}
#about-us .container .content .text-content .btn {
  background-color: rgb(52, 169, 204);
  padding: 10px 25px;
  align-self: flex-start;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e5e5e5;
  border-bottom: 4px solid rgb(10, 81, 128);
  transition: 0.3s all;
}
#about-us .container .content .text-content .btn:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transform: translateY(-4px);
}
@media screen and (min-width: 1190px) {
  #about-us .container .content .text-content .btn {
    font-size: 0.9rem;
  }
}

.reviews {
  padding: 50px 10px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1190px) {
  .reviews .container {
    padding: 0 200px;
  }
}
.reviews .container .title {
  color: rgb(10, 81, 128);
  font-family: "Yeseva One", cursive;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1190px) {
  .reviews .container .title {
    font-size: 2rem;
  }
}
.reviews .container .content {
  color: rgb(10, 81, 128);
  padding: 25px 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
@media screen and (min-width: 1190px) {
  .reviews .container .content {
    padding: 40px 20px;
  }
}
.reviews .container .content .info {
  text-align: center;
  margin-bottom: 10px;
  color: #000;
}
.reviews .container .content .author {
  margin-bottom: 8px;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (min-width: 1190px) {
  .reviews .container .content .author {
    margin-bottom: 15px;
  }
}
.reviews .container .content .btn-group {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews .container .content .btn-group span {
  background-color: transparent;
  border: none;
  transition: color 0.3s;
  cursor: pointer;
}
.reviews .container .content .btn-group span:hover {
  color: rgb(10, 81, 128);
}
.reviews .container .content .btn-group span:active {
  transform: scale(1.5);
}
.reviews .container .content .btn-group span i {
  font-size: 1.6rem;
}

#gallery {
  padding: 40px 10px;
  overflow: hidden;
  position: relative;
}
#gallery .circle-one {
  position: absolute;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  border: 100px solid rgb(52, 169, 204);
  left: -300px;
  top: -400px;
}
#gallery .circle-two {
  position: absolute;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  border: 100px solid rgb(52, 169, 204);
  right: -300px;
  bottom: -400px;
}
#gallery .container {
  position: relative;
}
#gallery .container .content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 100px);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
#gallery .container .content .div1 {
  grid-area: 4/1/6/3;
}
#gallery .container .content .div2 {
  grid-area: 1/1/4/3;
}
#gallery .container .content .div3 {
  grid-area: 1/3/6/6;
}
#gallery .container .content .div4 {
  display: none;
}
#gallery .container .content .div5 {
  display: none;
}
#gallery .container .content .item-grid {
  box-shadow: rgba(0, 0, 0, 0.44) 0px 3px 8px !important;
}
#gallery .container .content .item-grid img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 1190px) {
  #gallery .container .content {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 140px);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
  #gallery .container .content .div1 {
    grid-area: 4/1/6/3;
  }
  #gallery .container .content .div2 {
    grid-area: 1/1/4/3;
  }
  #gallery .container .content .div3 {
    grid-area: 1/3/6/6;
  }
  #gallery .container .content .div4 {
    display: block;
    grid-area: 3/6/6/9;
  }
  #gallery .container .content .div5 {
    display: block;
    grid-area: 1/6/3/9;
  }
}

#vila-marina {
  position: relative;
  overflow: hidden;
  background: url(../../images/nature/bcg-2.webp);
  background-size: cover;
  background-position: center;
}
#vila-marina .curve-two {
  position: absolute;
  background-image: url(../../images/rotten-curve-5.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  z-index: 1;
}
#vila-marina .curve-one {
  position: absolute;
  background-image: url(../../images/rotten-curve-4.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  z-index: 1;
}
#vila-marina .container {
  position: relative;
  padding: 40px 10px;
}
@media screen and (min-width: 1190px) {
  #vila-marina .container .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
#vila-marina .container .content .left-side {
  flex: 2 2;
}
#vila-marina .container .content .left-side .text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 20px 5px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#vila-marina .container .content .left-side .text-content .boxes {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  flex-wrap: wrap;
}
#vila-marina .container .content .left-side .text-content .boxes span {
  padding: 5px;
  border: 1px solid rgb(10, 81, 128);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
#vila-marina .container .content .left-side .text-content .boxes span:hover {
  background-color: rgba(14, 70, 116, 0.438);
}
#vila-marina .container .content .left-side .text-content h2 {
  font-size: 2.5rem;
  font-family: "Yeseva One", cursive;
  align-self: center;
  color: rgb(6, 53, 84);
}
@media screen and (min-width: 680px) {
  #vila-marina .container .content .left-side .text-content h2 {
    font-size: 4rem;
    align-self: flex-start;
  }
}
#vila-marina .container .content .left-side .text-content .about-marina {
  line-height: 1.8;
  font-weight: 700;
  height: 400px;
  overflow-y: scroll;
}
@media screen and (min-width: 1190px) {
  #vila-marina .container .content .left-side .text-content .about-marina {
    font-size: 1.1rem;
    height: 300px;
  }
}
#vila-marina .container .content .left-side .text-content .about-marina ul {
  margin-bottom: 5px;
}
#vila-marina .container .content .left-side .text-content .about-marina ul li {
  list-style: inside;
}
#vila-marina .container .content .left-side .photo-content .photo-card {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#vila-marina .container .content .left-side .photo-content .photo-card a img {
  height: 100%;
  transition: all 0.3s;
  width: 100%;
}
#vila-marina .container .content .left-side .photo-content .photo-card a img:hover {
  transform: scale(1.1);
}
#vila-marina .container .content .left-side .price-marina {
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: center;
  color: #000;
  background-color: rgb(52, 169, 204);
  font-weight: 600;
  padding: 3px 0;
}
#vila-marina .container .content .left-side .btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
}
#vila-marina .container .content .left-side .btn-content .btn-one {
  padding: 10px;
  background-color: rgb(10, 81, 128);
  border-radius: 7px;
  transition: all 0.3s;
}
#vila-marina .container .content .left-side .btn-content .btn-one:hover {
  background-color: rgb(52, 169, 204);
}
#vila-marina .container .content .left-side .btn-content .btn-two {
  padding: 10px;
  background-color: rgb(10, 81, 128);
  border-radius: 7px;
  transition: all 0.3s;
}
#vila-marina .container .content .left-side .btn-content .btn-two:hover {
  background-color: rgb(52, 169, 204);
}
#vila-marina .container .content .right-side {
  display: none;
}
@media screen and (min-width: 1190px) {
  #vila-marina .container .content .right-side {
    display: block;
    flex: 1.5 1.5;
    min-height: 100%;
    height: 823px;
  }
  #vila-marina .container .content .right-side .image-content {
    height: 100%;
  }
  #vila-marina .container .content .right-side .image-content img {
    height: 100%;
  }
}

#vila-jelena {
  position: relative;
  overflow: hidden;
  background: url(../../images/nature/bcg-3.webp);
  background-position: center;
  background-size: cover;
}
#vila-jelena .curve-one {
  position: absolute;
  background-image: url(../../images/rotten-curve-4.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  z-index: 1;
}
#vila-jelena .curve-two {
  position: absolute;
  background-image: url(../../images/rotten-curve-5.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  z-index: 1;
}
#vila-jelena .container {
  position: relative;
  padding: 40px 10px;
}
@media screen and (min-width: 1190px) {
  #vila-jelena .container .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
#vila-jelena .container .content .right-side {
  flex: 2 2;
}
@media screen and (min-width: 1190px) {
  #vila-jelena .container .content .right-side {
    order: 2;
  }
}
#vila-jelena .container .content .right-side .text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 20px 5px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (min-width: 1190px) {
  #vila-jelena .container .content .right-side .text-content {
    justify-content: flex-end;
  }
}
#vila-jelena .container .content .right-side .text-content .boxes {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  align-self: center;
  flex-wrap: wrap;
}
#vila-jelena .container .content .right-side .text-content .boxes span {
  padding: 5px;
  border: 1px solid rgb(10, 81, 128);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
#vila-jelena .container .content .right-side .text-content .boxes span:hover {
  background-color: rgba(14, 70, 116, 0.438);
}
#vila-jelena .container .content .right-side .text-content h2 {
  font-size: 2.5rem;
  font-family: "Yeseva One", cursive;
  align-self: center;
  color: rgb(6, 53, 84);
}
@media screen and (min-width: 680px) {
  #vila-jelena .container .content .right-side .text-content h2 {
    font-size: 4rem;
    align-self: flex-start;
  }
}
@media screen and (min-width: 680px) and (min-width: 1190px) {
  #vila-jelena .container .content .right-side .text-content h2 {
    align-self: center;
  }
}
#vila-jelena .container .content .right-side .text-content .about-jelena {
  line-height: 1.8;
  font-weight: 700;
  height: 400px;
  overflow-y: scroll;
}
@media screen and (min-width: 1190px) {
  #vila-jelena .container .content .right-side .text-content .about-jelena {
    align-self: center;
    font-size: 1.1rem;
    height: 300px;
  }
}
#vila-jelena .container .content .right-side .text-content .about-jelena ul {
  margin-bottom: 5px;
}
#vila-jelena .container .content .right-side .text-content .about-jelena ul li {
  list-style: inside;
}
#vila-jelena .container .content .right-side .photo-content .photo-card {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#vila-jelena .container .content .right-side .photo-content .photo-card a img {
  height: 100%;
  transition: all 0.3s;
  width: 100%;
}
#vila-jelena .container .content .right-side .photo-content .photo-card a img:hover {
  transform: scale(1.1);
}
#vila-jelena .container .content .right-side .price-jelena {
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: center;
  color: #000;
  font-weight: 600;
  padding: 3px 0;
  background-color: rgb(52, 169, 204);
}
#vila-jelena .container .content .right-side .btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
}
#vila-jelena .container .content .right-side .btn-content .btn-one {
  padding: 10px;
  background-color: rgb(10, 81, 128);
  border-radius: 7px;
  transition: all 0.3s;
}
#vila-jelena .container .content .right-side .btn-content .btn-one:hover {
  background-color: rgb(52, 169, 204);
}
#vila-jelena .container .content .right-side .btn-content .btn-two {
  padding: 10px;
  background-color: rgb(10, 81, 128);
  border-radius: 7px;
  transition: all 0.3s;
}
#vila-jelena .container .content .right-side .btn-content .btn-two:hover {
  background-color: rgb(52, 169, 204);
}
#vila-jelena .container .content .left-side {
  display: none;
}
@media screen and (min-width: 1190px) {
  #vila-jelena .container .content .left-side {
    display: block;
    flex: 1.5 1.5;
    min-height: 100%;
    height: 823px;
  }
  #vila-jelena .container .content .left-side .image-content {
    height: 100%;
  }
  #vila-jelena .container .content .left-side .image-content img {
    height: 100%;
  }
}

.counter-up {
  padding: 40px 10px;
}
@media screen and (min-width: 1190px) {
  .counter-up {
    padding: 80px 10px;
  }
}
.counter-up .container .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media screen and (min-width: 680px) {
  .counter-up .container .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
  }
}
@media screen and (min-width: 1190px) {
  .counter-up .container .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.counter-up .container .content .counter-box {
  height: 100px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  font-size: 16px;
  border-radius: 0.5em;
  background-color: #21242b;
  border-bottom: 10px solid rgb(52, 169, 204);
  align-items: center;
  padding: 5px 0;
}
.counter-up .container .content .counter-box i {
  font-size: 1.6rem;
  color: rgb(52, 169, 204);
}
.counter-up .container .content .counter-box .number {
  display: flex;
  align-items: center;
  gap: 1px;
}
.counter-up .container .content .counter-box .number span {
  font-size: 1.2rem;
  font-family: "Oleo Script", cursive;
}
@media screen and (min-width: 1190px) {
  .counter-up .container .content .counter-box .number span {
    font-size: 1.4rem;
  }
}

.sentence {
  padding: 60px 0;
  background-image: url(../../images/sentence.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
@media screen and (min-width: 1190px) {
  .sentence {
    padding: 50px 10px;
  }
}
.sentence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}
.sentence .curve {
  position: absolute;
  background-image: url(../../images/rotten-curve-5.png);
  width: 100%;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sentence .container .content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sentence .container .content h3 {
  font-size: 2rem;
  color: rgb(52, 169, 204);
  text-shadow: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Oleo Script", cursive;
}
@media screen and (min-width: 1190px) {
  .sentence .container .content h3 {
    font-size: 2.4rem;
  }
}
.sentence .container .content p {
  margin: 30px 0;
  font-weight: 300;
}
@media screen and (min-width: 1190px) {
  .sentence .container .content p {
    font-size: 1.2rem;
    padding: 0 200px;
    text-align: center;
  }
}
.sentence .container .content .btn-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 680px) {
  .sentence .container .content .btn-group {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }
}
.sentence .container .content .btn-group .btn-first {
  position: relative;
  display: inline-block;
  padding: 15px 15px;
  color: #fff;
  overflow: hidden;
  transition: 0.2s;
  border-radius: 5px;
  text-transform: uppercase;
}
.sentence .container .content .btn-group .btn-first:hover {
  background-color: rgb(52, 169, 204);
  box-shadow: 0 0 10px rgb(52, 169, 204), 0 0 40px rgb(52, 169, 204), 0 0 80px rgb(52, 169, 204);
  transition-delay: 1s;
}
.sentence .container .content .btn-group .btn-first div {
  position: absolute;
  display: block;
}
.sentence .container .content .btn-group .btn-first div:first-child {
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(52, 169, 204));
}
.sentence .container .content .btn-group .btn-first div:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, transparent, rgb(52, 169, 204));
}
.sentence .container .content .btn-group .btn-first div:nth-child(2) {
  top: -100%;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgb(52, 169, 204));
}
.sentence .container .content .btn-group .btn-first div:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(360deg, transparent, rgb(52, 169, 204));
}
.sentence .container .content .btn-group .btn-first:hover div:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.sentence .container .content .btn-group .btn-first:hover div:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.sentence .container .content .btn-group .btn-first:hover div:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.sentence .container .content .btn-group .btn-first:hover div:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.sentence .container .content .btn-group .btn-first span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sentence .container .content .btn-group .btn-sec {
  padding: 15px 15px;
  background: rgb(52, 169, 204);
  border-radius: 22px;
  transition: all 0.3sec;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-transform: uppercase;
}
.sentence .container .content .btn-group .btn-sec:hover {
  transform: scale(1.1);
  background-color: transparent;
  animation: none;
  box-shadow: 0 0 0 rgb(52, 169, 204), 0 0 4px rgb(52, 169, 204), 0 0 80px rgb(52, 169, 204);
}

#contact-location {
  padding: 40px 10px;
  overflow: hidden;
}
#contact-location .container .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(180deg, rgb(52, 169, 204) 20%, rgb(10, 81, 128) 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
@media screen and (min-width: 1190px) {
  #contact-location .container .content {
    flex-direction: row;
    gap: 10px;
  }
}
#contact-location .container .content .location-content {
  width: 100%;
  height: 500px;
}
@media screen and (min-width: 1190px) {
  #contact-location .container .content .location-content {
    flex: 2 2;
  }
}
#contact-location .container .content .location-content iframe {
  width: 100%;
  height: 100%;
}
#contact-location .container .content .contact-content {
  overflow: hidden;
  color: #e5e5e5;
  padding: 10px;
  position: relative;
}
#contact-location .container .content .contact-content .circle-one {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgb(10, 81, 128);
  right: -116px;
  top: 163px;
}
@media screen and (min-width: 680px) {
  #contact-location .container .content .contact-content .circle-one {
    width: 400px;
    height: 400px;
    border: 61px solid rgb(10, 81, 128);
    right: -75px;
    top: 85px;
  }
}
@media screen and (min-width: 1190px) {
  #contact-location .container .content .contact-content .circle-one {
    right: -148px;
    top: 236px;
  }
}
#contact-location .container .content .contact-content h3 {
  font-family: "Yeseva One", cursive;
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 1190px) {
  #contact-location .container .content .contact-content h3 {
    font-size: 2rem;
    margin-bottom: 45px;
    margin-top: 20px;
  }
}
#contact-location .container .content .contact-content .contact {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  z-index: 1;
  flex-direction: column;
  gap: 10px;
  font-family: "Times New Roman", Times, serif;
}
#contact-location .container .content .contact-content .contact span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 680px) {
  #contact-location .container .content .contact-content .contact span {
    font-size: 1.4rem;
  }
}
#contact-location .container .content .contact-content .contact span i {
  color: rgb(10, 81, 128);
  font-size: 1.4rem;
}
#contact-location .container .content .contact-content .contact span .email-icon {
  margin-top: 3px;
}
#contact-location .container .content .contact-content p {
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Yeseva One", cursive;
  position: relative;
  z-index: 1;
}
#contact-location .container .content .contact-content .social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}
#contact-location .container .content .contact-content .social i {
  color: #e5e5e5;
  transition: all 0.3s;
}
#contact-location .container .content .contact-content .social i:hover {
  color: rgb(52, 169, 204);
}

footer {
  margin-top: 50px;
  padding-top: 30px;
  background: rgb(32, 32, 32);
  position: relative;
}
footer .container .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer .container .content .logo {
  width: 100px;
  height: 100px;
  transition: all 0.3s;
}
footer .container .content .logo:hover {
  transform: scale(1.1);
}
footer .container .content .links .footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-transform: uppercase;
  gap: 15px;
  color: rgb(52, 169, 204);
}
@media screen and (min-width: 680px) {
  footer .container .content .links .footer-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1190px) {
  footer .container .content .links .footer-menu {
    display: flex;
  }
}
footer .container .content .links .footer-menu .nav-item {
  padding: 5px 10px;
  border: 1px solid rgb(52, 169, 204);
  transition: all 0.3s;
}
footer .container .content .links .footer-menu .nav-item:hover {
  border-radius: 10px;
}
footer .container .content .socials {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 2.5rem;
}
footer .container .content .socials a {
  color: rgb(52, 169, 204);
  transition: all 0.3s;
}
footer .container .content .socials a:hover {
  transform: scale(1.1);
}
footer .container .content .socials a .booking-icon {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  padding-top: 4px;
}
footer .footer {
  display: flex;
  background-color: rgb(20, 20, 20);
  margin-top: 20px;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4px 10px;
  font-family: "Times New Roman", Times, serif;
}
@media screen and (min-width: 680px) {
  footer .footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }
}
footer .footer .name-houses {
  font-family: "Yeseva One", cursive;
}

#field-trips {
  padding: 40px 10px;
}
#field-trips .container .title {
  text-align: center;
  color: rgb(10, 81, 128);
  font-family: "Yeseva One", cursive;
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  #field-trips .container .title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1190px) {
  #field-trips .container .title {
    font-size: 2rem;
  }
}
#field-trips .container .content .owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#field-trips .container .content .owl-carousel .owl-nav button {
  color: rgb(10, 81, 128);
  transform: scale(1.5);
  transition: all 0.1s;
}
#field-trips .container .content .owl-carousel .owl-nav button:active {
  transform: scale(2);
}
#field-trips .container .content .owl-carousel .owl-nav button:hover {
  background: none;
}
#field-trips .container .content .owl-carousel .item .image-content {
  height: 350px;
  overflow: hidden;
}
#field-trips .container .content .owl-carousel .item .image-content:hover img {
  transform: scale(1.1);
}
#field-trips .container .content .owl-carousel .item .image-content img {
  transition: all 0.3s;
  height: 100%;
}
#field-trips .container .content .owl-carousel .item .about-trip {
  background-color: rgb(52, 169, 204);
  padding: 10px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
#field-trips .container .content .owl-carousel .item .about-trip span {
  font-family: "Times New Roman", Times, serif;
}

#jahorina {
  padding: 40px 10px;
  color: #000;
  background: url(../../images/nature/bcg-1.webp);
  background-position: center;
  background-size: cover;
}
#jahorina .container .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 680px) {
  #jahorina .container .content {
    flex-direction: row;
    align-items: center;
  }
}
#jahorina .container .content .image-item {
  flex: 1 1;
  height: 265px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#jahorina .container .content .image-item img {
  height: 100%;
  transition: all 0.3s;
  width: 100%;
}
#jahorina .container .content .image-item img:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 680px) {
  #jahorina .container .content .no-display-tablet {
    display: none;
  }
}
@media screen and (min-width: 1190px) {
  #jahorina .container .content .no-display-tablet {
    display: block;
  }
}
#jahorina .container .content .text-item {
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  color: #000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 20px 5px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  flex: 1 1;
}
#jahorina .container .content .text-item h2 {
  text-align: center;
  color: rgb(10, 81, 128);
  font-family: "Yeseva One", cursive;
  margin-bottom: 15px;
}
#jahorina .container .content .text-item p {
  margin-bottom: 10px;
}
#jahorina .container .content .text-item .btn {
  background-color: rgb(10, 81, 128);
  padding: 5px;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.3s;
}
#jahorina .container .content .text-item .btn:hover {
  background-color: rgb(52, 169, 204);
}

#reservation {
  height: 100vh;
  display: block;
  background: url(../../images/sentence.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#reservation::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(3, 3, 3, 0.452);
  top: 0;
  left: 0;
}
#reservation .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
#reservation .container .form-container {
  background-color: #fff;
  padding: 40px 15px 0 15px;
  width: 80%;
}
@media screen and (min-width: 680px) {
  #reservation .container .form-container {
    width: 60%;
  }
}
@media screen and (min-width: 1190px) {
  #reservation .container .form-container {
    width: 35%;
  }
}
#reservation .container .form-container #msg {
  text-align: center;
  padding: 10px;
  border: 1px solid green;
  margin: 10px 0;
  color: green;
  text-transform: uppercase;
  letter-spacing: normal;
  display: none;
}
#reservation .container .form-container .btn-content {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
}
#reservation .container .form-container .btn-content .btn {
  text-transform: uppercase;
  color: rgb(52, 169, 204);
  font-weight: 400;
  font-size: 1.4rem;
}
#reservation .container .form-container .btn-content .form-to-eng-btn {
  color: rgb(52, 169, 204);
  text-decoration: underline;
  cursor: pointer;
}
#reservation .container .form-container .btn-content .form-to-srb-btn {
  color: rgb(52, 169, 204);
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
#reservation .container .form-container h2 {
  text-transform: uppercase;
  color: rgb(10, 81, 128);
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 1190px) {
  #reservation .container .form-container h2 {
    font-size: 1.9rem;
  }
}
#reservation .container .form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#reservation .container .form-container .form .input-content {
  display: flex;
  flex-direction: column;
}
#reservation .container .form-container .form .input-content label {
  font-size: 0.7rem;
  color: rgb(52, 169, 204);
}
#reservation .container .form-container .form .input-content input {
  border: none;
  border-bottom: 1px solid #e5e5e5 !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0 10px 7px;
  width: 100%;
}
#reservation .container .form-container .form .input-content input:focus-visible {
  border: none !important;
  border-bottom: 1px solid #000 !important;
  outline: none;
}
#reservation .container .form-container .form .input-content input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
#reservation .container .form-container .form .input-content select {
  border: none;
  border-bottom: 1px solid #e5e5e5 !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 0 10px 7px;
  cursor: pointer;
}
#reservation .container .form-container .form .input-content select:focus-visible {
  border: none !important;
  border-bottom: 1px solid #000 !important;
  outline: none;
}
#reservation .container .form-container .form button {
  align-self: center;
  padding: 10px 20px;
  background-color: rgb(10, 81, 128);
  text-transform: uppercase;
  border: none;
  letter-spacing: 2px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}
#reservation .container .form-container .form button:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

#prices {
  padding: 40px 30px;
}
#prices .container .title small {
  color: rgb(52, 169, 204);
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media screen and (min-width: 1190px) {
  #prices .container .title small {
    font-size: 1rem;
  }
}
#prices .container .title h2 {
  margin: 10px 0;
  color: #000;
  font-weight: 700;
  font-size: 2.3rem;
}
@media screen and (min-width: 1190px) {
  #prices .container .title h2 {
    font-size: 3rem;
  }
}
#prices .container .boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 680px) {
  #prices .container .boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  #prices .container .boxes .box-1 {
    grid-area: 1/1/3/3;
  }
  #prices .container .boxes .box-2 {
    grid-area: 3/1/5/2;
  }
  #prices .container .boxes .box-3 {
    grid-area: 3/2/5/3;
  }
}
@media screen and (min-width: 1190px) {
  #prices .container .boxes {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  #prices .container .boxes .box-1 {
    flex: 2 2;
  }
  #prices .container .boxes .box-2 {
    flex: 1 1;
  }
  #prices .container .boxes .box-3 {
    flex: 1 1;
  }
}
#prices .container .boxes .box .image-content {
  height: 400px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (min-width: 1190px) {
  #prices .container .boxes .box .image-content {
    height: 450px;
  }
}
#prices .container .boxes .box .image-content:hover img {
  transform: scale(1.1);
}
#prices .container .boxes .box .image-content:hover .info-price {
  box-shadow: inset 0px -135px 73px -76px rgba(0, 0, 0, 0.81);
  padding-bottom: 80px;
}
#prices .container .boxes .box .image-content img {
  transition: all 0.4s;
  height: 100%;
  width: 100%;
}
#prices .container .boxes .box .image-content .info-price {
  position: absolute;
  width: 100%;
  display: block;
  padding: 25% 30px 0 30px;
  left: 0;
  bottom: 0;
  padding-bottom: 60px;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s;
  width: 106%;
  height: 20%;
}
@media screen and (min-width: 1190px) {
  #prices .container .boxes .box .image-content .info-price {
    font-size: 1.1rem;
  }
}
#prices .container .boxes .box .image-content .info-price .max-people i {
  margin-left: 3px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #e5e5e5;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1340px;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 12px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.438) inset;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: rgb(52, 169, 204);
  border-radius: 4px;
}

#to-top {
  z-index: 1000;
  position: fixed;
  bottom: -100%;
  opacity: 0;
  right: 30px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
}
#to-top #scroll-up-btn {
  z-index: 999;
  padding: 15px;
  background-color: rgb(52, 169, 204);
  border-radius: 9px;
  transition: all 0.5s;
}
#to-top #scroll-up-btn i {
  font-size: 1.5rem;
}
#to-top #scroll-up-btn:hover {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: rgb(52, 169, 204);
}

#to-top.active {
  bottom: 30px;
  opacity: 1;
}

section {
  overflow: hidden;
}

.loading-page {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1100;
  width: 100vw;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  height: 100vh;
  animation: slide 1s linear forwards;
  animation-delay: 3s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-page .text-content {
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  animation: 2s linear forwards scrollText 1s;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 680px) {
  .loading-page .text-content {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1190px) {
  .loading-page .text-content {
    font-size: 4rem;
  }
}

@keyframes scrollText {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes slide {
  0% {
    right: 0;
  }
  100% {
    right: -120%;
  }
}
.swiper {
  height: 280px;
  width: 100%;
}
@media screen and (min-width: 1190px) {
  .swiper {
    width: 650px;
  }
}

.swiper-scrollbar-drag {
  background-color: rgb(52, 169, 204) !important;
}

.swiper-button-prev, .swiper-button-next {
  color: rgb(52, 169, 204) !important;
}/*# sourceMappingURL=style.css.map */