:root{
    --psuedo-background-color1: #2e38ff;
    --psuedo-background-color2: #980402;
    --psuedo-font-family-header: Comfortaa;
    --psuedo-font-family-para: Cambay;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
}
#header{
    width: 100%;
    height: 850px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


/*navigation*/



.navigation{
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
}
.navigation nav ul{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}
.navigation nav ul li{
    position: relative;
}
.navigation nav ul a{
    text-decoration: none;
    color: var(--psuedo-background-color1);
    font-weight: bold;
    font-family: var(--psuedo-font-family-para);
}
.navigation nav ul a:hover{
    color: var(--psuedo-background-color2);
}
.mobile-menu{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    padding: 60px 10px;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-100%);
    transition: all 1s ease;
}
.mobile-menu.active{
    transform: translateY(0);
}
.mobile-menu nav{
    display: flex;
}
.mobile-menu nav ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu nav ul a{
    text-decoration: none;
    color: var(--psuedo-background-color1);
    font-family: var(--psuedo-font-family-para);
}

.submenu-toggle{
    font-size: 30px;
    cursor: pointer;
    color: var(--psuedo-background-color1);
}

.fa-bars{
    position: absolute;
    left: 42.5%;
    bottom: -60%;
    background-color: white;
    padding: 10px 30px;
    opacity: 0;
}
.services-submenu{
    position: absolute;
    left: 0;
    top: 20px;
    background-color: white;
    color: var(--psuedo-background-color1);
    font-family: var(--psuedo-font-family-para);
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    display: none;
}
.services-hover:hover .services-submenu{
    display: flex;
}
.main-links{
    background-color: var(--psuedo-background-color1);
    text-decoration: none;
    font-family: var(--psuedo-font-family-para);
    padding: 10px;
    width: 200px;
    text-align: center;
    color: white;
    transition: all 1s ease;
}
.white-bg-links:hover{
    color: var(--psuedo-background-color1);
}
.main-links:hover{
    background-color: transparent;
    border: 1px solid var(--psuedo-background-color2);
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
    color: var(--psuedo-background-color1);
    font-family: var(--psuedo-font-family-header);
    gap: 10px;
}
.logo img{
    width: 50px;
    height: 50px;
    object-fit: fill;
}


/*header slider*/


.header-slider-main{
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}
.header-slider{
    background-color: red;
    height: 100%;
    display: flex;
    z-index: 1;
    transform: translateX(0);
    transition: transform 2s ease;
}
.slider-content{
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.slider-content .font-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.slider-content .nobg-images{
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: absolute;
    left: 10%;
    top: 10%;
    filter: drop-shadow(20px 40px 20px rgba(0, 0, 0, 0.6));
    z-index: 1;
}
.solar-inst{
    background-color: var(--psuedo-background-color1);
}
.lightning{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.slider-overlay{
    background-color: rgba(0, 0, 0, 0.623);
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.slider-text{
    z-index: 3;
    color: white;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.slider-text h1{
    font-family: var(--psuedo-font-family-header);
    letter-spacing: 3px;
}
.slider-text h2{
    font-family: var(--psuedo-font-family-header);
    letter-spacing: 3px;
}
.slider-text h4{
    font-family: var(--psuedo-font-family-para);
    width: 50%;
}
.slider-text .links{
    display: flex;
    gap: 10px;
}
.cont-header-link{
    background-color: transparent;
    border: 1px solid var(--psuedo-background-color2);
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-family: var(--psuedo-font-family-para);
    width: 200px;
    text-align: center;
    transition: all 1s;
}
.cont-header-link:hover{
    background-color: var(--psuedo-background-color1);
    border: 1px solid var(--psuedo-background-color1);
}
.water-pump-inst{
    background-color: #0065FF;
}
.water-images{
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: bottom;
    width: 100%;
    height: 100%;
    rotate: 180deg;
    filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.389));
}
.land{
    background-color: rgb(0, 174, 243);
}
.slider-buttons{
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
.slider-buttons i{
    width: 50px;
    height: 50px;
    background-color: #04026595;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.header-card-selectors{
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
}
.header-card-selectors:hover{
    background-color: rgba(255, 255, 255, 0.539);
}
.member-card-selectors{
    width: 10px;
    height: 10px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    cursor: pointer;
}
.member-card-selectors:hover{
    background-color: rgba(255, 255, 255, 0.539);
}

/* services, contact, about and PRODUCTS



page stylings*/


.header-main{
    width: 100%;
    height: 85%;
    display: flex;
    overflow: hidden;
    background-color: var(--psuedo-background-color1);
    position: relative;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}
.header-main img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    filter: drop-shadow(30px 30px 30px rgba(0, 0, 0, 0.7));
}

.header-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.57);
}
.header-main .text{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 2;
    color: white;
    font-family: var(--psuedo-font-family-header);
}

.contact-section{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    overflow: hidden;
    transition: all 1s ease;
    align-items: center;
    justify-content: center;
}
.contact-section.active{
    height: auto;
}
.contact-section .form-wrapper{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.contact-section form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    height: auto;
    font-family: var(--psuedo-font-family-para);
    padding: 20px;
    box-shadow: 2px 20px 20px rgba(0, 0, 0, 0.158);
}
.contact-section form div{
    display: flex;
    width: 70%;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid var(--psuedo-background-color1);
}
.contact-section form div i{
    color: var(--psuedo-background-color1);
}
.contact-section form input:required{
    width: 90%;
    padding: 10px;
    border: none;
    border-right: 1px solid var(--psuedo-background-color1);
}
input:required:focus{
    outline: none;
}
.contact-section select{
    width: 90%;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-right: 1px solid var(--psuedo-background-color1);
}
.contact-section select:focus{
    outline: none;
}
textarea{
    width: 90%;
    border: none;
    padding: 20px;
    border-right: 1px solid var(--psuedo-background-color1);
}
textarea:focus{
    outline: none;
}
.contact-section form input[type="submit"] {
    width: 200px;
    padding: 10px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: var(--psuedo-background-color1);
}
#expander{
    cursor: pointer;
}
.contact-section label span{
    vertical-align: super;
    color: var(--psuedo-background-color2);
}
.about-header-images{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
    align-items: flex-end;
    justify-content: space-evenly;
}
.about-header-images img{
    width: 45%;
    height: 40%;
    object-fit: cover;
}

.team-sect{
    width: 100%;
    height: auto;
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.team-sect div{
    max-width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.team-sect div img{
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
    filter: saturate(130%);
}


/*EVENTS SECTION

IN THE ABOUT PAGE*/


.events-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.event{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}
.event img{
    width: 40%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}
.event div{
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
    height: auto;
}


/*Products Section 

in product page*/


.products{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.product{
    max-width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    
}
.product img{
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.product div{
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.prod-details{
    background-color: var(--psuedo-background-color1);
    width: 200px;
    padding: 10px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-family: var(--psuedo-font-family-para);
    border: none;
    font-size: 16px;
}
.order-btn {
    width: 200px;
    padding: 10px;
    cursor: pointer;
    background-color: rgb(0, 255, 47);
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: var(--psuedo-font-family-para);
    border: none;
    font-size: 16px;
}



/*PRODUCT DETAILS AND 

DESCRIPTION POP UP*/


.prod-desc{
    position: fixed;
    left: 5%;
    top: 20%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.389);
    z-index: 4;
    width: 90%;
    height: 70%;
    background-color: var(--psuedo-background-color1);
    color: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 10px;
    overflow-y: scroll;
    scale: 0;
    transition: all 1s ease;
}
.prod-desc.active{
    scale: 1;
}
.close-icon{
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
}
.prod-desc::-webkit-scrollbar{
    appearance: none;
    -webkit-appearance: none;
}
.description{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.description div{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.image-side{
    width: 100%;
    height: 500px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.slider-cont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: red;
}
.prod-img-slider{
    height: 100%;
    display: flex;
    transition: all 1s ease;
}
.prod-img-slider img{
    width: 100vw;
    height: 100%;
    object-fit: contain;
}
.slide-controls{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    
}
.slide-controls i{
    font-size: 30px;
    cursor: pointer;
}

/*main part


mmmmmm*/

main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 150px;
    align-items: center;
    justify-content: center;
}
main h2, h3, h4{
    font-family: var(--psuedo-font-family-header);
}
main p, h5{
    font-family: var(--psuedo-font-family-para);
}
.section1{
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}
.section1 div{
    max-width: 500px;
    font-family: var(--psuedo-font-family-para);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.section1 img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.abt-sect1{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 20px 0;
    position: relative;
    font-family: var(--psuedo-font-family-para);
}
.abt-sect1 div{
    display: flex;
    flex-direction: column;
    gap: 50px;
}



/*services section


ssssss*/



.section2{
    width: 100%;
    height: auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    flex-wrap: wrap;
}
.services{
    max-width: 500px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    color: var(--psuedo-background-color1);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.171);
    padding-bottom: 10px;
}
.services h3{
    font-family: var(--psuedo-font-family-header);
}
.services p{
    font-family: var(--psuedo-font-family-para);
}
.services img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.service-details{
    display: flex;
    gap: 10px;
    width: 100%;
}
.service-details span{
    width: 2px;
    padding: 1px;
    border-radius: 10px;
    height: 150px;
    background-color: var(--psuedo-background-color1);
}
.service-details div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.services button{
    background-color: transparent;
    text-decoration: none;
    font-family: var(--psuedo-font-family-para);
    padding: 10px;
    width: 200px;
    border: 1px solid var(--psuedo-background-color1);
    text-align: center;
    color: var(--psuedo-background-color1);
    transition: all 1s ease;
    cursor: pointer;
    font-family: var(--psuedo-font-family-para);
}
.services-overlay{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.559);
    z-index: 2;
    padding: 20px 0;
    transform: translateY(-300px);
    transition: all 1s ease;
}
.services-overlay i{
    font-size: 100px;
}
.services:hover .services-overlay{
    transform: translateY(-50px);
}

/*stats section


ssssss*/


.section3{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
.section3 p{
    text-align: center;
    max-width: 600px;
}
.stats{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.stat{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    padding: 10px;
    height: auto;
    align-items: center;
    justify-content: center;
}
.stat p{
    text-align: center;
}
.stat h2{
    font-size: 40px;
}
.stats hr{
    width: 2px;
    border: none;
    background-color: var(--psuedo-background-color1);
    border-radius: 10px;
    height: 100px;
}


/*Mission and Vision

ttttttt*/



.section4{
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    color: white;
    padding: 30px 0;
    overflow: hidden;
}
.section4 p{
    text-align: center;
}
.mission{
    max-width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--psuedo-background-color1);
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
}
.mission::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 60px;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: -1;
    border: 1px solid black;
    transform: rotateX(10deg) rotate(-40deg);
}
.mission-handle{
    width: 100px;
    height: 50px;
    background-color: var(--psuedo-background-color1);
}
.vision-handle{
    width: 100px;
    height: 50px;
    background-color: var(--psuedo-background-color2);
}
.vision{
    max-width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--psuedo-background-color2);
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
}
.vision::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 60px;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
    border: 1px solid black;
    transform: rotateX(-10deg) rotate(40deg);
}
.section5{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    color: white;
    font-family: var(--psuedo-font-family-para);
}
.section5 div{
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.section5 div span{
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.446);
}
.blue span{
    background-color: var(--psuedo-background-color1);
    text-align: center;
}
.red span{
    background-color: var(--psuedo-background-color2);
    text-align: center;
}
.section5 div span{
    width: 20%;
    padding: 10px;
}
.section5 img{
    max-width: 300px;
    height: 300px;
    object-fit: contain;
}
.section5 h3{
    color: black;
}



/*Team Slider


tttttttt*/



.section6{
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    position: relative;
    padding: 20px 0;
}
.members-slider{
    height: 100%;
    display: flex;
    transform: translateX(0vw);
    transition: all 1s ease;
}
.team-member{
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-member div{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.team-member img{
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    filter: saturate(130%);
}
.team-bg{
    width: 90%;
    height: 80%;
    display: flex;
    position: absolute;
    left: 5%;
    top: 10%;
    z-index: -1;
    align-items: center;
    justify-content: center;
}
.first-bg{
    width: 40%;
    height: 70%;
    border: 20px solid var(--psuedo-background-color1);
    rotate: -20deg;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.424);
}
.second-bg{
    width: 40%;
    height: 70%;
    border: 20px solid var(--psuedo-background-color2);
    rotate:20deg;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.424);
}
.members-slider-buttons{
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
.members-slider-buttons i{
    width: 50px;
    height: 50px;
    background-color: var(--psuedo-background-color1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/*Location*/



.location{
    width: 90%;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    overflow: hidden;
    padding: 20px 0;
}
.location div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location h4{
    font-family: var(--psuedo-font-family-para);
}
.tel-link{
    text-decoration: none;
    font-family: var(--psuedo-font-family-para);
    color: var(--psuedo-background-color1);
}

/*Footer*/



footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    background-color: var(--psuedo-background-color1);
    color: white;
}
footer h4{
    font-family: var(--psuedo-font-family-header);
    font-size: 15px;
}
.footer-logo div{
    color: white;
}
.footer-upper{
    width: 100%;
}
.footer-middle{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}
.footer-links{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    height: auto;
    padding: 30px;
}
.footer-links div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}
.footer-links div a{
    text-decoration: none;
    font-family: var(--psuedo-font-family-para);
    color: white;
}
.footer-lower{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.footer-lower a{
    text-decoration: none;
    color: var(--psuedo-background-color2);
    font-family: var(--psuedo-font-family-para);
    font-weight: bold;
}
footer hr{
    width: 80%;
    height: 1px;
    border: none;
    background-color: grey;
    margin-top: 20px;
}
@media screen and (max-width: 900px) {
    .section1 img{
        width: 100%;
        object-fit: fill;
        height: 400px;
    }
    .stats{
        flex-direction: column;
    }
    .stats hr{
        rotate: 90deg;
        height: 200px;
    }
    .section5 div span{
        width: 40%;
    }
    .navigation nav{
        display: none;
    }
    .logo{
        font-size: 10px;
    }
    .fa-bars{
        display: block;
        opacity: 1;
    }
    .footer-middle{
        justify-content: flex-start;
    }
    .event img{
        width: 95%;
    }
    .event{
        text-align: center;
    }
    .contact-section form div{
        width: 90%;
    }
    
}

