/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.conference-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 60px 0;
    padding-top: 0px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #0f5c6e;
}

.stat-label {
    font-size: 22px;
    color: #0f5c6e;
    margin-top: 10px;
}
.dn-timeline {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.dn-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #d9d9d9;
    transform: translateX(-50%);
}

.dn-timeline-item {
    position: relative;
    width: 50%;
    padding: 40px;
}

.dn-timeline-item.left {
    left: 0;
    text-align: right;
}

.dn-timeline-item.right {
    left: 50%;
}

.dn-timeline-dot {
    position: absolute;
    top: 50px;
    width: 18px;
    height: 18px;
    background: #d92d2d;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.dn-timeline-item.left .dn-timeline-dot {
    left: 100%;
}
.dn-timeline-item.right .dn-timeline-dot {
    left: 0;
}

.dn-timeline-content {
    background: #f5f5f5;
    border: 1px solid #d92d2d;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        top: -50px;
    position: relative;
}
.dn-timeline-content:before {
    position: absolute;
    top: 55px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: " ";
    border-left: 15px solid #D4343F;
    border-right: 0px solid #D4343F;
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}
.dn-timeline-item.left .dn-timeline-content:before {
    left: 100%;
    transform: rotate(177deg);
}
.dn-timeline-date {
    color: #0f5c6e;
    font-weight: 700;
    margin-bottom: 10px;
}

.dn-timeline-title {
    color: #4ea0a6;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .dn-timeline-line {
        left: 20px;
    }

    .dn-timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left !important;
    }

    .dn-timeline-item.right {
        left: 0;
    }

    .dn-timeline-dot {
        left: 20px;
    }
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}