/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner{
    background-image: url("../../images/banner/outils_banner.jpg");
}
.banner::after{
    bottom: -3px;
}
/*--------------------------------------------------------------
# Software Section
--------------------------------------------------------------*/
.software{
    position: relative;
    text-align: center;
    align-items: center;
    margin: var(--margin75);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.software .container{
    display: flex;
    justify-content: space-between;
    padding: 100px 50px 0;
}
.software .container .imgBx{
    width: 500px;
    height: 600px;
}
.software .container .imgBx img{
    width: 100%;
}
.software .container .textBx{
    width: 900px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 70px;
}
.software .container .textBx img{
    width: 65px;
}
.software .container .textBx tr{
    text-align: center;
    align-items: center;
}
.software .container .textBx td{
    width: 200px;
    height: 100px;
}
.software .container .textBx td.text{
    width: 450px;
    color: rgba(42,42,42,0.8);
    font-size: 16px;
    font-weight: bold;
}
.software .container .textBx .btn{
    color: var(--main-color);
    border: 2px solid var(--main-red);
    padding: 10px 20px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 5px;
    transition: 0.4s;
    width: 200px;
    font-weight: bold;
}
.software .container .textBx .btn:hover{
    background: var(--main-red);
    color: white;
    transform: scale(1.06);
}
.software .container .textBx .btn:hover span{
    display: block;
}
.software .container .textBx .btn span{
    display: none;
}
/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 1530px) {
    .software .container{
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 0 100px 0;
    }
    .software .container .imgBx{
        width: 600px;
        height: 450px;
        text-align: center;
        margin-bottom: 80px;
    }
}
@media (max-width: 1050px) {
    .software .container .textBx td{
        width: 100%;
        height: 90px;
        border-radius: 10px;
    }
    .software .container .textBx{
        width: 100%;
        padding: 0;
    }
    .software .container .imgBx{
        width: 100%;
    }
    .software tr{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        margin: 30px 0;
        padding: 20px;
    }
    .software .container .textBx td.text{
        width: 100%;
    }
}
@media (max-width: 378px) {
    .software .imgBx{
        display: none;
    }
}