/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Sapru';
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*IGNORE ABOVE CODE*/

/* Adding Sapru */
@font-face{
    font-family: 'Sapru';
    src:url("Sapru-Regular.otf");
    font-style: normal;
    font-weight: 100;

}
/* Removing scroll bar */
::-webkit-scrollbar{
    display: none;
}



body{
    
    background-image: url(bgnew.jpg);
    /* background: linear-gradient(181.35deg, #24344B 0.75%, #3F2F40 64.61%, #1D1324 99.2%);Animation: 45deg */
    background-repeat: no-repeat;
    overflow-x: hidden;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    text-align: center;
     /* background-size: 400% 400%;
	animation: gradient 15s ease infinite; --> Animation*/
    
    
}

.intro{
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    height: 100vh;
    align-items: center;
    background-color: #163aa5;
    transition: 1.5s;
}

.logo{
    position: relative;
    margin-top: 9%;
    display: inline-block;
    height: 50%;
    opacity: 1; 
}
.v202_4 {
  width: 100%;
  color: rgba(255,255,255,1);
  position: absolute;   
  top: 65%;
  left: 0px;
  font-family: 'Sapru';
  font-weight: normal;
  font-size: 64px;
  opacity: 1;
  text-align: center;
}
.intro.active {
    opacity: 1;
    animation: ease-in-out 5s;
  }

.above{
   width: 78%;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   align-items: center;
}

.main-nav{
    margin: 25px auto 15px auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
 }
 .main-nav-list{
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
 }
 
 .main-nav-item{
     display: flex;
     flex: row;
     justify-content: center;
     align-items: center;
     width: 50% ; 
    font-size: 22px;
    font-family: 'Sapru';
    font-style: normal;
    font-weight: 100;
    margin: 5px 5px;
    text-align: center !important;
    /* padding-right: 15px; */
    padding: 5px;
 }

/* .btn{
    position: relative;	
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);	
	cursor: pointer;
	user-select: none;
}

.btn:before, .btn:after {
	content: '';
	position: absolute;	
	transition: inherit;
	z-index: -1;
}

.btn:hover {
	color: #14213D;
	transition-delay: .5s;
}

.btn:hover:before {
	transition-delay: 0s;
}

.btn:hover:after {
	background: #fff;
	transition-delay: .35s;
}

.from-top:before, 
.from-top:after {
	left: 0;
	height: 0;
	width: 100%;
}

.from-top:before {
	bottom: 0;	
	border: 1px solid  #fff;
	border-top: 0;
	border-bottom: 0;
}

.from-top:after {
	top: 0;
	height: 0;
    /* right: 1; 
}

.from-top:hover:before,
.from-top:hover:after {
	height: 100%;
} */

.btn {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}


.btn:before {
    content: '';
    background: linear-gradient(45deg, #2a60b7, #1923ad, #2a60b7, #1923ad, #2a60b7);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.btn:active {
    color: #000
}

.btn:active:after {
    background: transparent;
}

.btn:hover:before {
    opacity: 1;
     
} 


.btn:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.visible{
    display: none !important;
}

.logo-container{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px auto 0px auto;
}
.logo-box{
    width: 70%;
}
#logo{
    width: 100%;
    height: auto;
}

.timer-box{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
#demo{
    font-family: 'Sapru';
    font-weight: 300;
    font-size: 36px;
    margin: 20px auto 20px auto;
    color: #D3C6CB;
}

.info-container{
    width: 70%;
    height: auto;
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px auto 80px auto;
}

.sponsor-box{
    width: 100%;
    height: auto;
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#spon-img{
    width: 40%;
    align-items: center;
    height: auto;
	display:block !important;
}

#visi{
	display: flex !important;
}

h3{
    font-size: 22px;
    font-family: 'Sapru';
    font-weight: 300;
    letter-spacing: 3px;
    margin: 20px auto 5px auto;
    /* line-height: 30px; */
    /* text-decoration: underline; */
}
.update-hr{
    width: 70%;
    margin-bottom: 20px;
}
.spon-hr{
    width: 30%;
    margin-bottom: 20px;
}

.update-container{
   width: 100%;
   height: auto;
   display: flex;
   flex-direction: row;
   justify-content: space-evenly;
   align-items: center;
}

.update-box{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.update-box .img-box {
    width: 70%;
    align-items: center;
}
.guest-box{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
/* .guest-box .img-box{
    background-color: rgba(128, 34, 60, 0.8);
} */

.guest-box img {
    width: 70%;
    height: auto;
}
#countdown {
    background-color: #00000000;
    border: 2px solid #ffffff;
    width: 35%;
    border-radius: 15px;
    display: inline-block;
    margin: 10px auto;
    padding: 21px;
    margin-bottom: 80px;
    padding: 20px;
    font-size: 50px;
    font-family:'Montserrat',sans-serif;
    animation: color-change 3s infinite;
    opacity: 100%;
  }
  @keyframes color-change {
    12.5% { color: white; }
    50% { color: rgb(255, 255, 255) }
    75% { color: rgb(255, 255, 255) }
    12.5% { color: rgb(255, 255, 255); }
}
  #countdown h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .subheading{
    text-align: center;
    font-size: 50px;
    font-family: 'Sapru';
    margin: 25px auto;
    
}
.row{
    width: 100%;
    height: auto;
    display: flex;
    margin-bottom: -30px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.outer-box{
    width: 20%;
    height:auto;
    margin: 24px;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 50px;
}
.image-box{
    width: 100%;
    border-radius: 100px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

img{
    margin: 20px auto 10px auto;
    width: 100%;
    border-radius: 50px;
    height: auto;
    padding-bottom: 5px;
}

.name{
    margin-top: 15px;
    font-family: 'Sapru';
    font-size: 30px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 10px;
    letter-spacing: 4px;
}
.desig{
    font-family:'Sapru';
    margin: 5px auto 10px auto;
    font-size: 25px;
    color:#ffffff;
    font-style: normal;
    font-weight: bolder;
	text-align: center;
    margin-bottom: 50px;
}
/* .anchor-img{
	width:50%;
	height:auto;
	display:flex;
	flex-direction:row;
	justify-content: center;
	align-items: center;
}  
.row{
    margin: 1% auto 2% auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width:80%;
    height: auto;

} 
.below{
    width: 85%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
} */

/*MEDIA QUERIES*/
/* @media screen and (min-width:1050px){
.side-nav{
    display: none !important;
}
} */
/* @media screen and (min-width:100px) and (max-width:500px) {
    .main-nav{
        display: none !important;
    }
    #side-nav{
        display: block !important;
    }
    .footer-container{
        display: none !important;
    }
    #countdown{
        width: 55%;
        font-size: 20px;
    }
    .logo-box{
        width: 120%;
        height: 100%;
    }
    .subheading{
        font-size: 20px;
    }
    .name{
        font-size: 15px;
        line-height: 15px;
        align-items: center;
    }
    .desig{
        font-size:10px ;

    }
} */
@media screen and (min-width:1000px) and (max-width:1920px){
   .countdown{
    font-size: 50px;
    
   }
}
@media screen and (max-width:1400px) {
    .subheading{
        font-size: 30px;
    }
    .main-nav{
        visibility: hidden;
        display: none !important;
    }
    .logo-container{
        margin-top: 120px;
        width: 100%;
    }
    #demo{
        font-size: 26px;
    }
    .update-container{
        flex-direction: column-reverse;
    }
    .update-box{
        width: 60%;
    }
    .guest-box{
        width: 60%;
    }
    #spon-img{
        width: 100%;
    }
    .update-box img {
        width: 100%;
    }
    .guest-box img {
        width: 100%;
    }
    h3{
        font-size: 20px;
        line-height: 22px;
    }
    h2{
        font-size: 36px;
    }
    .text-outer-box{
        width: 80%;
    }
    .footer-container{
        display: none !important;
    }
    #countdown{
        width: 300px;
        font-size: 30px;
    }
    
    .social{
        margin-right: -284px !important; 
    }
    .name{
        font-size: 20px;
        line-height: px;
    }
}

@media screen and (max-width:750px) {
    
    .logo-box{
        width:110%;
    }
}

@media screen and (max-width:450px) {
    .about-text{
        font-size: 12px;
    }
    .para-text{
        font-size: 12px;
    }
    .message-text{
        font-size: 12px;
        padding-top: 0px;
    }
    h2{
        font-size: 30px;
    }
    h4{
        font-size: 18px;
    }
    h5{
        font-size: 14px;
    }
}

@media screen and (max-width:400px) {
    
    .h1{
        font-size: 60px;
    }
    
    .subheading{
        font-size: 20px;
    }
    .row{
        margin-bottom: -30px;
        align-items: center;
        width: 100%;
    }
    .name{
        font-size: 15px;
    }
    .desig{
        font-size: 20px;
        width: 100%;
    }
    .outer-box{
        width: 100px;
    }
    .footer-container{
        display: none !important;
    }
    
}

/*SIDE_NAV*/

@media screen and (min-width:100px) and (max-width:1000px){
    /*SIDE_NAV*/
    .side-nav{
        visibility: visible !important;
    }
}


.side-nav{
    position: fixed;
    top: 10px;
    right: 10px;
    visibility: hidden;
    z-index: 1 !important; 
}

.but-nav{
    width: 100%;
    height: auto   ;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-color: rgb(255, 255, 255);
    color: rgb(255, 0, 0);
    border-style: none;  
    /* font-size: 150px;  */
    cursor: pointer;  
}

.material-icons{
    font-size: 35px !important;
}
.nav2-column{
    visibility: visible !important;
    z-index: 3 !important;
}
.side-nav-list{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: 60px auto;
}

.close-nav{
    color: white;
    cursor: pointer;
}

.overlay{
    visibility: hidden;
}

.overlay2{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    visibility: visible;
    z-index: 2 !important;
    cursor: pointer;
}

.nav-hr{
    width: 60% !important;
    margin: 5px auto !important;
}

.li-side{
    width: 50%;
    font-size: 15px;
    margin: 5px auto;
    padding: 15px 15px;

}
.nav-column{
    /* padding: 10px; */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    visibility: hidden;
}

/*SIDE_NAV_END*/




.footer-container{
    width: 125%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px ;
    align-items: center;
    background-color: rgb(244, 240, 240);;
    font-size: 20px ;
    font-family: 'Sapru';
    text-align: center; 
}
.footer{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-family: 'Sapru';
}
.creds{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    font-family: 'Sapru';
}
.social{
    width: 5px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content:right;
    align-items: center;
    color: rgb(16, 16, 16);
    margin-right: -600px !important;
}

#footer-h2{
    font-family: 'Sapru';
    font-size: 15px;
    letter-spacing: 5px;
    text-align: center;
    color: rgb(10, 10, 10);
    text-decoration: none !important;
    font-weight: bolder;
    padding: 5px 15px;
    margin: 20px auto;
    margin-left: -300px;
    justify-content: center;
    margin-right: 100px;
    z-index: 2;
    font-family: 'Sapru';
}

a{
    text-decoration: none;
    color: rgb(14, 13, 13);
    font-weight: bolder;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    font-family: 'Sapru';
}

i{
    color: rgb(12, 12, 12);
    cursor: pointer;
} 

/*FOOTER_END
