@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* navbar styling starts here  */
.res-menu-btn{
  overflow: hidden;
}
.res-nav{
    width: 100vw;
    height: 0vh;
    z-index: 200000;
    position: fixed;
    background-color: orange;
    transition: height 1s ease-in-out;
    -webkit-transition: height 1s ease-in-out;
    overflow: hidden;
  }
  .res-nav ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .res-nav button{
    background-color: transparent;
    border: none;
    color: white;
    font-weight: 500;
    font-size: large;
  }
  .res-nav.opened{
    height: 100vh;
  }
  
  #nav-icon4 {
    width: 50px;
    height: 100%;
    position: relative;
    margin: 10px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 80%;
    background: #d3531a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4 span:nth-child(2) {
    top: 15px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4 span:nth-child(3) {
    top: 30px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4.open span{
    background-color: white;
  }
  
  #nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    left: 8px;
  }
  
  #nav-icon4.open span:nth-child(2) {
    top: 35px;
    width: 0%;
    opacity: 0;
  }
  
  #nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 34px;
    left: 8px;
  }
  
  .res-menu-btn{
    display: none;
  }
 
  nav{
    display: flex;
    flex-direction: row;
    padding: 0 3.5%;
    justify-content: space-between;
    width: 100vw;
    height: fit-content;
    background: rgba( 255, 255, 255, 0.3 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px ); 
    -webkit-backdrop-filter: blur( 5.5px ); 
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    z-index: 2000000;
    position: fixed;
  }
  nav button{
    background: transparent;
    border: none;
    padding: 1.5rem 1.4rem;
    font-weight: 700;
    font-size: 1fr;
    color: #1d3557;
    border-bottom: 3px solid transparent;
    text-align: center;
  }
  button{
    background: transparent;
  }
  nav button:hover{
    border-bottom: 3px solid #1d3557;
  }
    
    @media screen and (max-width: 1250px) {  /*tablet*/
      .nav-btns{
        display: none;
      }
      .res-menu-btn{
        display: inline;
      }
        .login-btn, .regis-btn{
        padding: 3.3% 5.6%;
        font-size: 95%;
      }
    }
    @media screen and (max-width: 500px){ /*mobile*/
  
      .login-btn, .regis-btn{
        padding: 6% 10%;
        border: 1px solid white;
      }
      .nav-btns{
        display: none;
      }
      .res-menu-btn{
        display: inline;
      }
    }
    
    @media screen and (min-width: 1000px) and (min-height: 1200px){   /* ipad pro*/
  
      .login-btn, .regis-btn{
        padding: 3.7% 6.6%;
        font-size: 1.2em;
    }
    }
    
    @media screen and (max-height: 700px) and (min-width: 1000px){  /* small height desktop*/
      .header img{
        width: 25vw !important;
      }
    }
    @media (min-width: 700px) {
     .leading {
        display: flex;
        align-items: center;
      }
    }
/* navbar ends here  */



body{
  background-image: url('./../static/schedule/schedulebg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
/* 
.container{
  width: 100vw;
  height: 100vh;
 padding-top: 100px;
}

.schedule-box{

  
  height: 70vh;
  width: 60%;
  border-radius: 15px;
}

.events_list{
  background: rgba( 255, 255, 255, 0.3 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 5.5px ); 
  -webkit-backdrop-filter: blur( 5.5px ); 
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  height: 100%;
}
 */


/* responsiveness  */

@media screen and (max-width: 715px){
  .container{
    flex-direction: column;
    align-items: center;
    row-gap: 10%;
    top: 30%;
  }
}

.reg-btn{
  border-radius: 100px;
  padding: 13px 17px;
  min-width: max-content;
  font-weight: 600;
  background-color: #1d3557 !important;
  color: #fff !important;
  border: none;
}

/* Social Side Bar <<< Start >>> */

.social-sidebar{
  border-radius: 0px 10px 10px 0px;
  background-color: #1d3557;
  padding: 18px 10px 18px 8px;
  height: fit-content;
  position: fixed;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10000;
}

.social-med-btn{
  cursor: pointer;
}
.social-sidebar .social-med-btn:hover{
  color: #1d3557 !important;
}

.social-med-btn{
  border: 1.5px solid #fbfbf2;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fbfbf2;
}

.social-med-btn:hover{
  border: 1.5px solid #fbfbf2;
  background-color: #fbfbf2;
  color: #7f5690;
}

@media screen and (max-width: 500px){ /*mobile*/
  .social-sidebar{
    padding: 10px 5px 10px 4px;
  }
  .social-sidebar .social-med-btn{
    border: 0;
  }
  .social-med-btn{
    width: 30px;
    height: 30px;
    border: 1px solid white;
  }
  .social-med-btn i{
    font-size: 150% !important;
  }
}

/* Social Side Bar <<< End >>> */
/* 
.dates_list{
  height: 10%;
  background-color: transparent;
  display: flex;
  flex-direction: row;
}

.schedule-box{
  display: flex;
  flex-direction: column;
}

.day{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day:hover {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(29, 53, 87,0.2);
  border-radius: 10px 10px 0px 0px;
  color: #1d3557;
}

.day h1{
  font-size: 20px;
  
}


.day:hover{
  font-size: 20px;
  color: #fff;
}

@media(max-width:600px){
  .schedule-box{
    width: 90%;
  }

  .day h1{
    font-size: 15px;
  }
}

.dates_list{


}

.events_list .day1{
  height: 100%;
  
}

.day2{
  background-color: #d3531a;
  height: 100%;
}

.day3{
  background-color: #1a73d3;
  height: 100%;
}

.day4{
  background-color: #bad31a;
  height: 100%;
}

#button_1{
  background-color: rgb(29, 53, 87,0.2);
  border-radius: 0 10px 0px 0;
}

#button{
  border-radius: 0 10px 0px 0;
} */

.container{
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule_box{
  height: 80vh;
  width: 60%;
  margin-top: 50px;
  border-radius: 15px;
  overflow: hidden;
}

.button_box{
  display: flex;
  flex-direction: row;
  background: rgba( 255, 255, 255, 0.3 );
  /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
  backdrop-filter: blur( 5.5px ); 
  -webkit-backdrop-filter: blur( 5.5px ); 
  /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
}


.tablink{
  background-color: transparent;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 17px;
  width: 100%;
  font-weight: bold;
  /* border-radius: 10px 10px 0px 0; */
}


.tablink:hover {
  background-color: #777;
}

.tablink:active{
  background-color: #1d3557;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  background: rgba( 255, 255, 255, 0.3 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 5.5px ); 
  -webkit-backdrop-filter: blur( 5.5px ); 
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  color: white;
  display: none;
  height: 100%;
  overflow-x: scroll;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;
  padding-bottom: 40px !important;
}

.tabcontent::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}
/* 
#Home {background: rgba( 255, 255, 255, 0.3 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 5.5px ); 
  -webkit-backdrop-filter: blur( 5.5px ); 
  border: 1px solid rgba( 255, 255, 255, 0.18 );}
#News {background-color: green;}
#Contact {background-color: blue;}
#About {background-color: orange;} */

.schedule {
  font-family: 'Montserrat', sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.schedule .club-name{
  font-size: small;
  font-weight: normal;
}

td{
  border: 1px solid transparent;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
  padding: 8px;
}

td:nth-child(0) { 
  width: 10%;
  color: #ffffff;
}


td:last-child { 
  padding: 8px;
}

tr{
  text-align: center;  
}

tr:nth-child(2n+1) {
  background-color: rgb(29, 53, 87, 0.05);
  }

tr:nth-child(2n){
  background-color: rgb(29, 53, 87, 0.3);
}

@media(max-width:628px){
  .schedule{
    font-size: 14px;
    width: 100%;
  }

  .schedule_box{
    width: 75%;
  }

  .schedule .reg-btn{
    border-radius: 100px;
    padding: 6px 10px !important;
    font-size: 11px;
    min-width: max-content;
    font-weight: 500;
    background-color: #1d3557 !important;
    color: #fff !important;
    border: none;

  }
}

@media(max-width:450px){

  td{
    padding: 6.5px;
  }
}

@media(max-width:360px){

  .schedule_box{
    width: 85%;

  }
}

@media(max-width:320px){

  .tablink{
    font-size: 15px;

  }
}