*{
    margin: 0;
    padding: 0;
    font-family: roboto, sans-serif, arial;
}

/* styling for whole site*/
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
img {
    width: 100%;
}
.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300;
}

/* Navbar styling*/
header {
    position: flex;
    width: 100%;
    z-index: 5;
    background: #e4e3e3;
}
header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}
.navbar .nav-menu {
    display: flex;
    gap: 10px;
}
.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    color: #085630;
    font-size: 1.12rem;
    border-radius: 10px;
    transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover{
    color: #fff;
    background: #085360;
}
.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/*slides section styling*/
.slides-section {
    padding: 10px 0 10px;
}
.slides-section .slider-wrapper {
    overflow: hidden;
}
.section-section .slide {
    display: flex;
    padding: 35px;
    align-items: center;
}
.section-section .slide .img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 20px;
}
.slides-section .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    opacity: 1;
}
.slides-section .swiper-slide-button {
    width: 14px;
    height: 14px;
    color: #085630;
    transition: 0.3s ease;
}
.slides-section .swiper-slide-button:hover {
    color: rgb(216, 83, 7);
}


/* account section styling */
.account-section {
    padding: 10px 0;
    background: #085360;
}
.account-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.account-section .account-image-wrapper .account-image {
    padding-left: 50px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}
.account-details{
    text-align: center;
    padding: 100px 0 100px;
    text-transform: upercase;
    padding-right: 50px;
    font-size: 20px;
    color: #fff;
}



/* guest review styling */
.guest-review {
    padding-top: 30px;
    padding-bottom: 20px;
}
.guest-review h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #085360;
}
.guest-review p {
    margin-bottom: 20px;
    font-weight: 400;
    color: #085360;
}
.review-section{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
.review-item{
    width: 280px;
    background-color: #ebf6f8;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    padding: 10px 10px;
}
.review-item img{
    width: 150px;
    height: 150px;
    margin-bottom: 5px;
    border-radius: 50%;
    border: 1px solid #085360;
    padding: 4px;
}
.review-item h1{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #085360;
}
.review-item p{
    font-size: 18px;
    padding-top: 10px;
    columns: center;
    margin-bottom: 20px;
    font-weight: 300;
    color: #000;
}


/* phtot gallery styling */
.event-gallery{
    padding-top: 30px;
    padding-bottom: 10px;
}
.photo-event h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #085360;
    padding-left: 20px;
}
.photo-event p {
    color: #085360;
    margin-bottom: 10px;
    font-weight: 400;
    padding-left: 20px;
}
.photo-container{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
.photo-container .photo{
    height: 14rem;
    width: 25rem;
    margin: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
    overflow: hidden;
    border-radius: 1rem;
}




.Video-event{
    padding-top: 30px;
    padding-bottom: 10px;
}
.Video-event h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #085360;
    padding-left: 20px;
}
.Video-event p{
    color: #085360;
    margin-bottom: 10px;
    font-weight: 400;
    padding-left: 20px;
}
.video-container{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.video-container .video{
    height: 15rem;
    width: 25rem;
    margin: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
    overflow: hidden;
    border-radius: 1rem;
}
.video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    outline: none;
    border: none;
    cursor: pointer;
}
.video-container .video video:hover{
    transition: .2s linear;
    transform: scale(1.3);
}
.video-container .video .active{
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 80%;
    box-shadow: 0 0 0 100vh rgba(0,0,0,.7);
    z-index: 1;
}
.video-container .video .active:hover{
    transition: none;
    transform: translate(-50%, -50%); scale(1);
}


.sponsor-comments{
    font-size: 28px;
    color: #085360;
    margin-bottom: 5px;
}
.sponsor-name{
    height: 100px;
    padding-bottom: 10px;
    margin: 10px auto;
}
.sponsor-comments h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #085360;
    padding-left: 20px;
}
.sponsor-name img{
    height: 80px;
    width: 140px;
    padding: 10px;
}

.footer .container{
    max-width: 1170px;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
ul{
    list-style: none;
}
.footer{
    background-color: #085360;
    padding: 70px 0;
}
.footer-col{
    width: 25%;
    padding: 0 45px;
}
.footer-col h3{
    font-size: 18px;
    color: #fff;
    text-decoration: capitalize;
    margin-bottom: 35px;
    font-weight: bold;
    position: relative;
}
.footer-col h3::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e67308;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #e67308;
    text-decoration: none;
    font-weight: 100px;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #fff;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 0px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}
.copy{
    color: #fff;
    text-align: center;
    padding-top: 30px;
    font-size: 12PX;
}










/* responsive media query code for max width 900px */
@media screen and (max-width: 900px){
    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: 1.5rem;
    }
    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }
    .navbar #menu-open-button {
        color: #085630;
    }
    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: #fff;
        transition: left 0.2s ease;
    }
        body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }
    .navbar .nav-menu .nav-link{
        color: #085630;
        display: block;
        margin-top: 17px;
        font: 1.5rem;
}
}

@media(max-width: 767px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px) {
    .footer-col{
        width: 100%;
    }
}