/* Custom Styles for EJ Voice Website */

/* Font Awesome Icon Override */
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: 'FontAwesome' !important;
}

/* Fixed Menu on Scroll */
.fixed-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #28282e;
    transition: transform 0.3s ease;
}

.main_header {
    transition: transform 0.3s ease;
}

/* About Page - Card Layout */
.about-cards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.about-card-left {
    text-align: left;
    order: 1;
}

.about-card-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    order: 2;
}

.about-card-right {
    text-align: right;
    order: 3;
}

.about-logo-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Step By Step Arrows */
.step_by_step .iconbox_wrapper {
    position: relative;
}

.step_by_step .iconbox_wrapper:before {
    position: absolute;
    width: 60px;
    height: 3px;
    top: 40px;
    right: -58px;
    content: '';
    background-color: #0088a0;
    display: block;
    z-index: 1;
    border-radius: 0;
}

.step_by_step .iconbox_wrapper:after {
    position: absolute;
    width: 0;
    height: 0;
    top: 32px;
    right: -58px;
    content: '';
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 15px solid #0088a0;
    display: block;
    z-index: 2;
}

.step_by_step .module_iconboxes:last-child .iconbox_wrapper:before,
.step_by_step .module_iconboxes:last-child .iconbox_wrapper:after {
    display: none;
}

/* Hide step arrows on mobile */
@media only screen and (max-width: 767px) {
    .step_by_step .iconbox_wrapper:before,
    .step_by_step .iconbox_wrapper:after {
        display: none !important;
    }
}
