/* =========================
   3 STEP FORM
========================= */

.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    width: 100%;
}

.step-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-width: 120px;
    opacity: 0.45;
    transition: all 0.3s ease;
}

.step-item span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 8px;
}

.step-item strong {
    font-size: 13px;
    font-weight: 500;
}

.step-item.active,
.step-item.completed {
    opacity: 1;
}

.step-item.active span,
.step-item.completed span {
    background: #222;
    color: #fff;
    border-color: #222;
}

.step-line {
    width: 80px;
    height: 1px;
    background: #ddd;
    margin: 0 10px;
    margin-bottom: 30px;
}


/* =========================
   FORM STEPS
========================= */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: stepFade 0.35s ease;
}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================
   HEADING
========================= */

.step-heading {
    margin-bottom: 30px;
}

.step-heading h3 {
    margin-bottom: 8px;
}

.step-heading p {
    margin-bottom: 0;
    color: #777;
}


/* =========================
   INPUT
========================= */

#communityForm .form-control {
    width: 100%;
}


/* =========================
   BUTTONS
========================= */

.step-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.step-buttons .next-step {
    margin-left: auto;
}


/* =========================
   ERROR
========================= */

#communityForm .help-block {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

#communityForm .has-error .form-control {
    border-color: #dc3545;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "/");
}
.post-entry h2 {
    font-size: 26px;
}
.footer-body-metal {
    margin-top: 0px;
}
.footer-contact-list-metal {
    gap: 30px 12.25vw;
}
.sidebar-cta-contact-item figure {
    margin: 10px 0px;
}
.schedule-speaker-Content figure {
    padding: 10px 0px;
}
.schedule-button {
    margin: 22px 0px;
}
.page-header-box h1
{
    font-size: 53px;
}
.schedule-entry h2 {
    font-size: 33px;
}

.mb-10
{
    margin-bottom:10px !important;
}
#upcoming-event
{
    background: url(../images/event/upcoming.jpg) no-repeat;
    background-size:cover;
}
.upcoming-event-gold::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
}

.sponsor-interest-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top:10px;
}

.sponsor-interest-list label {
    display: block;
}

#hide-laptop-div
{
    display:none;
}
#hide-mobile-div
{
    display:block;
}
.schedule-entry h3 {
    font-size: 14px;
}
.page-features .feature-item-content p {
    font-size: 13px;
}
.feature-item {
    min-height: 236px;
    padding: 15px 15px;
}
.page-features .feature-item {
    text-align: center;
}
.feature-item .icon-box {
    margin: 0 auto;
}
/* Default icon */
.feature-item .icon-box i,
.feature-item .icon-box i::before {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    filter: none !important;
}

/* Hover icon */
.feature-item:hover .icon-box i,
.feature-item:hover .icon-box i::before {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    filter: brightness(0) invert(0) !important;
}

/* Active icon */
.feature-item.active .icon-box i,
.feature-item.active .icon-box i::before {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    filter: brightness(0) invert(0) !important;
}

/* Active + hover */
.feature-item.active:hover .icon-box i,
.feature-item.active:hover .icon-box i::before {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    filter: brightness(0) invert(0) !important;
}

#cusbx
{
    border: 1px solid #ba9335;
    border-radius: 10px;
    margin-top:5px;
}

#cusbx .section-title h3::before {
    background: transparent;
}
#cusbx p
{
    margin-top:0px;
}
#cusbx .hero-countdown-title
{
    margin-bottom:9px;
}

/* =========================
   MOBILE
========================= */

@media only screen and (max-width: 767px) {
    .footer-menu-metal ul {
        gap: 11px 64px;
    }
    #hide-laptop-div
    {
        display:block;
    }
    #hide-mobile-div
    {
        display:none;
    }
}


@media only screen and (max-width: 767px) {
    .footer-contact-item-metal {
        width: 100%;
        text-align: center;
    }
    .footer-contact-item-metal p 
    {
        display: block;
    }
    .footer-logo-metal
    {
        text-align:center;
    }
    .footer-social-icons ul {
        padding: 0px 85px;
    }
}

@media (max-width: 767px) {

    .form-steps {
        margin-bottom: 35px;
    }

    .step-item {
        min-width: auto;
    }

    .step-item strong {
        font-size: 10px;
    }

    .step-item span {
        width: 36px;
        height: 36px;
    }

    .step-line {
        width: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 25px;
    }

}
.contact-us-image figure img
{
    aspect-ratio: auto;
    object-fit: contain;
}

}