:root {
    --bg-primary:#457b9d;
    --bg-secondary: #7e7e7e;
    --text-primary: #f4f4f4;
    --text-secondary: #333;
    --dark-color: #375BA9;
    --light-color: #FED086;

}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/*BUILDING*/
.technology {
    margin-top: 50px;
    padding: 2rem 1.5rem;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.text {
    text-align: justify;
    order: 1;
    animation: slideInFromLeft 1s ease-in;
}

.technology img {
    height: 350px;
    width: auto;
    justify-self: center;
    order: 2;
    animation: slideInFromRight 1s ease-in;
}

.technology h1 {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-align: left;
}
.technology h3 {
    font-size: 2rem;
    color: var(--dark-color);
}

p {
    font-size: 1.2rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark-color);
    width: fit-content;
    border-bottom: 2px solid var(--dark-color);
    animation: slideInFromLeft 1s ease-in;
}

.vision {
    text-align: justify;
    margin-bottom: 50px;
}


@media(min-width:916px) {
    .mobile {
        display: none;
    }
}

@media(max-width:1500px){
    .navbar .flex {
        justify-content: center;
    }

    .language {
        right: 3%;
    }
}

/* Tablets and under*/
@media(max-width:915px){

    .grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0;
    }

    .text {
        order: 2;
    }

    .technology img {
        order: 1;
    }

    h1 {
        text-align: center;
    }

    ul {
        margin-bottom: 0;
    }

    .desktop {
        display: none;
    }

    .navbar .flex {
        justify-content: space-between;
    }

    .language {
        position: static;
        top: 0;
    }

    .language img {
        width: auto;
    }

}

