:root {
    --nav-bar-height: 100px;
    --max-width: 1100px;
    --yellow-yuzu: #FCCA65;
    --green-yuzu: #44ADA5;
    --font-color-footer: #999ef3;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUpSlight {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(-20px); } 
    100% { opacity: 1; transform: translateX(0); }
}


@keyframes fadeInRightSlight {
    0% { opacity: 0; transform: translateX(-8px); } 
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(20px); } 
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    0% { opacity: 0; transform: scale(0.8); }
    78% { opacity: 0.9; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

html {
    background-color: #2b104b;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    color-scheme: dark !important;
    overflow-x: hidden;
    box-sizing: border-box;
}

main {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    overflow: hidden;
}

.text-page-content {
    box-sizing: border-box;
    max-width: 800px;
    margin: 50px auto 50px auto;
    padding: 25px;
    padding-top: 10px;
    padding-bottom: 60px;
    font-size: 16px;
    line-height: 1.6;
    background-color: #1b142994;
    border-radius: 16px;
    box-sizing: border-box;
    overflow: hidden;   
}

.text-page-content h2 {
    margin-top: 45px;
    margin-bottom: 10px;
}

.text-page-content p {
    margin-top: 5px;
    margin-bottom: 25px;
}

section {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #2E1251 10%, #3430AC 100%);
    z-index: -10;
}

#projects .background {
    background: linear-gradient(180deg, #2E1251 100px, #322dad 1800px);
}

.background-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    width: 300px;
    height: 300px;
    z-index: -1;
}

#background-decorative-circle-top-right {
    top: -150px;
    right: -150px;
    opacity: 0.5;
    background-color: #385B9A;
    box-shadow: 0 0 160px 160px #385B9A;
}

#background-decorative-circle-bottom-left {
    bottom: -80px;
    left: -150px;
    opacity: 0.8;
    background-color: #573FA1;
    box-shadow: 0 0 150px 150px #573FA1;
}

#background-decorative-bubble {
    top: 100px;
    left: calc(60%);
    width: 500px;
    height: 500px;
    opacity: 0.02;
    background-color: transparent;
    border: 10px solid #548AF0;
    animation: bubbleAppear 1.5s ease-out forwards;
}

@keyframes bubbleAppear {
    0% { opacity: 0; }
    100% { opacity: 0.02; }
}

.centered-container {
    margin: auto;
    max-width: var(--max-width);
    width: calc(100% - 30px);
}

/* * MARK: Navbar
---------------------------------------------------------------------------- */

.nav-bar-space {
    height: var(--nav-bar-height);
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: var(--nav-bar-height);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    transition: 0.1s ease;
    overflow: visible;
}

nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: var(--max-width);
    height: 100%;
    padding: 0 25px;
}

nav .nav-left-anchor {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 5;
}

nav .nav-logo {
    height: 44px;
    width: 142px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

nav .nav-right-anchor {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 4px;
}


nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-right: 28px;
}

nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
    z-index: 5;
}

nav ul li a {
    color: white;
    opacity: 0.7;
    font-size: 15px;
    font-weight: 300;
    text-wrap: nowrap;
    letter-spacing: 0.2px;
    position: relative;
}

nav ul li a.active {
    font-size: 16px;
    font-weight: 700;
    opacity: 1;
}

nav a:hover {
    opacity: 1;
}

.button {
    display: flex;
    align-items: center;
    padding: 6px 22px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px;
    height: 25px;
    cursor: pointer;
    transition: .05s;
    opacity: 1;
}

nav .button {
    padding: 2.5px 12px;
    height: 22px;
}

.button.yellow {
    background-color: var(--yellow-yuzu);
    border: none;
}

.button:hover {
    scale: 1.04;
    transition: .1s;
}

.button .i-chevron-right-b {
    opacity: 0.8;
}

.button span {
    color: white;
    font-weight: 450;
    letter-spacing: 0.2px;
    font-size: 16px;
}

.button.yellow span {
    color: black;
    opacity: 0.8;
}

nav .button span {
    font-size: 15px;
}

nav ul .socials-container {
    display: flex;
}

nav ul li.socials {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    opacity: 1;
}

nav ul li:last-child {
    margin-right: 0px;
}

nav ul li.socials a {
    opacity: 1;
}

nav .socials .icon {
    display: block;
    height: 20px;
    width: 20px;
    transition: .1s;
}

nav .socials .icon:hover {
    transform: scale(1.1);
    transition: .01s;
}

/* Language Selector */

nav .language-select {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;;
}

nav .language-select .container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

nav .language-select .container:hover {
    scale: 1.05;
}

nav .language-select .icon#nav-flag-icon {
    background-size: cover;
    background-position: center;
}
html:lang(en) nav .language-select .icon#nav-flag-icon {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMzAwIiBoZWlnaHQ9IjMwMCI+DQoJPHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbGw9IiMwMDI0N2QiLz4NCgk8cGF0aCBkPSJNIDAsMCBMIDMwMCwzMDAgTSAzMDAsMCBMIDAsMzAwIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iNjAiLz4NCgk8cGF0aCBkPSJNIDAsMCBMIDMwMCwzMDAgTSAzMDAsMCBMIDAsMzAwIiBzdHJva2U9IiNjZjE0MmIiIHN0cm9rZS13aWR0aD0iNDAiLz4NCgk8cGF0aCBkPSJNIDE1MCwxNTAgdiAtMzAgTCAzMCwwIEggMCB6IGggMzAgTCAzMDAsMzAgViAwIHogdiAzMCBMIDI3MCwzMDAgSCAzMDAgeiBoIC0zMCBMIDAsMjcwIFYgMzAwIHoiIGZpbGw9IiNmZmYiLz4NCgk8cGF0aCBkPSJNIDE1MCwwIFYgMzAwIE0gMCwxNTAgSCAzMDAiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxMDAiLz4NCgk8cGF0aCBkPSJNIDE1MCwwIFYgMzAwIE0gMCwxNTAgSCAzMDAiIHN0cm9rZT0iI2NmMTQyYiIgc3Ryb2tlLXdpZHRoPSI2MCIvPg0KPC9zdmc+);
}
html:lang(fr) nav .language-select .icon#nav-flag-icon {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnDQogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iDQogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIg0KICAgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIg0KICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHhtbG5zOnNvZGlwb2RpPSJodHRwOi8vc29kaXBvZGkuc291cmNlZm9yZ2UubmV0L0RURC9zb2RpcG9kaS0wLmR0ZCINCiAgIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIg0KICAgdmVyc2lvbj0iMS4xIg0KICAgaWQ9InN2ZzIiDQogICB2aWV3Qm94PSIwIDAgMzk5Ljk5OTk4IDM5OS45OTk5OCINCiAgIGhlaWdodD0iNDAwIg0KICAgd2lkdGg9IjQwMCINCiAgIGlua3NjYXBlOnZlcnNpb249IjAuOTEgcjEzNzI1Ig0KICAgc29kaXBvZGk6ZG9jbmFtZT0iRnJhbmNlIEljb24uc3ZnIj4NCiAgPHNvZGlwb2RpOm5hbWVkdmlldw0KICAgICBwYWdlY29sb3I9IiNmZmZmZmYiDQogICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2Ig0KICAgICBib3JkZXJvcGFjaXR5PSIxIg0KICAgICBvYmplY3R0b2xlcmFuY2U9IjEwIg0KICAgICBncmlkdG9sZXJhbmNlPSIxMCINCiAgICAgZ3VpZGV0b2xlcmFuY2U9IjEwIg0KICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCINCiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiINCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSIxNjAwIg0KICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSI4MzciDQogICAgIGlkPSJuYW1lZHZpZXc0MTQyIg0KICAgICBzaG93Z3JpZD0iZmFsc2UiDQogICAgIGlua3NjYXBlOnpvb209IjEuNTYyNSINCiAgICAgaW5rc2NhcGU6Y3g9IjIwMCINCiAgICAgaW5rc2NhcGU6Y3k9IjIwMCINCiAgICAgaW5rc2NhcGU6d2luZG93LXg9Ii04Ig0KICAgICBpbmtzY2FwZTp3aW5kb3cteT0iLTgiDQogICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiDQogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9InN2ZzIiIC8+DQogIDxkZWZzDQogICAgIGlkPSJkZWZzNCIgLz4NCiAgPG1ldGFkYXRhDQogICAgIGlkPSJtZXRhZGF0YTciPg0KICAgIDxyZGY6UkRGPg0KICAgICAgPGNjOldvcmsNCiAgICAgICAgIHJkZjphYm91dD0iIj4NCiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+DQogICAgICAgIDxkYzp0eXBlDQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+DQogICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPg0KICAgICAgPC9jYzpXb3JrPg0KICAgIDwvcmRmOlJERj4NCiAgPC9tZXRhZGF0YT4NCiAgPGcNCiAgICAgaWQ9Imc0MTQ0Ig0KICAgICB0cmFuc2Zvcm09Im1hdHJpeCgwLDEsLTEsMCwzOTkuOTk5OTcsMS41OTQxNDY0ZS01KSI+DQogICAgPHJlY3QNCiAgICAgICB5PSIyLjI2MTcxODdlLTAwNSINCiAgICAgICB4PSI2LjY3NTcyMjllLTAwNiINCiAgICAgICBoZWlnaHQ9IjM5OS45OTk5NCINCiAgICAgICB3aWR0aD0iMzk5Ljk5OTk0Ig0KICAgICAgIGlkPSJyZWN0NDEzNiINCiAgICAgICBzdHlsZT0iY29sb3I6IzAwMDAwMDtjbGlwLXJ1bGU6bm9uemVybztkaXNwbGF5OmlubGluZTtvdmVyZmxvdzp2aXNpYmxlO3Zpc2liaWxpdHk6dmlzaWJsZTtvcGFjaXR5OjE7aXNvbGF0aW9uOmF1dG87bWl4LWJsZW5kLW1vZGU6bm9ybWFsO2NvbG9yLWludGVycG9sYXRpb246c1JHQjtjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM6bGluZWFyUkdCO3NvbGlkLWNvbG9yOiMwMDAwMDA7c29saWQtb3BhY2l0eToxO2ZpbGw6I2NjMDAyMjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2UtZGFzaG9mZnNldDowO3N0cm9rZS1vcGFjaXR5OjE7Y29sb3ItcmVuZGVyaW5nOmF1dG87aW1hZ2UtcmVuZGVyaW5nOmF1dG87c2hhcGUtcmVuZGVyaW5nOmF1dG87dGV4dC1yZW5kZXJpbmc6YXV0bztlbmFibGUtYmFja2dyb3VuZDphY2N1bXVsYXRlIiAvPg0KICAgIDxyZWN0DQogICAgICAgeT0iMTk5Ljk5OTk3Ig0KICAgICAgIHg9IjMuNzE5MzMwMmUtMDA1Ig0KICAgICAgIGhlaWdodD0iMTk5Ljk5OTk3Ig0KICAgICAgIHdpZHRoPSIzOTkuOTk5ODgiDQogICAgICAgaWQ9InJlY3Q1MzU3LTgiDQogICAgICAgc3R5bGU9ImNvbG9yOiMwMDAwMDA7Y2xpcC1ydWxlOm5vbnplcm87ZGlzcGxheTppbmxpbmU7b3ZlcmZsb3c6dmlzaWJsZTt2aXNpYmlsaXR5OnZpc2libGU7b3BhY2l0eToxO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbDtjb2xvci1pbnRlcnBvbGF0aW9uOnNSR0I7Y29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzOmxpbmVhclJHQjtzb2xpZC1jb2xvcjojMDAwMDAwO3NvbGlkLW9wYWNpdHk6MTtmaWxsOiMwYjM4NzI7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6YnV0dDtzdHJva2UtbGluZWpvaW46bWl0ZXI7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2UtZGFzaGFycmF5Om5vbmU7c3Ryb2tlLWRhc2hvZmZzZXQ6MDtzdHJva2Utb3BhY2l0eToxO2NvbG9yLXJlbmRlcmluZzphdXRvO2ltYWdlLXJlbmRlcmluZzphdXRvO3NoYXBlLXJlbmRlcmluZzphdXRvO3RleHQtcmVuZGVyaW5nOmF1dG87ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZSIgLz4NCiAgICA8cmVjdA0KICAgICAgIHk9IjEzMy4zMzMzMyINCiAgICAgICB4PSI2LjY3NTcyMjllLTAwNiINCiAgICAgICBoZWlnaHQ9IjEzMy4zMzMzMSINCiAgICAgICB3aWR0aD0iMzk5Ljk5OTk0Ig0KICAgICAgIGlkPSJyZWN0NTM1NyINCiAgICAgICBzdHlsZT0iY29sb3I6IzAwMDAwMDtjbGlwLXJ1bGU6bm9uemVybztkaXNwbGF5OmlubGluZTtvdmVyZmxvdzp2aXNpYmxlO3Zpc2liaWxpdHk6dmlzaWJsZTtvcGFjaXR5OjE7aXNvbGF0aW9uOmF1dG87bWl4LWJsZW5kLW1vZGU6bm9ybWFsO2NvbG9yLWludGVycG9sYXRpb246c1JHQjtjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM6bGluZWFyUkdCO3NvbGlkLWNvbG9yOiMwMDAwMDA7c29saWQtb3BhY2l0eToxO2ZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2UtZGFzaG9mZnNldDowO3N0cm9rZS1vcGFjaXR5OjE7Y29sb3ItcmVuZGVyaW5nOmF1dG87aW1hZ2UtcmVuZGVyaW5nOmF1dG87c2hhcGUtcmVuZGVyaW5nOmF1dG87dGV4dC1yZW5kZXJpbmc6YXV0bztlbmFibGUtYmFja2dyb3VuZDphY2N1bXVsYXRlIiAvPg0KICA8L2c+DQo8L3N2Zz4NCg==);
}

nav .language-select .icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid white;
}

nav .language-select .i-chevron-down-w {
    margin-left: 6px;
}

nav .language-select .language-dropdown {
    display: flex;
    width: 32px;
    flex-direction: column;
    align-items: center;
    position: absolute;
    margin-top: 80px;
    gap: 5px;
    transition: .1s;
    opacity: 0;
    pointer-events: none;
}

html:lang(fr) nav .language-select .language-dropdown {
    flex-direction: column-reverse;
}

nav .language-select .language-dropdown.active {
    display: flex;
    transform: translateY(15px);
    opacity: 1;
    pointer-events: auto;
}

nav .language-select .icon.option {
    height: 26px;
    width: 26px;
    cursor: pointer;
}

nav .language-select .icon.option:hover {
    scale: 1.05;
}

/* Burger Menu */

nav .burger-menu {
    display: none;
    position: relative;

    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 25px;
    height: 21px;
    cursor: pointer;
    user-select: none;
    z-index: 5;
}

nav .burger-menu span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    top: 9px;
    transform-origin: center center;
    transition: .15s ease-in-out;
}

nav .burger-menu .n2 { transform: translateY(-9px); }
nav .burger-menu .n3 { transform: translateY(9px); }

/* Burger menu animation when opened */
nav.opened .burger-menu .n2 {
    transform: rotate(45deg);
}

nav.opened .burger-menu .n1 {
    width: 0;
}

nav.opened .burger-menu .n3 {
    transform: rotate(-45deg);
}

/* * MARK: Footer
---------------------------------------------------------------------------- */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #270D3D;
    font-size: 13px;
    padding: 15px 2.5%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

footer:before {
    content: '';
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    background: inherit;
}

footer a {
    color: white;
    text-decoration: none;
    display: block;
    font-style: italic;
    margin-block: 0px 10px;
}

#footer-center-first-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#footer-center-first-row a {    
    margin-block: 0px 2px;
    font-style: normal;
}

#footer-center-first-row a:not(:last-child) {
    margin-right: 3px;
}

#footer-center-first-row a:not(:last-child):after {
    content: '|';
    margin-left: 3px;
    color: var(--font-color-footer);
}

footer h4 {
    font-size: 14px;
    font-weight: 700;
    margin-block: 10px 0px;
    color: var(--font-color-footer);
}

#footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: var(--max-width);
    min-height: 100px;
    box-sizing: border-box;
    width: 100%;
}

#footer-columns section {
    background-color: transparent;
    padding: 0;
    flex: 1 1 33%;
}

#footer-columns section:nth-child(1) {
    align-items: flex-start;
}

#footer-columns section:nth-child(2) {
    flex: 1 1 50%;
    align-items: center;
    justify-content: flex-end;
    transform: translateY(40px);
}

#footer-columns section:nth-child(3) {
    align-items: flex-end;
}

#footer-columns .socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 2px;
    align-items: center;
}

#footer-columns .socials .icon {
    display: block;
    height: 19px;
    transition: .1s;
}

#footer-columns .socials .icon#footer-facebook-icon {
    height: 21px;
}

#footer-columns .socials .icon:hover {
    opacity: 0.8;
}

.footer-center span {
    display: block;
    text-align: center;
    align-items: center;
}

.footer-center #footer-center-first-row {
    display: flex;
    color: var(--font-color-footer);
    gap: 4px;
}

.footer-center #footer-center-second-row a {
    display: inline;
    color: var(--font-color-footer);
}

#footer-bottom {
    display: flex;
    justify-content: flex-end;
    text-align: end;
    margin-top: 20px;
    max-width: var(--max-width);
    width: 100%;
    color: var(--font-color-footer);    
}

#footer-bottom a {
    display: inline;
    text-decoration: underline;
    color: var(--font-color-footer);
}

/* * MARK: Home Top 
---------------------------------------------------------------------------- */

#catch-phrase-container {
    height: fit-content;
    margin: 50px 12px 80px 12px;
    display: flex;
    justify-content: center;
    position: relative;
}

#catch-phrase {
    max-width: 540px;
    text-align: center;
    font-family: "Nunito";
    font-weight: 650;
}

.quotation-mark {
    position: absolute;
    display: flex;
    height: fit-content;
}

#quotation-mark-left {
    left: -50px;
}

#quotation-mark-right {
    right: -50px;
    bottom: -5px;
}

.quotation-mark .quotation-mark-big {
    transform: rotate(24deg);
    width: 20px;
    height: 20px;
}

.quotation-mark .quotation-mark-small {
    transform: translateX(-5px) rotate(-24deg);
    width: 20px;
    height: 20px;
}

#quotation-mark-left .quotation-mark-small {
    opacity: 0.6;
    width: 15px;
    height: 15px;
}

#quotation-mark-right .quotation-mark-big {
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

#presentation-boxes {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 40px;
    width: min(100%, 880px);
    margin-bottom: 100px;
    padding-inline: 30px;
    box-sizing: border-box;
    height: fit-content;
}

.presentation-box {
    position: relative;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 20px 50px 25px;
    box-sizing: border-box;
    align-content: start;    
    text-align: left;
}

.presentation-box h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
}

.presentation-box p {
    flex: 1 1 100%;
    margin-block: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.2px;
    padding-right: 120px;
}

.presentation-box#games-presentation-box {
    background: linear-gradient(180deg, #13967C 0%, #37B598 100%);
    box-shadow: 0px 6px 0px 0px #1D6954;
}

.presentation-box#europe-presentation-box {
    background: linear-gradient(180deg, #6648C0 0%, #7F57FA 100%);
    box-shadow: 0px 6px 0px 0px #5736B2;
}

.presentation-box .presentation-box-icon {
    position: absolute;
    right: -40px;
    bottom: -28px;
    width: 175px;
    height: 145px;
    width: auto;
}

.presentation-box:nth-child(odd) .presentation-box-icon {
    animation: float 5s ease-in-out infinite;
}

.presentation-box:nth-child(even) .presentation-box-icon {
    animation: float2 5s ease-in-out infinite;
}

/* floating animation for the icons */

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes float2 {
    0% { transform: translateY(-5px); }
    50% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}


#home-section-top #buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 100px;
}

#home-section-top a.button {
    gap: 10px
}

#home-section-top a.button#our-projects {
    gap: 0px
}

.button#our-projects {
    background-color: transparent;
    border: 1px solid white;
    padding: 6px 20px;
}

.button#our-projects span {
    color: white;
}

/* * MARK: Home Partners
---------------------------------------------------------------------------- */

#home-section-partners {
    position: relative;
    text-align: center;
    padding: 35px 0 50px 0;
    background: linear-gradient(180deg, #ececec 0%, white 25%);
}

#partners-scroll-container {
    position: relative;
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#partners-scroll-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: fit-content;
}

#home-section-partners h2 {
    color: black;
    margin: 0px 0 20px 0;
    font-weight: 500;
    font-size: 19px;
}

/* Gradients on the left and right with before and after */
#partners-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, white 0%, transparent 100%);
    z-index: 1;
}

#partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, white 0%, transparent 100%);
    z-index: 1;
}

#partners-scroll-content img {
    height: 55px;
    max-width: 180px;
    object-fit: contain;
}

@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* * MARK: About Page
---------------------------------------------------------------------------- */

#about #about-section-description {
    padding-top: 80px;
    position: relative;
}

#about-section-description .centered-container {
    max-width: calc(900px + 30px);
}

#about-description-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#about-description-header .logo {
    display: flex;
    height: 70px;
    width: 260px;
    margin: 8px 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#about-description-header .inverted-border-radius {
    clip-path: path("M0,0H20A0,0 0,0,1 10,0V10A0,0 0,0,1 10,10H0A0,0 0,0,1 0,10V10A0,0 0,0,1 0,10H0A10,10 0,0,0 10,0V0A0,0 0,0,1 10,0");
	width: 10px;
	height: 10px;
	background-color: #533a78;
	aspect-ratio: 1 / 1;
    align-self: flex-end;
}

#about-description-header h4 {
    font-family: "Nunito";
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding: 25px 40px 10px 40px;
    margin-block: 0;
    border-radius: 10px 10px 0px 0px;
    background-color: #533a78;
    box-sizing: border-box;
    min-height: 100px;
    height: fit-content;
    width: 100%;
}

#about-section-description .studio-description-content {
    font-size: 17px;
    font-weight: 300;
    margin: 0px;
    padding: 40px;
    background: linear-gradient(#533a78 10%, #45306d 90%);
    border-radius: 10px 0px 10px 10px;
    box-shadow: 0px 6px 0px 0px #261941;
}

/* * MARK: About Story Timeline
---------------------------------------------------------------------------- */

#about h2 {
    font-size: 35px;
    margin-bottom: 50px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

/* #about-section-timeline {
    background-color: #1d162944;
    margin-top: 50px;
    padding-top: 10px;
} */

#about-section-timeline h2 {
    text-align: center;
}

#about-timeline {
    width: fit-content;
    max-width: 800px;
    margin: 0 auto;
}

#about-timeline>.item {
    display: flex;
    flex-direction: row;
    align-items: stretch;

}

#about-timeline>.item>.point {
    position: relative;
    width: 80px;
    text-align: center;
}

#about-timeline>.item>.point>.date {
    display: none;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    background-color: #270d3d;
    width: 65px;
    overflow: hidden;
    height: 35px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    font-size: 18px;
    margin: 0 auto;
    box-sizing: border-box;
}

#about-timeline>.item>.point>.dot {
    display: none;
    width: 12px;
    height: 12px;
    background-color: #270d3d;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid white;
    margin-top: 7px;
}

#about-timeline>.item>.point>.yuzu {
    display: none;
    position: absolute;
    width: 65px;
    height: 65px;
    background: url("/img/timeline-yuzu.svg") no-repeat center center;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

#about-timeline>.item.is-date>.point>.date,
#about-timeline>.item.is-yuzu>.point>.date {
    display: flex;
}

#about-timeline>.item.is-yuzu>.point>.yuzu {
    display: block;
}

#about-timeline>.item.is-dot>.point>.dot,
#about-timeline>.item.is->.point>.dot {
    display: block;
}

#about-timeline>.item>.point::before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#about-timeline>.item:first-child>.point::before {
    height: calc(100% - 25px);
    top: 25px;
}

#about-timeline>.item:last-child>.point::before {
    height: 20px;
}

#about-timeline>.item>.text {
    flex: 1;
    padding-left: 16px;
    min-height: 50px;
    padding-bottom: 32px;
    font-weight: 600;
    padding-top: 5px;
    font-family: 'Nunito', sans-serif;
}

/* * MARK: About Team
---------------------------------------------------------------------------- */

#about-section-team {
    margin-bottom: 100px;
    position: relative;
}

#about-section-team .centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 50px);
}

#about-section-team h2 {
    text-align: center;
    margin-bottom: 50px;
}

#about-section-team .team-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.team-vignette {
    display: flex;
    /* Three per line */
    flex: 1 1 320px;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 320px;
    min-height: 250px;
    background-color: white;
    border-radius: 20px;
    color: #270d3d;
}

.team-vignette .team-member-picture {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    background: url('/img/profile-picture.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 12px;
    color: transparent;
}

#about-section-team .team-vignette .name-container {
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

#about-section-team .team-vignette .name-container .nickname{
    margin-bottom: 0px;
    font-weight: 650;
}

#about-section-team .team-vignette .name-container h2 {
    font-family: "Nunito";
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 30px;
    max-width: 200px;
}

#about-section-team .team-vignette .vignette-subtitle {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin-top: 0px;
    text-align: center;
    max-width: 200px;
}

#about-section-team .team-vignette .team-member-description {
    font-size: 15px;
    font-weight: 400;
    margin: 20px 30px;
    text-align: center;
    padding-bottom: 20px;
}

#about-section-team h3 {
    font-family: "Nunito";
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 30px;
}

/* * MARK: Games Top
---------------------------------------------------------------------------- */

.page-title {
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 80px;
    text-align: center;
    justify-content: center;
}

.page-title h1 {
    margin: 0px;
    font-size: 35px;
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
}

#games .page-title img {
    width: 70px;
    height: 70px;
    margin-right: 25px;
    object-fit: contain;
    color: transparent;
}

#games #catch-phrase-container {
    margin-block: 0px;
}

/* * MARK: Games List
---------------------------------------------------------------------------- */

#desktop-project-list-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 900px;
    margin: 0 auto;
}

#mobile-project-list-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

#desktop-project-list-container .column {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 1;
}

.game-vignette {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 425px;
    height: fit-content;
    color: #3A2A56;
}

.shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px -4px 0px 0px #150a2275;
    border-radius: 11px;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
}

.game-vignette.main {
    height: 300px;
    max-width: 900px;
    margin-bottom: 50px;
    flex-direction: row;
}

.game-vignette.main img {
    height: 100%;
    width: auto;
    border-radius: 12px 0px 0px 12px;
    object-fit: cover;
    z-index: 0;
}

.game-vignette .button {
    position: absolute;
    bottom: 26px;
    right: 20px;
    border: 1px solid #3A2A56;
}

.game-vignette .button span {
    color: #3A2A56;
}

.game-vignette .text-container {
    padding: 30px 30px 100px 30px;
    background-color: white;
    border-radius: 0px 0px 12px 12px;
}

.game-vignette.main .text-container {
    border-radius: 0px 12px 12px 0px;
}

.game-vignette h2 {
    margin: 0;
    font-size: 20px;
}

.game-vignette p {
    margin: 0;
}

/* .game-vignette img {
    border-radius: 10px 10px 0px 0px;
} */

.button.link {
    padding: 10px;
    border-radius: 50px;
    height: auto;
}

.button.link img {
    height: 20px;
}

section#games-list {
    margin-bottom: 200px;
}

/* * MARK: Orbital Survivor
---------------------------------------------------------------------------- */

.video {
    margin: auto;
}

.video-container {
    width: calc(100% - 30px);
    max-width: 950px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: 0px 0px 20px 1px #ffffff21;
    border: 1px solid #ffffff21;
    margin-bottom: 30px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

#steam-store-widget {
    margin-block: 20px;
    max-width: 646px;
}

#game-presentation {
    padding: 20px 0;
    margin-bottom: 20px;
}

#game-presentation h1 {
    width: 100%;
    font-family: "Nunito", sans-serif;
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}

#game-presentation .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
}

#game-description .main-description {
    background-color: #bae2ff42;
    border-radius: 30px;
    padding: 30px 50px;
    width: calc(100% - 60px);
    box-sizing: border-box;
    text-align: center;
    max-width: 850px;
    line-height: 1.5;
    font-size: 19px;
    margin-bottom: 100px;
    margin-top: 20px;
}

#game-description .subsection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 950px;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 60px;
}

#game-description .subsection:last-child {
    margin-bottom: 100px;
}

#game-description .subsection:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

#game-description .subsection .image-area {
    position: relative;
    display: block;
    flex: 0 0 min(100%, 450px);
    border-radius: 16px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.199);
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}

#game-description .subsection .image-area.sixteen-nine { aspect-ratio: 16 / 9; }
#game-description .subsection .image-area.sixteen-ten { aspect-ratio: 16 / 10; }
#game-description .subsection .image-area.four-three { aspect-ratio: 4 / 3; }
#game-description .subsection .image-area.square { aspect-ratio: 1 / 1; }

#game-description .subsection .image-area>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

#game-description .subsection .image-area>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

#game-description .subsection .text-area {
    flex: 1 1 1;
}

#game-description .subsection h2 {
    font-size: 26px;
}

/* * MARK: Projects page Top
---------------------------------------------------------------------------- */

#projects .page-title img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 20px;
    color: transparent;
}

.info-boxes-container {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    width: calc(100% - 40px);
    margin-bottom: 100px;
}

.info-box {
    width: 100%;
    max-width: 500px;
    height: 250px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.info-box p {
    box-sizing: border-box;
    width: 100%;
    margin: 0px;
    color: rgba(255, 255, 255, 0.596);
}

.info-box p b {
    color: white;
    font-weight: 800;
}

.info-box.right p.top-part {
    font-size: 30px;
}

.info-box p.main {
    font-size: 30px;
    padding: 40px 20px;
    background: linear-gradient(#4F387E, #392b71);
    box-shadow: 0px 6px 0px 0px #1f1435;
    border-radius: 12px 12px 12px 0px;
    padding: 25px 35px;
    display: inline;
    flex: 1 1 auto;
}

.info-box .bottom-info {
    display: flex;
    align-items: stretch;
}

.info-box .bottom-info .info-icon {
    background-color: #392B71;
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0px 6px 0px 0px #1f1435;
    padding: 20px 40px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
}

.info-box .bottom-info .info-icon img {
    width: 18px;
}

.info-box .bottom-info .inverted-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.info-box .bottom-info .inverted-container .inverted-border-radius {
	clip-path: path("M0,0H0A0,0 0,0,1 0,0V0A12,12 0,0,0 12,12H12A0,0 0,0,1 12,12V12A0,0 0,0,1 12,12H0A0,0 0,0,1 0,12V0A0,0 0,0,1 0,0Z");
	width: 12px;
	height: 12px;
	background-color: #392b71;
	aspect-ratio: 1 / 1;
    transform: translate(-1px, -1px) rotate(90deg) ;
}

.info-box .bottom-info .inverted-container .inverted-box-shadow {
	clip-path: path("M0,0H0A0,0 0,0,1 0,0V0A12,12 0,0,0 12,12H12A0,0 0,0,1 12,12V12A0,0 0,0,1 12,12H0A0,0 0,0,1 0,12V0A0,0 0,0,1 0,0Z");
	width: 12px;
	height: 12px;
	background-color: #1f1435;
	aspect-ratio: 1 / 1;

    z-index: -1;
    transform: translate(-1px, -6px) rotate(90deg);
}

.bottom-info p {
    align-self: center;
    font-size: 24px;
    transform: translateY(4px); 
    margin-left: 8px;
}

.info-box:last-child {
    background: linear-gradient(#4F387E, #392B71);
    box-shadow: 0px 6px 0px 0px #1f1435;
    border-radius: 12px;
    padding: 30px;
    justify-content: space-between;
}

.info-box:last-child p {
    font-size: 28px;
}

.info-box:last-child p:last-child {
    text-align: right;
}

/* * MARK: Projects page List
---------------------------------------------------------------------------- */

.tags-menu {
    max-width: 1030px;
    width: 100%;
}

.tags-menu .title-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0px auto 5px auto;
    width: calc(100% - 30px);
}

.title-container p {
    margin: 0px;
    font-weight: 300;
}

.title-container img {
    width: 9px;
    height: 10px;
    transform: translateY(2px) rotate(90deg);
}

.tags-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    max-width: 1000px;
    margin-bottom: 20px;
    margin-left: 15px
}

.tag {
    padding: 3px 11px;
    margin: 0;
    border: 1px solid #ffca58;
    color: #ffca58;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    white-space: nowrap;
    user-select: none
}

.tag.selected {
    background-color: #ffca58;
    color: black;
    font-weight: 400;
}

#projects-list {
    padding-bottom: 100px;
}

#desktop-project-list-container.projects-container {
    width: 1000px;
}

#desktop-project-list-container.projects-container .column {
    gap: 60px;
}

.projects-container .project-card {
    max-width: 485px;
    width: 485px;
}
    
.project-card p {
    margin: 0px;
}

.project-card h2 {
    margin: 0px;
}

.project-card-top-row {
    display: flex;
    position: relative;
    max-height: 120px;
}

.project-card-top-row .project-card-logo {
    height: 100px;
    width: 100px;
    margin: 0px 3px 19px 0px;
    border-radius: 8px;
    /* padding: 10px; */
    background-color: white;
    box-shadow: 0px 6px 0px 0px #c1c1e2;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.project-card-top-row .inverted-container {
    width: 10px;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    transform: translate(1px, 1px);
}

.project-card-top-row .inverted-container .inverted-border-radius {
    clip-path: path("M5,0H10A0,0 0,0,1 10,0V10A0,0 0,0,1 10,10H0A0,0 0,0,1 0,10V10A0,0 0,0,1 0,10H0A10,10 0,0,0 10,0V0A0,0 0,0,1 10,0");
	width: 10px;
	height: 10px;
	background-color: #ffffff;
	aspect-ratio: 1 / 1;
}

.project-card-link-title-container {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.project-card-link-progress-container {
    display: flex;
    margin-bottom: 12px;
    height: 40px;
}

.project-card-link-progress-container .project-card-link-container {
    display: flex;
}

.project-card-link-progress-container a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #59a5ee;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-sizing: border-box;
    padding: 9px;
}

.project-card-link-progress-container a img {
    width: 100%;
    height: 100%;
}

.project-card-link-progress-container .progress-bar {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    background-color: #44338e;
    border: 2px solid #4e3d94;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.project-card-link-progress-container .progress-bar .progress-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #5E33D6 0%,#7F5DDA 100%);
    border-radius: 6px;
    transition: width 0.3s ease-in-out;
}

.project-card-link-progress-container .progress-bar p {
    position: absolute;
    font-size: 17px;
    color: white;
    font-weight: 300;
    font-style: italic;
    right: 10px;
}

.project-card-title-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px 10px 0px 0px;
    flex: 1 1 auto;
    padding: 11px 17px 0px 17px;
    transform: translateY(1px);
}

.project-card-title-container h2 {
    font-size: 18px;
    font-weight: 800;
    color: black;
    max-width: 100%;
}

.project-card-title-container .subtitle {
    font-size: 15px;
    color: #707070;
    font-weight: 550;
}

.project-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(white, #f9f3ff);
    border-radius: 10px 0px 10px 10px;
    box-shadow: 0px 6px 0px 0px #c1c1e2;
    padding: 40px 25px 20px 25px;
    box-sizing: border-box;
}

.project-card-content .project-card-title-container {
    display: none;
    padding: 0px;
}

.project-card-content p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.project-card-tags-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-card-tags-container .tag {
    border: 1px solid #a68edc;
    color: #5e4d83;
    background-color: transparent;
    cursor: default;
    user-select: auto;
}

.project-card-tags-container .tag.main {
    background-color: #f7e6ff;
}

/* * MARK: Media Queries 
---------------------------------------------------------------------------- */



/* * MARK: 1050px 
*/
@media (max-width: 1050px) {
    nav .burger-menu {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        box-sizing: border-box;
        position: absolute;
        top: var(--nav-bar-height);
        left: 0;
        width: 100%;
        max-width: 100%;
        padding-bottom: 40px;
        background: linear-gradient(180deg, #2e1251 0%, #3430AC 100%);
    }

    nav.opened ul {
        display: flex;
    }

    nav.opened ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        text-wrap: nowrap;
    }

    nav.opened ul li a {
        margin: 5px 20px;
    }

    nav.opened ul li a.button.yellow {
        margin-top: 8px;
    }

    nav.opened .socials {
        margin-top: 30px;
    }

    nav.opened ul li.socials a {
        margin: 0 10px;
    }

    nav.opened .socials-icon {
        height: 20px;
    }

    nav .nav-right-anchor {
        padding-top: 0px;
    }

    nav .language-select {
        margin-right: 20px;
    }

    #presentation-boxes {
        flex-direction: column;
        align-items: center;
        max-width: 420px;
    }

    .presentation-box {
        width: 100%;
    }

    #home .button.yellow {
        display: flex;
    }

    #footer-columns {
        flex-direction: column-reverse;
    }

    #footer-columns section:nth-child(2) {
        transform: none;
    }

    #footer-columns section:nth-child(3) {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    #footer-bottom {
        justify-content: center;
        margin-top: 40px;
    }

    #about-section-description .centered-container {
        max-width: calc(800px + 30px);
    }

    #about-description-header {
        flex-direction: column;
    }

    #about-description-header .inverted-border-radius {
        display: none;
    }

    
    #about-description-header .logo {
        margin-bottom: 20px;
    }
    
    #about-description-header h4 {
        height: auto;
        padding: 20px 40px 0px 40px;
    }

    #about-section-description .studio-description-content {
        border-radius: 0px 0px 10px 10px;
    }

    .team-vignette {
        min-height: 250px;
        height: auto;
    }

    .team-vignette .team-member-picture {
        top: -20px;
        left: calc(50% - 42px);
    }

    .team-vignette .spacer {
        height: 50px;
    }

    .game-vignette.main {
        height: auto;
        max-width: 425px;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .game-vignette.main img {
        border-radius: 10px 10px 0px 0px;
        height: 240px;
    }

    .game-vignette.main .text-container {
        border-radius: 0px 0px 12px 12px;
    }
    
    #game-description .subsection {
        flex-direction: column !important;
        text-align: center;
        gap: 0px;
        margin-bottom: 100px;
        max-width: 600px;
    }

    #game-description .subsection .text-area {
        text-align: center;
        margin-top: 15px;
    }

    #game-description .subsection .text-area h2 {
        font-size: 24px;
        width: 95%;
        margin: 10px auto;
    }

    #projects .page-title {
        justify-content: center;
    }

    .info-boxes-container {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        height: auto;
    }

    .tags-menu {
        max-width: 550px;
    }
}

/** MARK: 700px 
*/
@media (max-width: 700px) {
    #catch-phrase-container {
        margin-block: 30px 50px;
    }

    #catch-phrase {
        font-size: 26px;
        width: 88%;
    }

    #catch-phrase .quotation-mark {
        display: none;
    }

    #quotation-mark-right {
        bottom: -15px;
        right: -14px;
    }

    #quotation-mark-left { 
        top: 5px; 
        left: -14px; 
    }

    #home-section-partners>.centered-container {
        width: 100%;
    }

    #game-description .main-description {
        font-size: 17px;
        padding: 25px;
    }

    #partners-scroll-content img {
        height: 45px;
    }

    #projects .page-title {
        margin-bottom: 10px;
    }

    #projects .page-title h1 {
        font-size: 28px;
    }

    #projects .page-title img {
        width: 55px;
        margin-bottom: 6px;
        margin-right: 20px;
    }
}

/** MARK: 500px 
*/
@media (max-width: 500px) {
    #home-section-top #buttons {
        flex-direction: column;
        gap: 20px;
    }

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

    .presentation-box p {
        padding-right: 0px;
    }

    #presentation-boxes {
        gap: 90px;
        margin: 0 auto 150px auto;
    }
    
    #presentation-box-icon-container {
        justify-content: center;
    }

    .presentation-box .presentation-box-icon {
        bottom: -95px;
        right: calc(50% - 90px);
    }

    .game-vignette {
        max-width: 330px;
    }

    .game-vignette.main {
        max-width: 310px;
    }

    .game-vignette .text-container {
        padding: 20px 20px 100px 20px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .page-title img {
        width: 60px;
        margin-bottom: 10px;
        margin-right: 10px;
    }
    
    #games #catch-phrase-container {
        margin-top: 20px;
    }
    
    .main-description {
        padding: 30px 30px;
    }
    
    #projects .page-title h1 {
        font-size: 20px;
    }

    #projects .page-title img {
        width: 40px;
        margin-bottom: 5px;
        margin-right: 10px;
    }

    .bottom-info p {
        font-size: 18px;
    }

    .info-box p.main {
        font-size: 25px;
        padding: 30px 20px;
    }
    
    .info-box .bottom-info .info-icon img{
        width: 16px;
    }
    
    .info-box:last-child {
        padding: 20px;
    }
    
    .info-box:last-child p {
        font-size: 23px;
        margin-left: 0px;
    }
    
    .projects-container .project-card {
        width: auto;
    }

    .project-card {
        padding-inline: 20px;
    }

    .project-card-content .project-card-title-container {
        display: flex;
    }

    .project-card-content {
        border-radius: 10px;
        padding: 20px 25px 20px 25px;
    }

    .project-card-link-progress-container {
        justify-content: space-between;
        flex: 1 1 auto;
    }

    .project-card-link-progress-container .progress-bar {
        max-height: 46px;
    }

    .project-card-link-title-container .project-card-title-container {
        display: none;
    }

    .project-card-top-row .inverted-container {
        display: none;
    }

    .project-card-top-row .project-card-logo {
        height: 85px;
        width: 85px;
        margin: 0px 15px 20px 0px;
    }

    .project-card-link-progress-container a {
        width: 44px;
        height: 44px;
    }

    .project-card-link-progress-container .progress-bar {
        height: 40px !important;
        flex: 0 0 40px;
    }

    .project-card-link-progress-container {
        flex-direction: column;
    }

    #game-description .main-description {
        font-size: 16px;
        padding: 20px;
    }
}