#technology {
    position: relative;
    background-color: var(--color-purple);
    overflow: hidden;
    padding: 300px 0 150px;
}
#technology > .container {
    position: relative;
    z-index: 1;
}
/*  technologies-list */
.technologies-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
}
.technologies-list li {
    flex: 0 1 auto;
    height: 100%;
    min-width: 120px;
    background-color: var(--color-purple-medium);
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin: 10px;
    padding: 10px 10px 15px 10px;
    position: relative;
    top: 0;
    transition: var(--transition-all);
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.technologies-list li:hover {
    top: -10px;
    box-shadow: 0 25px 20px rgba(0,0,0,0.2);
}
@media screen and (min-width:400px) {
    .technologies-list li {
        min-width: 140px;
    }
}
@media screen and (min-width:1400px) {
    .technologies-list li { flex: 1 1 auto; }
}
/*  technologies-list > technologies-icon */
.technologies-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-image: url('imgs/technology-logos.png');
    background-repeat: no-repeat;
    background-size: auto;
}
/* <!-- PHP, React, Magento, Wordpress, Javascript, Node.Js, Phaser 3 --> */
.technologies-icon.phaser {
    background-position: 0 0;
}
.technologies-icon.node {
    background-position: -80px 0;
}
.technologies-icon.wordpress {
    background-position: -160px 0;
}
.technologies-icon.magento {
    background-position: -240px 0;
}
.technologies-icon.react {
    background-position: -320px 0;
}
.technologies-icon.javascript {
    background-position: -400px 0;
}
.technologies-icon.php {
    background-position: -480px 0;
}
/*  technologies-cta */
.technologies-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0 0;
}
.technologies-cta a.cta-link,
.technologies-cta a.cta-link:visited {
    color: #fff;
}
.technologies-cta a.cta-link:hover,
.technologies-cta a.cta-link:active,
.technologies-cta a.cta-link:focus {
    color: var(--color-purple);
}
.technologies-cta > div {
    flex: 0 0 auto;
    width: 100%;
    position: relative;
}
.technologies-cta > div:nth-child(1) {
    display: none;
    background-color: var(--color-purple-medium);
}
.technologies-cta > div:nth-child(2) {
    z-index: 2;
    flex: 0 0 auto;
    background-color: var(--color-purple-light);
    color: #fff;
    padding: 30px;
}
.technologies-cta > div:nth-child(3) {
    z-index: 1;
    background-image: url('imgs/technologies-cta-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    min-height: 150px;
}
@media screen and (min-width:768px) {
    .technologies-cta > div {
        margin: 10px;
    }
    .technologies-cta > div:nth-child(2) {
        width: 350px;
    }
    .technologies-cta > div:nth-child(3) {
        width: calc(100% - 390px);
    }
}
@media screen and (min-width:992px) {
    .technologies-cta {
        padding-top: 100px;
    }
    .technologies-cta > div:nth-child(1) {
        display: block;
        width: 140px;
    }
    .technologies-cta > div:nth-child(3) {
        margin: 10px 10px 10px -150px;
        top: -50px;
    }
}
@media screen and (max-width:991px) {
    .technologies-list li span{
        display: inline-block;
        margin: 0;
    }
    .technologies-cta div:last-child{
        order: 1;
    }
    .technologies-cta div:nth-child(2){
        order: 2;
    }
    #tech .pin-spacer{
        height: auto !important;
        top: 0 !important;
        position: relative !important;
        transform: none !important;
        padding: 0 !important
    }
    #technology{
        padding: 100px 0
    }
    #tech .container{
        height: auto !important;
        top: 0 !important;
        position: relative !important;
        transform: none !important
    }
    .technologies-list li{
      width: 100%;
      flex-direction: row;
      align-items: center;
      justify-content: start;
      display: flex;
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important;
      height: auto !important;
    }
}
