/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #353535;
}

a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}
p {
    line-height: 2;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #353535;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #000;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (min-width: 769px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
}
#header.header-scrolled {
    padding: 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo-wrapper h1 {
    display: none;
}
#header .logo-wrapper img {
    margin-right: 5px;
    height: 48px;
    width: auto;
}
#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
#header .logo a {
    color: #353535;
    font-size: 1rem;
    margin-right: .5rem;
    vertical-align: middle;
    position: relative;
    top: 18px;
}
#header .logo a span {
    display: block;
}
#header .logo a:hover {
    color: #353535;
    text-decoration: none;
}
#header .logo a span:last-child {
    color: #00ff00;
    margin-left: 3px;
}
#header .logo img {
    max-height: 40px;
}
@media (min-width: 351px) {
    #header .logo-wrapper h1  {
        display: block;
    }
}
@media (min-width: 440px) {
    #header .logo a span {
        display: inline;
    }
    #header .logo a {
      top: 0;
    }
}
@media (min-width: 992px) {
    #header .logo a {
        position: relative;
        top: 18px;
    }
    #header .logo a span {
        display: block;
    }
}
@media (min-width: 1200px) {
    #header .logo-wrapper img {
        height: auto;
    }
    #header .logo a span {
        display: inline;
    }
    #header .logo a {
        font-size: 1.2rem;
        top: 0;
    }
}
@media (min-width: 1400px) {
    #header .logo a {
        font-size: 1.4rem;
    }
}
/*--------------------------------------------------------------
# Boon Now Button
--------------------------------------------------------------*/
.get-started-btn {
    margin: 0 10px 0 0;
    background: #353535;
    color: #fff;
    border-radius: 4px;
    padding: 6px 10px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: 0px;
}
.get-started-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
}
@media (min-width: 992px) {
    .get-started-btn {
        margin-left: 30px;
        padding: 8px 25px;
    }
}
@media (min-width: 1001px) {
    .get-started-btn {
        top: -3px;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 25px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #353535;
    white-space: nowrap;
    transition: 0.1s;
}
.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #000;
    text-decoration: none;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown .dropdown ul {
    left: -90%;
}
.navbar .dropdown .dropdown:hover > ul {
    left: -100%;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #000;
    text-decoration: none;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
@media (min-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: 0;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: 0;
    }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #353535;
    font-size: 28px;
    cursor: pointer;
    display: block;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle {
    position: relative;
    top: -3px;
}
.mobile-nav-toggle.bi-x {
    color: #fff;
}
.navbar ul {
    display: none;
}
@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
    .navbar ul {
        display: flex;
    }
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #353535;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #00ff00;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}
.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #00ff00;
}
.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}
.section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h3 {
    font-size: 1.4rem;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2::after,
.section-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 3px;
    background: #00ff00;
    bottom: 0;
    left: calc(50% - 50px);
}
.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 150px 0;
    margin: 80px 0 40px;
    color: #fff;
}
.section-bg:before {
    content: "";
    background: #353535;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
}
@media (min-width: 769px) {
    .section-title h2 {
      font-size: 2rem;
    }
    .section-title h3 {
      font-size: 1.6rem;
    }
    .section-bg {
      padding: 200px 0;
    }
}
@media (min-width: 993px) {
    .section-title h2 {
      font-size: 2.5rem;
    }
    .section-title h3 {
      font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #2b2b2b;
    min-height: 40px;
    margin-top: 60px;
    color: #fff;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol a {
    color: #aaaaaa;
}
.breadcrumbs ol a:hover {
    color: #fff;
    transition: 0.3s;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #00ff00;
    content: "/";
}
@media (min-width: 350px) {
    .breadcrumbs {
      margin-top: 82px;
    }
}
@media (min-width: 440px) {
    .breadcrumbs {
      margin-top: 60px;
    }
}
@media (min-width: 992px) {
    .breadcrumbs {
      margin-top: 82px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #353535;
  border-top: 4px #111 solid;
}
#footer .footer-top {
  padding: 75px 0 40px 0;
  background: #2e2e2e;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #00ff00;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 14px;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #00ff00;
  bottom: 0;
  left: 0;
}
#footer .footer-top .footer {
    padding: 0 1rem;
}
#footer .footer-links ul:first-child {
    margin-right: 1.5rem!important;
}
#footer .footer-links,
#footer .footer-social {
    margin-bottom: 2rem;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #aaa;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #353535;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #00ff00;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
    font-size: .7rem;
}
@media (min-width: 360px) {
    #footer .footer-top .footer-links ul a {
        font-size: 16px;
    }
    #footer .footer-top h4 {
        font-size: 18px;
    }
    #footer .footer-top .footer-contact p {
        font-size: 16px;
    }
    #footer .footer-top .footer {
        margin-left: 1rem;
        display: flex;
        flex-wrap: wrap;
    }
    #footer .footer-top .footer-links {
        width: 100%;
    }
    #footer .footer-top .footer-contact {
        margin-right: 3rem;
    }
}
@media (min-width: 801px) {
    #footer .footer-top .footer {
        max-width: 1000px;
        margin: 0 auto;
    }
    #footer .footer-top .footer-links {
        width: 45%;
    }
    #footer .footer-top .footer-contact {
        width: 25%;
    }
    #footer .footer-top .footer-social {
        width: 30%;
    }
    #footer .footer-top .footer {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/**
* Hero section
*/
#hero {
    width: 100%;
    height: 120vh;
    background: url("../img/hero-bg.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 82px;
}
#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#hero h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1rem;
}
#hero h2 {
    color: #fff;
    font-size: 18px;
    margin: 0 auto 2rem;
}
#hero h1, #hero h2 {
    max-width: 360px;
}
#hero .hero-btns {
    display: flex;
    align-items: center;
    flex-direction: column;
}
#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #111;
    border: 2px solid #111;
}
#hero .btn-get-started:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#hero .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}
#hero .btn-learn-more:hover {
    transform: scale(1.1);
    text-decoration: none;
}
@media (min-width: 400px) {
    #hero .hero-btns {
      flex-direction: row;
      justify-content: center;
    }
    #hero .btn-get-started {
        margin-right: 1rem;
        margin-bottom: 0;
    }
}
@media (min-width: 450px) {
    #hero h1 {
        font-size: 36px;
        max-width: 450px;
    }
    #hero h2 {
        font-size: 22px;
        max-width: 400px;
    }
    #hero .btn-get-started, #hero .btn-learn-more {
        font-size: 1.1rem;
    }
}
@media (min-width: 760px) {
    #hero h1 {
        font-size: 52px;
        max-width: 650px;
        margin-bottom: 2rem;
    }
    #hero h2 {
        font-size: 26px;
        max-width: 400px;
        margin-bottom: 3rem;
    }
    #hero .btn-get-started {
        font-size: 1.2rem;
        margin-right: 2rem;
    }
    #hero .btn-learn-more {
        font-size: 1.2rem;
    }
}
@media (min-width: 1000px) {
    #hero h1 {
        font-size: 64px;
        max-width: 750px;
    }
    #hero h2 {
        font-size: 28px;
        max-width: 500px;
    }
    #hero .btn-get-started {
        font-size: 1.4rem;
    }
    #hero .btn-learn-more {
        font-size: 1.4rem;
    }
}
@media (min-width: 1200px) {
    #hero h1 {
        font-size: 78px;
        max-width: 850px;
    }
    #hero h2 {
        font-size: 32px;
        max-width: 500px;
    }
}
@media (min-height: 500px) {
  #hero {
    height: 100vh;
  }
}
/**
* Occasions and pricing section
*/
#occasions {
    margin-top: -30px;
    margin-bottom: -120px;
    padding-left: 1rem;
    padding-right: 1rem;
}
#occasions .occasions h2 {
    margin: 3rem 0 2rem ;
}
#occasions .occasions p:first-of-type {
    margin-bottom: 0;
}
#occasions .occasion-btns {
  display: block!important;
  margin: 1rem auto 0;
  text-align: center;
}
#occasions .occasion-btns a {
    display: inline-block;
    margin: 1rem;
}
#occasions .btn-see-occasions {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 16px;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    color: #fff;
    background: #353535;
    border: 2px solid #111;
  }
#occasions .btn-see-occasions:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#occasions .btn-view-prices {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    color: #00ff00;
    background: transparent;
    border: 2px solid #00ff00;
}
#occasions .btn-view-prices:hover {
  transform: scale(1.1);
  text-decoration: none;
}
@media (min-width: 769px) {
    #occasions {
        margin-bottom: -80px;
    }
    #occasions .occasions p {
        font-size: 20px;
    }
}
/**
* About Archery Assault section
*/
#about .aa-info {
    margin-bottom: 2rem;
}
#about .aa-video video {
    width: 100%;
    height: auto;
}
#about .btn-book-game-now {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 3rem auto;
    max-width: 260px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 25px;
    color: #353535;
    background: #fff;
}
#about .btn-book-game-now:hover {
    transform: scale(1.1);
    text-decoration: none;
}
@media (min-width: 1200px) {
    #about .aa-what {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }
    #about .aa-info {
        margin: 0 2rem 0 0;
    }
}
/**
* Game Types section
*/
#games p {
    margin-bottom: 2rem;
}
#games .games-item {
    margin-bottom: 30px;
}
#games #games-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}
#games #games-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
#games #games-flters li:hover, #games #games-flters li.filter-active {
    color: #fff;
    background: #00ff00;
    text-decoration: none;
}
#games #games-flters li:last-child {
    margin-right: 0;
}
#games .games-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(17, 17, 17, 0.6);
}
#games .games-wrap::before {
    content: "";
    background: rgba(17, 17, 17, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
#games .games-wrap img {
    transition: all ease-in-out 0.3s;
}
#games .games-wrap .games-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}
#games .games-wrap .games-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}
#games .games-wrap .games-info h4 a {
    color: #fff;
}
#games .games-wrap .games-info h4 a:hover {
    opacity: .7;
    text-decoration: none;
}
#games .games-wrap .games-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}
#games .games-wrap .games-links {
    text-align: center;
    z-index: 4;
}
#games .games-wrap .games-links a {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}
#games .games-wrap .games-links a:hover {
    color: #fff;
    text-decoration: none;
}
#games .games-wrap:hover::before {
    opacity: 1;
}
#games .games-wrap:hover img {
    transform: scale(1.2);
}
#games .games-wrap:hover .games-info {
    opacity: 1;
}
#games .games-details {
    padding-top: 40px;
}
#games .games-details .games-details-slider img {
    width: 100%;
}
#games .games-details .games-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
#games .games-details .games-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #00ff00;
}
#games .games-details .games-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00ff00;
}
#games .games-details .games-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}
#games .games-details .games-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
#games .games-details .games-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
#games .games-details .games-info ul li + li {
    margin-top: 10px;
}
#games .games-details .games-description {
    padding-top: 30px;
}
#games .games-details .games-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
#games .games-details .games-description p {
    padding: 0;
}
/**
* Testimonials Section
*/
#testimonials .testimonials-carousel, #testimonials .testimonials-slider {
    overflow: hidden;
}
#testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #444;
    border-radius: 15px;
}
#testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 4px solid #dbdbdb;
    float: left;
    margin: 0 10px 0 0;
}
#testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 5px 0;
    color: #dbdbdb;
}
#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}
#testimonials .testimonial-item .quote-icon-left, #testimonials .testimonial-item .quote-icon-right {
    color: #fceaea;
    font-size: 26px;
}
#testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
#testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}
#testimonials .testimonial-item p {
    font-style: italic;
    margin: 60px auto 15px auto;
}
#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #00ff00;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00ff00;
}
#testimonials .testimonials-cta {
    margin: 2rem 0 0;
}
#testimonials .testimonials-cta a {
    color: #00ff00;
}
#testimonials .testimonials-cta a:hover {
    opacity: .7;
}
#testimonials .btn-book-now {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 160px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    color: #353535;
    background: #fff;
}
#testimonials .btn-book-now:hover {
    transform: scale(1.1);
    text-decoration: none;
}
/**
* Sponsors Section
*/
#sponsors .mystream {
    display: block;
    margin: 0 auto;
}
#sponsors .sponsor-cta {
    margin-top: 2rem;
}
#sponsors .sponsor-cta a {
    color: #00ff00;
}
#sponsors .sponsor-cta a:hover {
    opacity: .7;
    text-decoration: underline;
}
#sponsors .btn-get-in-touch {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-align: center;
    display: block;
    margin: 0 auto 4rem;
    max-width: 180px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #353535;
  }
#sponsors .btn-get-in-touch:hover {
    transform: scale(1.1);
    text-decoration: none;
}
/*--------------------------------------------------------------
# The Experience Page
--------------------------------------------------------------*/
#experience {
    padding-bottom: 0;
}
#experience .experience-wrapper {
    padding-top: 20px;
    padding-bottom: 0;
}
#experience .experience-info {
    max-width: 500px;
    border-radius: 8px;
    border: 2px solid #353535;
    margin: 0 auto 4rem;
}
#experience .ei-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
}
#experience .steps {
    padding: 2rem 1rem;
}
#experience .game-types-more {
    border: 2px solid #353535;
    border-radius: 8px;
    display: none;
}
#experience .game-types-more-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.4rem;
}
#experience .game-types-more-title h4 {
    margin-bottom: 0;
}
#experience .game-types-more li {
    margin: .5rem 0;
    list-style-type: none;
}
#experience .experience-content h4 {
    margin-top: 2rem;
}
#experience .experience-content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 2rem auto;
}
#experience .btn-experience-book, .experience-lower .btn-experience-book {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 40px auto 0;
    max-width: 300px;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #353535;
    color: #fff;
}
#experience .experience-text .btn-experience-book:hover, .experience-lower .btn-experience-book:hover {
    transform: scale(1.1);
    text-decoration: none;
}
.experience-lower .games {
    margin-top: -30px;
}
.experience-lower .testimonial-item p {
    color: #fff;
}
@media (min-width: 1000px) {
    #experience .experience-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #experience .experience-left {
        margin-right: 2rem;
        min-width: 250px;
    }
    #experience .game-types-more {
        display: block;
    }
    #experience .experience-info {
        margin-bottom: 2rem;
    }
    #experience .btn-experience-book, .experience-lower .btn-experience-book {
        font-size: 22px;
    }
    #experience .experience-title {
        padding-bottom: 60px;
    }
    #experience {
        padding-bottom: 80px;
    }
}
@media (min-width: 1200px) {
    #experience .experience-left {
        min-width: 350px;
        margin-right: 3rem;
    }
}
/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
#about-pg {
    padding-bottom: 6rem;
}
#about-pg .about-pg-wrapper {
    padding-top: 20px;
    padding-bottom: 0;
}
#about-pg .about-pg-info {
    max-width: 500px;
    border-radius: 8px;
    border: 2px solid #353535;
    margin: 0 auto 4rem;
}
#about-pg .about-pg-info-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
}
#about-pg .steps {
    padding: 2rem 1rem;
}
#about-pg .game-types-more {
    border: 2px solid #353535;
    border-radius: 8px;
    display: none;
}
#about-pg .game-types-more-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.4rem;
}
#about-pg .game-types-more-title h4 {
    margin-bottom: 0;
}
#about-pg .game-types-more li {
    margin: .5rem 0;
    list-style-type: none;
}
#about-pg .about-pg-content h4:not(:first-child) {
    margin-top: 2rem;
}
#about-pg .about-pg-content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 2rem auto 0;
}
#about-pg .about-pg-content span {
    margin-bottom: 2rem;
    font-size: 14px;
}
#about-pg .btn-about-pg-book,
#faq .btn-about-pg {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 40px auto 0;
    max-width: 300px;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #353535;
    color: #fff;
}
#about-pg  .about-pg-text .btn-about-pg-book:hover,
#faq .btn-about-pg:hover {
    transform: scale(1.1);
    text-decoration: none;
}
@media (min-width: 1000px) {
    #about-pg .about-pg-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #about-pg .about-pg-left {
        margin-right: 2rem;
        min-width: 250px;
    }
    #about-pg .game-types-more {
        display: block;
    }
    #about-pg .about-pg-info {
        margin-bottom: 2rem;
    }
    #about-pg .btn-about-pg-book, .about-pg-lower .btn-about-pg-book {
        font-size: 22px;
    }
    #about-pg .about-pg-title {
        padding-bottom: 60px;
    }
    #about-pg {
        padding-bottom: 80px;
    }
}
@media (min-width: 1200px) {
    #about-pg .about-pg-left {
        min-width: 350px;
        margin-right: 3rem;
    }
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
#events {
    padding-bottom: 6rem;
}
#events .events-wrapper {
    padding-top: 20px;
    padding-bottom: 0;
}
#events .events-info {
    max-width: 500px;
    border-radius: 8px;
    border: 2px solid #353535;
    margin: 0 auto 4rem;
}
#events .events-info-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
}
#events .steps {
    padding: 2rem 1rem;
}
#events .game-types-more {
    border: 2px solid #353535;
    border-radius: 8px;
    display: none;
}
#events .game-types-more-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.4rem;
}
#events .game-types-more-title h4 {
    margin-bottom: 0;
}
#events .game-types-more li {
    margin: .5rem 0;
    list-style-type: none;
}
#events .events-content h4:not(:first-child) {
    margin-top: 2rem;
}
#events .events-content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 2rem auto 0;
}
#events .events-content span {
    margin-bottom: 2rem;
    font-size: 14px;
}
#events .btn-events-book {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 40px auto 0;
    max-width: 300px;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #353535;
    color: #fff;
}
#events .events-text .btn-events-book:hover {
    transform: scale(1.1);
    text-decoration: none;
}
@media (min-width: 1000px) {
    #events .events-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #events .events-left {
        margin-right: 2rem;
        min-width: 250px;
    }
    #events .game-types-more {
        display: block;
    }
    #events .events-info {
        margin-bottom: 2rem;
    }
    #events .btn-events-book, .events-lower .btn-events-book {
        font-size: 22px;
    }
    #events .events-title {
        padding-bottom: 60px;
    }
    #events {
        padding-bottom: 80px;
    }
}
@media (min-width: 1200px) {
    #events .events-left {
        min-width: 350px;
        margin-right: 3rem;
    }
}

/*--------------------------------------------------------------
# Game Type Page
--------------------------------------------------------------*/
#game-types {
    padding-top: 0;
    padding-bottom: 0;
}
#game-types .section-title h2 {
    margin-bottom: 2rem;
}
#game-types .game-types-info {
    border: 2px solid #353535;
    border-radius: 8px;
    padding-bottom: 2rem;
    margin: 0 auto 2rem;
    width: 280px;
}
#game-types .game-types-info h5 {
    text-transform: uppercase;
    font-weight: 800;
}
#game-types .game-types-info h5, #game-types .game-types-info p {
    margin: .5rem 2rem;
}
#game-types .intensity {
    background-color: #353535;
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
#game-types .intensity img {
    margin: 1rem auto;
    display: block;
}
#game-types .game-types-more {
    border: 2px solid #353535;
    border-radius: 8px;
    width: 280px;
    display: none;
}
#game-types .game-types-more-title {
    background-color: #353535;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.4rem;
}
#game-types .game-types-more-title h4 {
    margin-bottom: 0;
}
#game-types .game-types-more li {
    margin: .5rem 0;
    list-style-type: none;
}
#game-types .game-types-text img {
    display: block;
    margin: 2rem auto;
    width: 100%;
    height: auto;
}
#game-types .game-types-text ul {
    margin: 1.2rem 0 2rem;
}
#game-types .btn-game-types-book, .game-types-lower .btn-game-types-book {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 40px auto 0;
    max-width: 300px;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #353535;
    color: #fff;
}
#game-types .game-types-text .btn-game-types-book:hover, .game-types-lower .btn-game-types-book:hover {
    transform: scale(1.1);
    text-decoration: none;
}
.game-types-lower .games {
    margin-top: -30px;
}
.game-types-lower .testimonial-item p {
    color: #fff;
}
@media (min-width: 768px) {
    #game-types .game-types-details {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #game-types .game-types-side {
        margin-right: 2rem;
        max-width: 280px;
    }
    #game-types .game-types-more {
        display: block;
    }
    #game-types .section-title h2 {
        margin: 2rem 0 3rem;
    }
}
/*--------------------------------------------------------------
# Occasions Page
--------------------------------------------------------------*/
#occasions-pg {
    margin-bottom: 2rem;
    padding-top: 0;
}
#occasions-pg .occasions-title {
    margin: 60px 0 -40px;
    padding: 0 1rem;
}
#occasions-pg .section-title h2 {
    margin-bottom: 2rem;
}
#occasions-pg .occasion-title h2 {
    margin-bottom: 1rem;
}
#occasions-pg .occasion-title h2::after {
    width: 50px;
    left: 0;
}
#occasions-pg .section-title p {
    max-width: 600px;
    margin: 0 auto 2rem;
}
#occasions-pg .occasions-inner {
    margin-bottom: 3rem;
}
#occasions-pg .schools {
    padding-top: 0;
}
#occasions-pg .occasions-outer img {
    width: 100%;
    height: auto;
}
#occasions-pg .btn-occasions {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 30px;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 260px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 40px;
}
#occasions-pg .btn-occasions:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#occasions-pg .btn-occasions-wb {
    background: #353535;
    color: #fff;
}
#occasions-pg .btn-occasions-db {
    color: #353535;
    background: #fff;
    max-width: 320px;
}
@media (min-width: 1200px) {
    #occasions-pg .occasions-outer {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #occasions-pg .occasions-inner {
        margin-right: 2rem;
    }
    #occasions-pg .btn-occasions {
        margin-bottom: 0;
    }
    #occasions-pg .occasions-outer img {
        width: 45%;
    }
    #occasions-pg .btn-occasions {
        font-size: 22px;
    }
    #occasions-pg .schools {
        padding-top: 4rem;
    }
    #occasions-pg .section-title p {
        margin-bottom: 4rem;
    }
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
#contact {
    margin-bottom: 5rem;
    padding-top: 0;
}
#contact .section-title h2 {
    margin-bottom: 4rem;
}
#contact .section-title p {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 4rem;
}
#contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 47px 5px 49px 5px;
  border-radius: 4px;
  min-height: 240px;
}
#contact .info-box i {
  font-size: 32px;
  color: #e03a3c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}
#contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
#contact .info-box p {
  padding: 0;
  line-height: 24px;
  margin-bottom: 0;
  font-size: 14px;
}
#contact .php-email-form,
.post-submit {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
  min-height: 503px;
  margin-top: 24px;
}
.post-submit.hidden {
    display: none;
}
.post-submit {
    display: block;
    text-align: center;
    min-height: auto;
}
#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contact .php-email-form .form-group {
  margin-bottom: 25px;
}
#contact .php-email-form input, #contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
#contact .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #111111;
}
#contact .php-email-form input {
  padding: 10px 15px;
}
#contact .php-email-form textarea {
  padding: 12px 15px;
}
#contact .g-recaptcha {
    max-width: 100px;
}
#contact .php-email-form button[type=submit] {
  background: #e03a3c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
#contact .php-email-form button[type=submit]:hover {
  background: #e35052;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
    #contact .send-msg {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
@media (min-width: 1000px) {
    #contact .php-email-form {
        margin-top: 0;
    }
    #contact .send-msg {
        display: block;
    }
}
@media (min-width: 1400px) {
    #contact .send-msg {
        display: flex;
    }
}

/*--------------------------------------------------------------
# Leaderboard Page
--------------------------------------------------------------*/
#leaderboard {
    padding-top: 0;
    margin-bottom: 2rem;
}
#leaderboard .section-title {
}
#leaderboard .section-title h2 {
    margin-bottom: 2rem;
}
#leaderboard .section-title p {
    max-width: 400px;
    margin: 0 auto 2rem;
}
#leaderboard .btn-book-find-out {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 24px;
    text-align: center;
    display: inline-block;
    margin: 0 auto 4rem;
    border-radius: 8px;
    transition: 0.5s;
    color: #fff;
    background: #353535;
 }
#leaderboard .btn-book-find-out:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#leaderboard h3 {
    margin-bottom: 2rem;
}
#leaderboard .tdm-outer {
    background-color: #353535;
    border-radius: 8px;
    padding: 1rem;
}
#leaderboard .tdm-inner {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
}
#leaderboard .tdm {
    margin-bottom: 4rem;
}
#leaderboard th, #leaderboard td {
    padding: 5px;
    font-size: 14px;
    vertical-align: middle;
}
#leaderboard .gold, #leaderboard .silver, #leaderboard .bronze  {
    position:relative;
}
#leaderboard .gold::before {
    content: "🥇";
    position:absolute;
}
#leaderboard .silver::before {
    content: "🥈";
    position:absolute;
}
#leaderboard .bronze::before {
    content: "🥉";
    position:absolute;
}
#leaderboard .gold::before, #leaderboard .silver::before, #leaderboard .bronze::before {
    position:absolute;
    left: 10px;
}
@media (min-width: 400px) {
    #leaderboard th, #leaderboard td {
        padding: 10px;
        font-size: 16px;
    }
}
@media (min-width: 768px) {
    #leaderboard th, #leaderboard td {
        padding: 20px;
        font-size: 18px;
    }
    #leaderboard .gold::before, #leaderboard .silver::before, #leaderboard .bronze::before {
        position:absolute;
        left: 50px;
    }
}
@media (min-width: 1000px) {
    #leaderboard .lb-tables {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }
    #leaderboard .tdm {
        margin-bottom: 0;
        margin-right: 2rem;
    }
    #leaderboard .gold::before, #leaderboard .silver::before, #leaderboard .bronze::before {
        position:absolute;
        left: 30px;
    }
    #leaderboard .btn-book-find-out {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Bookings Page
--------------------------------------------------------------*/
#bookings {
    padding: 0;
    margin: 0;
}
#bookings .section-title {
    padding-bottom: 0;
}
#bookings .section-title p {
    max-width: 800px;
    margin: 0 auto;
}
#bookings .bookings-title h3::after {
    width: 30px;
    left: 0;
}
#bookings .booking-form {
    padding-top: 0 !important;
}
#bookings .booking-form p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}
#bookings .bf-outer {
    background-color: #f1f1f1;
    padding: 2rem .5rem;
    border-radius: 8px;
    margin-bottom: 4rem;
    margin-top: 1rem;
}
#bookings .details-help {
    display: none;
}
#bookings .details-help h3 {
    margin-bottom: 2rem;
}
#bookings .details-help p {
    font-size: 16px;
    line-height: 1.8;
}
#bookings .details-form {
    margin-top: 0;
}
#bookings .form-header {
    margin-bottom: 2rem;
}
#bookings .main-label {
    font-size: 16px;
}
#bookings .main-label-2 {
    display: none;
}
/* Full screen packages accordian */
#bookings .packages-list {
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
}
#bookings .packages-list li {
  margin-bottom: 10px;
  padding: 0 0 0 10px;
  list-style-type: none;
}
#bookings .packages-list a {
  display: block;
  position: relative;
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  line-height: 24px;
  padding-right: 25px;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#bookings .packages-list a:hover {
  text-decoration: none;
}
#bookings .packages-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
#bookings .packages-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #353535;
  font-size: 14px;
}
#bookings .packages-list .icon-show {
  display: none;
}
#bookings .packages-list a.collapsed {
  color: #353535;
}
#bookings .packages-list a.collapsed:hover {
  color: #000;
  text-decoration: none;
}
#bookings .packages-list a.collapsed .icon-show {
  display: inline-block;
}
#bookings .packages-list a.collapsed .icon-close {
  display: none;
}
/* Full screen packages list lists  */
#bookings .packages-list ul li {
  margin-bottom: 10px;
  padding: 0;
  list-style-type: disc;
}
/* Mobile screen i lists  */
#bookings .booking-help-i {
  list-style: none;
  margin-top: 0;
  padding: 0;
}
#bookings .booking-help-i ul {
  padding: 0;
  margin: 0 !important;
}
#bookings .booking-help-i ul.booking-help-i-packages {
  background: rgba(0,0,0,0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 12px;
}
#bookings .packages-list-i li {
  margin-bottom: 10px;
  padding: 0 0 10px 10px;
  list-style-type: none;
}
#bookings .booking-help-i a {
    background-color: #87a4a9;
    color: #fff !important;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1px 6px 0;
    border-radius: 8px;
    display: block;
    position: relative;
    font-family: var(--bs-font-sans-serif);
    font-size: .9rem;
    padding-right: 25px;
    font-weight: bold;
    line-height: 24px;
    cursor: pointer;
}
#bookings .booking-help-i a:hover {
  text-decoration: none;
}
#bookings .booking-help-i i {
  font-size: 24px;
  position: absolute;
  right: 0;
}
#bookings .booking-help-i p {
  padding: 10px 0 0 0px;
  color: #555555;
  font-size: 14px;
}
#bookings .booking-help-i .icon-show {
  display: none;
}
#bookings .booking-help-i a.collapsed {
  color: #353535;
}
#bookings .booking-help-i a.collapsed:hover {
  color: #000;
  text-decoration: none;
}
#bookings .booking-help-i a.collapsed .icon-show {
  display: inline-block;
}
#bookings .booking-help-i a.collapsed .icon-close {
  display: none;
}
/* Mobile screen packages list */
#bookings .booking-help-i-packages a {
    color: #353535 !important;
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    margin: 0 0 10px 5px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}
#bookings .booking-help-i-packages li {
    margin-bottom: 20px;
    list-style-type: none;
    font-size: 14px;
}
/* Mobile screen packages list lists */
#bookings .booking-help-i-packages ul li {
    margin-bottom: 10px;
    padding: 0 0 0 0;
    list-style-type: disc;
    font-size: 14px;
    margin-left: 20px;
    list-style-position: outside;
}
#bookings form label {
    font-size: 14px;
}
#bookings form select {
    height: 40px;
    width: 100%;
    border-radius: 8px;
    padding-left: 5px;
    font-size: 1rem;
    border:1px solid rgba(0,0,0,0.3);
    background-color: #fff;
}
#bookings form input {
    width: 48px;
    height: 40px;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    margin-right: 1rem;
    border: 1px solid rgba(0,0,0,0.3);
}
#bookings .name input,
#bookings .email input,
#bookings .telephone input {
    padding-left: 5px;
}
#bookings form input[type = "checkbox"] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.3);
}
#bookings form input[type = "text"],
#bookings form input[type = "email"] {
    width: 100%;
    text-align: left;
    margin-right: 0;
}
#bookings .team-photo-a5,
#bookings .name,
#bookings .name input:first-child,
#bookings .email,
#bookings .telephone {
    margin-bottom: 1rem;
}
#bookings .booking-type,
#bookings .packages,
#bookings .certificates,
#bookings .players-wrapper,
#bookings .hours-wrapper,
#bookings .booking-cost-wrapper,
#bookings .calendar,
#bookings .t-shirts-wrapper,
#bookings .event-video-wrapper,
#bookings .photos,
#bookings .trophy,
#bookings .add-ons-cost-wrapper,
#bookings .name-wrapper,
#bookings .email-wrapper,
#bookings .telephone-wrapper {
    margin-bottom: 2rem;
}
#bookings .booking-error-message {
    font-size: 14px;
    display: block;
    color: #856404;
    background-color: #fff3cd;
    border: 2px solid #ffeeba;
    border-radius: 8px;
    padding: .5rem;
}
#bookings .invalid-email,
#bookings .invalid-tel {
    padding-left: 25px;
}
#bookings #help2:first-child {
    margin-bottom: 2rem !important;
}
#bookings .hidden {
    display: none;
}
#bookings .form-error {
    border: 2px solid red;
}
#bookings .total-cost-wrapper {
    margin-bottom: 1rem;
}
#bookings .btn-next {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-align: center;
    display: block;
    margin: 2rem 0 1rem;
    width: 100%;
    border-radius: 8px;
    transition: 0.5s;
    color: #fff;
    background: #353535;
  }
#bookings .btn-next:hover {
    opacity: .7;
    text-decoration: none;
}
#bookings .btn-pay-now {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-align: center;
    display: block;
    margin: 2rem 0 1rem;
    width: 100%;
    border-radius: 8px;
    transition: 0.5s;
    color: #fff;
    background: #353535;
  }
#bookings .btn-pay-now:hover {
    opacity: .7;
    text-decoration: none;
}
#bookings .name input:first-child {
    margin-right: 1rem;
}
#bookings .calendar, #bookings .stripe {
    width: 100%;
    /*height: 400px;*/
    background-color: #fff;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 2rem;
    text-align: center;
}
#bookings .calendar {
    padding: 0;
    height: auto;
    background: transparent;
    border-radius: 0;
}
#bookings .details-help .fw-bold {
    margin-bottom: 0 !important;
}
#bookings .total-cost-wrapper > span,
#bookings .add-ons-cost-wrapper > span,
#bookings .booking-cost-wrapper > span {
    display: block;
    font-size: 16px;
}
#bookings .booking-cost-title {
    font-size: 18px !important;
}
/* Calendar */
#bookings #calendar {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	width: 100%;
	margin: 0 auto;
	height: 697px;
	overflow: hidden;
	position: relative;
}
#bookings #calendar .header {
	height: 50px;
	width: 100%;
	background: rgba(66, 66, 66, 1);
	text-align: center;
	position:relative;
	z-index: 100;
}
#bookings #calendar .header h1 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 50px;
	font-weight: 100;
	letter-spacing: 1px;
	color: white;
}
#bookings #calendar .left, #bookings #calendar .right {
	position: absolute;
	width: 0px;
	height: 0px;
	border-style: solid;
	top: 50%;
	margin-top: -7.5px;
	cursor: pointer;
}
#bookings #calendar .left {
	border-width: 7.5px 10px 7.5px 0;
	border-color: transparent rgba(160, 159, 160, 1) transparent transparent;
	left: 20px;
}
#bookings #calendar .right {
	border-width: 7.5px 0 7.5px 10px;
	border-color: transparent transparent transparent rgba(160, 159, 160, 1);
	right: 20px;
}
#bookings #calendar .month {
	/*overflow: hidden;*/
	opacity: 0;
}
#bookings #calendar .month.new {
	-webkit-animation: fadeIn 1s ease-out;
	opacity: 1;
}
#bookings #calendar .month.in.next {
	-webkit-animation: moveFromTopFadeMonth .4s ease-out;
	-moz-animation: moveFromTopFadeMonth .4s ease-out;
	animation: moveFromTopFadeMonth .4s ease-out;
	opacity: 1;
}
#bookings #calendar .month.out.next {
	-webkit-animation: moveToTopFadeMonth .4s ease-in;
	-moz-animation: moveToTopFadeMonth .4s ease-in;
	animation: moveToTopFadeMonth .4s ease-in;
	opacity: 1;
}
#bookings #calendar .month.in.prev {
	-webkit-animation: moveFromBottomFadeMonth .4s ease-out;
	-moz-animation: moveFromBottomFadeMonth .4s ease-out;
	animation: moveFromBottomFadeMonth .4s ease-out;
	opacity: 1;
}
#bookings #calendar .month.out.prev {
	-webkit-animation: moveToBottomFadeMonth .4s ease-in;
	-moz-animation: moveToBottomFadeMonth .4s ease-in;
	animation: moveToBottomFadeMonth .4s ease-in;
	opacity: 1;
}
#bookings #calendar .week {
	background: #4A4A4A;
}
#bookings #calendar .day {
	display: inline-block;
	width: calc(100% / 7);
	padding: 10px;
	text-align: center;
	vertical-align: top;
	cursor: pointer;
	background: #4A4A4A;
	position: relative;
	z-index: 100;
}
#bookings #calendar .day.other {
	color: rgba(255, 255, 255, .1);
}
#bookings #calendar .day.past {
	background: rgba(66, 66, 66, 1);
}
#bookings #calendar .day.past .day-number {
	color: rgba(255,255,255,0.05);
}
#bookings #calendar .day.today {
	color: rgba(156, 202, 235, 1);
	background: rgba(255,255,255,0.1);
}
#bookings #calendar .day-name {
	font-size: 9px;
	text-transform: uppercase;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, .5);
	letter-spacing: .7px;
}
#bookings #calendar .day-number {
	font-size: 24px;
	letter-spacing: 1.5px;
	color: white;
}
#bookings #calendar .day .day-events {
	list-style: none;
	margin-top: 3px;
	text-align: center;
	height: 12px;
	line-height: 6px;
	overflow: hidden;
}
#bookings #calendar .day .day-events span {
	vertical-align: top;
	display: inline-block;
	padding: 0;
	margin: 0;
	width: 5px;
	height: 5px;
	line-height: 5px;
	margin: 0 1px;
}
#bookings #calendar .blue { background: rgba(156, 202, 235, 1); top: 1px;position: relative;}
#bookings #calendar .orange { background: rgba(247, 167, 0, 1); top: 1px;position: relative;}
#bookings #calendar .green { background: rgba(153, 198, 109, 1); top: 1px;position: relative;}
#bookings #calendar .yellow { background: rgba(249, 233, 0, 1); top: 1px;position: relative;}
#bookings #calendar .details {
	position: relative;
	width: 100%;
	height: 75px;
	background: rgba(164, 164, 164, 1);
	margin-top: 5px;
	border-radius: 4px;
}
#bookings #calendar .details.in {
	-webkit-animation: moveFromTopFade .5s ease both;
	-moz-animation: moveFromTopFade .5s ease both;
	animation: moveFromTopFade .5s ease both;
}
#bookings #calendar .details.out {
	-webkit-animation: moveToTopFade .5s ease both;
	-moz-animation: moveToTopFade .5s ease both;
	animation: moveToTopFade .5s ease both;
}
#bookings #calendar .arrow {
	position: absolute;
	top: -5px;
	left: 50%;
	margin-left: -2px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent rgba(164, 164, 164, 1) transparent;
	transition: all 0.7s ease;
}
#bookings #calendar .events {
	height: 75px;
	padding: 7px 0;
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
}
#bookings #calendar .events.in {
	-webkit-animation: fadeIn .3s ease both;
	-moz-animation: fadeIn .3s ease both;
	animation: fadeIn .3s ease both;
}
#bookings #calendar .events.in {
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	animation-delay: .3s;
}

#bookings #calendar .events .bookable {
	width: 33%;
	display: flex;
	text-align: center;
	padding: 15px;
}
#bookings #calendar .events label {
	line-height: 20px;
	display: inline;
	order: 2;
	padding: 0 5px;
	vertical-align: middle;
}
#bookings #calendar .events input {
	height: 30px;
	width: 30px;
	order: 1;
	margin-left: 0;
	margin-right: 0;
	display: inline;
	margin-left: 30px;
}
#bookings #calendar .details.out .events {
	-webkit-animation: fadeOutShrink .4s ease both;
	-moz-animation: fadeOutShink .4s ease both;
	animation: fadeOutShink .4s ease both;
}
#bookings #calendar .events.out {
	-webkit-animation: fadeOut .3s ease both;
	-moz-animation: fadeOut .3s ease both;
	animation: fadeOut .3s ease both;
}
#bookings #calendar .event {
	font-size: 16px;
	line-height: 22px;
	letter-spacing: .5px;
	padding: 2px 13px;
	vertical-align: top;
    width: 33.33%;
}
#bookings #calendar .event.empty {
	color: #eee;
}
#bookings #calendar .event-category {
	height: 16px;
	width: 16px;
	display: inline-block;
	margin: 14px 0 0;
	vertical-align: top;
	border-radius: 8px;
}
#bookings #calendar .event span {
	display: inline-block;
	padding: 0 0 0 7px;
}
#bookings #calendar .event-category ~ span {
	position: relative;
	top: 12px;
}
#bookings #calendar .legend {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 30px;
	background: rgba(60, 60, 60, 1);
	line-height: 30px;
}
#bookings #calendar .entry {
	position: relative;
	padding: 0 0 0 25px;
	font-size: 13px;
	display: inline-block;
	line-height: 30px;
	background: transparent;
	color: white;
}
#bookings #calendar .entry:after {
	position: absolute;
	content: '';
	height: 5px;
	width: 5px;
	top: 12px;
	left: 14px;
}
#bookings #calendar .entry.blue:after { background: rgba(156, 202, 235, 1); }
#bookings #calendar .entry.orange:after { background: rgba(247, 167, 0, 1); }
#bookings #calendar .entry.green:after { background: rgba(153, 198, 109, 1); }
#bookings #calendar .entry.yellow:after { background: rgba(249, 233, 0, 1); }
#bookings .events .inner-label {
	position: relative;
	height: 20px;
	width: 20px;
	overflow: hidden;
}
#bookings .events .inner-label input {
	position: absolute;
	left: -60px;
	top: 0;
}
#bookings .events .inner-label input ~ span {
	border: 2px solid #fafafa;
	height: 20px;
	display: block;
	width: 20px;
	border-radius: 10px;
	cursor: pointer;
}
#bookings .events .inner-label input:checked ~ span {
	/*border: 0;*/
}
#bookings .events .pick10am .inner-label input:checked ~ span {
	background: #f7a700;
}
#bookings .events .pick2pm .inner-label input:checked ~ span {
	background: #99c66d;
}
#bookings .events .pick6pm .inner-label input:checked ~ span {
	background: #f9e900;
}
/* Animations are cool!  */
@-webkit-keyframes moveFromTopFade {
	from { opacity: .3; height:0px; margin-top:0px; -webkit-transform: translateY(-100%); }
}
@-moz-keyframes moveFromTopFade {
	from { height:0px; margin-top:0px; -moz-transform: translateY(-100%); }
}
@keyframes moveFromTopFade {
	from { height:0px; margin-top:0px; transform: translateY(-100%); }
}
@-webkit-keyframes moveToTopFade {
	to { opacity: .3; height:0px; margin-top:0px; opacity: 0.3; -webkit-transform: translateY(-100%); }
}
@-moz-keyframes moveToTopFade {
	to { height:0px; -moz-transform: translateY(-100%); }
}
@keyframes moveToTopFade {
	to { height:0px; transform: translateY(-100%); }
}
@-webkit-keyframes moveToTopFadeMonth {
	to { opacity: 0; -webkit-transform: translateY(-30%) scale(.95); }
}
@-moz-keyframes moveToTopFadeMonth {
	to { opacity: 0; -moz-transform: translateY(-30%); }
}
@keyframes moveToTopFadeMonth {
	to { opacity: 0; -moz-transform: translateY(-30%); }
}
@-webkit-keyframes moveFromTopFadeMonth {
	from { opacity: 0; -webkit-transform: translateY(30%) scale(.95); }
}
@-moz-keyframes moveFromTopFadeMonth {
	from { opacity: 0; -moz-transform: translateY(30%); }
}
@keyframes moveFromTopFadeMonth {
	from { opacity: 0; -moz-transform: translateY(30%); }
}
@-webkit-keyframes moveToBottomFadeMonth {
	to { opacity: 0; -webkit-transform: translateY(30%) scale(.95); }
}
@-moz-keyframes moveToBottomFadeMonth {
	to { opacity: 0; -webkit-transform: translateY(30%); }
}
@keyframes moveToBottomFadeMonth {
	to { opacity: 0; -webkit-transform: translateY(30%); }
}
@-webkit-keyframes moveFromBottomFadeMonth {
	from { opacity: 0; -webkit-transform: translateY(-30%) scale(.95); }
}
@-moz-keyframes moveFromBottomFadeMonth {
	from { opacity: 0; -webkit-transform: translateY(-30%); }
}
@keyframes moveFromBottomFadeMonth {
	from { opacity: 0; -webkit-transform: translateY(-30%); }
}
@-webkit-keyframes fadeIn  {
	from { opacity: 0; }
}
@-moz-keyframes fadeIn  {
	from { opacity: 0; }
}
@keyframes fadeIn  {
	from { opacity: 0; }
}
@-webkit-keyframes fadeOut  {
	to { opacity: 0; }
}
@-moz-keyframes fadeOut  {
	to { opacity: 0; }
}
@keyframes fadeOut  {
	to { opacity: 0; }
}
@-webkit-keyframes fadeOutShink  {
	to { opacity: 0; padding: 0px; height: 0px; }
}
@-moz-keyframes fadeOutShink  {
	to { opacity: 0; padding: 0px; height: 0px; }
}
@keyframes fadeOutShink  {
	to { opacity: 0; padding: 0px; height: 0px; }
}
@media (min-width: 360px) {
    #bookings .bf-outer {
        padding: 2rem 1rem;
    }
}
@media (min-width: 400px) {
    #bookings .main-label,
    #bookings form select,
    #bookings .booking-help-i a {
        font-size: 18px;
    }
    #bookings form select {
        height: 40px;
    }
    #bookings form label,
    #bookings .booking-error-message,
    #bookings .booking-form p,
    #bookings .booking-help-i p,
    #bookings .packages-list p,
    #bookings .booking-help-i a,
    #bookings .booking-help-i-packages ul li {
        font-size: 16px;
    }
}
@media (min-width: 450px) {
    #bookings .name {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #bookings .name input:first-child {
        margin-right: 1rem;;
        margin-bottom: 0;
    }
    #bookings .bf-outer {
        padding: 3rem 2rem;
    }
}
@media (min-width: 767px) {
    #bookings .bf-outer {
        padding: 4rem;
    }
}
@media (min-width: 990px) {
    #bookings .bf-outer {
        padding: 4rem 2rem;
    }
    #bookings .booking-help {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #bookings .details-help {
        display: block;
    }
    #bookings .details-help h2 {
        margin-bottom: 2rem;
    }
    #bookings .bf-outer::before {
        content: "";
        position: absolute;
        width: 1px;
        height: 88%;
        background: #353535;
        top: 6%;
        left: 53%;
    }
    #bookings .details-help {
        width: 50%;
    }
    #bookings .details-form {
        margin-top: 2rem;
        margin-left: 4rem;
        padding-left: 4rem;
        width: 50%;
    }
    #bookings .details-help .fw-bold {
        font-size: 18px;
    }
    #bookings .details-form h2 {
        display: none;
    }
    #bookings .booking-help-i {
        display: none;
    }
    #bookings .main-label-2 {
        display: block;
        margin-bottom: 1rem;
    }
}
@media (min-width: 1200px) {
    #bookings .bf-outer {
        padding: 4rem 6rem;
    }
    #bookings .bf-outer::before {
        left: 52.5%;
    }
}
@media (min-width: 1400px) {
    #bookings .bf-outer {
        padding: 4rem 8rem;
    }
    #bookings .bf-outer::before {
        left: 52%;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Page
--------------------------------------------------------------*/
#faq .section-title h2 {
    margin-bottom: 4rem;
}
#faq .section-title p {
    max-width: 1200px;
    margin: 0 auto 4rem;
}
#faq .faq-list
#faq .faq-list {
    padding: 0;
    list-style: none;
}
#faq ul {
    padding-left: 0!important;
}
#faq .faq-list li {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-left: 0;
    list-style-type: none;
}
#faq .faq-list a {
    display: block;
    position: relative;
    font-family: var(--bs-font-sans-serif);
    font-size: 18px;
    font-weight: bold;
    color: #353535;
    line-height: 24px;
    padding-right: 25px;
    cursor: pointer;
}
#faq .faq-list a:hover {
    text-decoration: none;
}
#faq .faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
#faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #353535;
}
#faq .faq-list .icon-show {
    display: none;
}
#faq .faq-list a.collapsed {
    color: #353535;
}
#faq .faq-list a.collapsed:hover {
    color: #000;
    text-decoration: none;
}
#faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}
#faq .faq-list a.collapsed .icon-close {
    display: none;
}
.field.error {
    border-color: red !important;
}

.add-player {
    margin: 0 10px 0 0;
    background: #353535;
    color: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 6px 10px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: 0px;
    border: 1px solid #353535;
    -webkit-outline: none;
    outline: none;
}
.delete-player {
    margin: 0 10px 0 0;
    background: white;
    color: #353535;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 6px 10px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: 0px;
    border: 1px solid #353535;
    -webkit-outline: none;
    outline: none;
}
#player-list .player:first-child .delete-player {
    display: none;
}
#bookings .btn-pay-now[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
#bookings #payment-request-button.disabled {
    position: relative;
}
#bookings #payment-request-button.disabled:after {
    background: #cccccc;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
    opacity: 0.7;
    cursor: not-allowed;
}