.industry-section {
    padding: 120px 0 200px;
    background-color: #F7F7F7;
    position: relative;
}

.industry-section .container {
    position: relative;
    z-index: 2;
}

.industry-section:before,
.industry-section:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background-color: inherit;
    -webkit-transform: skewY(5deg);
        -ms-transform: skewY(5deg);
            transform: skewY(5deg);
}

.industry-section:before {
    top: -100px;
}

.industry-section:after {
    bottom: -100px;
}

.industry-section__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.industry-section__helper__list {
    list-style: none;
    margin: 0;
    padding: 0 25px 0 50px;
}

.industry-section__upper h2 {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
}

.industry-section__helper {
    -webkit-box-flex: 2;
            -ms-flex: 2;
                flex: 2;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.industry-section__helper__list {
    width: calc(100% - 230px);
}

.industry-section__helper .btn {
    width: 230px;
    text-align: center;
}

.industry-section__helper__item {
    display: inline-block;
    vertical-align: middle;
}

.industry-section__helper__item:not(:first-child) {
    margin-left: 20px;
}

.industry-section__helper__item:last-child {
    margin-left: 32px;
}

.industry-section__helper__item a:not(.btn) {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #EBEBEB;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.industry-section__helper__item a:not(.btn) svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    -o-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}

.industry-section__helper__item a:not(.btn):hover,
.industry-section__helper__item a.is-active {
    background-color: #971515;
}

.industry-section__helper__item a:not(.btn):hover svg path {
    fill: #FFF;
}

.industry-section__helper__item a:not(.btn):hover .industry-section__helper__icon--blue,
.industry-section__helper__item a.is-active .industry-section__helper__icon--blue {
    opacity: 0;
}

.industry-section__helper__item a:not(.btn):hover .industry-section__helper__icon--white,
.industry-section__helper__item a.is-active .industry-section__helper__icon--white {
    opacity: 1;
}

.industry-section__helper__icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    transition: opacity 0.3s ease-in-out;
}

.industry-section__helper__icon--white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.industry-section__content {
    margin-top: 50px;
    position: relative;
}

.industry-section__image__button {
    display: block;
    position: relative;
    padding-top: 100%;
    background-color: #043364;
    position: relative;
}

.industry-section__image__button > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.industry-section__image__button:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.45;
    z-index: 1;
}

.industry-section__image__main {
    padding-top: 64.5%;
    background-color: #043364;
    position: relative;
}

.industry-section__image__main > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.industry-section__image__main:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 137px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(4, 51, 100, 0.6)));
    background-image: -o-linear-gradient(top, transparent, rgba(4, 51, 100, 0.6));
    background-image: linear-gradient(to bottom, transparent, rgba(4, 51, 100, 0.6));
}

.industry-section__icon {
    width: 160px;
    position: absolute;
}

.industry-section__icon--top {
    left: -180px;
    bottom: 80px;
    -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
            transform: scale(-1);
}

.industry-section__icon--bottom {
    right: -180px;
    bottom: 80px;
    -webkit-transform: scale(1, -1);
        -ms-transform: scale(1, -1);
            transform: scale(1, -1);
}

.industry-section__icon svg,
.industry-section__icon img {
    width: 160px;
    height: auto;
}

.industry-section__image__title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.industry-section__image__main__title {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.industry-section__image__title--hover {
    background-color: rgba(4, 51, 100, 0.6);
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.industry-section__image__title .title {
    color: #FFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    position: relative;
    top: 0;
    opacity: 1;
    text-transform: uppercase;
    -webkit-transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
    transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
}

.industry-section__image__main__title .title {
    color: #FFF;
    font-weight: 500;
    font-size: 35px;
    padding: 0 15px;
    flex: 1;
    text-transform: uppercase;
}

.industry-section__image__title:not(.industry-section__image__title--hover) .icon {
    width: auto;
    height: 30px;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.industry-section__image__title .icon {
    position: relative;
    top: 0;
    opacity: 1;
    -webkit-transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
    transition: top 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
}

.industry-section__image__title--hover .icon {
    margin-bottom: 15px;
    position: relative;
    top: -20px;
    opacity: 0;
}

.industry-section__image__title--hover .title {
    position: relative;
    top: 20px;
    opacity: 0;
}


.industry-section__image__main__title .btn {
    margin-left: auto;
}

.industry-section__image__main__title .icon {
    width: auto;
    height: 40px;
}

.industry-section__image__title .icon img,
.industry-section__image__main__title .icon img {
    width: auto;
    height: 100%;
}

.industry-section__button {
    text-align: center;
}

.industry-section__image__title--hover .icon img {
    width: 36px;
    height: auto;
}

.industry-section__image__slider .industry-section__image__main { display: none; }

.industry-section__image__slider .industry-section__image__main:first-child { display: block; }

.industry-section__image__slider.slick-initialized .industry-section__image__main { display: block; }

/*
* Responsive
*/

@media (min-width: 990px) {
    .industry-section__image__button:hover .industry-section__image__title--hover,
    .industry-section__image__button.is-active .industry-section__image__title--hover {
        opacity: 1;
    }

    .industry-section__image__button:hover .industry-section__image__title--hover .icon,
    .industry-section__image__button:hover .industry-section__image__title--hover .title,
    .industry-section__image__button.is-active .industry-section__image__title--hover .icon,
    .industry-section__image__button.is-active .industry-section__image__title--hover .title {
        opacity: 1;
        top: 0;
    }

    .industry-section__image__button:hover .industry-section__image__title:not(.industry-section__image__title--hover) .icon,
    .industry-section__image__button.is-active .industry-section__image__title:not(.industry-section__image__title--hover) .icon {
        opacity: 0;
        top: -20px;
    }

    .industry-section__image__button:hover .industry-section__image__title:not(.industry-section__image__title--hover) .title,
    .industry-section__image__button.is-active .industry-section__image__title:not(.industry-section__image__title--hover) .title {
        top: 20px;
        opacity: 0;
    }
}

@media (min-width: 1025px) {
    .industry-section__row {
        margin: 0 -24px;
    }
    
    .industry-section__row__item {
        padding: 0 24px;
    }
    
    .industry-section__image__list .row {
        margin: 0 -24px;
    }
    
    .industry-section__image__item {
        padding: 0 24px;
        margin-bottom: 50px;
    }
}

@media (min-width: 1025px) {
    .industry-section__helper__list {
        display: flex;
        align-items: center;
    }

    .industry-section__helper__item:last-child {
        flex: 1;
    }

    .industry-section__helper__item .btn {
        width: 100%;
    }
}


@media (max-width: 1025px) {

    .industry-section {
        padding: 50px 0 170px;
    }
    
    .industry-section__upper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .industry-section__helper {
        margin-top: 20px;
    }

    .industry-section__helper__list {
        padding: 0 20px 0 0;
        margin: 0;
    }

    .industry-section__image__item {
        margin-bottom: 32px;
    }

    .industry-section__icon {
        display: none;
    }

    .industry-section__skew {
        height: 150px;
        z-index: auto;
    }

    .industry-section__skew:first-child {
        top: -150px;
    }

    .industry-section__skew:last-child {
        bottom: -150px;
    }

    .industry-section__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .industry-section__image__main {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .industry-section {
        padding: 50px 0;
        background-color: #FFF;
    }

    .industry-section__skew {
        display: none;
    }

    .industry-section__image__title {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        top: 0;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        padding: 14px 12px;
        min-height: 75px;
    }

    .industry-section__image__title:not(.industry-section__image__title--hover) .icon {
        -ms-flex-item-align: center;
            -ms-grid-row-align: center;
            align-self: center;
    }

    .industry-section__image__title--hover {
        display: none;
    }

    .industry-section__image__button {
        padding: 0;
    }

    .industry-section__content {
        margin-top: 20px;
    }

    .industry-section__image__item {
        margin-bottom: 20px;
    }

    .industry-section:before,
    .industry-section:after {
        display: none;   
    }
}