
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary-color:#fe5f50;
    --secondary-color:#FFCB00;
    --bg-color:#fff;
    --text-color:#0a3d47;
}
@keyframes mybtn{
    0% {
         transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
.member_button{
    animation: mybtn 2s infinite ease-out;
    position: relative;
}

header{
    background-color: white!important;
}
html{
    font-size: 62.5%;
}
html,body{
    width: 100%;
    height: 100%;
    position: relative;
}
body{
    position: relative;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    background-color: rgb(254, 250, 222);
}
@keyframes scrollDown {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
p,ul{
    margin-bottom: 0px;
    color: var(--text-color);
    font-size: 16px;
}
a{
    text-decoration: none;
    cursor: pointer;
}
a,.nav-link{
    color: var(--text-color);
}
a:hover{
    color: black!important;
}

/* utility class */
.font-text{
    font-size: 2rem;
    text-align: justify;

}
.font-middle{
    font-size: 2.4rem;

    text-align: justify;

}
.marg-b{
    margin-bottom: 100px;
}
h1{
    color: var(--text-color);
}
.font-heading{
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--text-color);
}
.margin{
margin-block: 8rem;
}
.bg-yellow{
    background:linear-gradient(to right, #fff09236,var(--secondary-color),#fe5f502d);

  }
.caption h1{
    text-align: center;
    margin-top: 2rem;
    font-weight: 700;
    font-size: 4rem;
    color: var(--text-color);
    word-wrap: break-word;

}
/* nav bar  responsive*/
.view{
    display: none;
   }
   .navbar-des2{

      height: 100vh;
   }
.member_button {
    border: 2px solid var(--text-color) ;
    font-size: 2rem;
    font-weight: 900;
   background-color: var(--text-color);
    padding: 1rem 1.5rem;
    color: white !important;
    border-radius: 5rem;
    box-shadow:  6px 2px 2px grey;
}
.member_button:hover{
    background-color: var(--text-color);
    color: white!important;
    border: none;
    box-shadow: inset 6px 4px 4px rgb(11, 15, 14);
}




/* CSS */
.button-member {
  background: #FF4742;
  border: 1px solid #FF4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;

  font-size: 2.3rem;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 1.5rem 4rem;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #FF4742;
}

.button-24:active {
  opacity: .5;
}


/* nav start */
.club__container{
    position: relative;
}
.toggli:hover{
    background-color: var(--primary-color);
}
nav{

    border-bottom: 4px solid var(--text-color);
    /* background-color: var(--bg-color); */
    background-color: #fff;
    /* z-index: 10000; */
}
nav li{
list-style: none;
/* display: inline-block; */
text-transform: uppercase;
color: var(--text-color);
}
@media screen and (min-width: 991px) {
    nav li{
        display: inline-block;
    }

}
.nav-item,.navbar-brand{
    padding-inline: 1rem;
}


.nav-ul>li>a {
    position: relative;
}

.nav-ul>li>a::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 5%;
    background-color: var(--primary-color);
    transition: all .5s ease-in-out; /* Apply transition to all properties of ::before */
    transform-origin: 0 50%; /* Set the transform origin to make the transition start from the left */
    transform: scaleX(0); /* Initially hide the line */
}

.nav-ul>li>a:hover::before {
    transform: scaleX(1); /* Reveal the line on hover */
    color: black!important;
}

.toggli{
    background-color: var(--secondary-color);
    border-radius: 4rem;
    padding:1rem 1.2rem;
    transition: all 1s ease-in-out;
    box-shadow:  6px 2px 2px grey;
}
.dropdown-menu,.nav__items{
    z-index:100;
}
/* slider-start */
.carousel-item img{
    height: 60rem;
    object-fit: cover;

}
.members_section{
    margin-bottom: 6rem;

    box-shadow: 3px 6px 6px gray;
    /* background-color: var(--secondary-color); */
    border-radius: 5px;
}
.read-more{
    color: var(--primary-color);
    font-weight: 500;
    align-self: baseline;
    font-size: 2.4rem;
    display: none;

}
.read-more::after{
    content: '\f178';
    font: normal 300 normal 14px/2 FontAwesome;
    padding-left:5px;
}
/* @media(max-width:1000px){
    .font-short{
       display: -webkit-box;
       overflow: hidden;
       -webkit-line-clamp: 4;
       line-clamp: 4;
       -webkit-box-orient: vertical;
       text-overflow: ellipsis;
       word-wrap: break-word;


    }
    .read-more{
        display: block;
    }
} */
.last-border{
    background-color: #36454f;
    padding: 2rem 1rem;
}


.desc{
    color: var(--text-color);

}
.fa-music,.fa-hands-holding-child,.fa-child-reaching {
    font-size: 10rem;
}
.cards_section,.member_des{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.image_borders{
    border-radius: 10px;
}
.image_borders>img{
    border-radius: 10px;
    width: 100%;
}

.icon--color{
    color: var(--primary-color);
}
.line_bottom{
    background-color: var(--text-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.line_bottom li{
    display: inline;
    font-size: 2rem;
    color: white;
    padding-inline: 1rem;


}
.list_bottom li::before{
    content: "\2022";
    color: var(--primary-color);
    display: inline-block;
    font-weight: bold;
    width: 1em;
    margin-right: -.3em;

}
.list_bottom {
    position: relative;
    height: 3rem;
}

.member_cards>div{
   display: inline;

}
.member_card>h1{
    display: inline-block;
    margin-right: 1rem;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 4rem;
}
.members_section .member_card>p{
    font-size: 3.6rem;
    display: inline-block;
}

.member_des{
    color: var(--text-color);
    text-align: center;
    padding: 2rem;

}
.member_des h2{
    margin-bottom: 2rem;
    font-weight: 800;
}

/* video events  start*/
.scroll-down span{
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -2px;
    animation: scrollDown 2s infinite;     }

.scroll-down span:nth-child(1) {
    animation-delay: .2s;
}
.scroll-down span:nth-child(2) {
    animation-delay: .5s;
}
.scroll-down span:nth-child(3) {
    animation-delay: .7s;
}

 .view-button{
    background-color: var(--primary-color);
    color: var(--text-color);
    margin-top: 2rem;
    font-weight: 700;
    font-size: 2.5rem;
    border-radius: 5px;
 }




/* testimonial start */
.section-testmonials {

    display: flex;
    gap: 20px;
    align-items: center;
}

.column-testmonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 20%;
}

.section-details {
    border-left: 10px solid var(--secondary-color);
    padding-left: 20px;
}


.name-section {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    color:var(--text-color);
    line-height: 1.2em;
    margin: 0;
}

.title-section b {
    color: var(--text-color)
}

.title-section {
    color:var(--text-color);

    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.navigation-testmonials {
    display: flex;
    gap: 10px;
}


.swiper-testmonials {
    width: 80%;
    overflow: hidden;
    position: relative;
}
.club60intro-video{
    margin-top: 100px;
}
.home-gallery{
    display: grid;
     grid-template-columns: repeat(3,1fr);
      gap: 1.3rem;
}

@media (max-width: 768px) {
    h1{
        font-size: 3rem!important;
    }
    h2{
        font-size: 2.5rem!important;
    }
    p{
        font-size: 14px;
    }
    iframe{
        height: auto;
    }
    .home-gallery{
        display: grid;
         grid-template-columns: repeat(2,1fr);
          gap: 1.3rem;
    }
    .section-testmonials {
        flex-direction: column;
        align-items: flex-start;
    }

    .swiper-testmonials {
        width: 100%;
    }
    .club60intro-video{
        margin-top: 50px;
    }
}

.swiper-testmonials .swiper-slide {
    border-radius: 10px;
    background: linear-gradient(118deg, #0a3d47, var(--text-color) 83.88%);
    display: flex;
    padding: 5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: scale(0.9) !important;
    filter: blur(1px) grayscale(0.5);
    transition: 0.2s;
}

.swiper-testmonials .swiper-slide * {
    margin: 0;
}

.swiper-testmonials .swiper-slide-active {
    filter: blur(0px) !important;
    transform: scale(1) !important;
}

.card-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.head-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-slide {
    display: flex;
    align-items: center;

}

.title-slide h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}

.title-slide h6 {
    color: #FFCB00;
    font-size: 14px;
    font-weight: 500;
}

.text-slide {
    color: #FFF;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

.swiper-button-testmonials-next,
.swiper-button-testmonials-prev {
    cursor: pointer;
}
/* footer-start */

footer{
    background-color: var(--text-color);
    color: white;
}
footer li, footer p{
    font-size: smaller;
}
footer  a, footer ul,footer p,footer h1{
    color: white!important;
}
footer a:hover{
    color: var(--secondary-color)!important;
}
.footer__inner{
    /* padding-block: 5rem; */
    padding-inline: 2rem;

}
.footer__inner li,.footer__inner p{
    line-height: 3.0rem;
}
.mob{
    display: none;
}
.desk{
 display: block;
}
.new-height{
    height: 100vh;
}

@media(max-width:1000px) {
    .margin{
        margin-block:4rem;
    }
}
@media (max-width: 768px) {
    .carousel-item img{
        height: 30rem;
    }
    svg{
        width: 20px;
    }
    nav {
        padding-block: 1.5rem;
    }

    .mob{
        display: block;
       }
    .header-slide svg {
        width: 50px;
    }
    .margin{
        margin-block:1.5rem;
    }
    .title-slide h4 {
        font-size: 14px;
    }

    .swiper-testmonials .swiper-slide {
        padding: 5px;
    }
    .desk{
        display: none;
       }
}
@media (max-width:600px){
    html{
        font-size: 45%;
    }

    .fa-bars,.fa-xmark {
        display: block;
    }
    .fa-xmark{
        position:absolute;
        right: 2%;
        top:2%;
    }
    .nav__items{
        position: fixed;
        flex-direction: column;
        top: 0%;
        bottom: 0%;
        right: 0%;
        width: 100%;
        transform: translateX(20rem);
        align-items: center;
        background-color: #f8f9fa;
        display: none;

    }
    .nav__items-toggle{
        transform: translateX(0rem);
        display: block;

    }
    .main__image{
        width: 40rem;
    }
   .mob{
    display: block;
   }
   .desk{
    display: none;
   }
}
@media(max-width:1200px){
    html{
        font-size: 50%;
    }
}
.imagrand-event>img{
    object-fit: cover;
    width: 100%;
    height: 300px;
}
@media(max-width:1000px){
    .imagrand-event>img{
        object-fit: cover;
        width: 100%;
        height: 200px;
    }
}
.grand__events .carousel-inner{
    border-inline : 5px solid #212529;

}

.cover_title_higlight{
    background-color:  #212529;
}
