@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
body {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

:root {
  --font-color: #333;
  --bg-color: rgb(30 30 30);
  --color-white: #ffffff;
  --bg-white: #ffffff;
}

.box {
  width: 100%;
  height: 12.5rem;
  background-color: var(--bg-color);
}

.header-menu {
  background-color: var(--bg-color);
  height: 5.6875rem;
}

.header-fixed {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    transition: height 40s ease;
    animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes up-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  0% {
    opacity: 0.9;
    transform: translateY(-100%);
  }
}

.header-logo {
  height: 5.6875rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-logo img {
  width: 15.625rem;
  height: auto;
}

.header-menu-list {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 5.6875rem;
}

.header-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-menu-list li .menu-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
  border: 0.0625rem solid #fff;
  padding: 0.625rem;
}

.header-menu-list li .menu-link.active {
  border: none;
  border-bottom: 0.0625rem solid #fff;
}

.nav-menu-btn{
  display: none;
}

.search-icon {
  color: #fff;
  font-size: 1.5625rem;
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 24px;
}

.search-icon::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 16px;
  transform: translateX(-20px) translateY(-50%);
  width: 13px;
  height: 13px;
  opacity: 0;
  background: repeating-linear-gradient(
    to bottom,
    #ffffff,
    #ffffff 2px,
    transparent 2px,
    transparent 4px
  );
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.search-icon:hover::before {
  transform: translateX(-100%) translateY(-50%);
  opacity: 1;
  font-size: 0.9375rem;
}

.home-slider {
  height: calc(100vh - 91px);
  overflow: hidden;
}

.home-slider .carousel {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-item-content {
  position: absolute;
  top: 40%;
  display: grid;
  justify-content: center;
  width: 100%;
  z-index: 9998;
  text-align: center;
}

.carousel-item-content h1 {
  font-size: 4rem;
  color: var(--color-white);
  font-weight: 600;
}

.carousel-item-content p {
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 9999;
}

.carousel-mouse-hover {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 2s ease-in-out infinite;
  font-size: 75px;
  color: #fff;
  z-index: 9998;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -75%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.soccial-list-home {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 998;
}

.soccial-list-home ul {
  display: flex;
}

.soccial-list-home ul li {
  margin: 0 15px 0 0;
  font-size: 2.1875rem;
  display: inline-block;
}

.soccial-list-home ul li a {
  color: #fff;
}

.home-content-item {
  display: flex;
  flex-wrap: wrap;
}

.content-item {
  width: 33.3%;
  border: 4px solid #fff;
  height: 40rem;
  position: relative;
}

.content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-item-title {
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.item-title h2,
.item-title p {
  color: var(--color-white);
}
.item-link {
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 50%;
  background-color: var(--bg-white);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.item-link a i {
  font-size: 2.5rem;
  transform: rotate(50deg);
  display: inline-block;
  color: var(--font-color);
  transition: transform 0.4s ease;
}

.item-link a i:hover {
  transform: rotate(0deg) !important;
}

/* Ana sarmalayıcı */

.chat-wrapper {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 200px;
  height: 50px;
  z-index: 9999;
}

.chat-container {
  width: 100%;
  height: 100%;
  background-color: #064a81;
  border-radius: 25px;
  color: white;
  font-size: 18px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  border: 2px solid white;
  animation: borderPulse 2s linear infinite;
  padding: 0 10px;
}
.chat-container p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: white;
  }
  50% {
    border-color: transparent;
  }
}

.golf-info-banner {
  padding: 6.25rem 0;
}

.golf-info-banner-title {
  text-align: center;
  padding: 0 5rem;
  margin: 0 0 5rem 0;
}

.golf-item-card {
  border: 2px solid #064a81;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0.9375rem;
  text-align: center;
}

.golf-item-card label {
  font-size: 2.5rem;
  font-weight: 600;
  color: #064a81;
}

.golf-item-card p {
  color: #064a81;
}

.home-banner {
  /*background-image: url("/assets/images/banner.jpg");*/
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}

.home-banner-content h2 {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
}
.home-banner-content h3 {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 500;
}

.home-banner-content a {
  border: 1px solid #fff;
  color: #ffffff;
  padding: 0.9375rem 4rem;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  top: 1.5625rem;
}

.hotels-banner {
  padding: 3.6rem 0;
}

.hotels-banner-title {
  text-align: center;
}

.hotels-banner-title h2 {
  font-weight: 600;
}

.hotels-list {
  background-color: #f3f3f2;
  padding: 1.25rem 0;
}

.hotel-card {
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.hotel-card-photo {
  width: 100%;
  height: 26.875rem;
  overflow: hidden;
}

.hotel-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card-footer {
  text-align: center;
  padding: 20px 0;
}

.hotel-card-footer label {
  font-weight: 700;
  font-size: 1.25rem;
}
.hotel-card:hover {
  transform: scale(1.05);
}

.view-hotels-link {
  text-align: center;
  padding: 1.875rem 0;
}

.view-hotels-link a {
  text-decoration: none;
  border: 1px solid #333;
  background-color: var(--bg-white);
  padding: 1.25rem 3rem;
  border-radius: 2rem;
  position: relative;
  top: 1rem;
  color: #333;
  transition: transform 0.3s ease;
}

.view-hotels-link a:hover {
  background-color: #064a81;
  color: var(--color-white);
}

.home-content-slider {
  width: 100%;
  height: 37.5rem;
  overflow: hidden;
}

.home-content-slider .carousel {
  width: 100%;
  height: 37.5rem;
  position: relative;
}
.home-content-slider .carousel .carousel-inner .carousel-item {
  height: 37.5rem;
}

.home-content-slider .carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-content-slider:hover .carousel .carousel-inner .carousel-item img {
  transform: scale(1.05);
}


.home-content-slider .carousel-control-prev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    position: absolute;
    top: 50%;
    color: var(--font-color);
    font-size: 1.125rem;
    left: 3%;
}

 
.home-content-slider .carousel-control-next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    position: absolute;
    top: 50%;
    color: var(--font-color);
    font-size: 1.125rem;
    right: 3%;
}

.home-slider-item-content {
  position: absolute;
  top: 30%;
  display: grid;
  justify-content: center;
  width: 100%;
  z-index: 9998;
  text-align: center;
}

.home-slider-item-content h2 {
  font-size: 3rem;
  color: var(--color-white);
  font-weight: 600;
}

.home-slider-item-content p {
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 500;
}

.home-slider-item-content a {
  border: 1px solid #fff;
  color: #ffffff;
  padding: 0.9375rem 4rem;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  top: 1.5625rem;
  width: 250px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}


.home-content-slider-title{
    text-align: center;
    padding: .9375rem 0;
}

.campaign-hotel-content{
    padding: 5rem 0;
}

.campaign-hotel{
    background-color: #f0f0f0;    
}
.campaign-hotel-info{
    text-align: center;
    align-items: center;
    align-content: center;
    height: 28.125rem;
    padding: 4rem;
}

.campaign-hotel-card{
    text-align: start;
}

.campaign-hotel-photo{
    width: 100%;
    height: 28.125rem;
    overflow: hidden;
}
.campaign-hotel-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-hotel-card h2{
    font-size: 50px;
    font-weight: 600;
    color: #000000;
}


.campaign-hotel-card label{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

.campaign-hotel-card p{
     font-weight: 500;
   margin: 0 0 2px 0;
   font-size: 20px;
   color: #000000;
}
.campaign-hotel-info-footer{
    margin: 20px 0 0 0;
}
.campaign-hotel-info-footer p{
   font-weight: 500;
   margin: 0 0 2px 0;
   font-size: 20px;
   color: #000000;
}

.campaign-hotel-info-footer a{
    border: 2px solid #000000;
    background-color: var(--bg-white);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: #000000;
    padding: .8rem;
    position: relative;
    top: .9375rem;
    border-radius: .9375rem;
}

.campaign-hotel-info-footer a i{
    border: 1px solid #000000;
    border-radius: 50%;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-flex;
    text-align: center;
    padding: .125rem;
    position: relative;
    top: .125rem;
}

.home-about{
  text-align: center;
}

.home-about .home-about-icon i{
  font-size: 3rem;
  color: #a9806f;
}

.home-about h2{
  font-size: 3rem;
  font-weight: 600;
}
.home-about a{
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 25px;
  position: relative;
  top: 15px;
  text-decoration:none ;
  color: var(--font-color);
  font-weight: 600;
  font-size: .8125rem;
}

.instagram-url{
  text-align: center;
  padding: 3rem;
}

.instagram-url span{
  font-size: 1.8rem;
  font-weight: 700;
}

.instagram-url a{
  font-size: 1.125rem;
  color: var(--font-color);
  text-decoration: none;
  font-size: 1.8rem;
  margin: 0 0 0 .625rem;
}

.instagram-slider .owl-next{
  position: absolute;
  right: 3%;
  top: 40%;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #ffffff !important;
  color: #000000 !important;
  border-radius: 50%;
}

.instagram-slider .owl-prev{
  position: absolute;
  left: 3%;
  top: 40%;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #ffffff !important;
  color: #000000 !important;
  border-radius: 50%;
}

.map-content .map iframe{
  width: 100%;
  height: 450px;
}

.footer-content{
  background-color: var(--bg-color);
  padding: 4.6875rem 0 0 0;
}


.footer-info{
  text-align: center;
}

.footer-info .footer-info-logo img{
  width: 250px;
}

.footer-info-paragraf{
  padding: .9375rem 0;
}

.footer-info-paragraf p{
  color: var(--color-white);
  font-size: .875rem;
}

.footer-soccial-list ul li{
  display: inline-block;
  margin: 0 5px;
  font-size: 2rem;
}

.footer-soccial-list ul li a i{
  color: #949494;
}

.media-list{
  text-align: center;
}

.media-list ul li a img{
  width: 220px;
}


.footer-bottom p{
  color: var(--color-white);
}

.hotels-content{
  text-align: center;
  padding: 1.5625rem 3.125rem;
}

.hotels-content-paragraf p{
  font-size: .875rem;
}

.hotel-list-card{
  text-align: center;
  margin:25px 0 0 0;
}

.star-list {
  padding: 0;
  margin: 0;
}
.star-list li{
  display: inline-block;
  color: #718096;
}

.hotel-photos{
  width: 100%;
  height: 25rem;
  overflow: hidden;
}

.hotel-photos .carousel{
  width: 100%;
  height: 25rem;
}

.hotel-photos{
  margin: 15px 0 0 0;
}


.hotel-photos .carousel-control-prev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    position: absolute;
    top: 50%;
    color: var(--font-color);
    font-size: 1.125rem;
    left: 3%;
    z-index: 998 !important;
}

 
.hotel-photos .carousel-control-next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    position: absolute;
    top: 50%;
    color: var(--font-color);
    font-size: 1.125rem;
    right: 3%;
    z-index: 998 !important;
}

.hotel-price-info .hotel-date{
  background-color: var(--bg-color);
  color: var(--bg-white);
  width: 100%;
  height: 3.25rem;
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-info-list{
  padding: 0 .9375rem;
}

.card-info-list ul{
  padding: 0;
  margin: 0;
}

.card-info-list ul li{
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid var(--bg-color);
  margin: .9375rem 0 0 0;
  line-height: 2;
}

.hotel-price-card-one .card-info-list ul li:last-child {
    border: none;
}

.night-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.nights-list label{
  font-weight: 600;
  font-size: 1.4375rem;
  margin: 0 1.25rem 0 0;  
}

.lbl-w{
width: 4.5rem;
}

.nights-list span{
  font-size: 1.4375rem;
}

.hotel-price-card{
  background-color: #f0f0f0;
  height:420px;
}

.hotel-price-card-one {
    background-color: #f0f0f0;
}

.hotel-price-card .owl-carousel {
    height: 420px;
    height: 100%;
}

.card-price{
  font-weight: 700;
  font-size: 2rem;
}

.price-link{
  display: grid;
  justify-content: center;
}

.hotel-price-card{
  position: relative;
}

.hotel-price-card .owl-nav{
  position: absolute;
  right: 0%;
  bottom: .9375rem;
}

.hotel-price-card .owl-nav button{
  margin: 0 15px 0 0;
  border: 1px solid #333 !important;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.book-now-link{
  text-decoration: none;
  background-color: #064a81;
  color: var(--color-white);
  padding: 15px 20px;
  border-radius: .2rem;
}

.book-now-link i{
  margin: 0 0 0 .3125rem;
  font-size: 1.2rem;
}

.book-now-link {
    position: relative;
    display: inline-block;
    align-items: center;
}

.search-input{
  display: flex;
  border: 1px solid #333;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: .9375rem;
}

.search-input input{
  border: none;
}

.search-input input:focus{
  border: none !important;
  box-shadow: none !important;
}


.contact-info {
      background-color: #343a40;
      color: white;
      padding: 30px;
      height: 100%;
    }
    .social-icons a {
      color: white;
      margin-right: 10px;
      font-size: 1.5rem;
    }


.contact-form {
    background-color: #dfe5eb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    width: 50%;
}

  .contact-form h4 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
  }

  .contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }

  .contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
    background-color: #fff;
  }

  .contact-form textarea.form-control {
    resize: none;
  }
.contact-form-content {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.contact-btn {
    padding: 15px 100px;
    border-radius: 25px;
    border: none;
    background-color: #064a81;
    color: white;
}
 

  .contact-form button:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
  }

  .golf-content{
    text-align: center;
    padding: 2rem 0;
  }

.golf-page-title {
  padding: .625rem 0;
}

  .golf-page-title h2{
    font-weight: 600;
  }

  .golf-photo-content{
    display: flex;
  }


.golf-photo-item-one {
 /*background-image: url("/assets/images/golf1.jpg");*/
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 50%;
  position: relative;
  overflow: hidden;
}


  .golf-photo-item-two {
  /*background-image: url("/assets/images/golf2.jpg");*/
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 50%;
    position: relative;
  overflow: hidden;
}

.golf-photo-item-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.171); 
  z-index: 1;
}


.golf-photo-item-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-color: rgba(0, 0, 0, 0.171); 
  z-index: 1;
}

.golf-item-content{
  width: 100%;
  height: 100%;
}

.golf-content-info p {
    color: white !important;
}

.golf-content-info h4 {
    color: white;
}

.golf-content-info ul{
  text-align: start;
  color: white;
}

.golf-photo-item-one {
  position: relative;
  overflow: hidden;
}

.golf-content-info {
  opacity: 0;
  transform: translateY(-20px); 
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #0b5ed7;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.golf-photo-item-one:hover .golf-content-info {
  opacity: 1;
  transform: translateY(0); 
}

.golf-photo-item-two:hover .golf-content-info {
  opacity: 1;
  transform: translateY(0); 
}

.golf-content-title{
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 9999;
     transform: translateY(20px); 
     transition: opacity 0.4s ease, transform 0.4s ease;
}

.golf-content-title h2{
  font-weight: 600;
  color: #ffffff;
}

.golf-photo-item-one:hover .golf-content-title {
  opacity: 1;
  bottom: 60px;
  transform: translateY(0); 
}

.golf-photo-item-two:hover .golf-content-title {
  opacity: 1;
  bottom: 60px;
  transform: translateY(0); 
}


.hotel-list{
  padding: 4.6875rem 0 ;
}

.hotel-photo-card{
  height: 31.25rem;
  overflow: hidden;
  width: 100%;
}

.hotel-photo-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info-card{
  display: grid;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  height: 31.25rem;
}


.img-htl{
  width: 100%;
  height: 18.75rem;
  overflow: hidden;
  margin-top: 1.875rem;
}

.img-htl img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info-list{
  margin: 2rem  0 0 0;
}

.info-text-htl{
   width: 100%;
  height: 18.75rem;
  overflow: hidden;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background-color: #f0f0f0;
  padding: 1.5rem;
  margin-top: 30px;
}

.info-text-htl p{
  font-size: .9rem;
}



 .hotels-page-banner {
  /*background-image: url("/assets/images/bannere-htls.jpg");*/
  background-size: cover;
  background-position: center;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
    position: relative;
  overflow: hidden;
  margin-top: 3.125rem;
}


.hotel-panner-info{
  background-color: white;
  padding: 1.25rem;
  text-align: center;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.hotel-panner-info .htl-date{
  font-size: 1.5rem;
  border-bottom: 1px solid #343a40;
  line-height: 2;
  margin: 0 0 1.25rem 0;
}

.hotel-panner-info p{
  font-size: 1.25rem;
}

.hotel-panner-info .price{
  font-weight: 700;
  font-size: 3rem;
}

.hotel-panner-info a{
  color: #333;
  border: 1px solid #343a40;
  padding: 1rem;
  border-radius: .1875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hotel-panner-info a:hover{
  background-color: #343a40;
  color: white;
}


.card-info-htls{
  width: 100%;
  height: 21.875rem;
  overflow: hidden;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  background-color: #f0f0f0;
  padding: 1.25rem;
}

.card-info-htls i{
  font-size: 3.5rem;
}


.card-info-htls label{
  font-size: 1.5625rem;
  font-weight: 600;
}

.tournament-title{
  text-align: center;
  padding: 1.5625rem 0;
}

.tournament-star ul{
  display: inline-block;
}

.tournament-star ul li{
  display: inline-block;
  font-size: 1.5625rem;
}

.tournament-title label{
  font-size: 1.5625rem;
}

.tournament-photo{
  width: 100%;
  height: 50rem;
  overflow: hidden;
}

.tournament-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-content{
  background-color: #f0f0f0;
  margin: 1.875rem  0 0 0;
}

.tournament-content .tournament-date{
  width: 100%;
  height: 4.6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #718096;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

.board-info-list{
  padding: 0 1.9rem;
}

.tournament-info{
  padding: 1.25rem .625rem;
}

.tournament-info .info-lbl{
  font-size: 1.5625rem;
  font-weight: 600;
}

.tournament-info span{
  font-size: 25px;
  margin: 0 0 0 .625rem;
}

.line-board{
  width: 100%;
  height: 1px;
  background-color: #343a40;
}

.board-list-info-content h3{
  font-size: 35px;
  font-weight: 600;  
}

.board-list-info-content{
  padding: 1.5625rem 0;
}

.board-list-info-content ul li{
  font-size: 1.25rem;
  font-weight: 500;
}

.board-list-info-content p{
  font-size: 1.25rem;
  font-weight: 500;
}

.board-price-content{
  text-align: center;
  padding: 3.125rem 0;
}


.board-price-content{
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.board-price-content .board-price-pp{
  font-size: 2.1875rem;
  font-weight: 600;
}

.board-price-content a{
  font-size: 1.7rem;
  margin-top: 1.5625rem;
}

.board-price-content i{
  font-size: 1.7rem;
}


.tournament-page-photo-content{
  width: 100%;
  height: 37.5rem;
  margin: 30px 0 0 0;
}

.tournament-page-photo-content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-page-htl{
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 1.25rem 0;
}

.tournament-page-htl i{
  font-size: 3rem;
}

.tournament-page-star ul{
  display: inline-block;
  margin: 0;
  padding: 0;
}
.tournament-page-star ul li{
  display: inline-block;
}

.tournament-page-star ul li i{
  font-size: 1.5rem;
  color: #718096;
}

.tournament-page-htl span, 
.tournament-page-htl label{
  font-size: 1.25rem;
}

.tournament-page-title{
  width: 100%;
  padding: .9375rem 0;
  text-align: center;
  font-weight: 600;
  background-color: #718096;
  color: white;
}

.tournament-page-content-htl{
  padding: 2.1875rem;
  background-color: #2d3749;
}

.tournament-page-line{
  width: 100%;
  height: .0625rem;
  background-color: #fff;
}


.tournament-page-content-htl p{
  color: white;
  font-size: 1.25rem;
}
.tournament-page-link{
  text-align: center;
  padding: 1.5625rem 0;
}

.tournament-page-link a{
  color: white;
  text-decoration: none;
  font-size: 1.5625rem;
  border-radius: 3px;
  border: 1px solid #ffff;
  padding: .9375rem 1.25rem;
}

.tournament-page-link a i{
      border: 1px solid #fff;
    border-radius: 50%;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-flex;
    text-align: center;
    padding: .125rem;
    position: relative;
    top: .125rem;
}


.contact-banner {
    background-image: url("/assets/images/contact-banner.jpg");
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
}

.contact-banner-phone{
    margin: 0 0 20px 0;
}
    .contact-banner-phone h2 {
        font-size: 45px;
        color: #333;
        margin: 0 0 5px 0;
        font-weight: 400;
    }


.contact-banner-phone a {
    color: #333;
    text-decoration: none;
    font-size: 35px;
}

.contact-banner-email h2 {
    font-size: 45px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 400;
}

.contact-banner-email a {
    color: #333;
    text-decoration: none;
    font-size: 25px;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 422px;
    background-color: #f0f0f0;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.loader {
    border: 6px solid #444;
    border-top: 6px solid #00e0ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.icon-photo{
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    align-content:center;
}

.icon-photo img {
    width: 75px !important;
    filter: brightness(0);
}

.carousel-mouse-hover img{
    height:90px;
}
.hotel-photos .carousel-inner, .hotel-photos .carousel-item {
    height: 100%;
}

.hotel-photos .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
