:root {
    --grey-color: #595959;
    --event-description-color: #0F4954;
    --event-info-buton: #5D181A;
}

.event-info {
    display: flex;
    justify-content: space-between;
}

.event-info-main {
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
}

.event-label-icon, .event-time-date-location {
    justify-content: center;
    align-items: center;
}

.event-info-icon {
    font-size: 20px;
}

.grey-color {
    color: var(--grey-color);
}

.event-info-banner-img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 10px;
}

.event-info-description {
    margin: 1rem 13rem 0 13rem;
}

.event-heading {
    color: var(--event-description-color);
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
}

.event-subheading {
    color: var(--event-description-color);
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
}

.event-date-location {
    color: var(--event-description-color);
    font-size: 0.9rem;
    text-align: center;
}

.benefits-heading {
    color: var(--event-description-color);
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.benefits-list {
    color: var(--event-description-color);
    font-size: 0.9rem;
}

.benefits-list li {
    margin-bottom: 0.75rem;
}

.highlight-text {
    color: #1a5a5e;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1.5rem;
}

.description-text {
    color: var(--event-description-color);
    font-size: 0.9rem;
}

.event-info-button {
    text-align: center;
}

.view-video-btn {
    background-color: var(--event-info-buton);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem 0 1.5rem 0;
    border-radius: 10px;
}

.view-video-btn:hover {
    background-color: var(--event-info-buton);
}

.event-d-flex {
    display: flex;
}

.event-gallery-grid {
    margin: 1.5rem 0px;
}

a {
    color: inherit !important;
}

a:hover{
    text-decoration: none;
}

.event-gallery-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.custom-col {
    padding: 8px;
}


.banner-img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .event-details h3 {
        font-size: 16px;
    }

    .event-date, .event-location {
        font-size: 12px;
    }

    .quotes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-box {
        display: block;
    }

    .event-info {
        margin-bottom: 1rem;
    }

    .quotes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop view */
@media (min-width: 768px) {
    .col-d-4 {
        width: 25%;
    }

    .col-d-3 {
        width: 33.33%;
    }
}

/* Mobile view */
@media (max-width: 767.98px) {
    .col-m-3 {
        width: 33.33%;
    }

    .col-m-2 {
        width: 50%;
    }
}

@media (max-width: 960px) {
    .event-info-main {
        display: block;
    }

    .event-d-flex {
        display: block;
    }

    .event-time-date-location {
        justify-content: start;
    }

    .event-info-description {
        margin: 1rem 1rem 0 1rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1323px;
    }
}