body {
    background-image: url("./images/technology/background-technology-desktop.jpg");
}

/* navbar */

.nav-links {
    background: #24242E;
    background: linear-gradient(90deg, rgb(40, 40, 59) 0%, rgba(36, 36, 46, 1) 100%);
}

.navbar hr {
    border-top: 1px solid rgb(75, 75, 88);
}

/* Main Section */


.technology-head {
    color: white;
    font-weight: 200;
    position: absolute;
    top: 8rem;
    left: 10rem;
    animation: loadingAnimation2 0.5s linear forwards;
    opacity: 0;
}

.technology-head span {
    color: rgb(131, 131, 131);
    font-weight: 800;
    padding-right: 0.4rem;
}

.technology {
    display: flex;
    margin-top: 10rem;
}

.technology-img {
    width: 30%;
    animation: loadingAnimation-img 0.5s linear forwards;
    opacity: 0;
}

.technology-img img {
    width: 100%;
}

.technology-content {
    display: flex;
    width: 70%;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    margin: 2rem 0;
}

.content-numbering ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4rem;
    animation: loadingAnimation2 0.5s linear forwards;
    opacity: 0;
}

.content-numbering li {
    list-style: none;
    text-align: center;
}

.content-numbering a {
    background-color: transparent;
    color: rgb(251, 251, 252);
    padding: 0.9rem 1.4rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid rgb(135, 135, 136);
    
}

.content-numbering ul li:nth-child(1) a{
    background-color: white;
    color: rgb(1, 1, 63);
    border: none;
}

.content-numbering a:active {
    background-color: white;
    color: rgb(1, 1, 63);
    border: none;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 45%;
    color: rgb(136, 136, 141);
}

.content h4 {
    font-weight: 100;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: loadingAnimation1 0.5s linear forwards;
    opacity: 0;
}

.content h3 {
    color: rgb(230, 230, 230);
    font-size: 2.5rem;
    animation: loadingAnimation2 0.5s linear forwards;
    /* animation-delay: 0.2s; */
    opacity: 0;
}

.content p {
    font-size: 0.9rem;
    animation: loadingAnimation1 0.5s linear forwards;
    opacity: 0;
}

@keyframes loadingAnimation1{
    0%{
        transform: translateX(70px);
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes loadingAnimation2{
    0%{
        transform: translateX(-70px);
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}



@keyframes loadingAnimation-img{
    0%{
       transform: translateX(-70px);
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}



/* Responsiveness */

@media screen and (max-width:1200px) {

    .technology-head {
        top: 9rem;
        left: 8rem;
    }

    .technology {
        margin-top: 12rem;
    }

    .content-numbering ul {
        gap: 4.5rem;
    }

    .content-numbering a {
        padding: 0.7rem 1.2rem;
    }

    .content {
        gap: 0.9rem;
        width: 50%;
    }
}


@media screen and (max-width:1024px) {

    .technology-head {
        left: 6.5rem;
    }

    .technology-img {
        width: 32%;
    }

    .technology-content {
        width: 68%;
    }

    .content-numbering ul {
        gap: 4rem;
    }

    .content-numbering a {
        padding: 0.55rem 1.05rem;
        font-size: 1.1rem;
    }

    .technology-img {
        width: 35%;
    }

    .technology-content {
        width: 65%;
        gap: 2rem;
        margin: 0 0 0.5rem 0;
    }

    .technology {
        margin-top: 13rem;
    }

    .content {
        gap: 0.8rem;
        width: 70%;
    }

    .content h3 {
        font-size: 2.2rem;
    }
}



@media screen and (max-width:768px) {

    body {
        background-image: url("./images/technology/background-technology-tablet.jpg");
    }

    .technology-head {
        position: static;
        text-align: center;
        margin-top: 6.5rem;
        font-size: 1.1rem;
    }

    .technology {
        margin-top: 4rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .technology-content {
        flex-direction: column;
        width: 80%;
        gap: 2.5rem;
    }

    .technology-img {
        width: 50%;
    }

    .content-numbering ul {
        flex-direction: row;
    }

    .content {
        width: 90%;
    }

    .content h3 {
        font-size: 2rem;
    }
}


@media screen and (max-width:480px) {

    .nav-links {
        width: 7%;
        background: url("./images/shared/icon-hamburger.svg");
        background-size: cover;
        background-position: center;
        opacity: 1;
        position: relative;
        height: 28px;
    }

    body {
        background-image: url("./images/technology/background-technology-mobile.jpg");
    }

     .content-numbering ul {
        gap: 3.5rem;
    }

    .content-numbering a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .content {
        width: 100%;
    }

    .content h3 {
        font-size: 1.7rem;
    }

    .content p {
    font-size: 0.8rem;
}
}