/***************************
    CUSTOM SCROLL BAR
****************************/
*, html{
    scroll-behavior: smooth;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root{
    --white:#FFF;
    --black:#000;
    --lite:rgba(255,255,255,0.6);
    --gray:rgba(1,1,1,0.6);
    --dark:#101010;
    --primary:linear-gradient(145deg,#002347,#3399ff);
    --primary_dark:#002347;
    --primary_lite:orange;
    --secondary:#3ab068;
    --default_font:'Mukta', sans-serif;
    --title_font:'Kanit', sans-serif;
}

::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}





/***************************
            DEFAULT
****************************/
body{
    margin:0;
    overflow-x:hidden !important;
    font-family: var(--default_font);
}

a{
    text-decoration:none !important;
    min-width: fit-content;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

a, button{
    transition:0.5s;
}

em{
    font-style:normal;
    color:var(--primary_lite);
}

ul{
    padding:0;
}

figure{
    padding:0;
    margin:0;
}

a, p, .btn{
    font-size:15px;
}

p{
    line-height:1.9em;
    color:var(--lite);
}

a, button, input, textarea, select{
    outline:none !important;
}

fieldset{
    border:0;
}

h1, h2, h3, h4, h5, h6{
    margin:0;
}

.title, .sub_title{
    font-family:var(--title_font);
    font-weight:400;
    margin:0;
}

.flex, .fixed_flex{
    display:flex;
}

.flex_content{
    width:100%;
    position:relative;
}

.padding_1x{
    padding:1rem;
}

.padding_2x{
    padding:2rem;
}

.padding_3x{
    padding:3rem;
}

.padding_4x{
    padding:4rem;
}

.big{
    font-size:3.5em;
}

.medium{
    font-size:2em;
}

.small{
    font-size:1.1em;
}

.btn{
    padding:1rem;
    border-radius:5px;
    color:var(--white);
    position:relative;
    border:0;
    text-align:center;
    font-weight:500;
}

.btn_1{
    background:var(--primary_lite);
    color:var(--dark) !important;
}

.btn_1:hover{
    opacity:0.8;
}

.btn_2{
    background-color:#fdc632;
    color:var(--dark) !important;
}

.btn_2:hover{
    opacity:0.8;
    color:var(--dark);
}

.btn_3{
    display:block;
    background-color:0;
    color:var(--white);
    position:relative;
    font-family:var(--default_font);
    font-weight:400;
    text-transform:uppercase;
}

.btn_3:before{
    content:"";
    border-radius:50%;
    background-color:rgba(255,255,255,0.2);
    position:absolute;
    left:0;
    top:50%;
    width:50px;
    height:50px;
    transition:0.5s;
    transform:translate(0%, -50%);
}

.btn_3:after{
    content:"\f178";
    font-family:"FontAwesome";
    margin-left:5px;
}

.btn_3:hover:before{
    border-radius:40px;
    width:100%;
}

.divisions{
    position:relative;
}

.title_header{
    margin:auto;
    text-align:center;
    width:50%; 
    margin-top:20px;
    border-radius:10px;
}

.ball:before{
    content:"";
    border-radius:50%;
    background-color:rgba(1,1,1,0.2);
    position:absolute;
    left:0;
    top:50%;
    width:30px;
    height:30px;  
    transform:translate(-50%, -50%);
}

.link-tag{
    position:relative;
    color:var(--black);
}

.link-tag:before{
    content:"\f0da";
    font-family:"FontAwesome";
    margin-right:5px;
    transition:0.5s;
    color:var(--primary);
}

.link-tag:hover:before{
    margin-right:10px;
    color:var(--black);
}

.link-tag:hover{
    color:var(--primary);
}

@media (max-width:920px){
    .flex{
        flex-wrap:wrap;
    }
    
    .padding_1x, .padding_2x, .padding_3x, .padding_4x{
        padding:1rem;
    }
    
    .big{
        font-size:1.8em;
    }
    
    .medium{
        font-size:1.6em;
    }
    
    .small{
        font-size:1.1em;
    }
    
    .btn{
        padding:0.5rem 1rem;
    }
    
    a, p, .btn{
        font-size:12px;
    }
    
    .title_header{
        width:100%;
    }
}





/*NAV*/
nav{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:space-between;
    padding:0.2rem 2rem;
    z-index:99;
    white-space:nowrap;
    transition:0.5s;
    color:var(--lite);
    background-color:var(--white);
    transition:0.5s;
}  

.fixed_nav{
    width:100%;
    position:fixed;
    top:0;
    box-shadow:0px 6px 16px -6px var(--gray);
    animation: fixed_nav 1s linear 1;
}

nav a{
    padding:0.8rem 0;
    color:var(--gray);
    margin:0 1.5rem;
    text-transform:uppercase;
    font-weight:400;
    position:relative;
    white-space:nowrap;
}

nav .active{
    color:var(--primary_lite) !important;
    border-bottom:2px solid var(--primary_lite);
}

.logo{
    font-size:1.6em;
    align-items:center;
    margin-top:10px;
    color:var(--primary_dark);
}

.logo img{  
    width:60px;
    border-radius:50%;
    margin-right:5px;
}

.logo em{
    font-weight:800
}

.logo sub{
    font-size:12px;
    position:relative;
    top:5px;
}

.logo figcaption{
    font-size:15px;
    text-align:center;
    color:var(--primary);
    font-weight:300;
}

.logo figcaption strong{
    display:block;
    font-size:20px;
    position:relative;
    top:5px;
    line-height:1;
    font-weight:800;
}

nav .flex_content:nth-child(2) a:after{
    transition:0.5s;
    content:"";
    position:absolute;
    left:0;
    width:0;
    top:100%;
    height:2px;
    background:var(--primary_lite);
}

nav a:hover{
    color:var(--primary_lite);
}

nav .flex_content:nth-child(2) a:hover:after{
    width:100%;
}

nav .ham{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    border:2px solid var(--gray);
    width:40px;
    height:40px;
    color:var(--gray);
    float:right;
    margin-right:0;
}

nav .ham:hover{
    border:2px solid var(--primary_lite);
}

.top_menu{
    background-color:var(--primary_dark);
    padding:0.1rem 3rem;
    margin:0;
    align-items:center;
    justify-content:center;
}

.top_menu .flex_content:last-child{
    text-align:right;
}

.top_menu a{
    color:var(--lite);
    font-size:14px;
    white-space:nowrap;
}

.top_menu a:not(:last-child){
    margin-right:20px;
}

.top_menu a .fa{
    margin-right:5px;
}

.side_menu{
 
    width:400px;
    background-color:var(--dark);
    z-index:999;
    position:fixed;
    top:0;
    right:-400px;
    overflow:hidden;
    height:100vh;
    overflow-y:auto;
    transition:0.5s;
    padding:2rem 2rem;
    margin:0;
    color:var(--white);
}

.side_menu h4{
    line-height:1.6em;
}

.overlay{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    transition:0.5s;
    opacity:0;
    z-index:-1;
    background-color:var(--gray);
}

.close{
    float:right;
    border:2px solid var(--lite);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:32px;
    padding:0.5rem;
    color:var(--lite);
    position:absolute;
    top:5%;
    right:5%;
}

.close:hover{
    color:var(--white);
    border:2px solid var(--white);
}

.side_menu li{
    padding:0.4rem 0;
    list-style:none;
}

.side_menu li a{
    color:var(--lite);
}   

.side_menu li a:hover{
    color:var(--white);
}

.side_menu ul:last-child li:not(:last-child) a:hover:before{
    margin-right:10px;
}

.side_menu .btn{
    display:block;
    padding:0.5rem 1rem;
}

.side_menu .btn:first-child{
    margin-right:5px;
}

.side_menu ul:last-child li:not(:last-child) a:before{
    content:"\f0da";
    font-family:"FontAwesome";
    margin-right:5px;
    transition:0.5s;
}

.side_menu ul li .fa{
    margin-right:5px;
    color:var(--white);
}

.dropdown{
    position:relative;
}

.dropdown aside{
    position:relative;
    width:100%;
    left:1rem;
    display:none;
}

.dropdown aside a{
    display:block;
    padding:0.3rem 0;
}


@media (max-width:920px){
    .top_menu{
        justify-content:center;
        text-align:center;
        padding:0.1rem 1rem;
    }
    
    .top_menu .flex_content:last-child{
        display:none;
    }
    
    nav{
        padding:0.5rem 1rem;
        z-index:999;
    }
    
    nav .ham{
        width:30px;
        height:30px;
    }
    
    nav .nav_content{
        width:200px;
        background-color:var(--dark);
        z-index:999 !important;
        position:fixed;
        top:0;
        right:-200px;
        overflow:hidden;
        height:100%;
        transition:0.5s;
    }
    
    .side_menu{
        width:100%;
        right:-120%;
    }
    
    .side_menu li{
        padding:0.4rem 0;
    }
    
    .logo{
        margin-top:5px;
    }
    
    .logo img{
        font-size:1.3em;
        margin-top:0;
        width:40px;
    }
}




/***************************
               FOOTER
****************************/
footer{
    background-color:var(--primary_dark);
    color:var(--lite);
    margin-top:15rem;
    position:relative;
}

.footer_body{  
    padding-top:3rem;
}

.footer_body .flex_content:first-child{
    width:180%;
}

footer h3{
    color:var(--white);
    margin-bottom:1.5rem;
}

footer .logo{
    color:var(--white);
}

footer .logo img{
    width:50px;
}

footer .logo figcaption strong{
    margin-bottom:3px;
}

footer a{
    color:var(--lite);
    display:block;
    margin:10px 0;
}

footer a:hover{
    color:var(--white);
}

footer fieldset{
    padding:0;
}

footer fieldset input{
    background-color:#334f6c;
    border:0;
    color:var(--lite);
    padding:1rem;
}

footer fieldset .btn{
    border-radius:0;
    border:0;
}

footer fieldset .btn_2{
    background-color:var(--primary_lite);
    }

footer fieldset .btn_2:hover{
    background-color:var(--primary_lite);
    border:0;
    color:var(--primary);
}

footer .flex_content:nth-child(2) a:before, footer .flex_content:nth-child(3) a:before{
    content:"\f0da";
    font-family:"FontAwesome";
    margin-right:10px;
}

footer .flex_content:nth-child(2) a:hover, footer .flex_content:nth-child(3) a:hover{
    margin-left:5px;
}

footer .flex:last-child{
    align-items:center;
}

footer .flex:last-child .flex-content:last-child{
    text-align:right;
}

footer .flex:last-child p{
    color:var(--white);
}

footer .flex:last-child a{
    width:40px;
    display:inline-block;
    background-color:#334f6c;
    color:var(--white);
    padding:0.5rem;
    margin-right:3px;
    text-align:center;
}

footer .flex:last-child a:hover{
    background-color:var(--primary_lite);
    color:var(--gray);
}

.top_footer{
    width:90%;
    position:absolute;
    left:50%;
    top:-25%;
    transform:translate(-50%, -25%);
    border-radius:10px;
    background:var(--primary);
    color:var(--white);
    overflow:hidden;
    box-shadow:0px 6px 16px -6px var(--gray);
}

.top_footer figure{
    position:absolute;
    bottom:10%;
    left:50%;
    transform:translate(-50%, 0);
    overflow:hidden;
    z-index:11;
}

.top_footer .flex_content:first-child:after{
    content:"";
    background:var(--primary);
    width:80%;
    height:95%;
    border-radius:0 0 50% 50%;
    z-index:1;
    position:absolute;
    left:50%;
    transform:translate(-50%, 0);
}

.top_footer .flex_content:first-child{
    width:25%;
}

.top_footer figure img{
    width:100%;
    z-index:11;
    position:relative;
}

@media (max-width:1100px){
    footer .flex:first-child{
        flex-wrap:wrap;
    }
    
    footer .flex:first-child .flex-content{
        flex: 1 1 40%;
    }
}

@media (max-width:920px){
    footer{
        margin-top:5rem;
        padding:0 !important;
    }
    
    .top_footer{
        width:100%;
        position:static;
        transform:none;
        border-radius:0;  
        box-shadow:0;
    }
    
    .top_footer .flex_content:first-child{
        display:none;
    }

    footer .flex:last-child .flex-content:last-child{
        text-align:left;
    }
}

@media (max-width:320px){
    footer .flex:first-child .flex-content{
        flex:1 1 100%;
    }
}




/*HEADER*/
header {
  width: 100%;
  background: linear-gradient(to right, rgba(1, 1, 1, 0.9) 10%, rgba(1, 1, 1, 0.5) 50%, rgba(1, 1, 1, 0.1) 100%);
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: left;
  color: var(--white);
  position: relative;
  transition: background-image 0.5s ease; /* Add the transition property */
}

  
header article{
    width:50%;
    padding:8rem 2rem;
}

header article .title{
    font-weight:700;
}

header section{
    background-color:var(--white);
    width:90%;
    position:absolute;
    bottom:-5rem;
    left:50%;
    transform:translate(-50%, 2rem);
}

header section aside{
    position:relative;
}

header section aside a{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0.2rem;
    border-radius:50%;
    background-color:var(--white);
    bottom:-15px;
    width:30px;
    height:30px;
    left:50%;
    transform:translate(-50%, 0);
    border:1px solid var(--gray);
}

header section aside:nth-child(1){
    background-color:#002347;
}

header section aside:nth-child(2){
    background-color:orange;
}

header section aside:nth-child(3){
    background-color:#002347;
}

@media (max-width:920px){
    header article{
        width:100%;
        padding:4rem 1rem;
    }
    
    header section{
        position:static;
        width:100%;
        transform:none;
        padding:1rem;
    }
    
    header section aside{
        flex: 1 1 100%;
        margin:1% 0;
    }
    
    header section aside a{
        position:relative;
        transform:none;
        background-color:none;
        border:0;
        padding:0;
        width:0;
        height:0;
        top:0;
        left:0;
        color:var(--white);
    }
    
    header section aside a:before{
        content:"Explore";
        margin-right:5px;
        color:var(--white);
    }
}




/*division_2*/
.division_2{
    margin-top:10rem;
    align-items:center;
    display:grid;
    grid-template-columns: 50% 50%;
    padding:0 4rem;
}

.division_2 .title_header{
    width:100%;
    text-align:left;
}

.division_2 .flex_content:first-child{
    background-color:#f4f4f4;
}

.division_2 .flex_content:last-child{
    background-color:orange;
}

.division_2 #notification{  
    max-height:80vh;
    height:80vh;
    overflow-y:auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#notification::-webkit-scrollbar {
    display:none !important;
}

.division_2 .flex_content:first-child p{
    color:var(--gray);
}

.division_2 #notification a{
    align-items:center;
    color:var(--primary_dark);
    padding:1rem 0;
}

.division_2 #notification a:not(:last-child){
    border-bottom:1px solid rgba(1,1,1,0.1);
}

.division_2 #notification a p{
    font-size:12px;
}

.division_2 #notification article .title{
    margin:0;
    position:relative;
    top:10px;
    font-size:0.9rem;
}

.division_2 #notification a:hover .title{
    color:var(--dark);
}

.division_2 #notification figure{
    width:35%;
    height:100%;
    overflow:hidden;
    margin-right:20px;
}

.division_2 #notification figure img, .division_2 #event figure img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.division_2 #notification aside{
    align-items:center;
    justify-content:space-between;
}

.division_2 span{
    font-size:12px;
    color:var(--gray);
    margin-right:15px;
    position:relative;
    top:-10px;
}

.division_2 .flex_content:last-child .title{
    color:var(--white);
}

.division_2 #event figure{
    width:100%;
    height:30vh;
    overflow:hidden;
}

.division_2 #event figure img{
    width:50%;
}

#event ul li{
    background-repeat:no-repeat;
    background-size:cover;
    padding:1rem;
    width:100% !important;
    overflow:hidden;
}

#event aside{
    align-items:center;
    justify-content:center;
}

#event aside span{
    padding:0.3rem 2rem;
    background-color:var(--lite);
    font-weight:600;
    font-size:2em;
    text-align:center;
    text-transform:uppercase;
}

#event aside span sub{
    display:block;
    font-weight:200;
    font-size:12px;
    position:relative;
    top:-5px;
}

#event .btn{
    display:block;
    margin-top:2rem;
    border-radius:0;
    padding:0.5rem 1rem;
    background-color:var(--white) !important;
}

@media (max-width:920px){
    .division_2{
        margin-top:0rem;
        display:block;
        padding:1rem;
    }
    
    .division_2 #notification{
        max-height:300px;
        height:300px;
    }
    
    .division_2 #notification figure{
        width:50px;
        margin-right:0;
    }
    
    #event{
        margin-top:1rem;
    }
    
    #event aside span{
        padding:0.3rem 1rem;
        font-size:1.3em;
    }
}





/*division_3*/
.division_3{
    margin:3rem auto;
}

.division_3 .slider{  
    max-width:95%;
    margin:auto;
}

.division_3:before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:30%;
    background-color:#f2f2f2;
}

.division_3 .title_header{
    margin:0;
    text-align:left;
    padding:0 3rem;
}

.division_3 .title_header p{
    color:var(--gray);
    line-height:1;
}

.card li {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border:1px solid rgba(1,1,1,0.2);
    border-radius:5px;
    overflow:hidden;
    background-color:var(--white);
}

.card p {
  color: var(--gray);
}

.card figure{
    position: relative;
    width: 100%;
    max-height:150px;
    overflow:hidden;
}

.card figure img{
    width:100%;
    pointer-events: none;
    transition:0.5s;
}

.card article{
    position:relative;
}

.card .title{
    color:var(--primary_dark);
}

.card .price{
    padding:1rem;
    width:66px;
    height:66px;
    border-radius:50%;
    background-color:var(--primary_lite);
    color:var(--white);
    text-align:center;
    position:absolute;
    right:10px;
    top:-30px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    font-size:1.3rem;
    font-weight:500;
    transition:0.5s;
}

.card li:hover .price{
    background-color:var(--primary);
    color:var(--secondary);
}

.card li:hover .title{
    color:var(--dark);
}

.card .tag{
    background-color:var(--primary_dark);
    padding:0.3rem 1rem;
    color:var(--white);
    text-transform:uppercase;
    display:block;
    width:fit-content;
    margin:2vh 0;
    font-weight:400;
    font-size:13px;
    position:absolute;
    top:-2rem;
}

.card aside, .card aside .flex-content:first-child{
    align-items:center;
}

.card aside .flex-content:last-child{
    text-align:right;
}

.card aside .flex-content:last-child a{
    color:var(--primary);
    margin-right:5px;
}

.card aside .flex-content:first-child img{
    margin-right:10px;
}

.card aside .flex-content:first-child b{
    color:var(--primary);
    font-weight:600;
}

.card .title{
    font-weight:500;
}

.slider .card li:hover figure img{
    transform:scale(1.1);
}

.logo-slider .slick-slide{
	margin: 5px;
}

.slick-next, .slick-prev{
    padding:1rem;
    background-color:var(--primary_dark);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    transform:none;
    top:-2rem;
}

.slick-next:hover, .slick-prev:hover{
    background-color:var(--dark) !important;
}

.slick-next:focus, .slick-prev:focus{
    background-color:var(--gray) !important;
}

.slick-prev{
    border-radius:5px 0 0 5px;
}

.slick-prev{
    left:94% !important;
}

.slick-next{
    right:0rem;
    border-radius:0 5px 5px 0;
}

.slick-next::before, .slick-prev::before{
    font-family:"FontAwesome";
}

.slick-next::before{
    content:"\f105";
}

.slick-prev::before{
    content:"\f104";
}

@media (max-width:920px){
    .division_3 .title_header{
        width:100%;
        padding:1rem;
    }
}






/*division_4*/
.division_4{
    z-index:11;
}

.division_4 .title_header{
    width:50%;
}

.division_4 .title_header .btn{
    margin:auto;
    border-radius:40px;
    padding:0.5rem 1rem;
}

.division_4 .title_header aside{
    align-items:center;
    justify-content:center;
}

.division_4 .title_header aside .fa{
    background-color:rgba(1,1,1,0.2);
    border-radius:50%;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    color:var(--gray);
}

.division_4 .title_header aside .btn{
    margin:0 0.5rem;
}

.division_4 .title_header aside a:first-child{
    color:var(--white) !important;
}

.division_4 .title_header aside a:last-child{
    color:var(--gray);
}

.division_4 .title_header p{
    color:var(--gray);
}

.division_4 .title_header .bar{
    margin:auto;
}

.division_4 .cards{
    padding:1rem 4rem;
    position:relative;
}

.division_4 .cards:before, .division_4 .cards:after{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    z-index:-1;
}

.ball{
    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--primary);
}

.division_4 .cards:before{
    background-image:url("https://i.postimg.cc/3NQzzcK3/dots.png");
    top:0;
    left:2%;
    animation: arrows 4s 0s infinite;
}

.division_4 .cards:after{
    background-image:url("https://i.postimg.cc/3NQzzcK3/dots.png");
    bottom:0;
    right:2%;
    animation: arrows 6s 0s infinite;
}

.ball:nth-child(1){
    width:30px;
    height:30px;
    left:10%;
    top:5%;
    animation: arrows 10s 0s infinite;
}

.ball:nth-child(2){
    width:30px;
    height:30px;
    right:10%;
    bottom:5%;
    animation: arrows 10s 0s infinite;
}

.ball:nth-child(3){
    width:50px;
    height:50px;
    left:50%;
    top:20%;
    transform:translate(-50%, -20%);
    animation: arrows 10s 0s infinite;
}

.ball:nth-child(4){
    width:50px;
    height:50px;
    left:3%;
    bottom:0%;
    animation: arrows 15s 0s infinite;
}

.division_4 .cards figure{
    height:70vh;
    margin:2%;
    border-radius:140px;
    overflow:hidden;
    position:relative;
}

.division_4 .cards figure:nth-child(2), .division_4 .cards figure:nth-child(3){
    top:4rem;
}

.division_4 figure img{
    object-fit:cover;
    width:100%;
    height:100%;
}

.division_4 .cards section{
    background-image:url("https://i.postimg.cc/g0Jw6Mbc/line.png");
    background-size:70% auto;
    background-repeat:no-repeat;
    background-position:center;
    width:100%;
}

@media (max-width:920px){
    .division_4 .title_header{
        width:100%;
        padding:1rem;
    }
    
    .division_4 .cards figure{
        height:200px;
    }
    
    .division_4 .cards:after{
        display:none;
    }
}








/*Transparent text background*/
.stroke{
    color:transparent;
    -webkit-text-stroke: 1.5px var(--primary_lite);
}


/*Custom cursor coloring*/
.cursor--expand {
    animation: cursor-animate-3 550ms forwards;
    border: 10px solid rgb(var(--primary_dark));
}

.cursor--expand::after {
    border: 15px solid rgba(var(--primary_dark), .3);
}


/*Scroller*/
.cs-down{
    position: absolute;
    height: 35px;
    width: 20px;
    border-radius: 10px;
    border: 2px solid var(--white);
    bottom: 10px;
    left: 50%;
    margin-left: -10px;
    z-index:11;
}

.cs-down:before{
    content: '';
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--white);
    -webkit-animation: UpAndDown 3s infinite;
    animation: UpAndDown 3s infinite;
}

@-webkit-keyframes UpAndDown {
  0%,
  100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes UpAndDown {
  0%,
  100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}


/*ZOOM IN*/
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}





/*RIPPLE*/
.ripple {
    border-radius: 100%;
}

.ripple::after {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary);
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}



.bar{
    display:block;
    height: 5px;
    width: 100px;
    background: var(--primary);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px auto 20px 0;
}

.bar:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--white);
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@keyframes MOVE-BG{
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(105px);
        transform: translateX(105px);
    }
}

.bar_blue, .bar_white{  
    display:block;
    width:100px;
    height:3px;
}

.bar_blue{
    background-color:#ef4a4a;
}

.bar_white{
    background-color:var(--white);
}


/*Ripple effect*/
@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}




@keyframes arrows {
    0%, 100% {
        color: black;
        transform: translateY(0);
    }
    50% {
        color: #3AB493;
        transform: translateY(20px);
    }
}

@keyframes fixed_nav {
    0%, 100% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
    }
}




/*Blinking live dot*/
.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.ringring {
    -webkit-border-radius: 30px;
    height: 18px;
    width: 18px;
    position: absolute;
    left: 0.3px;
    top: 0.3px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0;
}

.ringring_green{
    border: 3px solid #62bd19;
}

.circle_green{
    background-color: #62bd19;
}

.ringring_red{
    border: 0px solid red;
}

.circle_red{
    background-color: red;
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}


.container1{
    margin: 0 auto;
    max-width: 1000px;
  }
  
  .gallery-wrap {
    display: flex;
    flex-wrap: wrap;
    height: 70vh;
  }
  
  .item {
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.8s ease;
    margin: 5px;
  }
  
  .item:hover{
    flex: 7;
  }
  
  .item-1 { 
    background-image: url('alpha2.jpg');
  }
  
  .item-2 { 
    background-image: url('img/1.jpg');
  }
  
  .item-3 { 
    background-image: url('img/2.jpg');
  }
  
  .item-4 { 
    background-image: url('img/10.jpg');
  }
  
  .item-5 { 
    background-image: url('img/7.jpg');
  }
  
  .social{
    position: absolute;
    right: 35px;
    bottom: 0;
  }
  
  .social img{
    display: block;
    width: 32px;
  }
  
  @media only screen and (max-width: 768px) {
    .gallery-wrap {
      height: auto;
    }
    
    .item {
      flex-basis: 100%;
      height: 70vh;
      margin: 10px 0;
    }
    
    .item:hover{
      flex-basis: 100%;
    }
  }
  

  .download-button {
    display: inline-block;
    background-color: #ff5a5f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .download-button .button-text {
    position: relative;
    z-index: 1;
  }
  
  .download-button .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .download-button:hover {
    background-color: #cc4b4f;
  }
  
  .download-button:hover .button-icon {
    opacity: 1;
  }
  
  @keyframes button-icon-rotate {
    0% {
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .download-button:hover .button-icon i {
    animation: button-icon-rotate 1s infinite linear;
  }
  

  #page-title{
    color: #002347;
    text-align: center;
    font-weight: 500;
    margin-top:30px;
    text-shadow: 0px 0px 15px #0000003a;
}
#title_hr{
    width:60px;
    border: 2px solid orange;
    margin: .35em auto;
}
@media (min-width: 780px){
    #page-title{
    width: 780px;
    }
}
/* Table Wrapper */
#vid-wrapper {
    max-width: 100%;
    background-color: #000;
    border: 1px solid #2e2e2e;
    padding: 1em;
    margin: 1em auto;
    width:80%;
    border-radius: 5px;
    box-shadow: 1px 1px 10px #00000046;
  }
  
  /* Video Element */
  #vid-wrapper video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }
  
  /* Media Query for smaller screens */
  @media (max-width: 768px) {
    #vid-wrapper {
      padding: 0.5em;
    }
  }
  
/* Video Duration Slider */
div#vid-slider {
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
span#current-time,
span#remaining-time {
    display: block;
    flex-shrink: 1;
}
#vid-slider-holder{
    display: block;
    flex-grow: 1;
    padding: 0 .35em;
}
#vid-slider-holder input{
    width: 100%;
}
/* duration range */
#vid-slider-holder input {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    background: #645a5a;
}
 
#vid-slider-holder input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: #eeeeee;
    border-radius: 50%;
    border: 1px solid #c2c1c1;
    transition: .2s ease-in-out;
}
 
#vid-slider-holder input::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #eeeeee;
    border-radius: 50%;
    border: none;
    box-shadow: 0px 0px 3px #000;
    transition: .2s ease-in-out;
}
 
#vid-slider-holder input::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px #2aaaff10
}
#vid-slider-holder input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px #2aaaff1a
}
 
#vid-slider-holder input::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px #2aaaff10
}
#vid-slider-holder input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px #2aaaff1a    
}
 
/* Btns and other controls */
.other-ctrls {
    display: flex;
    width: 100%;
    color: #fff;
    align-items: center;
    justify-content:space-between;
}
.other-ctrls .btns{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-shrink: 1;
}
div#minus-10-sec-btn,
div#pause-play-btn,
div#plus-10-sec-btn {
    width: 20px;
    height: 20px;
    margin: 0.35em 0.5em;
    cursor: pointer;
} 
div#minus-10-sec-btn:hover>span,
div#pause-play-btn:hover>span,
div#plus-10-sec-btn:hover>span {
    color: #cccccc !important;
} 
 
/* Volume Slider */
#vol-slider-holder{
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
#vol-slider {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    background: #645a5a;
}
 
#vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: #eeeeee;
    border-radius: 50%;
    border: 1px solid #c2c1c1;
    transition: .2s ease-in-out;
}
 
#vol-slider::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #eeeeee;
    border-radius: 50%;
    border: none;
    box-shadow: 0px 0px 3px #000;
    transition: .2s ease-in-out;
}
 
#vol-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px #2aaaff10
}
#vol-slider:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px #2aaaff1a
}
 
#vol-slider::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px #2aaaff10
}
#vol-slider:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px #2aaaff1a    
}


#school-section {
    background-color: #f1f1f1;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
  }
  
  #school-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mission,
  .vision {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px;
    text-align: center;
    width: fit-content;

  }
  
  .mission h3,
  .vision h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
  }
  
  .mission p,
  .vision p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
  }
  
  