.sec-about-me {
    background-color: var(--bg-gray-2);
    position: relative;
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.sec-about-me ::selection {
    background-color: var(--bg-fucsia-2);
    color: var(--bg-white);
}

.wall-sm {
    background-image: var(--bg-img-about-me);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sm_box {
    width: 100%;
    z-index: 1;
}

/* Images */
.hb_box {
    margin: 0 auto;
    margin-top: 2rem;
}

.hb_box__header {
    font-weight: 500;
    background-color: var(--bg-fucsia-3);
    width: auto;
    color: white;
    border-radius: 10rem;
    display: inline-flex;
    padding: 0.1rem 1rem;
}

.hb_box ul {
    margin: 1rem 0;
    padding: 0;
}

.hb_box ul .hb__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0;
    gap: 1rem;
}

.hb_box ul li {
    list-style-type: none;
    display: inline-block; 
}

.hb_box ul li .hb__icon {
    text-align: center;
    color: #444444;
}

.hb_box ul li .hb__icon i {
    display: inline-block;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    position: relative;
    color: #444444;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.hb_box ul li .hb__icon i:before {
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.hb_box ul li .hb__icon i:after {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    content: "";
    transform: scale(0.2);
    transition: all 0.2s ease-in-out;
}

.hb_box ul li .hb__icon i{
    font-size: 1rem;
}

.hb_box ul li i:hover {
    color: #ffffff;
}

.hb_box ul li .hb__icon i:hover:after {
    transform: scale(1);
    opacity: 1;
}

.hb_box ul li .hb__icon i:after {
    background-color: var(--bg-lightblue-1);
}

.hb_box ul li .hb__text {
    display: none;
}

/* Images */
.img_box {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.img-glasses {
    background-image: var(--bg-img-glasses);
    width: 250px;
    height: 150px;
    top: 25px;
    left: -25px;
}

.img-cup {
    background-image: var(--bg-img-cup);
    width: 250px;
    height: 200px;
    top: 200px;
    left: 60px;
}

.img-usb {
    background-image: var(--bg-img-usb);
    width: 170px;
    height: 180px;
    bottom: 10px;
    left: 0;
}

.img-headphones {
    background-image: var(--bg-img-headphones);
    width: 400px;
    height: 500px;
    top: -120px;
    right: -100px;
}

.img-mouse {
    background-image: var(--bg-img-mouse);
    width: 250px;
    height: 200px;
    bottom: 40px;
    right: 15px;
}

/*  */
.sm__images {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

.sm__images img {
    position: absolute;
}

.sm__images img:nth-child(1) {
    top: 2rem;
    left: 1rem;
}

.sm__images img:nth-child(2) {
    top: 14rem;
    left: 4rem;
}

.sm__images img:nth-child(3) {
    bottom: .5rem;
    left: .5rem;
}

.sm__images img:nth-child(4) {
    top: -5em;
    right: -7rem;
}

.sm__images img:nth-child(5) {
    bottom: 2rem;
    right: 3rem;
}

.sm__box__content {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.sm__content {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5rem;
}

/* ------------------------------------------
                [RESPONSIVE]
------------------------------------------- */

@media only screen and (max-width: 768px) {

    .sec-about-me {
        flex-direction: column;
    }

    .sm__box__content {
        width: 100%;
    }

    .sm__content {
        width: 100%;
        text-align: center;
    }

    .sm__images {
        display: none;
    }

    .wall-sm {
        background-image: var(--bg-img-about-me-movil);
        background-position: 98% 0;
    }
    .hb_box ul .hb__list{
        gap: .5rem;
    }
}