:root{
    --interval: 50px;
}
@media screen and (max-width: 768px){
    :root{
        --interval: 30px;
    }
}
#industries{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#breadcrumb {
    display: none;
}

#group-content {
    display: none;
}

.die-swiper {
    max-width: 1920px;
    max-height: 680px;
    margin: 0 auto;
}

.die-swipers {
    display: grid;
    place-items: center;
}

.centered-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.centered-text>p {
    font-weight: bold;
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.centered-text span>p {
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 28px;
    text-shadow: 0px 4px 4px rgba(152, 152, 152, 0.6);
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.centered-text-link {
    width: 130px;
    height: 5px;
    background: #008ED3;
}

@media only screen and (max-width: 768px) {
    .die-swiper {
        width: 100%;
        height: auto;
    }

    .centered-text {
        font-size: 35px;
    }
}





.appli {
    max-width: 1920px;
    /*margin: 50px auto 0 auto;*/
}

.appli-body {
    /*max-width: 1600px;*/
    /*margin: 0 auto;*/
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
}

.appli-body-title {
    font-weight: bold;
    font-size: 60px;
    color: #343434;
    font-family: var(--font-family-title);
}

.appli-body-link {
    width: 118px;
    height: 5px;
    background: #008ED3;
}

.appli-body-content {
    display: flex;
    flex-direction: row;
    column-gap: 4%;
    row-gap: 40%;
    flex-wrap: wrap;
    justify-content: center;
}

.appli-body-content-row {
    cursor: pointer;
}

.appli-row-text {
    background: RGBA(148, 148, 148, 1);
    text-align: center;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    position: relative;
    top: -40px;
}

.appli-body-content-row:hover .appli-row-text {
    background: #162F76;
}


#industriesPage,
#industriesPage .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#industriesPage .title{
    position: relative;

    font-size: var(--font-size-title-1);
    font-weight: var(--font-weight-title);
    line-height: var(--line-height-title-1);
    text-align: center;
}
#industriesPage .title:after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    content: ' ';
    display: block;
    width: 120px;
    height: 5px;
    background-color: #008ed3;
}
#industriesPage .content .top{
    background-color: #162F76;
    padding: var(--interval);

    font-size: var(--font-size-title-3);
    font-weight: 400;
    line-height: var(--line-height-title-2-3);
    color: #f4f4f4;
}
#industriesPage .content .middle .item{
    display: flex;
    align-items: center;
}
#industriesPage .content .middle .item:nth-child(odd){
    flex-direction: row;
}
#industriesPage .content .middle .item:nth-child(even){
    flex-direction: row-reverse;
}
#industriesPage .content .middle .item .img{
    flex: 1;
    overflow: hidden;
    border: 1px dashed #ccc;
}
#industriesPage .content .middle .item .img img{
    display: block;
    width: 100%;
    object-fit: cover;
}

#industriesPage .content .middle .item .text{
    flex: 2;
    padding: 30px 50px;
}

#industriesPage .content .middle .item .subTitle{
    font-size: var(--font-size-title-2);
    font-weight: var(--font-weight-title);
    line-height: var(--line-height-title-2-3);

}
#industriesPage .content .middle .item .subContent{
    font-size: var(--font-size-title-3);
    line-height: var(--line-height-title-2-3);

}
#industriesPage .content .bottom{
    margin-top: var(--interval);
    background-color: rgb(215, 225, 255);
    padding: var(--interval);
    width: 100vw;

    font-weight: 400;
    font-size: var(--font-size-title-3);
    line-height: var(--line-height-title-2-3);
    text-align: left;
    font-style: normal;
    text-transform: none;
    color: black;
}

@media screen and (max-width: 768PX){

    #industriesPage .content .middle .item{
        flex-direction: column!important;

    }

}