/* =========================================
   Structural Racking Applications
========================================= */

.IndustryApplications {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    margin-bottom: 40px;
    border-bottom: 10px solid #000;
}

/* =========================================
   Heading
========================================= */

.IndustryApplications .IndustryApplications-title {
    margin: 0 0 38px;
    padding: 0 65px;
    text-align: center;
    color: #000000;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

/* =========================================
   Slider
========================================= */

.IndustryApplications .IndustryApplications-slider-wrapper {
    position: relative;
    width: 100%;
}

.IndustryApplications .IndustryApplications-swiper {
    width: 100%;
    overflow: visible;
}

.IndustryApplications .IndustryApplications-swiper .swiper-slide {
    height: auto;
}

/* =========================================
   Application Card
========================================= */

.IndustryApplications .IndustryApplications-card {
    width: 100%;
}

/* =========================================
   Image
========================================= */

.IndustryApplications .IndustryApplications-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.IndustryApplications .IndustryApplications-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.IndustryApplications .IndustryApplications-card:hover .IndustryApplications-image img {
    transform: scale(1.04);
}

/* =========================================
   Application Name
========================================= */

.IndustryApplications .content_div {
    text-align: center;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.IndustryApplications .content_div .IndustryApplications-name {
    margin: 17px 0 22px;
    padding: 0;

    color: #000000;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 400;
}

.IndustryApplications .content_div .content {
    font-size: 18px;
    font-weight: 400;
}

/* =========================================
   Button
========================================= */

.IndustryApplications .IndustryApplications-button {
    min-width: 190px;
    min-height: 60px;
    padding: 10px 27px;
    border: 0;
    border-radius: 6px;
    background: #000000;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.IndustryApplications .IndustryApplications-button:hover {
    background: #2c2c2c;
    /* color: #000000; */
    transform: translateY(-2px);
}

/* =========================================
   Navigation
========================================= */

.IndustryApplications .racking-app-navigation {
    position: absolute;
    top: 155px;
    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.72);
    color: #ffda18;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.IndustryApplications .racking-app-navigation:hover {
    background: #000000;
    transform: scale(1.08);
}

.IndustryApplications .racking-app-prev {
    left: 80px;
}

.IndustryApplications .racking-app-next {
    right: 80px;
}

.IndustryApplications .racking-app-navigation span {
    display: block;
    margin-top: -3px;
}

/* =========================================
   Large Desktop
========================================= */

@media (min-width:1200px) and (max-width: 1399.98px) {
    .IndustryApplications .IndustryApplications-title {
        padding: 0 55px;
        font-size: 44px;
    }

    .IndustryApplications .IndustryApplications-image {
        height: 290px;
    }

    .IndustryApplications .racking-app-prev {
        left: 55px;
    }

    .IndustryApplications .racking-app-next {
        right: 55px;
    }
}

/* =========================================
   Laptop
========================================= */

@media (min-width:1200px) and (max-width: 1399.98px) {

    .IndustryApplications .content_div {
        height: 350px;
    }

    .IndustryApplications .content_div .content {
        font-size: 17px;
    }

    .IndustryApplications .content_div .IndustryApplications-name {
        font-size: 26px;
    }
}

@media (min-width:992px) and (max-width: 1199.98px) {
    .IndustryApplications {
        padding-top: 25px;
    }

    .IndustryApplications .IndustryApplications-title {
        padding: 0 40px;
        margin-bottom: 30px;
        font-size: 40px;
    }

    .IndustryApplications .IndustryApplications-image {
        height: 270px;
    }

    .IndustryApplications .IndustryApplications-name {
        font-size: 25px;
        margin-top: 15px;
    }

    .IndustryApplications .IndustryApplications-button {
        min-height: 65px;
    }

    .IndustryApplications .racking-app-prev {
        left: 35px;
    }

    .IndustryApplications .racking-app-next {
        right: 35px;
    }

    .IndustryApplications .content_div {
        height: 350px;
    }

    .IndustryApplications .content_div .content {
        font-size: 17px;
    }

    .IndustryApplications .content_div .IndustryApplications-name {
        font-size: 26px;
    }
}

/* =========================================
   Tablet
========================================= */

@media (min-width:768px) and (max-width: 991.98px) {
    .IndustryApplications .IndustryApplications-title {
        padding: 0 30px;
        font-size: 36px;
    }

    .IndustryApplications .IndustryApplications-image {
        height: 260px;
    }

    .IndustryApplications .IndustryApplications-name {
        font-size: 23px;
    }

    .IndustryApplications .racking-app-navigation {
        width: 44px;
        height: 44px;
        top: 130px;
        font-size: 24px;
    }

    .IndustryApplications .content_div {
        height: 350px;
    }

    .IndustryApplications .content_div .content {
        font-size: 17px;
    }

    .IndustryApplications .content_div .IndustryApplications-name {
        font-size: 26px;
    }

    .IndustryApplications .racking-app-prev {
        left: 20px;
    }

    .IndustryApplications .racking-app-next {
        right: 20px;
    }
}

/* =========================================
   Mobile
========================================= */

@media (min-width:576px) and (max-width: 767.98px) {
    .IndustryApplications {
        padding: 25px 0 50px;
    }

    .IndustryApplications .IndustryApplications-title {
        padding: 0 20px;
        margin-bottom: 25px;
        font-size: 30px;
    }

    .IndustryApplications .IndustryApplications-image {
        height: 260px;
    }

    .IndustryApplications .IndustryApplications-name {
        margin: 14px 0 18px;
        font-size: 22px;
    }

    .IndustryApplications .IndustryApplications-button {
        min-width: 145px;
        min-height: 60px;
        padding: 10px 22px;
    }

    .IndustryApplications .racking-app-navigation {
        width: 40px;
        height: 40px;
        top: 110px;
        font-size: 21px;
    }

    .IndustryApplications .content_div {
        height: 330px;
    }

    .IndustryApplications .content_div .content {
        font-size: 16px;
    }

    .IndustryApplications .content_div .IndustryApplications-name {
        font-size: 25px;
    }

    .IndustryApplications .racking-app-prev {
        left: 12px;
    }

    .IndustryApplications .racking-app-next {
        right: 12px;
    }
}

/* =========================================
   Small Mobile
========================================= */

@media (min-width:0px) and (max-width: 575.98px) {

    .IndustryApplications .IndustryApplications-title {
        padding: 0;
        font-size: 25px;
    }

    .IndustryApplications .IndustryApplications-image {
        height: 230px;
    }

    .IndustryApplications .IndustryApplications-name {
        font-size: 20px;
    }

    .IndustryApplications .content_div {
        height: 340px;
    }

    .IndustryApplications .content_div .content {
        font-size: 15px;
    }

    .IndustryApplications .racking-app-navigation {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 95px;
    }

    .IndustryApplications .racking-app-prev {
        left: 0;
    }

    .IndustryApplications .racking-app-next {
        right: 00;
    }
}