@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins&display=swap');

:root {
    --background-body: rgb(61, 116, 134);
  --basic-font-color: #fff;
  --top-nav-bg: rgb(42, 233, 36);
  --footer-bg-color:rgb(9, 56, 71);
  --background-strip-color:rgb(61, 116, 134);
  --WhatsApp-color: hsl(145, 63%, 50%);
  --WhatsApp-hover: rgb(18, 140, 63);
  --font-family: "Playwrite AU QLD", cursive;
  --grid-template-bg:#fff;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-body);
}

#WhatsApp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  font-size: 40px;
  color: var(--WhatsApp-color);
  font-weight: bold;
  cursor: pointer;
  z-index: 1550;
  transition: all 1s ease;
  animation: bounce 2s infinite;
}

#WhatsApp:hover {
  color: var(--WhatsApp-hover);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  #WhatsApp:hover {
    color: var(--WhatsApp-hover);
  }

  #WhatsApp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    font-size: 40px;
    color: rgb(6, 92, 3);
    font-weight: bold;
    cursor: pointer;
    z-index: 1550;
    transition: all 0.8s ease;
    animation: bounce 2s infinite;
  }
}

/* Contact Strip and Navbar */
    .bg-dark-blue {
      background-color: #1a1a2e;
    }

    a {
      text-decoration: none;
    }

    .contact-strip {
      background-color: var(--background-strip-color);
      color: white;
      font-size: 14px;
      padding: 10px 20px;
    }

    .contact-strip a {
      color: white;
      font-weight: bold;
      margin-right: 20px;
    }
    #desktop-logo
    {
      height: 100px;
      width: 200px;
      box-shadow: none;
      z-index: 999;
      margin: -10px 0 0 -60px;
    
    }
    .top-navbar {
      background-color: #fff;
      padding: 10px 20px;
    }

    .top-navbar .nav-link {
      color: #000;
      font-size: 25px;
    }
.top-navbar .nav-item .nav-link:hover
{
  color: red;
}
    .top-navbar .dropdown-menu {
      margin-top: 0;
    }

    @media (max-width: 767px) {
      .contact-strip,
      .top-navbar {
        display: none !important;
      }

      .mobile-logo-strip {
        display: flex !important;
      }

      .bottom-navbar {
        display: flex !important;
      }

      .mobile-submenu {
        display: none;
        background-color:var(--background-strip-color);
        position: fixed;
        bottom: 30px;
        width: 100%;
        z-index: 999;
        padding: 10px 0;
      }

      .mobile-submenu a {
        color: white;
        display: block;
        padding: 5px 20px;
        font-size: 16px;
        border-bottom: 1px solid #333;
      }
    }

    .mobile-logo-strip {
      background-color: #fff;
      padding: 10px;
      justify-content: center;
      align-items: center;
      display: none;
    }

    .mobile-logo-strip img {
      height: 100px;
      width: 200px;
      box-shadow: none;
    }

    .bottom-navbar {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: var(--background-strip-color);
      justify-content: space-around;
      align-items: center;
      padding: 8px 0;
      display: none;
      z-index: 1000;
    }

    .bottom-navbar a {
      color:var(--basic-font-color);
      font-size: 16px;
      text-align: center;
    }

    .bottom-navbar i {
      display: block;
      font-size: 20px;
    }

    .contact-panel {
      position: fixed;
      bottom: 60px;
      width: 100%;
      background-color: var(--background-strip-color);
      color: white;
      padding: 20px;
      display: none;
      z-index: 999;
    }

    .contact-panel a {
      color: white;
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .close-contact {
      position: absolute;
      top: 5px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }
  /* nav bar Ends Here */
/***extra-div part start***/
.header-extraServdiv{
  width: 100%;
  height: auto;
  text-align: center;
}
.header-extradiv {
  width: 100%;
  height: auto;
  margin-top: 50px;
  text-align: center;

}

.header-extradiv .Adv {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color:var(--basic-font-color);
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}

.header-extradiv .Adv::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--basic-font-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
@media (max-width:767px){
  .header-extradiv .Adv 
  {
  font-size: 1.8rem;

  }
}
.extra-div {

  background: var(--basic-font-color);
  border: medium none;
  padding: 20px !important;
  border-radius: 3px;
  margin: 40px 0;
  height: 300px;
  transition: 0.3s;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.extra-div h4
{
  color: var(--basic-font-color);
  text-shadow:5px 5px 15px #dbbc0c;
}

.extra-div:hover {
  box-shadow: 5px 5px 10px rgba(196, 4, 4, 0.6);
  transform: translateY(-20px);
  border: none;
}
.extra-div p
{
  background-color: #ffffff;
  color: #222222;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-top: 100px;


}
.book-now-btn
{
  margin:-10px 0 0 0 ;
  width: 80%;
}
#HighestBungeeJump
{
  background-image: url("Images/best\ bungee.jpg");
  background-size:100% 100%;

}


#HighestBungeeJump h4 {
  position: relative;
  z-index: 2;
}

#GiantSwing-1
{
background-image: url("Images/giant\ swing.webp");
  background-size:100% 100%;

}
#FreestyleBungeeJump
{
  background-image: url("Images/bungee\ best.webp");
  background-size:100% 100%;

}
#GiantSwing
{
  background-image: url("Images/giant\ swing2.webp");
  background-size:100% 100%;
}
#SkyRoller
{
  background-image: url("Images/sky\ roller.webp");
  background-size:100% 100%;

}
#Cycle
{
  background-image: url("Images/360\ deg.webp");
  background-size:100% 100%;

}
.header-extraServdiv
{
    margin-top: -40px;
  margin-bottom: 100px;
}
@media (max-width:768px) {
  .header-extradiv {
    margin-top: 50px;
  }
 
  .extra-div
  {
    margin-bottom: 0px;
  }
.header-extraServdiv
{
    margin-top: 0px;
  margin-bottom: 100px;
}
}

/***extra-div part end***/


/*** footer starts***/

.footer {
  width: 100%;
  height: auto;
  padding: 70px 0 20px 0;
  position: relative;
  margin-bottom: -150px;
     background-color: var(--footer-bg-color);


}

.footer p {
  color: #fff;
}

.footer li {
  list-style: none;

}

.footer li a:hover {
  text-decoration: underline;
}

.footer li a {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
}

.footer h3 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem !important;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
a.mtm
{
  cursor: pointer;
  text-decoration: underline;
}
.bottom-Serv {
  display: block;
}

.bottom-Serv .serv-info {
  line-height: 3;
 

}

.bottom-Serv .serv-info:hover {
  text-decoration: underline;
  color: #ccc;
}

.social-icons {
  display: block;
}

.social-icons .contact-info {
  line-height: 2;
  color: #fff;
}

.social-icons .contact-info:hover {
  text-decoration: underline;
    color: #f70d0d;

}
@media (max-width: 480px){
.No-copyright
{
  margin-bottom: 60px;
}
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 99;
  border: none;
  color: red;
  background: #fff;
  padding: 10px;
  border-radius: 10px;

}

#myBtn:hover {
  background: #e24c4c;
}

@media (max-width: 480px) {
  #myBtn {
    display: none;
    position: fixed;
    bottom: 140px;
    right: 23px;
    z-index: 1999;
    border: none;
    color: #154360;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: 1s ease;
  }

  #myBtn:hover {
    background: #606060;
    color: #fff;
  }

}

/*** footer ends***/