/* CSS AVANCEMENT.HTML */

li a:hover {
    color: #e20331;
    transition: all 0.25s ease;
}

ul li ul li a:hover {
    padding-left: 10px;
    border-left: 2px solid #e20331;
    transition: all 0.25s;
}

.darkmode--activated .nav__links a:hover {
    color: #e20331;
    transition: all 0.3s;
}

.darkmode--activated .nav__links a:focus {
    color: #e20331;
    transition: all 0.3s;
}

a.nav-a-softwares:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 6px;
    background-color: #e20331;
    -webkit-transform: skew(-30deg) translateX(-50%);
    -moz-transform: skew(-30deg) translateX(-50%);
    -o-transform: skew(-30deg) translateX(-50%);
    tranform: skew(-30deg) translateX(-50%);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    opacity: 1;
  }

/* ------------------------------------------------------------------------------------ */

.main-page {
    margin-bottom: 200px;
}

.main-title:after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 12px;
    background-color: #e20331;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    tranform: skew(-30deg);
    position: absolute;
    bottom: -2rem;
    left: 0;
    margin-bottom: 15px;
  }

h2.main-title {
    margin-bottom: 50px;
}

/* ------------------------------------------------------------------------------------ */

.container {
    display: flex;
    flex-wrap: wrap;
}

.darkmode--activated .softwares {
    background-color: rgb(64, 64, 64);
    box-shadow: 0 0 15px 5px #6c6c6c
}

.container h2, h3 {
    color: #777;
}

.softwares {
    padding: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition:all 0.3s;
}

.sketchup {
    transition: all 0.3s;
    cursor: pointer;
}

.sketchup:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

.calc {
    transition: all 0.3s;
    cursor: pointer;
}

.calc:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

.softwares img {
    width: 200px;
    padding-bottom: 50px;
}


.softwares h2 {
    font-weight: 600;
}

.softwares h3 {
    font-weight: 300;
}