:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
a:hover {
    color: var(--secondary-color);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
	display: block;
	padding: 12px 25px;
	background-color: var(--secondary-color);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
	box-shadow: var(--box-shadow);
	margin: 20px auto 0;
	width: fit-content;
}
.volunteer-options {
	font-size: 0;
}
.volunteer-card {
	font-size: initial;
	vertical-align: top;
	width: 33%;
	display: inline-block;
}
.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}
.section {
    padding: 40px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
header {
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.logo {
    display: inline-block;
}
.logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px 10px;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: var(--transition);
}
/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* About Section */
.about {
    background-color: white;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    animation: fadeInLeft 1s ease;
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}
.about-img:hover img {
    transform: scale(1.05);
}
.about-text {
    flex: 1;
    animation: fadeInRight 1s ease;
}
.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 20px;
}
.about-text .btn {
    display:inline-block;
}
/* Causes Section */
.causes {
    background-color: var(--light-color);
}
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.cause-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.cause-img {
    height: 200px;
    overflow: hidden;
}
.cause-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.cause-card:hover .cause-img img {
    transform: scale(1.1);
}
.cause-content {
    padding: 20px;
}
.cause-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}
.cause-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}
.progress-container {
    height: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}
.cause-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}
/* Notice Board Section */
.notice-board {
    background-color: white;
}
.notice-container {
    display: flex;
    gap: 30px;
}
.notice-section {
    flex: 1;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    min-height:350px;
}
.notice-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}
.notice-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}
.notice-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.notice-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.notice-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.notice-item .date {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 5px;
}
/* News Feed Section */
.news-feed {
    background-color: var(--light-color);
    padding: 40px 0;
    overflow: hidden;
}
.news-container {
    position: relative;
}
.news-title {
    text-align: center;
    margin-bottom: 30px;
}
.news-title h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}
.news-ticker {
    white-space: nowrap;
    padding: 10px 0;
}
.news-item {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 10px 25px;
    margin-right: 20px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    flex-shrink: 0;
}
.news-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}
/* Events Section */
.events {
    background-color: white;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.events-grid.events-grid_2 {
    display: block;
    font-size:0;
}
.events-grid.events-grid_2 .event-card {
    margin: 50px 0;
}
.event-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.event-card:hover {
    transform: translateY(-10px);
}
.event-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    text-align: center;
}
.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}
.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}
.event-content {
    padding: 20px;
}
.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}
.event-content .event-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.event-content .event-meta i {
    margin-right: 8px;
    color: var(--secondary-color);
}
.event-content .event-meta span {
    margin-right: 15px;
}
/* Volunteer Section */
.volunteer {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}
.volunteer .section-title h2,
.volunteer .section-title p {
    color: white;
}
.volunteer p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}
.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}
.footer-bottom a {
	color:white;
}
.icon-container {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    margin:2.5px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.icon-name {
    font-weight: bold;
    color: #333;
}
/* Brand colors */
.pinterest-bg { background: #e60023; }
.facebook-bg { background: #1877f2; }
.twitter-bg { background: #1da1f2; }
.instagram-bg { 
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}
.linkedin-bg { background: #0a66c2; }
.youtube-bg { background: #ff0000; }
.third_navigation_bar, .forth_navigation_bar {
    padding: 5px 0 15px;
}
.third_navigation_bar > .menu_holder_container a.position_box, .forth_navigation_bar > .menu_holder_container a.position_box {
    display: block;
}
.first_navigation_bar > .menu_holder_container, .second_navigation_bar > .menu_holder_container {
    max-width: 1200px;
    margin: 0 auto;
}
.third_navigation_bar > .menu_holder_container, .forth_navigation_bar > .menu_holder_container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.first_navigation_bar .dropexists>.position_box:after, .second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown.dropexists >.position_box:after {
    width: 5px;
    height: 5px;
    content: "";
    border: 0 solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    transform: rotate(45deg);
    margin: 7px 12.5px 0;
    vertical-align: middle;
    position: absolute;
    right: 0;
}
.first_navigation_bar {
    font-size: 0;
    text-align: right;
    position: relative;
    z-index: 1010;
}
.first_navigation_bar .dropdown {
    position: relative;
}
.first_navigation_bar .dropdown.dropexists {
    padding-right: 25px;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown {
    display: inline-block;
    z-index: 600;
    margin-right: 5px;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown a {
    padding: 2.5px 5px;
    font-size: 13px;
    color: #000;
    display: block;
    text-align: left;
    font-weight: 600;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > a {
    color: #fff;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder {
    position: absolute;
    width: 180px;
    left: 20%;
    top: 100%;
    z-index: 1010;
    background: white;
    border: 1px solid #d8d8d8;
    border-radius: 5px 0 5px 5px;
    box-shadow: 0px 5px 5px -5px #333;
    display:none;
}
.first_navigation_bar > .menu_holder_container > .menu_holder .dropdown:hover > .menu_holder_container > .menu_holder {
    display:block;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder {
    left: 0;
    top: 100%;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder:before {
    transform: rotate(45deg);
    border: 0 solid #d8d8d8;
    content: "";
    position: absolute;
    top: -6px;
    left: 10px;
    background: white;
    border-width: 1px 0 0 1px;
    width: 10px;
    height: 10px;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder .dropdown:hover {
    background: #f9f9f9;
    margin-left: -5px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px 0 0 5px;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder.dropright {
    left: inherit;
    right: 20%;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder.dropright {
    left: inherit;
    right: 0;
}
.first_navigation_bar > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder.dropright:before {
    left: inherit;
    right: 10px;
}
.second_navigation_bar {
    line-height: 0;
}
.second_navigation_bar .menu_holder_container > .menu_holder, .third_navigation_bar .menu_holder_container > .menu_holder, .forth_navigation_bar .menu_holder_container > .menu_holder {
    line-height: 1.6;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown {
    display: inline-block;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > a {
    color: #fff;
    position: relative;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropexists.dropdown > a {
    padding-right: 30px;
}
.second_navigation_bar a, .third_navigation_bar a, .forth_navigation_bar a {
    padding: 7.5px 10px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container, .third_navigation_bar > .menu_holder_container > .menu_holder, .forth_navigation_bar > .menu_holder_container > .menu_holder {
    position: absolute;
    right: 0;
    left: 0;
    padding-bottom: 0;
    display: none;
    z-index: 101010;
}
.third_navigation_bar > .menu_holder_container > .menu_holder, .forth_navigation_bar > .menu_holder_container > .menu_holder {
    display:inline-block;
    background:none;
    position: relative;
    box-shadow:none;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container {
    border-top: 1px solid #fff;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown, .third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown {
    display: inline-block;
    padding: 10px;
    vertical-align: top;
}
.third_navigation_bar > .menu_holder_container > .menu_holder, .forth_navigation_bar > .menu_holder_container > .menu_holder {
    width:inherit;
    display:block;
}
.third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown {
    width:25%;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown:hover > .menu_holder_container {
    display: block;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder, .third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown .menu_holder_container > .menu_holder {
    border-left:1px solid #d8d8d8;
    margin-left:2.5px;
    padding-left:2.5px;
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown > a, .third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > a, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > a {
    font-size: 16px;
    border-bottom: 5px solid var(--secondary-color);
}
.second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown a {
    color: #ffffff;
}
.third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown a, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container > .menu_holder > .dropdown a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}
.textaligncenter {
    text-align:center;
}
.event-links {
    text-align: center;
}
.event-img {
    padding-top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.event-links .btn {
    display:inline-block;
}
.event-card {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.event-side-img-holder {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    position: absolute;
    top: 106px;
    left: 0;
    right: 50%;
    bottom: 0;
}
.event-side-img {
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2.5px #aaa;
}
.event-side-content {
    display: inline-block;
    font-size: medium;
    vertical-align: top;
}
.event-side-content .event-content {
    padding: 20px 20px 20px 50%;
}
.gallery-grid {
    text-align: center;
    font-size: 0;
}
.gallery-item {
    padding-right: 11.95%;
    padding-left: 11.95%;
    padding-top: 11.95%;
    padding-bottom: 11.95%;
    display: inline-flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-items: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin: 5px;
    position: relative;
    border-radius: 20px;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.gallery-overlay {
    display: block;
    margin: 0 auto;
    padding: 5px 10px;
    border-radius: 50%;
    border: 5px solid #3498dbb3;
    background: #fffffff2;
    color: white;
    position: absolute;
    margin-left: -22.5px;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-content {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}
.popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}
.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}
.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.margin5pxsidewise {
    margin: 0 5px;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
    @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .notice-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown a, .second_navigation_bar > .menu_holder_container > .menu_holder .dropdown {
        display: block !important;
    }
    .second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container {
        position:relative;
        box-shadow: none !important;
    }
    .third_navigation_bar > .menu_holder_container > .menu_holder > .dropdown, .forth_navigation_bar > .menu_holder_container > .menu_holder > .dropdown {
        width:inherit;
    }
    .second_navigation_bar > .menu_holder_container > .menu_holder > .dropdown > .menu_holder_container {
        position: relative;
    }
    .hamburger {
        display: inline-block;
    }
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .second_navigation_bar .menu_holder_container > .menu_holder {
        line-height: 1.6;
    }
    .second_navigation_bar > .menu_holder_container > .menu_holder {
        display:none;
    }
    .second_navigation_bar.showmenu > .menu_holder_container > .menu_holder {
        display:block;
    }
    .event-side-img-holder {
        display: block;
        width: 100%;
        height: 200px;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .event-side-img {
        bottom: 0;
    }
    .event-side-content .event-content {
        padding: 20px;
    }
    .gallery-item {
        padding-right: 20%;
        padding-left: 20%;
        padding-top: 20%;
        padding-bottom: 20%;
        border-radius: 10px;
    }
}
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section {
        padding: 60px 0;
    }
    .gallery-item {
        padding-right: 23%;
        padding-left: 23%;
        padding-top: 23%;
        padding-bottom: 23%;
    }
}