body{
    margin: 0;
    padding: 0;
     box-sizing: border-box; 
    background-color: var(--bg_color_03);
   
   
}

.links{
    width: 100vw;
    height: 50px;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

 .links div{
    margin-right: 100px;
} 

.links a{
    color: aliceblue;
    font-family: var(--link_font);
    font-size: 1rem;
    text-decoration: none;
    padding: 0 10px;
    border-left: 2px solid #fff;
    transition: all .2s ease-in-out;
}

.links a:nth-child(1){
    border: none;
}

.links a:hover{
    color: orange; 
    
}

.titles{
    width: 100vw;
    height: 200px;   
    display: flex;
    font-family: var(--main_font);
    text-align: center;
}

.title-left{
    width: 50%;
    height: 100%;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 13%;    
}

.logo h5{
    color: rgb(255, 255, 255);
    font-family: var(--link_font);
    font-size: 1rem;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.closing-date p{
    font-size: 1.3rem;
    color: #868686;
    margin: 20px 0 0 0 ;
}

.closing-date .date{
    font-size: 1.5rem;
    color: #4ba8b2;
    margin:0 0 20px 0; 
}

.title-right{
    width: 50%;
    height: 100%;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    gap: 10px; 
}

.title-right h5{
    font-family: var(--main_font);
    font-size: 1.6rem;
    color: orange;
    text-transform: capitalize;
    margin: 0;
}

.title-right p{
    font-family: var(--main_font);
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    margin: 0;
}

.title-right p a{
    
    font-size: 1rem;
    color: #4ba8b2;
    text-transform: capitalize;
    text-decoration: none;
    
}

.slider{
    width: 100vw;
    height: 400px;   
    overflow: hidden;
}

.slider img{
    height: 100%;
    object-fit: contain;
    animation: slide;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate; 
}

@keyframes slide{
    0% {translate: 0; }
    100%{translate: -55%;}
}

/* Social links */
.social-links{
    width: 70px;
    height: 250px;
    background-color: #4ba8b2;
    position: fixed;
    top: 325px;
    right: 0px;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;   
    text-align: center;
}


.link-01 img, .link-02 img, .link-03 img, .link-04 img{
    width: 40%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}


/* Social links END */

.countdown{
    width: 100vw;
    height: 100px;    
    margin-top: 30px;
    font-family: var(--main_font);
}

.countdown div{
    width: 50%;       
    display: flex;
    flex-direction: column;
    height: 100px;
    align-items: center;
}

.timer{
    color: orange;
    font-size: 1.2rem; 
    margin: 0;   
}

.reg-btn{
    margin-top: 20px;
}

.reg-btn a{
    margin: 0;  
    color: rgb(255, 255, 255);
    font-size: 1rem;
    background-color: orange;    
    padding: 10px 50px;
    text-decoration: none;
    border: none; 
    cursor: pointer;
    box-shadow: 0 0 5px wheat;
    text-transform: capitalize;
    transition: all .3s ease;
}

.reg-btn a:hover{
    transform: translateY(-3px);
    background-color: rgb(255, 123, 0);
}

/* Detail Section */
.details{
    font-family: var(--main_font);
    color: aliceblue;
    width: 70vw;
    margin: 0 auto;
    font-family: var(--font_03);
    display: flex;
    justify-content: space-around;
    
}


.details .left .headding{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headding h3{
    font-size: 1.6rem;
    font-family: var(--font_03);
}

.headding hr{
    width: 50%;
    text-align: left;
}

.headding p{
    color: var(--main_color_02);
    
}

.content h3{
    font-size: 1.5rem;
    font-family: var(--font_03);
    color: #4ba8b2;
}

.content .p-01{
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #868686;
}

.content .p-02 span a{
    text-decoration: none;
    color: #4ba8b2;
    padding-left: 4px;
}

.content .p-05 span a{
    text-decoration: none;
    color: #4ba8b2;
    padding-left: 4px;
}

.content .p-03, .p-06{
    line-height: 1.5rem;
}

.content .p-04{
    color: #4ba8b2;
    font-size: 1.1rem;
    font-family: var(--font_03);
}

.right{
    padding: 50px;
    margin-top: -100px;
    
}

.right img{
    width: 400px;
}

/* Detail Section END */

/* Sponcers */
.sponcers{
    width: 50vw;
    
    height: 100px;
    margin: 20px auto; 
    display: flex;
    justify-content: space-evenly;
}

.sponcers img{
   aspect-ratio:auto;
   scale: .8;
}
/* Sponcers END */

/* Rules */

hr{
    border: 1px dashed orange;
    border-radius: 5px;
}

.rules{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--main_font);
    margin-top: 50px;
}

.rules .sub-headding{
    display: flex;
    align-items: center;
}


.rules .sub-headding .div-01{
    width: 20vw;
}
.rules .sub-headding .div-02{
    width: 10vw;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}
.rules .sub-headding .div-03{
    width: 70vw;
}

.rules .content{
    color: #ffffff;
    font-size: 1rem;
}

.rules .content{
    text-align: center;
}

.pdf-link{
    display: flex;
    gap: 50px;
}

.pdf-link a{
    text-decoration: none;
    background-color: orange;
    padding: 10px 30px;
    color: #000000;
    font-family: var(--font_03);
}

.pdf-link a:hover{
    background-color: rgb(255, 123, 0);
}
/* Rules END */

/* Meet Judged Start */
.meet-judges{
    display: flex;
    width: 100vw;
    height: 500px;   
    margin-top: 50px;
    justify-content: space-between;
}

.judges-left{
    width: 20%;
    height: 500px;
    background-color: #1b2130;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.judges-left .mobile{
    display: none;
}

.judges-left .desktop{
    font-family: var(--font_03);
    font-size: 1.2rem;
    color: #fff;

}

.judges-right{
    width: 70%;
    height: 500px;
    background-color: #1b2130;
    border-radius: 10px 0 0 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.judge-01{
    width: 200px;
    
}

.judge-01 img{
    width: 200px;
    height: 250px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 10px;
}

.judges-right h5{
    color: #fff;
    font-family: var(--font_03);
    font-size: 1rem;
    text-align: center;
    font-weight: 300;
}

.judges-right p{
    color: #c9c9c9;
    font-family: var(--font_03);
    font-size: .8rem;
    text-align: center;
    font-style: italic;
}






/* Meet Judged End*/



/* Awards */
.awards{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--main_font);
    margin-top: 50px;
}

.awards .sub-headding{
    display: flex;
    align-items: center;
}


.awards .sub-headding .div-01{
    width: 70vw;
}
.awards .sub-headding .div-02{
    width: 10vw;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}
.awards .sub-headding .div-03{
    width: 20vw;
}

.awards .content{
    display: flex;
} 

.content-left{
    width: 50vw;    
    align-items: center;
    justify-content: center;
    color: #fff;
}

.content-left div{
    width: 40%;
    margin: 0 auto;
}

.content-left ul{
   font-family: var(--font_03);
   line-height: 2rem;
}

.awards .content-right{
    width:50vw;
    display: flex;
    align-items: center;
    justify-content: center;
   
    
}

.content-right .medals{
    display: flex;
    gap: 50px;
    
}

.trophy img{
    width: 250px;
}

.medal {
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}
.medal img{
    width: 100px;
}
/* Awards END */


/* Key Dates */
.key-dates{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--main_font);
    margin-top: 50px;
}

.key-dates .sub-headding{
    display: flex;
    align-items: center;
}


.key-dates .sub-headding .div-01{
    width: 20vw;
}
.key-dates .sub-headding .div-02{
    width: 10vw;
    text-align: center;color: #ffffff;
    text-transform: uppercase;
}
.key-dates .sub-headding .div-03{
    width: 70vw;
}


.key-dates .content-left ul li span{
    color: var(--main_color_02);
}


.key-dates .content{
    display: flex;
}

.key-dates .content-left{
    width: 50vw; 
    
  
}

.key-dates .content-right div{
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.key-dates .content-right img{
    opacity: .1;
    width: 30%;
    text-align: center;
    
    
    


}
/* Key Dates END */



/* Team Srat */

.team{
    width: 100vw;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1b2130;
    
}

.team h3{
    font-family: var(--main_font);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

.team-members{
    width: 40%;
    display: flex;    
    align-items: center;
    justify-content: space-evenly;
}

.member{  
   text-align: center;
}

.member img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 10px;
}

.member h5{
    color: #fff;
    font-family: var(--font_03);
    font-size: 1rem;
    text-align: center;
    font-weight: 300;
    margin: 10px 0 0 0;
}

.member p{
    color: #c9c9c9;
    font-family: var(--font_03);
    font-size: .8rem;
    text-align: center;
    font-style: italic;
    margin: 5px 0 0 0;
    
    
}
/* Team End */



/* Laptop SCREEN */
@media screen and (max-width:1400px) {

    .links{
        justify-content: center; 
    }

    .links div{
        margin-right: 0;
    }

    .links a{
        font-size: .8rem;
    }

   

    .title-left, .title-right{
        width: 100%;
    }
    
    .logo h5{
        font-size: .9rem;
    }

    .closing-date p{
        font-size: 1rem;
    }

    .closing-date .date{
        font-size: 1.2rem;
    }

    .title-right p{
        font-size: 1.3rem;
    }
    
}

/* MOBILE SCREEN */
@media screen and (max-width:500px) {

    .links{
        justify-content: center; 
    }

    .links div{
        margin-right: 0;
    }

    .links a{
        font-size: .8rem;
    }

    .titles{
        flex-direction: column-reverse;
        margin-top: 20px;
    }

    .title-left, .title-right{
        width: 100%;
    }
    
    .logo h5{
        font-size: .6rem;
    }

    .logo img{
        width: 120px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .closing-date p{
        font-size: .8rem;
        margin: 0;
    }

    .closing-date .date{
        font-size: 1rem;
    }

    .title-right p{
        font-size: .7rem;
    }
    .title-right p a{
        font-size: .7rem;
    }
    .title-right h5{
        font-size: 1rem;
    }

    .slider{
        height: 300px;
    }

    @keyframes slide{
        0% {translate: 0; }
        100%{translate: -85%;}
    }

    .countdown div{
        width: 100%;
    }

    .timer{
        font-size: 1rem;
    }

    .reg-btn a{
        font-size: .8rem;
    }

    .details{
        flex-direction: column-reverse;
    }

    .details .left .headding{
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .headding h3{
        font-size: 1rem;
    }
    
    .content h3{
        font-size: .9rem;
        text-align: center;
    }

    .content .p-01{
        text-align: center;
    }
    
    .content{       
        font-size: .8rem;        
    }

    .right{
        padding: 0;
        margin: auto;
    }
    
    
    .right img{
        width: 200px;
    }


    /* Sponcers */
    .sponcers{
        width: 100vw;    
        height: auto;        
        display:flex;
        
    }

    .sponcers img{
        width: 100px;
        margin: 10px;
        scale: .7;
    }

    /* Social Links */

    .social-links{
        display: none;
    }

    .rules .sub-headding .div-01, .div-03{
        display: none;
      }

   /* Awards Start */
   .awards .sub-headding .div-01, .div-03{
     display: none;
   }

   .awards .content{
        flex-direction: column;
   }

   .content-left{
        width: 100vw;    
   }

   .content-left div{
        width: 80%;
   }

   .awards .content-right{
        width: 90vw;
        margin: 0 auto;
   }

   .content-right .medals{   
        gap: 10px;
    }

    .trophy img{
        width: 200px;
    }

    .medal {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .medal img{
        width: 80px;
    }


    /* Key Dates Start */
    .key-dates .sub-headding .div-01, .div-03{
        display: none;
    }

    .key-dates .content-left{
        width: 100vw;
    }

    .key-dates .content-right{
        display: none;
    }


    .key-dates h3, .awards h3, .rules h3{
        background-color: #4ba8b2;
        padding: 5px;
        text-align: center;
    }



    /* Sub Heddings */
    hr{
        border: none;
    }

   .rules{
        margin-bottom: 50px;
    }

    .rules .sub-headding .div-02, 
    .key-dates .sub-headding .div-02, 
    .awards .sub-headding .div-02{
        width: 90vw;
    }

    .rules .sub-headding .div-02 h3, 
    .key-dates .sub-headding .div-02 h3, 
    .awards .sub-headding .div-02 h3{
    
        font-size: small;
        text-align: center;     
    }

    .pdf-link{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Meet Judges Start */
    .meet-judges{
       justify-content: center; 
       align-items: center;
       flex-direction: column;
       height: 400px;
    }

    .judges-left{
        width: 80vw;
        height: 50px;
        background-color:rgba(0, 0, 0, 0);
    }

    .judges-left .desktop{
        display: none;
    }

    .judges-left .mobile{
        text-align: center;
        font-family: var(--font_03);
        font-size: 1rem;
        color: #4ba8b2;
    }

    .judges-right{
        width: 90vw;              
        border-radius: 10px;        
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--bg_color_03);
        gap: 15px;
    }

    .judge-01{
        width: 80vw;        
        display: flex;
        align-items: center;
        gap: 25px; 
    }
    
    .judge-01 img{
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 1px solid #fff;
        border-radius: 10px;
    }





    .judges-right h5{
        color: #fff;
        font-family: var(--font_03);
        font-size: 1rem;
        text-align: center;
        font-weight: 300;
        margin: 0 0 5px 0;
    }

    .judges-right p{
        color: #c9c9c9;
        font-family: var(--font_03);
        font-size: .8rem;
        text-align: center;
        font-style: italic;
        margin: 0;
    }

    .team{
        height: auto;
    }

    .team-members{
        flex-direction: column;
        gap: 20px;
    }




    }

    
    
