/* common css */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--Black, #000);
    margin-top: 0px;
    margin-bottom: 10px;

}

img {
    max-width: 100%;
    height: auto;
}

body,
html {
    font-family: "Lato", sans-serif;
}


/* common css  end */

header.header {
    position: fixed;
    width: 100%;
    padding: 9px 0px;
    z-index: 999;
    transition: 0.3s ease-in;

}

.header.active {
    background-color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
    /* 144.444% */
}

:root {
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-40: 40px;
    --fs-30: 30px;
    --fs-18: 18px;
    --lh-28: 28px
}

a {
    text-decoration: none;
}

/* hero section start */

.hero {
    height: 930px;
    width: 100%;
    background-size: cover;
    object-fit: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;

}

.main-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.main-img img {
    height: 100%;
    width: 100%;
}

.main-contenter {
    max-width: 100%;
    width: 100%;
    background-color: #A4A3A3;
    padding: 34px 0px;
    z-index: 99;
    margin-bottom: 215px;
}

.fs-60 {
    font-size: 60px;
    line-height: 61px;
    /* 101.667% */
    text-transform: uppercase;
}

.hero .fs-60 {
    margin-bottom: 9px;
    text-align: center;

}

.label-content p {
    color: var(--Black, #000);
    text-align: center;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-28);
    max-width: 783px;
    width: 100%;
    margin: 0 auto;
    /* 140% */
}

.c-btn {
    padding: 10px 20px;
    display: block;
    width: fit-content;
    font-family: "League Spartan", sans-serif;
    border: 1px solid var(--White, #FFF);
    background: var(--White, #FFF);
    color: var(--Black, #000);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

.c-btn:hover {
    border: 1px solid var(--Light-Blue, #BCD1DF);
    background: var(--Light-Blue, #BCD1DF);
    color: var(--Black, #000);

}



/* .main-animate-text */

/* ANNIVERSARY SEC END */


/* ANIMATION CSS  */
.main-animate-text {
    overflow: hidden;
    background: var(--Black, #000);
    padding: 32px 0;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-left linear infinite;
    animation-delay: 0.5s;
    gap: 60px;
    animation-play-state: running;
}

.marquee-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    flex-shrink: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.marquee-content li {
    color: var(--White, #FFF);
    font-family: "League Spartan", sans-serif;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    list-style: none;
    position: relative;
}

.marquee-content li::after {
    background-color: #BCD1DF;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    content: "";
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Will be set dynamically from JS, so we remove hardcoded duration */


/* strength css start  */

section.strength {
    padding: 97px 0px;
    background-color: #BCD1DF;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.strength-content {
    display: flex;
    align-items: center;
    gap: 93px;
    justify-content: space-between;
}

.strenth-data {
    max-width: 630px;
    width: 100%;
}

.strenth-data .fs-40 {
    text-transform: uppercase;
}

.fs-30 {
    line-height: 36px;
    /* 120% */
    font-size: 30px;

}

.fs-40 {
    font-size: 40px;
    line-height: 41px;
}

/* strength css end  */

/* pricing section css start */
.pricing-memeber-ship {
    padding-top: 60px;
    padding-bottom: 70px;
    background: var(--New-Light-Gray, #F7F7F7);
}

/* pricng section css ed */

.main-title-memebership .fs-40 {
    text-align: center;
    text-transform: uppercase;
}

.main-title-memebership p {
    color: var(--New-Gray, #474646);
    text-align: center;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 136.364% */
}

.grid--price {
    padding-top: 50px;
}

.price-data {
    position: relative;
    max-width: 376px;
    width: 100%;
    z-index: 2;
    height: 265px;
    border: 2px solid var(--Black, #000);
    background: var(--New-Gray, #474646);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.price-data:hover a.c-btn{
    border: 1px solid var(--Light-Blue, #BCD1DF);
    background: var(--Light-Blue, #BCD1DF);
}
.price-data:hover .hover-cicle{
    opacity: 1;
}

.logo-bg {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    transition: 0.3s ease-in;

}
.hover-cicle {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s ease-in;
}
.price-data:hover .logo-bg{
    opacity: 0.3;
}

.price-data h3 {
    margin-bottom: 0px;
    color: var(--White, #FFF);
    text-align: center;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 500;


}

.price-data p {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0px;


}

.price-data strong {
    display: block;
    color: var(--White, #FFF);
    text-align: center;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */

}

.price-data .c-btn {
    line-height: normal;
    padding: 15px 25px;
    margin-top: 5px;
}

.grid--price {
    display: flex;
    gap: 40px;
    padding-bottom: 50px;
}

.grid--price.data {
    justify-content: center;
}

.main-width {
    max-width: 376px;
}

p.italic {
    margin-top: 10px;
    color: var(--Dark-Gray, #4D4D4D);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 21px;
    /* 131.25% */
}

.circle-logo {
    max-width: 250px;
    height: 250px;
    position: relative;
    width: 100%;
}

.small-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imag-circle-img {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* footer customer footer */

.custom-footer {
    background-color: #000;
    padding-bottom: 50px;
    padding-top: 60px;
}

.main-logo {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding-bottom: 37px;
}

.custom-footer p {
    color: var(--White, #FFF);
    text-align: center;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0px;
    margin: 0px;
}

.contact-info li ,
.contact-info li a {
    color: var(--White, #FFF);
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140
    % */
}
.contact-info li{
    list-style: none;
}

ul.social-media{
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 23px;
    padding-top: 32px;
    justify-content: center;
    padding-bottom: 44px;
}
ul.social-media li {
    list-style: none;
}

.custom-footer  .form-content p{
    font-size: var(--fs-18);
    max-width: 575px;
    width: 100%;
    margin: 0 auto;
}
.input-feilds{
    padding-top: 24px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.input-feilds input[type="submit"],
.input-feilds input[type="email"]{
    max-width: 430px;
    width: 100%;
    padding: 10px 16px;
    color: var(--White, #FFF);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    background-color: transparent;
    border: 1px solid var(--White, #FFF);
    outline: none;
}
.form-content{
    margin-bottom: 80px;
}
.input-feilds input[type="submit"]{
max-width: 134px;
width: 100%;
color: #fff;
transition: 0.3s ease-in;
}
.input-feilds input[type="submit"]:hover{
    background-color: #fff;
    color: #000;
}
.input-feilds input[type="email"]::placeholder{
    color: #fff;
}