*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.header {
    width: 100%;
    background-color: #ffff;
    box-shadow: blue 0px 2px 0px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header img {
    height: 20vh;
    width: 15%;
}

.text-header p {
    font-size: 30px;
    font-weight: 600;
}

.text-header span {
    color: green;
    font-weight: 600;
    font-size: 20px;
    margin-top: 5px;
}

.text-header {
    color: #03055b;
    font-size: 25px;
    text-align: center;
}
.event-page{
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 50, 0.7)), url(../pictures/IMG-20250707-WA0033.jpg);
    background-position:center ;
    background-size: cover;
}
.event-page h2{
    position: relative;
    font-size: 10vw;
    color: #252839;
    text-transform: uppercase;
    -webkit-text-stroke: 0.3vw #383d52;
}
.event-page h2:before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0rem #383d52;
    border: 2px solid #fff;
    overflow: hidden;
    animation: animate 6s linear infinite;
}
@keyframes animate{
0%,10%,100%{
    width: 0;
}
70%,90%{
    width: 100%;
}
}
.image-1{
    width: 100%;
    height: auto;
    background-image: linear-gradient(rgba(0, 0, 50, 0.5)), url(../pictures/FB_IMG_1754384278387.jpg);
    background-repeat: none;
    background-position: center;
    background-size: cover;
    margin-top:2px ;
} 
.event-sec1{
    display: flex;
    flex-direction: row;
     
}
.event-content{
    width: 50%;
}
.event-sec1 h2{
    color: #ffff;
    font-size: 2rem;
    margin:  auto;
    background: blue;
    text-align: center;
    width: 50%;
    border-radius: 0.3rem;
     
}
.event-sec1 p{
    color: #ffff;
    margin: auto;
    line-height: 2.5rem;
    padding: 1rem;
     
}
.img-sec{
    width: 40%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
    gap: 2rem;
    backdrop-filter: blur(50px);
    border: 5px solid;     
}
.img-sec img{
flex-basis: 30%;
flex-grow: 1;
max-width: 50%;
flex-shrink: 0; 
height: 20vh; 
}
@media screen and (max-width: 768px) {
    .text-header h2{
    font-size: 1.2rem;
    }
    .header img{
        width: 15%;
        height: 10vh;
    }
    .event-sec1{
        display: block; 
        max-width: 100%;    
    }
    .text-header p{
        font-size: 1rem;
    }
    .text-header span{
        font-size: 1rem;
    }
.event-content{
    width: 100%;
      
}
.img-sec{
    width: 100%;  
}
 
.event-content p{
    line-height: 1.5rem;
    font-size: 1.2rem;
    backdrop-filter: blur(80px);
    font-weight: normal;
}
.event-sec1 h2{
    width: 100%;
}
.event-page{
    height: 30vh;
}
}
@media screen and (max-width: 900px) {
    .text-header h2{
    font-size: 1.2rem;
    }
    .header img{
        width: 15%;
        height: 10vh;
    }
    .event-sec1{
        display: block; 
        max-width: 100%;    
    }
    .text-header p{
        font-size: 1rem;
    }
    .text-header span{
        font-size: 1rem;
    }
.event-content{
    width: 100%;
      
}
.img-sec{
    width: 100%;
   
}
.event-content p{
    line-height: 1.5rem;
    font-size: 1.2rem;
    backdrop-filter: blur(80px);
}
.event-sec1 h2{
    width: 100%;
}
}

