@font-face {
    font-family: Raleway-Regular;
    src: url(/fonts/raleway.regular.ttf);
}

@font-face {
    font-family: Raleway-Bold;
    src: url(/fonts/raleway.bold.ttf);
}

@font-face {
    font-family: Poppins-Regular;
    src: url(/fonts/Poppins-Regular.ttf);
}


@font-face {
    font-family: Poppins-Bold;
    src: url(/fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: Poppins-Semibold;
    src: url(/fonts/Poppins-SemiBold.ttf);
}

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    /* font-family: CeraPro-Regular; */
}

html{
    scroll-behavior: smooth;
}

body 
{
    text-align: center;     
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), #0c0d0f no-repeat;
    background-color: #07071C;
    max-width: max-content;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.about_container{
    height: 80vh;
    width: 80%;
    padding: 20px;
}

.hero{
    position: relative;
}

.gradient {
    content: '';
    position: absolute;
    left: 0;
    top: 70%;
    height: 20%;
    width: 100%;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%); */
}

.about_info{
    height: 450px;
    width: 100%;
    box-shadow: 4px 4px 10px #000, -2px -2px 10px #000;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px ;
}

.about_info p{
    margin-left: 8%;
    font-size: 1.2rem;
    font-family: Raleway-Regular;
}

.about_info .fa-solid{
    font-size: 50px;
    color: #f1f1f1;
    line-height: 100px;
}

.play_button{
    margin: 5% 8%;
    display: flex;
    flex-direction: row;
}

.play_button p{
    margin-left: 90px;
    display: inline; 
    padding-top: 5%;
}

.play_btn_animation{
    color: #f69332;
    font-size: 50px;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    /* right: 0; */
    top: 0;
    bottom: 10;
    margin: auto;
    text-align: center;
    border-radius: 50%;
}

.play_btn_animation:before, .play_btn_animation:after{
    content: "";
    position: absolute;
    border: 2px solid #ccc;
    border-radius: 50%;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    animation: animate 3s linear infinite;
    opacity: 0;
}

.play_btn_animation:after{
    animation-delay: 0.5s;
}

@keyframes animate {
    0%
    {
        transform: scale(.5);
    }
    50%
    {
        opacity: 1;
        transform: scale(.5);
    }
    100%
    {
        transform: scale(1.5);
    }
}

.trailer{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
}

.trailer.active{
    visibility: visible;
    opacity: 1;
}

.trailer video{
    max-width: 900px;
    outline: none;
}

.close{
    position: absolute;
    top: 30px;
    right: 50px;
    cursor: pointer;
    filter: invert(i);
    max-width: 24px;
}

 .about{
    width: 100%;
    height: 90vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-challengers{
    width: 80%;
    display: flex;
    flex-direction: column;
    box-shadow: 9px 5px 44px 0 rgb(0 0 0);
}

.about_container h1, .about-challengers h1{
    position: relative;
    margin: 0% 0 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; 
    text-transform: uppercase;
    font-family: Poppins-Semibold;
    font-size: 3rem;
}

.about_bottom_line, .organizer_bottom_line{
    position: absolute;
    content: "";
    bottom: -3px;
    width: 70px;
    height: 4px;
    margin: 0 auto;
    background-image: linear-gradient(to bottom left, #2caeff, #2eb584);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.organizer_bottom_line{
    width: 80px;
}

.copyright{
    width: 100%;
    height: 100px;
    padding-top: 30px;
}

.copyright a{
    text-decoration: none;
    color: #f1f1f1;
} 

.about-challengers{
    display: flex;
    align-items: center;
    padding: 50px 0 0px 0;
}

.about-challengers-container{
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.challengers-logo-image-container{
    padding-top: 40px;
    height: 250px;
    width: 300px;
}
 
.about-challengers-text{
    width: 600px;
    text-align: left;
    padding: 20px 20px;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 20%);
    border-radius: 5px;
    background-color: #07071C;
    backdrop-filter: blur(5px);
    margin: 0 2vw;
    height: auto;
    text-align: justify;
}

.sahyadri-logo{
    margin-top: 50px;
    height: 180px;
}

.about-challengers-text{
    font-size: 1.1rem;
} 

.sponsor{
    height: 500px;
    padding: 50px 0 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sponsor-text{
    margin-left: 20%;
    padding-top: 7%;
}

.newsletter h3{
    font-family: CeraPro-Bold;
    font-size: 30px;
    font-weight: bold;
}

.sponsor-text p{
    font-size: 20px;
    line-height: 3;
}

.sponsor-text a{
    text-decoration: none;
    color: #f1f1f1;
    font-weight: bold;
}

.vertical_bar {
    height: 450px;
    width: 3%;
    background-color: rgb(116, 116, 116);
    border-radius: 10px 0 0 10px;
    margin-left: 0;
}

.sponsor-text input{
    padding: 10px;
    width: 300px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid gray;
    outline: none;
}

.sponsor-text button{
    padding: 10px;
    background-color: #f69332;
    border-radius: 5px;
    font-size: 18px;
}

.gradient-text-background{
    display: inline;
    background-image: linear-gradient(to bottom left, #00acd1, #2eb584); 
    background-clip: content-box; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: #5088dc; 
}

::-webkit-scrollbar { width: 5px;
}
::-webkit-scrollbar-track { background: #121212; border-radius: 50px;
}
::-webkit-scrollbar-thumb { background: gray; border-radius: 50px;
}

.newsletter input {
    padding: 10px;
    width: 300px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid white;
    outline: none;
    color: #fff;
}

.newsletter input::placeholder{
    color: #f1f1f1;
}

.newsletter button {
    padding: 10px;
    background-color: #5088dc;
    background-image: linear-gradient(to bottom left, #00acd1, #2eb584);
    border-radius: 5px;
    font-size: 18px;
    color: white;
}

.newsletter{
    padding-left: 10%;
}

.newsletter h3{
    font-family: Raleway-Bold;
    font-size: bold;
}

.newsletter p{
    margin-top: 30px;
    font-size: 20px;
}

.newsletter a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.down_arrow:hover{
    transform: scale(1.2);
    animation-timing-function: ease-in-out;
}

p{
    font-family: Raleway-Regular;
}

span{
    color: white;
    margin-top: 10px;
    display: block;
}

.hero-video-portrait{
    display: none;
    height: auto;
}

.challengers-logo{
    height: 160px;
}

.challengers-logo-text{
    height: 50px;
}

.sponsor1{
    height: 90vh;
    background-image: url('/images/background_dotted_line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news{
    width: 80vw;
    background: -webkit-linear-gradient(0deg, rgba(33, 27, 92, 0.8018557764902836) 35%, rgba(11, 11, 46, 0.3536765047816002) 100%);
    backdrop-filter: blur(40px);
    height: 280px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

#preloader{
    background: #000 url(/images/circle-loader.gif) no-repeat center center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

/* -------------------------------Media Queries (Responsive)--------------------------------- */

@media only screen and (min-width: 800px) and (max-width: 900px) {

    .about_info p{
       font-size: 1.1rem;
       text-align: center;
    }

    .about img{
        display: none;
    }

    .newsletter {
        padding-left: 10px;
        padding-top: 50px;
    }

    .about-challengers-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-challengers-text{
        width: 100%;
        text-align: center;
        height: 100%;
    }

}

@media only screen and (max-width: 800px) {

    body, html{
        overflow-x: hidden;
    }
    .hero-video{
        display: none;
    }

    .hero-video-portrait{
        display: block;
        height: 100vh;
        width: 100%;
    }

    .sponsor{
        height: auto;
    }

    .airplane{
        display: none;
    }

    .about_info{
        overflow: hidden;
    }

    .about_img{
        display: none;
    }

    .newsletter{
        display: flex;
        flex-direction: column;
        padding-top: 25px;
        padding-left: 0;
    }

    .newsletter h3{
        font-size: 20px;
        margin-bottom: 20px;
    }

    .newsletter p{
        font-size: 20px;
    }

    .about{
        margin-top: 20px;
        width: 100vw;
    }

    .about_container{
        width: 100vw;
    }

    .about_info{
        width: 100vw;
        height: 70vh;
        padding: 5% auto;
        text-align: center;
        overflow-x: hidden;
    }


    .about_info p{
        overflow: hidden;
        margin-left: 0%;
        margin-right: 30px;
        font-size: 1.1rem;
        padding: 0 20px;
        font-family: Raleway-Regular;
        text-align: justify;
    }

    .about_info .vertical_bar{
        display: none;
    }


    .play_button p{
        padding-top: 35px;
        padding-left: 80px;
    }

    .about-challengers{
        width: 100%;
    }

    .about-challengers-container{
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-challengers-text{
        width: 100%;
        text-align: center;
        height: 100%;
        text-align: justify;
        padding: 30px;
    }

    .gradient{
        position: absolute;
        top: 80%;
    }

    .about_container h1, .about-challengers h1{
        font-size: 2.5rem;
    }

    .about_info{
        height: 50vh;
    }

    .about_container{
        height: 50vh;
    }
    .sahyadri-logo{
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 700px) {

    .sahyadri-logo{
        margin-bottom: 20px;
    }
    .about_info{
        height: 50vh;
    }
    .about-challengers {
        width: 100%;
    }  

    .news{
        display: inline-block;
    }

    .sponsor1{
        height: auto;
        padding: 20px;
    }

}

@media only screen and (max-width:600px) {

    .sponsor1{
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .about_info{
        height: 50vh;
    }
        
    .about-challengers {
        width: 100%;
    }  
    
}

@media only screen and (max-width: 482px) {

    #arrow{
        display: none;
    }
    
    .about_container{
        height: auto;
    }

    .about_info{
        height: auto ;
        padding-bottom: 50px;
    }

    .about_info p, .about-challengers-text{
        font-size: 1rem;
    }

    .about_container h1, .about-challengers h1 {
        margin-bottom: 30px;
        font-size: 2rem;
    }

    .about-challengers {
        width: auto;
    }      
    
    .challengers-logo-image-container {
        height: 182px;
        margin-bottom: 30px;
        padding-top: 0;
    }
    
    .copyright p{
        font-size: 14px;
    }

    .about-challengers-container{
        padding-top: 0;
    }

    .play_button p {
        padding-top: 40px;
        padding-left: 80px;
        font-size: 14px;
        text-align: center;
    }

    .newsletter button{
        margin-top: 2px;
        border: none;
        padding: 8px;
        font-size: 16px;
    }

    .newsletter input{
        padding: 8px;
        width: 60%;
    }
     
    .newsletter h3{
        font-size: 4vmin;
    }

    .newsletter p{
        padding: 0 10px;
        font-size: 16px;
    }

    .sahyadri-logo{
        height: 130px;
        margin-bottom: 20px;
    }

    .challengers-logo{
        height: 130px;
    }
    
    .challengers-logo-text{
        height: 55px;
    }

    .sponsor1{
        height: 65vh;
    }

    .about{
        height: 70vh;
    }
}

@media only screen and (max-width: 360px) {

    .newsletter button{
        margin-top: 2px;
        border: none;
        padding: 6px;
        font-size: 14px;
    }

    .newsletter input{
        padding: 6px;
        width: 50%;
    }
     
    .newsletter h3{
        font-size: 12px;
    }

    .newsletter p{
        padding: 0 10px;
        font-size: 12px;
    }
    
}
