@font-face {
    font-family: 'steelfish_rgregular';
    src: url('../eot/steelfish_rg.eot');
    src: url('../eot/steelfish_rgd41d.eot#iefix') format('embedded-opentype'),
         url('../woff/steelfish_rg.woff') format('woff'),
         url('../ttf/steelfish_rg.ttf') format('truetype'),
         url('../svg/steelfish_rg.svg#steelfish_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

.steel {
    font-family:'steelfish_rgregular', sans-serif;
}
.oswald {
    font-family:'Oswald', sans-serif;
}
.asap {
    font-family:'Asap', sans-serif;
}

.bgyellow {
    background-color: #F1C40F;
}

.bgblue{
    background-color: #74B8D2;
}
.borderblue{
    border-color: #74B8D2;
}
html {
    scroll-behavior: smooth;
}
.hero-bg {
    background-image: url('../jpg/hero2.jpg');
    background-size: cover;
    background-position: top;
}
        .hero-content {
    padding-bottom: 120px; /* Adjust this value to control overlap */
}
.cards-section {
    position: relative;
    z-index: 20;
}

@media (min-width: 768px) {
    .cards-section {
        margin-top: -80px; /* Adjust this value to control overlap */
    }
}

@media (max-width: 767px) {
    .cards-section {
        margin-top: 20px; /* Normal top margin */
    }
}

.sales-play-bg-image {
    background-image: url('../png/play_bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.most-popular-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}


.testimonial-card {
    min-height: 250px;
    height:450px;
}

.swiper-button-next,
.swiper-button-prev {
    position:absolute;
    top: 50%;
    width: 53px;
    height: 53px;
    background-size: 53px 53px;
}

.swiper-pagination {
    position: relative;
    bottom: -5px !important;
    text-align: center;
}


.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Ensure the buttons are hidden by default and only displayed on larger screens */
@media (max-width: 767px) {
    .custom-swiper-button {
      display: none !important;
    }
    .swiper-wrapper {
        width: 100%;
        margin: 0px auto;
    }
  }
  
  @media (min-width: 768px) {
    .custom-swiper-button {
      display: block !important;
    }
    .swiper-wrapper {
        width: 100%;
        margin: 0px auto;
    }
  }

  .sales-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.sales-modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* Reduced from 15% to 5% to allow more space */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 80vh; /* Set maximum height to 80% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
}

#sales-modal-content {
    max-height: calc(80vh - 60px); /* Adjust for padding and close button */
    overflow-y: auto;
}
#sales-modal-content p{
    padding:12px 0px;
}
.sales-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.sales-modal-close:hover,
.sales-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
