@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", serif;
    color: #272727;
}

/* .sticky-nav {
    position: sticky;
    top: 0px;
} */

.nav-PaddingSection {
    padding: 0.2% 6%;
    background: #010101;
}

.navSection {
    display: flex;
    padding: 1%;
    justify-content: space-between;
    align-items: center;
}

.leftNav li {
    list-style: none;
}
.leftNav li img{
    width: 50%;
}

.leftNav li a {
   text-decoration: none;
   font-size: 30px;
   font-weight: bolder;
   color: #fff;
}

.rightNav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.rightnavbar{
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-buttons{
    display: flex;
    align-items: center;
    gap: 10px;
}
.rightNav li {
    list-style: none;
}

.rightNav li:hover {
    border-bottom: 1px solid #56a77c;
}

.rightNav li a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.rightNav button {
    background: #fe368a;
    color: #fff !important;
    text-transform: uppercase;
    outline: none;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
}
.rightNav .btn2{
    background-color: #19a731 !important;
    
}
.rightNav button:hover {
    background-color: #fe368aca;
}

.rightNav button:active {
    background-color: rgba(0, 0, 0, 0.336);
}

.rightNav button i {
    background: transparent;
    color: black;
    font-size: 14px;
    margin-left: 5px;
}

.Menu {
    position: absolute;
    right: 30px;
    top: 25px;
    display: none;
}

.Menu i {
    color: #ffffff;
    font-size: 22px;
}

@media only screen and (max-width: 992px) {
    .navSection {
        flex-direction: column;
    }
    .Menu {
        display: block;
    }
    .leftNav {
        justify-content: start;
        width: 100%;
    }
    .rightNav {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        width: 100%;
        display: none;
    }
    .rightnavbar{
        flex-direction: column;
    }
}

.active {
    display: flex;
}

/* nav close */

.paddingSection {
    padding: 1% 6%;
}

.mainPadding {
    padding: 2% 0%;
}

.main-section {
    width: 100%;
   background: url(../Images/promo-background.jpg);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
   overflow: hidden;
   height: 100%;
}

.hero-Section {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.hero-Section .image-wrapper {
    width: 20%;
}

.hero-Section-Content {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
}

.hero-Section-Content h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 2%;
}
.hero-Section-Content h1 span{
    font-size: 10rem;
    color: #f9f9f9;
    line-height: 140px;
}
/* .hero-Section-Content h6 {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 10px 0px;
} */
 .section-btn{
    display: flex;
    justify-content: center;
 }
.section-btn a {
    margin: 20px auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 20px;
    background: #19a731;
    text-decoration: none;
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 750;
}

.section-btn a:hover {
    background-color: #fe368ad3;
}

.section-btn a:active {
    background-color: rgba(0, 0, 0, 0.336);
}
.slots{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.slots-home{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.slot-image-home {
    width: 400px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
  }
.slot-image {
    width: 250px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
  }
  .slot-image:hover {
    transform: translateY(-5px);
  }
  .slot-image-home:hover {
    transform: translateY(-5px);
  }
  .slot-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }
  .slot-image-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }
  
  .slot-image:hover::before {
    opacity: 1;
  }
  .slot-image-home:hover::before {
    opacity: 1;
  }
  .slot-image img {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
  }
  .slot-image-home img {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
  }
  .cta-button {
    text-align: center;
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    transition: bottom 0.3s ease;
  }
  
  .slot-image:hover .cta-button {
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slot-image-home:hover .cta-button {
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slot-image-home .cta-button a {
    display: inline-block;
    background-color: #19a731;
    color: #fff;
    padding: 7px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
  }
  .cta-button a {
    display: inline-block;
    background-color: #19a731;
    color: #fff;
    padding: 7px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  
  .cta-button a:hover {
    background-color: #075414;
  }
  
  .slot-image:hover .popup {
    display: block;
  }
.top-slots .slots{
     margin: 1% 0%;
}
.top-slots .slots-home{
     margin: 1% 0%;
}
.rapid-fire-slot{
    background-color: #0d3ab8;
}
.rapid-fire div p{
    color: #fff;
}
.games-heading p{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 750;
    color: #112268;
}
.games-heading p i{
    font-size: 16px;
}
.banner-img{
    width: 100%;
    height: 100%;
}
.banner-img img{
    width: 100%;
    height: 100%;
}

.faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Section11th {
    padding: 0px 20px 20px 20px;
}

.Section11th .box {
    background-color: #cbcbcb73;
    border-radius: 5px;
    margin-top: 10px;
    padding: 5px 40px;
}

.Section11th .box .ans {
    width: 800px;
}

.Section11th .question {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    padding: 5px 0px;
}

.Section11th .question h3 {
    font-size: 22px;
    color: #112268;
}

.Section11th .question i {
    font-size: 17px;
    width: 40px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Section11th .ans {
    line-height: 30px;
    margin-top: 10px;
    color: rgb(9, 6, 1);
    padding-left: 10px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.8s;
    display: flex;
    flex-direction: column;
}

.Section11th .ans p {
    font-size: 17px;
}
.Section11th .ans ul li {
    font-size: 17px;
    margin-left: 7%;
}

.ans.active {
    max-height: 300px;
    overflow-y: scroll;
}
.intro{
    padding: 1% 10% !important;
}
.intro h2{
    font-size: 33px;
    color: #660601;
    margin: 1% 0%;
}
.h2heading{
    background-color: #660601;
    padding: 1px 0px;
    margin: 2% 0%;
}
.h2heading h2{
    font-size: 30px !important;
    margin: 1% 0%;
    color: #fff;
    text-align: center;
}
.content h4{
    margin-top: 2%;
    font-size: 22px;
}
.content p{
    font-size: 22px;
    line-height: 28px;
}
.content ul li{
    font-size: 21px;
    line-height: 28px;
    margin-left: 5%;
    margin-top: 8px;
    margin-bottom: 8px;
}
.card-heading{
    font-size: 16px;
    font-weight: 750;
    color: #112268;
}
.card-heading-bg{
    font-size: 16px;
    font-weight: 750;
    color: #112268;
}
.footer{
    background-color: #000;
}
.footer-section p{
    font-size: 15px;
    text-align: center;
    color: white;
}
.footer-conditions p{
    color: #fff;
}
.footer-conditions p a{
    color: #fff;
}
.button-section a{
    text-decoration: none;
}
.button-section button{
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    cursor: pointer;
    padding: 15px 20px;
    background: #19a731;
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 750;
    border: none;
    width: 200px;
}
.button-section button:hover{
    background-color: #fe368ad3;
}

@media only screen and (max-width: 992px){
    .Section11th .box {
        width: 100%;
    }
}

@media only screen and (max-width: 768px){
    .hero-Section-Content h1 {
        font-size: 39px;
        line-height: 38px;
    }
    .hero-Section-Content h2 {
        font-size: 21px;
        line-height: 35px;
    }
    .Section11th .box .ans {
        width: 100%;
    }
    .Section11th .box {
        padding: 10px;
    }
    .Section11th .box .question h3 {
        font-size: 20px;
    }
    .Section11th .question i {
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    .mainfaqsHeading {
        padding: 10px;
    }
}

@media only screen and (max-width: 576px){
    .leftNav img {
        width: 65px;
    }
    .Menu {
        top: 18px;
    }
    .hero-Section .image-wrapper {
        display: none;
    }
    .hero-Section {
        width: 100%;
        padding: 20px;
        justify-content: space-between;
    }
    .intro h2 {
        font-size: 25px;
    }
    .hero-Section-Content h1 span {
        font-size: 5rem;
        line-height: 70px;
    }
    .hero-Section-Content h6 {
        font-size: 15px;
    }
    .slots {
        flex-wrap: wrap;
    }
    .slots-home {
        flex-wrap: wrap;
    }

    .slot-image{
        width: 30%;
    }
    .slot-image-home{
        width: 100%;
    }
    .hero-Section .image-wrapper {
        width: 0%;
    }
    .Section11th .box .question h3 {
        font-size: 17px;
    }
    .Section11th .ans p {
        font-size: 15px;
        line-height: 25px;
    }
    .Section11th .ans ul li {
        font-size: 15px;
        line-height: 25px;
    }
    .Section11th {
        padding: 0px;
    }
    .h2heading h2 {
        font-size: 24px !important;
        padding: 5px 10px;
    }
    .content h4 {
        font-size: 18px;
    }
    .intro {
        padding: 1% 5% !important;
    }
    .nav-PaddingSection {
        padding: 2.2% 6%;
    }
    .section-btn a {
        font-size: 17px;
        margin: 15px auto;
    }
    .slots {
        gap: 10px;
    }
    .content p {
        font-size: 17px;
        line-height: 27px;
    }
    .content ul li{
        font-size: 17px;
    }
    .cta-button {
        width: 80%;
    }
    .cta-button a {
        padding: 4px 20px;
        font-size: 8px;
    }
    .main-section {
        background-size: auto;
    }
    .button-section button {
        padding: 9px 22px;
        font-size: 15px;
    }
}