*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #0e4861;
}

/* header part start */
.header{
    position: relative;
    z-index: 15;
}
.logo{
    width: 80px;
    height: 80px;
    
}
.nav-item a{
    font-weight: 600;
    color: #0e4861;
    transform: .3s all linear;
    border-bottom: 3px solid transparent;
    text-transform: capitalize;
}
.nav-item a:hover,
.nav-item a:focus,
.nav-item a.actives{
    border-bottom: 3px solid #0e4861;
    color: #0e4861 ;
}
.home-header .nav-item a{
    color: #0e4861;
}
.home-header .nav-item a:hover,
.home-header .nav-item a:focus,
.home-header .nav-item a.actives{
    border-bottom: 3px solid #0e4861;
    color: #0e4861 ;
}
.navbar-toggler{
    background-color: #fff;
}
.multi-tab{
    display: flex;
}

/* header part end */

/* banner part start */
.banner{
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 10;
    color: #0e4861;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.banner-content{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.single-banner-content{
    max-width: 400px;
    height: 400px;
    width: 100%;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: .3s all linear;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single-banner-content:hover{
    transform: translateY(-3px);
}
.single-banner-content h3{
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}
.single-banner-content img{
    width: 65px;
}

.banner-content h2{
    font-size: 42px;
    line-height: 74px;
    font-weight: 600;
    
}
.banner-content p{
    font-size: 17px;
}
.single-banner-content p{
    font-size: 15px;
}
.banner-content a,
.projection-box a{
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    background-color: #fff;
    color: #1E9FD6;
    border-radius: 35px;
    transition: .3s all linear;
    border: 1px solid transparent;
}
.banner-content a:hover{
    border-color: #fff;
    background-color: transparent;
    color: #fff;
    
    
}
.single-banner-content a {
    color: #0e4861;
    width: 100%;
    padding: 11px;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}
.projection-box a{
    border: 1px solid transparent;
}
.projection-box a:hover{
    border-color: #fff;
    background-color: #1E9FD6;
    color: #fff;
}
.projection{
    background-color: #1E9FD6;
}
/* banner part end */

/* video part start */

.video-section {
    position: relative;
    height: 100vh; 
    overflow: hidden;
    z-index: -1;
    margin-top: -106px;
    
  }
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
/* video part end */

/* your path part start */
.com-heading{
    font-size: 32px;
    line-height: 56px;
    font-weight: 600;
}
.your-path-box{
    max-width: 650px;
    width: 100%;
    padding: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    align-items: center;
}
.your-pat-text p{
    font-size: 14px;
    line-height: 28px;
}
.your-pat-img img{
    border-radius: 5px;
}
.com-btn{
    display: inline-block;
    padding: 8px 30px;
    background-color: #1E9FD6;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    transition: .3s all linear;
    border: 1px solid #1E9FD6;
}
.com-btn:hover{
    background-color: transparent;
    color: #1E9FD6;
}
/* your path part end */

/* slider part start */
.w-1140{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}
.slider-top img{
    margin-top: -20px;
    margin-right: 12px;
}
.single-slider{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.slider-img img{
    border-radius: 5px;
}
.slider-text{
    padding: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding-top: 50px;
}
.star-box{
    color: #f47521;
    font-size: 20px;
}
.slider-text h4{
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}
.carousel-control-prev,
.carousel-control-next{
    width: 45px;
    height: 45px;
    background-color: #1E9FD6;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.carousel-control-prev{
    left: -22.5px;
}
.carousel-control-next{
    right: -22.5px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 25px;
}
.carousel-indicators{
    bottom: -50px;
    display: flex;
    align-items: center;
}
.carousel-indicators [data-bs-target]{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #a8a8a8;
}
.carousel-indicators .active{
    width: 12px;
    height: 12px;
    background-color: #1E9FD6;
}
/* slider part end */

/* vaction part start */
.vaction-box{
    height: 475px;
    background-image: url("../imgaes/vaction.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    position: relative;
    z-index: 10;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.vaction-box::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.vaciton-text a:hover{
    background-color: #fff;
    border-color: #fff;
    color: #1E9FD6;
}
/* vaction part end */

/* footer part start */
.footer{
    /* background-color: #002f55; */
    font-size: 14px;
    color: #002f55;
    
}
.footer-bottom{
    border-top: 1px solid #dbdbdb;
    
}
.footer-top h3{
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: uppercase;
}
.link-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.link-box p a{
    color: #002f55;
    transition: .3s all linear;
}
.link-box p a:hover{
    text-decoration: underline;
}

.ada-box p a:hover,
.ada-box li a:hover{
    text-decoration: underline;
}

/* footer part end */

/* ==========about us page start============== */

/* our mission part start */
.our-mission-bottom{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    align-items: center;
}
.our-mission-bottom p{
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 5px;
    text-align: start;
}
.mission-img img{
    border-radius: 5px;
}
/* our mission part end */

/* marciel part start */
.maricel-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    align-items: center;
}
.maricel-img img{
    max-width: 427px;
    width: 100%;
    border-radius: 5px;
    
}
.princy-box{
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}
/* marciel part end */

/* ==========about us page end============== */


/* ==========our services page start============== */
.our-services-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.single-service{
    padding: 35px 20px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    transition: .3s all linear;
}
.single-service:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
.single-service h4{
    font-size: 20px;
    font-weight: 600;
}
.single-service p{
    font-size: 15px;
}
.single-service img{
    width: 80px;
}
/* ==========our services page end============== */


/* ==========revenue page start============== */
.revenue-middle h4{
    font-size: 22px;
    font-weight: 600;
}
.revenue-box{
    grid-template-columns: repeat(2,1fr);
}
.revenue-bottom p a{
    color: #002f55;
    text-decoration: underline;
}
/* ==========revenue page end============== */


/* ==========marketing page start============== */
.marketing-bottom-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}
.marketing-bottom-box p{
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 10px;
    text-align: start;
}
.marketing-bottom h3{
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
}
/* ==========marketing page end============== */


/* ==========contact page start============== */
.contact-img{
    background: url("../imgaes/banner.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
}
.contact-img img{
    width: 100%;
    height: 644px;
    object-fit: cover;
    border-radius: 5px;
    display: none;
}
.contact-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    
}
.single-contact{
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
}
.contact-icon{
    width: 45px;
    height: 45px;
    background-color: #0e4861;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.contact-icon img{
    width: 22px;
}
.contact-info h4{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.contact-info a,
.contact-info p{
    font-weight: 500;
    color: #1E9FD6;
    transition: .3s all linear;
}
.contact-info a:hover{
    text-decoration: underline;
}
.contact-text{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.social-box{
    display: flex;
    gap: 20px;
}
.social-box a i{
    font-size: 25px;
    color: #0e4861;
    transition: .3s all linear;
}
.social-box a i:hover{
    margin-top: -5px;
}
.contact-form{
    padding: 40px 25px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
}
.contact-form h2{
    font-size: 25px;
    font-weight: 600;

}
.input-box input,
.input-box select,
.input-box textarea{
    font-family: "Poppins", serif;
    width: 100%;
    padding: 7px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    font-size: 16px;
    color: #585757;
}
.input-box select{
    height: 44px;
}
.input-box select{
    color: #585757;
}
.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus{
    border-color: #0e4861;
    box-shadow: 0 0 3px #1e9fd693;
}
.input-box select option{
    color: #0e4861;
}
::placeholder{
    font-family: "Poppins", serif;
}
.submit-btn button{
    width: 100%;
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 500;
    background-color: #1E9FD6;
    color: #fff;
    border-radius: 35px;
    border: 1px solid #1E9FD6;
    transition: .3s all linear;
}
.submit-btn button:hover{
    background-color: transparent;
    color: #1E9FD6;
}
/* ==========contact page end============== */


/* ==========home club page start============== */

/* home club hero part start */
.club-hero-box h4,
.com-h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.club-hero-box h5{
    font-size: 17px;
    font-weight: 600;
}
.club-hero-box  a,
.com-btn2{
    display: inline-block;
    padding: 10px 25px;
    background-color: #1E9FD6;
    border: 1px solid #1E9FD6;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: .3s all linear;
}
.club-hero-box a:hover,
.com-btn2:hover{
    background-color: #fff;
    color: #1E9FD6;
}
/* home club hero part end */

/* why join part start */
.why-join{
    background-color: #F2F6FD;
}
.why-join-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 50px;
    align-items: center;
}

.why-join-img img{
    max-width: 450px;
    width: 100%;
    border-radius: 5px;
}

.why-join-text p,
.trust-box p{
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 7px;
}

/* why join part end */

/* membership part start */
.membership{
    background-color: #F2F6FD;
}
.membership-box{
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
}
.table-box table {
    width: 685px;
    border-collapse: collapse;
    margin: 10px auto;
    text-align: left;
}
.table-box th, .table-box td {
    border: 1px solid #1E9FD6;
    padding: 10px;
}
.table-box{
    overflow-x: auto;
}
.table-box td:first-child {
    font-style: italic;
    font-weight: bold;
}
.table-box .icon {
    margin-right: 5px;
}
/* membership part end */

/* our member part start */
.our-member,
.final-call,
.why-works{
    background-color: #F2F6FD;
}
.our-member-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.our-member-box i{
    color: #f47521;
}
.single-member{
    max-width: 400px;
    width: 100%;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    border-radius: 10px;
    transition: .3s all linear;
}
.single-member:hover{
    transform: translateY(-5px);
}
/* our member part end */

/* faq part start */
.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-question {
    background-color: #f1f1f1;
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    background-color: #0e4861;
    color: #fff;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .faq-question.expanded::after {
    content: '-';
  }

  .faq-answer {
    padding: 0px 15px;
   
    transition: 0.3s ease-out;
    height: 0;
    overflow: hidden;
  }

  .faq-answer.show-answer {
    padding: 15px;
    height: auto; 
    
  }
/* faq part end */

/* ==========home club page end============== */


/* ==========reward page start============== */
/* reward banner part start */
.reward-banner{
    min-height: 100vh;
    background: url("../imgaes/reward.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.reward-banner-box{
    max-width: 630px;
    width: 100%;
    margin: 0 0 0 auto;
}
.reward-banner-box h2{
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.40);
    
}
.reward-banner-box h3{
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.40);
    
}
.reward-banner-box h4{
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.40);
    
    
}
.reward-banner-box p{
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    backdrop-filter: blur(3px);
}
/* reward banner part end */

/* reward works part start */
.reward-works-middle h4{
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
.reward-works-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}
.single-reward-works{
    padding: 40px 20px;
    
    min-height: 350px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    border-radius: 5px;
    transition: .3s all linear;
}
.single-reward-works:hover{
    transform: translateY(-5px);
}
.reward-works-icon{
    width: 80px;
    height: 80px;
    background-color: #002f55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
}
.reward-works-icon img{
    width: 45px;
}
.single-reward-works h3{
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    height: 60px;
}
.single-reward-works p{
    line-height: 24px;
}
.reward-works-example h4{
    font-size: 20px;
    font-weight: 700;
}
/* reward works part end */

/* points part start */
.re-points,
.why-love{
    background-color: #F2F6FD;
}
.re-points-box{
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
}
.re-points-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.re-points-box th, .re-points-box td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.re-points-box th {
    background-color: #1E9FD6;
    color: white;
    font-size: 18px;
}
.re-points-box tr:nth-child(even) {
    background-color: #f9f9f9;
}
.re-points-box tr:hover {
    background-color: #f1f1f1;
}
/* points part end */

/* get started part start */
.get-hash{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3px 10px;
}
.get-hash span:hover{
    text-decoration: underline;
    cursor: pointer;
}

/* get started part end */
/* ==========reward page end============== */

/* spiner start */
.spinner {
    display: none;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.spinner::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #ccc;
    border-top-color: #004868;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.success-message{
    display: none;
    padding: 5px 12px;
    background-color: #10ac84;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}
.success-message.active{
    display: block;
}
/* spiner end */