/***
============================================
Industries One
============================================
***/
.industries-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 90px;
    z-index: 1;
}

.industries-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.industries-one .sec-title .sec-title__title {
    color: var(--logistiq-black);
}

.industries-one__single {
    position: relative;
    display: block;
    text-align: center;
    background: var(--logistiq-gray-bg);
    padding: 45px 30px 40px;
    border-radius: 10px;
    transition: all 500ms ease;
    margin-bottom: 30px;
}

.industries-one__single:hover {
    background: var(--logistiq-base);
}

.industries-one__single-icon {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.industries-one__single-icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 55px;
    line-height: 60px;
    transition: all 500ms ease;
}

.industries-one__single:hover .industries-one__single-icon span {
    color: var(--logistiq-white);
}

.industries-one__single h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px;
    color: var(--logistiq-black);
    transition: all 500ms ease;
}

.industries-one__single:hover h3 {
    color: var(--logistiq-white);
}

.industries-one__single p {
    font-size: 15px;
    line-height: 26px;
    color: var(--logistiq-gray);
    transition: all 500ms ease;
}

.industries-one__single:hover p {
    color: rgba(255, 255, 255, 0.8);
}