section.container {
    justify-content: center;
    align-items: center;
}

.technologies-card {
    width: 1100px;
    height: 85vh;
    background: var(--main-white);
    border-radius: 40px;
    max-height: 700px;
    
}

.technology-column {
    margin: 50px 40px 50px 50px;
    box-sizing: border-box;
    line-height: 160%;
}

.scrollable {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.scrollable::-webkit-scrollbar {
    display: none;
}

.technologies-separator {
    color: var(--list-grey-opacity-5);
    opacity: .5;
    margin: 50px 0;
}

.technologies-card .technology-column .title {
    font-family: Grifter;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: justify;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--main-blue);
    margin-bottom: 10px;
}

.technologies-card .technology-column .subtitle {
    font-family: Avenir;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: #333333;

}

/*LEFT FIXED BAR*/
.technologies-card .technology-category-list {
    margin-top: 45px;
    border-left: 1px solid var(--list-grey);
}

.technologies-card .technology-category-list .technology-category-item {
    font-family: Grifter;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--list-grey);
    text-decoration: none;
    padding: 10px 0 10px 20px;
}

/*RIGHT SCROLLABLE LIST*/
.technology-column .technology-item {
    width: 100%;
    height: 100%;
    justify-content: space-around;
}



.technology-column .technology-item p.tick {
    align-items: center;
}
.technology-column .technology-item p.tick span {
    font-family: Avenir;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 160%;
    display: flex;
    align-items: center;
    color: var(--black-1);
}
.technology-column .technology-item p.tick img {
    max-width: 16px;
    max-height: 16px;
}

.technology-column .technology-item span {
    padding-left: 10px;
}

.technologies-card .technology-column .icons-group {
    display: flex;
    width: 100%;
    column-gap: 20px;
    overflow: visible;
}

.technologies-card .technology-column .icons-group .icon {
    width: 90px;
    height: 110px;
    border-radius: 10px;
    box-sizing: border-box;
    justify-content: space-around;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.technologies-card .technology-column .icons-group .icon > picture {
    max-height: 60px;
    max-width: 70px;
    align-self: center;
    display: flex;
}

.technologies-card .technology-column .icons-group .icon > picture:hover {
    transform: scale(1.03);
    transition: transform .4s ease-in-out;
}

.technologies-card .technology-column .icons-group .icon > picture img {
    object-fit: contain;
}

.technologies-card .technology-column .icons-group .icon p {
    font-family: Grifter;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
}

/*MOBILE VIEW*/
#categories::-webkit-scrollbar {
    display: none;
}
#categories {
    -ms-overflow-style: none;  
    scrollbar-width: none;
    overflow-y: scroll;
}
.select-list {
    display: none;
}


@media only screen and (max-width: 1200px) {
    .technology-article {
        background-color: #ffffff;
    }
    .technologies-card {
        flex-direction: column;
        max-height: none;
        border-radius: 0;
        height: 100vh;
        box-shadow: none;
    }
    .technologies-card .technology-column {
        margin: 25px;
    }

    .technology-column .technology-item {
        width: 100%;
        height: 100%;
        justify-content: flex-start;
        row-gap: 2rem;
        margin-bottom: 50px;
    }

    .technologies-card .technology-column:first-child {
        overflow: initial !important;
    }

    .technologies-card .technology-list {
        overflow: scroll !important;
    }

    .technologies-card .technology-column.technology-list .icons-group {
        display: none;
    }
    .technologies-card .technology-column .title {
        font-size: 1.3em;
    }
    .technologies-card .technology-column .subtitle, .list {
        font-size: 1em;
        margin-bottom: 2em;
    }

    .technologies-card .technology-column .active-category {
        padding: 0;
    }
    .technologies-card .technology-column .technology-category-list {
        display: none !important;
    }
    
    .technologies-card .technologies-separator {
        margin: 0 3%;
    }
    .select-list {
        display: block;
        width: 96%;
        align-self: center;
        padding: 11px 5px;
        border-radius: 5px;
        color: var(--main-blue);
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-family: 'Grifter';
        border: 1.5px solid var(--grey);
        background-color: var(--main-white);
        margin: 1% 2%;
        -webkit-appearance: initial;
        height: 35px;
    }
    .technology-column .technology-item p.tick span {
        font-size: 0.95rem;
        width: 100%;
    }
    
}

@media only screen and (max-width: 480px) {
    .technologies-card {
        width: 100%;
    }
    .technologies-card .technology-column .scroll .techlist-icons {
        margin-top: 25%;
        justify-content: center;
    }
    .technologies-card .technology-column .scroll:nth-child(3) .techlist-icons {
        margin-top: 10px;
        justify-content: center;
    }
    .technologies-card .technology-column .subtitle, .list {
        font-size: 0.85em;
        margin-bottom: 1.5em;
    }
    .technology-column .technology-item p.tick span {
        font-size: 0.85rem;
    }
}

@media only screen and (max-height: 600px) {
    .technology-article{
        height: 600px!important;
    } 
    .technologies-card {
        height: 550px!important;
    }  
    .technologies-card .technology-column .technology-item {
        row-gap: 1rem;
    }
    .technologies-card .technology-column .subtitle {
        margin-bottom: 0;
    }
}
@media only screen and (max-height: 700px) and (max-width: 470px) {
    .technologies-card .technology-column .subtitle {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }  
}
