/* Our Popular Hiring Categories */
.Hiring-item {
    margin-bottom: 50px;
}
.Hiring-item:last-child {
    margin-bottom: 0;
}
.Hiring-title {
    border-left: 5px solid #d6e1e6;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    margin: 0 0 20px;
    padding-left: 15px;
    text-transform: inherit;
}
.Hiring-content {
    padding-top: 26px;
    border-top: 1px solid #bcc5d3;
}
.Hiring-features {
    list-style: none;
    padding: 0;
}
.Hiring-features li {
    padding: 7px 0;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
}
.Hiring-features li i {
    color: #008abe;
    margin-right: 10px;
    font-size: 1.1rem;
}
/* banner */
.Industry-page {
    width: 100%;
    position: relative;
    padding: 180px 0px;
    overflow: hidden;
    /* background-image: url('../../images/shape/Telecom.jpg'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.Industry-page .industry-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
    overflow: hidden;
}
.Industry-page::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    width: 100%;
    height: 100%;
}
.Industry-page .content-box h2 {
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 1;
    transition: all 1000ms ease;
    text-transform: capitalize;
}
.Industry-page .content-box h2 span {
    color: var(--theme-color);
}
.Industry-page .content-box p {
    font-size: 19px;
    line-height: 30px;
    color: #e5e7eb;
    margin-bottom: 40px;
    opacity: 1;
    transition: all 1000ms ease;
}
/* All Industry */
.single__cat.style__two {
    padding-top: 30px;
    padding-bottom: 35px;
    background: linear-gradient(
        226.58deg,
        #fef2eb 1.52%,
        #f1f1f1 47.05%,
        #e0e9ea 99.84%
    );
    transition: all 0.4s ease;
}
.single__cat {
    padding: 22px 30px;
    border-radius: 10px;
}
.single__cat__icon {
    height: 60px;
    width: 60px;
    display: grid;
    place-items: center;
}
.single__cat__icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.single__cat__link a {
    font-size: 21px;
    color: var(--title-color);
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: capitalize;
}
.single__cat.style__two:hover {
    background: var(--theme-color);
}
.single__cat.style__two:hover .single__cat__link a {
    color: #fff;
}
