@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

.rajdhani-text,
h1 {
  font-family: "Rajdhani", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.raleway-text,
p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

.cy-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("../images/CYC-BANNER_1600X798.webp");
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

.nav-cyc-logo {
  width: 140px;
  height: 30px;
}
.nav-contact-container {
  ul {
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;

    li {
      a {
        font-family: "Rajdhani";
        font-weight: 600;
        text-decoration: none;
        color: #ffffff;
        font-size: 12px;
        margin-right: 10px;
      }
    }
  }
}
@media (min-width: 768px) {
  .nav-cyc-logo {
    width: 200px;
    height: 45px;
  }
  .nav-contact-container {
    ul {
      flex-direction: row;
      li {
        margin-left: 14px;
        a {
          font-size: 18px;
        }
      }
    }
  }
}

.cyc-btn-color {
  background-color: #daa548 !important;
  border: #daa548 !important;
}
/*Book Now btn Hovering Effect*/
.cyc-btn-color:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #daa548;
}
@media (min-width:768px){
.yacht-card:hover {
  transform: scale(1.05);
  transition-duration: 400ms;
  /*transition: all 400ms ease-out;*/
  transition-timing-function: ease-out;

  box-shadow: 0 0 100px #daa548 !important;
}    
}

.private-yacht-charter-heading {
  font-size: 30px;
}
.private-yacht-charter-description {
  font-size: 16px;
}

@media (min-width: 768px) {
  .private-yacht-charter-heading {
    font-size: 40px;
  }
  .private-yacht-charter-description {
    font-size: 20px;
  }
}

.reserve-your-form-container {
  background: linear-gradient(#f5e6cb 25%, #fff8eb 50%, #ffffff 100%);
}

/*Form Section*/
/* Chat on Whatsapp*/
.bounceBtn {
  animation: pulse 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.footer-section-contact-us {
  font-size: 16px;
}

/* Carousel */
.home-demo .item {
}
.home-demo h2 {
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  margin: 18px;
  font-style: italic;
  font-weight: 300;
}

/* marquee div container */
/* for continuos........*/
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 80px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
