:root {
    --bg: #ffffff;
    --first-color: #6457a4;
    --second-color: #fdb712;
    --third-color: #f0127a;
    --forth-color: #62c1ab;
    --font-color: #333333;
    --muted: #7e7e7e;
    --bl: #000000;
    --wh: #ffffff;
}

*,html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

a {
    color: unset;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--font-color);
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

img {
    display: flex;
    vertical-align: middle;
    max-width: 100%;
    user-select: none;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: var(--font-color);
    font-size: 1.5rem;
}

ul {
    list-style: none;
}

video {
    object-fit: cover;
}

.color-purple {
    color: var(--first-color);
}

.bg-purple {
    background-color: var(--first-color);
}

.color-pink {
    color: var(--third-color);
}

.bg-pink {
    background-color: var(--third-color);
}

.color-lblue {
    color: var(--forth-color);
}

.bg-lblue {
    background-color: var(--forth-color);
}

.color-yellow {
    color: var(--second-color);
}

.bg-yellow {
    background-color: var(--second-color);
}

.color-white {
    color: var(--wh);
}

.container {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
}

.f-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.f-opensans {
    font-family: 'Open Sans', sans-serif !important;
}

.f-small {
    font-size: 80%;
}

.f-medium {
    font-weight: 500;
}

.f-bold {
    font-weight: 700;
}

.line-height-none {
    line-height: 1;
}

.text-center {
    text-align: center;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
}

.d-inline-f {
    display: inline-flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}
.justify-content-around {
    justify-content: space-around;
}

.justify-content-center {
    justify-content: center;
}

.vertical-small-separator {
    width: 1px;
    height: 40px;
    margin: auto 5px;
}

body:not(.maintence-mode) ::selection {
    color: var(--first-color);
    background-color: transparent;
}

body:not(.maintence-mode) > #header > #toolbar {
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100px;
    width: 100%;
    padding: 0 20px;
    background-color: var(--bg);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

body:not(.maintence-mode) > #header > #toolbar.fixed {
    box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
}

body:not(.maintence-mode) > #header > #toolbar #navbar .nav-tab:hover {
    color: var(--first-color);
}

body:not(.maintence-mode) > #header > #toolbar #navbar .nav-tab:hover::after {
    width: 30px;
}

body:not(.maintence-mode) > #header > #toolbar #lang-selector > button {
    margin-right: 5px;
}

body:not(.maintence-mode) > #header > #toolbar #lang-selector > button:hover,
body:not(.maintence-mode) > #header > #toolbar #lang-selector > button:focus,
body:not(.maintence-mode) > #header > #toolbar #lang-selector > button.active {
    color: var(--first-color);
}

body:not(.maintence-mode) > #header > #toolbar #navbar .nav-tab {
    position: relative;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-right: 10px;
    transition: color .3s ease;
}

body:not(.maintence-mode) > #header > #toolbar #navbar .nav-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--first-color);
    transition: width .3s ease-out;
}

body:not(.maintence-mode) > #header > #page-presentation {
    position: relative;
}

body:not(.maintence-mode) > #header > #page-presentation,
body:not(.maintence-mode) > #header > #page-presentation video {
    width: 100%;
    height: 800px;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text {
    position: absolute;
    /* margin-top: 100px; */
    top: calc(50%);
    left: 88.500px;
    transform: translateY(-50%);
    color: var(--bg);
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span {
    animation: bounce 1.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(1) {
    animation-delay: .2s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(2) {
    animation-delay: .4s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(3) {
    animation-delay: .6s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(4) {
    animation-delay: .8s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(5) {
    animation-delay: 1s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(6) {
    animation-delay: 1.2s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(7) {
    animation-delay: 1.4s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(8) {
    animation-delay: 1.6s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > p > span:nth-child(9) {
    animation-delay: 1.8s;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > h1 {
    font-size: 4.8rem;
    gap: 10px;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > h1 > span {
    animation: cup_bounce 1s ease 0s infinite;
    cursor: default;
    user-select: none;
}

body:not(.maintence-mode) > #header > #page-presentation > .video-container > #presentation-text > h2 {
    font-size: 3rem;
}

body:not(.maintence-mode) > #main .title {
    font-size: 4.8rem;
    text-align: center;
    color: var(--font-color);
    margin-bottom: 30px;
}

section#services,
section#team {
    padding: 30px 20px;
}

section#services > .services-grid {
    max-width: 1500px;
    min-height: 500px;
    margin: 50px auto;
    grid-template-columns: repeat(2, auto);
    grid-gap: 20px;
}

section#services > .services-grid > .services-buttons {
    display: block;
    padding-right: 100px;
}

section#services > .services-grid > .services-buttons > button {
    margin: 70px 0;
    gap: 30px;
}

section#services > .services-grid > .services-buttons > button:first-child {
    margin-top: 0;
}

section#services > .services-grid > .services-buttons > button:last-child {
    margin-bottom: 0;
}

section#services > .services-grid > .services-buttons > button > .box {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    transition: transform 1.3s ease 0s;
    user-select: none;
}

section#services > .services-grid > .services-buttons > button > .box.development {
    background-color: var(--first-color);
    animation: pulse1 2s infinite;
    animation-delay: .5s;
}

section#services > .services-grid > .services-buttons > button > .box.design {
    background-color: var(--forth-color);
    animation: pulse2 2s infinite;
    animation-delay: .9s;
}

section#services > .services-grid > .services-buttons > button > .box.translate {
    background-color: var(--third-color);
    animation: pulse3 2s infinite;
    animation-delay: 1.3s;
}

section#services > .services-grid > .services-buttons > button > .box.service-lms {
    background-color: var(--second-color);
    animation: pulse4 2s infinite;
    animation-delay: 1.7s;
}

section#services > .services-grid > .services-buttons > button > p.service-title {
    font-size: 2.5rem;
    transition: all .3s ease-out 0s;
    width: max-content;
    font-weight: bold;
}

section#services > .services-grid > .services-buttons > button:hover > .box,
section#services > .services-grid > .services-buttons > button.active > .box {
    transform: rotate(135deg) scale(0.8);
}

section#services > .services-grid > .services-buttons > button:hover > p.service-title,
section#services > .services-grid > .services-buttons > button.active > p.service-title {
    /* padding-left: 10px; */
    /* text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.9); */
    transform: translateX(10px);
}

section#services > .services-grid > .service-descriptions {
    width: 100%;
    height: 100%;
    /* display: none; */
    animation: fadeEffect 0.5s;
}

section#services > .services-grid > .service-descriptions .description {
    display: none;
    animation: fadeEffect 1.5s;
}

section#services > .services-grid > .service-descriptions .description.active {
    display: block;
}

section#services > .services-grid > .service-descriptions > .description > .description-header {
    grid-template-columns: auto 400px;
    grid-gap: 25*px;
    margin-bottom: 30px;
}

section#services > .services-grid > .service-descriptions > .description > .description-header > h3 {
    font-size: 3rem;
    color: var(--font-color);
}

section#services > .services-grid > .service-descriptions > .description > .description-header > img {
    aspect-ratio: 400 / 253;
}

section#services > .services-grid > .service-descriptions > .description > .description-text {
    width: 90%;
    font-size: 2.3rem;
    color: var(--font-color);
}

section#services > .services-grid > .services-buttons > button:hover > span.development + p.service-title,
section#services > .services-grid > .services-buttons > button.active > span.development + p.service-title {
    color: var(--first-color);
}

section#services > .services-grid > .services-buttons > button:hover > span.design + p.service-title,
section#services > .services-grid > .services-buttons > button.active > span.design + p.service-title {
    color: var(--forth-color);
}

section#services > .services-grid > .services-buttons > button:hover > span.translate  + p.service-title,
section#services > .services-grid > .services-buttons > button.active > span.translate  + p.service-title {
    color: var(--third-color);
}

section#services > .services-grid > .services-buttons > button:hover > span.service-lms + p.service-title,
section#services > .services-grid > .services-buttons > button.active > span.service-lms + p.service-title {
    color: var(--second-color);
}

section#slogan {
    height: 100%;
    max-height: 260px;
    background-color: var(--font-color);
    grid-template-columns: 300px auto;
}

section#slogan > .slogan-img {
    margin-top: -20px;
    user-select: none;
}

section#slogan > .slogan-text > p {
    margin: 0;
    font-size: 3rem;
}

section#slogan > .slogan-text > p > span {
    animation: rocket_translate 2s infinite;
    animation-delay: .8s;
}

section#team > .title {
    margin-bottom: 0 !important;
}

section#team > .team-description {
    font-size: 2rem;
    margin-bottom: 30px;
}

section#team > .team-container {
    width: fit-content;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

section#team > .team-container > article.employee {
    padding: 0 10px;
}

section#team > .team-container > article.employee > .employee-image {
    margin-bottom: 20px;
    border-radius: 50%;
    border: 5px solid var(--first-color);
    overflow: hidden;
    transition: filter .3s ease, transform .5s ease;
}

section#team > .team-container > article.employee > .employee-image > img {
    filter: grayscale(1);
    transition: filter .3s ease;
}

section#team > .team-container > article.employee > .employee-image:hover {
    transform: scale(1.1);
}

section#team > .team-container > article.employee:nth-child(3n+1) > .employee-image:hover {
    border-color: var(--third-color);
}

section#team > .team-container > article.employee:nth-child(3n+2) > .employee-image:hover {
    border-color: var(--second-color);
}

section#team > .team-container > article.employee:nth-child(3n+3) > .employee-image:hover {
    border-color: var(--forth-color);
}

section#team > .team-container > article.employee > .employee-image:hover img {
    filter: grayscale(0);
}

section#team > .team-container > article.employee > .employee-description > p {
    font-size: 1.8rem;
}

section#team > .team-container > article.employee > .employee-description > span {
    font-size: 1.5rem;
}

.carrousel-team {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carrousel-team > .carrousel-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrousel-team > .carrousel-item > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.carrousel-team > .carrousel-item > .carrousel-text {
    position: relative;
    z-index: 2
}

.carrousel-team > .carrousel-item > .carrousel-text > h3 {
    margin-bottom: 30px;
    font-size: 4rem;
}

.carrousel-team > .carrousel-item > .carrousel-text > p {
    /* width: 60%; */
    font-size: 3rem;
    margin: 0 auto;
}

@keyframes cup_bounce {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(20deg);
    }
}

@keyframes rocket_translate {
    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(5px, -10px) rotate(-30deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeEffect {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 rgba(100, 87, 164, 0.6);
    }
    100% {
        box-shadow: 0 0 0 2em rgba(248, 186, 61, 0);
    }
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 194, 172, 0.6);
    }
    100% {
        box-shadow: 0 0 0 2em rgba(248, 186, 61, 0);
    }
}

@keyframes pulse3 {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 18, 122, 0.6);
    }
    100% {
        box-shadow: 0 0 0 2em rgba(248, 186, 61, 0);
    }
}

@keyframes pulse4 {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 183, 18, 0.6);
    }
    100% {
        box-shadow: 0 0 0 2em rgba(248, 186, 61, 0);
    }
}/* RESPONSIVE */