/** industries-section **/

.industries-section{
    position: relative;
    padding: 125px 0px 90px 0px;
    background: #18003a;
}

.industries-section .pattern-layer .pattern-1{
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.industries-section .pattern-layer .pattern-2{
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 463px;
    background-size: cover;
    background-repeat: repeat-x;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
}

.industries-section .inner-box{
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px 30px 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 500ms ease;
    background: #18003a;
}

.industries-section .inner-box:hover{
    box-shadow: 0 20px 30px rgba(250, 59, 103, 0.4);
}

.industries-section .inner-box:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    border-radius: 5px;
    transition: all 500ms ease;
    background: -webkit-linear-gradient(0deg, #fb5155, #f92a75 100%);
}

.industries-section .inner-box:hover:before{
    height: 100%;
    top: 0px;
}

.industries-section .inner-box .pattern-layer{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 137px;
    background-repeat: no-repeat;
    opacity: .05;
    transition: all 500ms ease;
}

.industries-section .inner-box:hover .pattern-layer{
    opacity: 1;
}

.industries-section .inner-box span{
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.industries-section .inner-box h4{
    line-height: 28px;
    margin-bottom: 70px;
}

.industries-section .inner-box h4,
.industries-section .inner-box h4 a{
    color: #fff;
}

.industries-section .inner-box .btn-box{
    position: absolute;
    right: 30px;
    bottom: 60px;
}

.industries-section .inner-box .btn-box a{
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.industries-section .inner-box:hover .btn-box a{
    background: #fff;
    color: #f92f71;
}

.industries-section .inner-box .icon-box{
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 60px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0px;
    transition: all 500ms ease;
}

.industries-section .inner-box:hover .icon-box{
    color: #fa3e66;
}

.industries-section .content-box .btn-box a{
    color: #fff;
    font-weight: 600;
}

.industries-section .content-box{
    position: relative;
    margin-bottom: 30px;
}

.industries-section .sec-title{
    margin-bottom: 42px;
}

/* Button Style Four */
.btn-style-four{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Josefin Sans', Sans-serif;
    color: #fff;
    padding-left: 17px;
}

.btn-style-four span{
    font-size: 25px;
    margin-left: 7px;
}

.btn-style-four:before{
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    left: 0px;
    top: 10px;
    border-radius: 50%;
    transition: all 500ms ease;
    background: #fb5155;
}

.btn-style-four:hover{
    color: #fb5155 !important;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .industries-section .image-layer{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .industries-section{
        padding: 70px 0px 40px 0px;
    }
}

/* Animation for pattern layer */
@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-1000px, 0, 0);
    }
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-1000px, 0, 0);
    }
}
