.inner-landing-title {
    max-width: 970px;
    margin: 0 auto;
}

.bolder-title h3,
.sky-heading h3 {
    color: var(--primary-color);
    font-size: 21px !important;
    font-family: inherit;
    font-weight: 600 !important;
}

.flex-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gallery-item img {
    width: auto;
    height: auto;
    max-height: 300px;
}
@media (max-width: 989px) {
    .flex-gallery {
        flex-wrap: wrap;
    }
}

.recruit-form {
    padding: 25px 40px 30px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.avia-chrome .avia-gallery-thumb {
    gap: 10px;
}

#top .avia-gallery .avia-gallery-thumb a:hover {
    opacity: .9;
}

.inner-five-col .flex_column {
    width: 100% !important;
}
.inner-five-col .flex_column_table {
    display: grid !important;
    gap: 15px;
    grid-template-columns: 1fr;
}

@media (min-width: 641px) {
    .inner-five-col .flex_column_table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 990px) {
    .inner-five-col .flex_column_table {
        grid-template-columns: repeat(3, 1fr);
    }

    .inner-five-col .bolder-title {
        min-height: 90px;
    }
}

@media (min-width: 1251px) {
    .inner-five-col .flex_column_table {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 990px) {
    .intro-border-col .flex_column_table {
        display: flex !important;
    }
    
    .intro-border-col .av_one_fourth {
        display: flex !important;
        align-items: center;
    }
    
    .intro-border-col .av_three_fourth {
        width: fit-content !important;
    }
}


.block-box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 0;
    height: auto;
    min-block-size: 100px;
}

.block-number {
    text-align: center;
    font-size: 1.5em;
    display: block;
    font-weight: bold;
}

.block-details {
    font-weight: bold;
    font-size: 16px;
}

.step-arrow {
    position: relative;
}

.transition-steps {
    display: grid;
    column-gap: 60px;
    grid-template-columns: 1fr;
}

.step-arrow:after {
    font-family: 'entypo-fontello';
    position: absolute;
    color: var(--primary-color);
}

@media (min-width: 990px) {
    .transition-steps {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 60px;
    }

    .step-arrow:after {
        content: '\e881';
        right: -50px;
        font-size: 50px;
        top: calc(50% - 25px);
    }
}

@media (max-width: 989px) {
    .transition-steps {
        row-gap: 80px;
        width: 500px;
        max-width: 100%;
        margin: 0 auto;
    }

    .step-arrow:after {
        content: '\e87f';
        font-size: 50px;
        bottom: -50px;
        left: calc(50% - 25px);
    }

    .step-block {
        text-align: center;
        border: 1px solid;
        padding: 20px;
    }
}