/*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: Strider - A Game Studio Template
Version:	1.0

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

    I.General
    II.Page Prealoader
    III.Header & Navigation
    IV.Hero Section
    V.About Section
    VI.Games Section
    VII.Team Section
    VIII.Careers Section
    IX.Contact Section
    X.Footer
    XI.404 Page
    XII.Responsive Styles

-------------------------------------------------------------------
[Color codes]

Background:	#111; (black)
Content:	#FFF; (white)
Footer:		#070707; (black)

a (standard):	#F5F5F5; (white)
a (hover): var(--color-orange); (orange)
a (visited):	var(--color-orange);
a (active):	var(--color-orange);

[Colors]

Primary Color: var(--color-orange);
-------------------------------------------------------------------*/

/*@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500');*/ /* Raleway Font */
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/ /* Open Sans Font */
/*@font-face {
    font-family: 'Anurati';
    src: url('../fonts/Anurati-Regular.otf');
}*/
@import url('../fonts/FutuBk.ttf'); /* Open Sans Font */
@font-face {
    font-family: 'FutuBk';
    src: url('../fonts/FutuBk.ttf');
}

:root {
    --color-purple: #532B82;
    --color-purple-smooth: #A280B5;
    --color-purple-light: rgb(172 106 229);
    --color-purple-dark: #532B82;
    --color-orange: #E48632;
    --color-white: #FFF;
    --color-background: #111;
}
/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: var(--color-purple);
}
/* -Link Styling- */
a {
    color: var(--color-purple-smooth);
    font-family: FutuBk,Raleway, sans-serif;
    text-decoration: none;
}

    a:visited {
        color: rgb(172 106 229);
        text-decoration: none;
    }

    a:hover {
        color: var(--color-orange);
        text-decoration: underline;
    }

    a:active {
        color: var(--color-orange);
        text-decoration: underline;
    }
     

    a:focus {
        color: var(--color-orange);
        text-decoration: none;
    }
/* -Resets- */
html, body {
    background-color: #111;
    background: url(../images/bg.png);
    background-repeat: repeat;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
}
/* -Text Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: FutuBk, Raleway, sans-serif;
}

h1 {
    font-size: 2.25rem; /* 36px */
    font-family: FutuBk, Anurati, sans-serif;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.50rem; /* 24px */
    font-weight: 500;
}

h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
}

h4 {
    font-size: 1.10rem;
    font-weight: 300;
}

.heading {
    user-select: none
}

p {
    font-family: FutuBk, Open Sans, sans-serif;
    font-size: 1.1rem; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
}

.strong {
    font-weight: bold;
}

.subtle {
    color: #999;
}

.spaced {
    letter-spacing: 5px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

ul {
    list-style-type: none;
    padding: 0;
}
/* -Margins and Floats- */
.floated-left {
    float: left;
}

.floated-right {
    float: right;
}

.inline {
    display: inline;
}

.offset {
    margin-left: 10px;
}

.small-padding {
    padding-bottom: 3em; /* 48px */
}
.tiny-margin {
    margin-bottom: 1.5em /* 24px */
}

.small-margin {
    margin-bottom: 3em; /* 48px */
}

.small-margin-top {
    margin-top: 3em; /* 48px */
}

.medium-margin {
    margin-bottom: 6em; /* 96px */
}

.large-margin {
    margin-bottom: 12em; /* 192px */
}
/* -<hr>- */
hr {
    width: 100%;
    height: 2px;
    background: var(--color-purple);
    margin: 20px 0;
    border: none;
}

.hr-short {
    width: 100px;
    height: 2px;
    margin: 5px auto;
}

.short-hr-left::after {
    border-top: 2px solid;
    border-color: var(--color-purple);
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px 0 0 0;
}

.short-hr-center::after {
    border-top: 2px solid;
    border-color: var(--color-purple);
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px auto 0 auto;
}
/* General input fields */
input {
    height: 45px;
    padding-left: 10px;
    border: 1px solid #D4D4D4 !important;
}

    input:focus {
        border: 1px solid #333;
        outline: none;
    }

textarea {
    height: 150px;
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    border: 1px solid #D4D4D4 !important;
}

    textarea:focus {
        border: 1px solid #333;
        outline: none;
    }
/* -General Button Styles */
button {
    outline: none !important;
}

.button {
    background: var(--color-purple);
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-family: FutuBk, Raleway, sans-serif;
    font-weight: 500;
    display: block;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px 15px;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .button:hover {
        background: #FFF;
        color: #2B2B2B;
    }
/* --------------------------- /////////// II. PAGE PRELOADER /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

.loader-logo {
    position: relative;
    color: #FFF;
    top: 43%;
}

#progress {
    width: 0;
    height: 2px;
    background: var(--color-purple);
    position: relative;
    top: 45%;
}

.loader-text {
    position: relative;
    color: #FFF;
    top: 48%;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* --------------------------- /////////// III. HEADER & NAVIGATION /////////// --------------------------- */
#logo {
    font-family: FutuBk, Anurati, sans-serif;
    font-size: 1.75rem; /* 28px */
    ;
    letter-spacing: 5px;
}

.navbar-dark {
    background-color: rgba(0,0,0,0.8);
    border: 1px solid rgba(0,0,0,0);
    z-index: 900;
    transition: 0.3s;
}

    .navbar-dark.top {
        background-color: rgba(0,0,0,0);
    }

.scrolled {
    background-color: rgba(0,0,0,0.8); /* navbar background gradient */
    z-index: 900;
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 5px;
    transition: 0.2s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: var(--color-orange);
    }

    .navbar-dark .navbar-nav .nav-link:active {
        color: var(--color-orange);
    }

    .navbar-dark .navbar-nav .nav-link:focus {
        color: var(--color-orange);
    }
a.active {
    color: var(--color-orange) !important;
}

.navbar-toggler {
    border: none;
    cursor: pointer;
}

#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #FFF;
    margin: 7px 0;
    transition: .3s ease-in-out;
}
    /* - Mobile menu animation - */
    #hamburger .icon-bar:nth-child(1) {
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #hamburger .icon-bar:nth-child(2) {
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #hamburger .icon-bar:nth-child(3) {
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger.open .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* --------------------------- /////////// IV. HERO SECTION /////////// --------------------------- */
/* -Slanted edge effect- */
#hero-slider .carousel-item img {
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: 0s 0.8s opacity;
}
/* -Text animation timing- */
.animated {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
}
/* -Hero Image- */
.hero-unit {
    background-color: #111;
    background: url(../images/bg.png);
    background-repeat: repeat;
    min-height: 720px;
    height: 100vh;
}
/* -Hero Image Caption- */
.hero-caption {
    display: block;
    position: relative;
    margin-top: 35vh;
    color: #FFF;
    text-shadow: none;
    padding: 20px;
    z-index: 5;
    text-align: right;
}

    .hero-caption h1 {
        font-weight: bold;
        font-size: 3rem;
        font-family: FutuBk, Raleway, sans-serif;
    }

/* --------------------------- /////////// V. ABOUT SECTION /////////// --------------------------- */
#support-image {
    margin: 0 auto;
    object-fit: cover
}
/* --------------------------- /////////// VI. GAMES SECTION /////////// --------------------------- */
.game-tags {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 10px;
    border-left: 2px solid var(--color-purple);
}

    .game-tags li {
        display: inline;
        margin: 0 0 0 15px;
        font-family: FutuBk, Raleway, sans-serif;
        font-size: 1.10rem; /* 20px */
        ;
        font-weight: 500;
    }

        .game-tags li a {
            color: #FFF;
            text-decoration: none;
        }

            .game-tags li a:hover {
                color: var(--color-purple);
            }

            .game-tags li a:focus {
                color: var(--color-purple);
            }

.game-card {
    width: 100%;
    margin: 0 auto 3.5em auto;
    min-height: 270px;
    height: auto;
}

.lightbox .lb-image {
    border: 4px solid #111;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    border-left: 2px solid var(--color-purple);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s ease;
}

    .overlay i {
        position: absolute;
        top: 40%;
        left: 47%;
        color:var(--color-purple);
    }

    .overlay:hover {
        opacity: 1;
    }

.game-card-left {
    padding: 0;
    position: relative;
}

    .game-card-left img {
        height: 100%;
        width: 100%;
        min-height: 270px;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

.game-card-right {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 20px 40px;
    margin: 0;
}

    .game-card-right h2 {
        margin-bottom: 0;
    }

    .game-card-right > .short-hr-left::after {
        margin: 5px 0;
    }

.tags {
    font-size: 14px;
    padding-top: 0;
}

.game-description {
    margin: 35px 0;
}
/* -- Modal -- */
.expand {
    cursor: pointer;
}

.game-modal .modal-header {
    height: 150px;
    background-image: url(../images/modal_header_bg.png);
    background-position: bottom;
    background-size: cover;
    border-bottom: 1px solid #555;
}

.game-modal .modal-title {
    margin: 5% 0 0 5%;
}

.game-modal img {
    margin: 5px 0 50px 0;
}

.modal-vid {
    width: 100%;
    max-width: 768px;
    height: 415px;
    margin: 20px 0 60px 0;
    border: none;
}
/* -- Buttons -- */
.steam-btn {
    display: inline-block;
    margin: 25px 0 0 0;
}

    .steam-btn a {
        display: inline-block;
        min-height: 55px;
        min-width: 150px;
        height: auto;
        width: auto;
        background: #DDD;
        border-radius: 3px;
        padding: 8px;
        border: none;
        color: #111;
        cursor: pointer;
        transition: 0.2s;
    }

    .steam-btn:hover a {
        background: #000;
        color: #FFF;
    }

    .steam-btn i {
        float: left;
    }

    .steam-btn p {
        float: right;
        line-height: 20px;
        font-weight: bold;
    }

.button-store {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 5px 22px;
    border-radius: 5px;
    margin: 30px 10px 0 0;
    color: #111;
    background: #DDD;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

    .button-store:hover {
        background: #000;
        color: #FFF;
    }

    .button-store > i {
        float: left;
        display: inline;
        margin-top: 5px;
    }

    .button-store p {
        float: right;
        padding: 0 0 0 10px;
    }

.reviews {
    width: auto;
    display: inline-block;
    float: right;
    margin: 20px 0 0 0;
    text-align: center;
}

    .reviews a {
        color: #FFF;
    }

        .reviews a:hover {
            color: #FFF;
        }

        .reviews a:active {
            color: #FFF;
        }

        .reviews a:visited {
            color: #FFF;
        }

.score-card {
    display: inline-block;
    min-height: 70px;
    min-width: 90px;
    width: auto;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    margin: 0 5px 0 0;
    padding: 5px;
    border-radius: 2px;
    transition: 0.2s;
}

    .score-card:hover {
        background: #FFF;
    }

        .score-card:hover p {
            color: #111;
        }

.score {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
    padding-bottom: 0;
}

.score-card p:nth-of-type(2) {
    font-size: 14px;
    padding-top: 0;
}

.rating {
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    float: right;
    border-radius: 2px;
    margin: 20px 0 0 0;
}

    .rating ul {
        margin: 0;
    }

        .rating ul li {
            display: inline;
            margin: 0 5px 0 0;
        }

    .rating p {
        font-size: 1.5rem;
    }
/* --------------------------- /////////// VII. TEAM SECTION /////////// --------------------------- */
#full-row {
    width: 100%;
}
.team-card {
    margin: 0 auto;

    user-select:none
}
#team figure {
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
}

    #team figure img {
        border-radius: 3px;
        border-bottom: 2px solid var(--color-purple);
        aspect-ratio: 1 / 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        min-height: 320px;
    }

.team-caption ul {
    margin-top: 10px;
}

    .team-caption ul li {
        display: inline;
        margin: 0 5px;
    }

        .team-caption ul li > a {
            color: #EEE;
        }

            .team-caption ul li > a:hover {
                color: var(--color-purple);
            }

.team-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    text-align: center;
    padding: 40% 20px 20px 20px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
}

#team figure:hover > .team-caption {
    opacity: 1;
}

#team figure:hover > img {
    filter: blur(2px);
}

.team-name {
    font-size: 1.5rem;
    padding-bottom: 0;
}

.gallery-item {
    padding: 0 2.5px;
    position: relative;
}

.grid-gallery .row {
    margin: 0 0 5px 0;
}

.overlay.gallery {
    left: 0;
    width: 100%;
    border: none;
}
/* --------------------------- /////////// VIII. CAREERS SECTION /////////// --------------------------- */
.job-card {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-left: 2px solid var(--color-purple);
    padding: 25px 35px;
    margin: 10px 0;
}

.modal-content {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
}

.modal-header {
    border-bottom: 1px solid var(--color-orange);
}

.modal-body > ul > li > p {
    padding: 0px 5px;
    display: inline;
}

.modal-body ul {
    list-style: none;
    margin: 10px 0 0 25px;
}

    .modal-body ul li {
        margin: 5px 0;
    }

        .modal-body ul li:before {
            content: "\f101";
            color: var(--color-orange);
            display: inline-block;
            width: 1em;
            margin-left: -10px;
            font-family: fontawesome;
        }

.modal-body .skill-list {
    margin: 10px 0;
}

    .modal-body .skill-list li {
        display: inline-block;
        padding: 5px 15px 7px 15px;
        margin: 5px 5px;
        border: 1px solid var(--color-orange);
        border-radius: 20px;
    }

        .modal-body .skill-list li:before {
            display: none;
        }

.modal-body h3 {
    margin-bottom: 0;
}

.modal-footer {
    border-top: 1px solid var(--color-orange);
}

    .modal-footer button {
        margin: 0;
    }

.button.secondary {
    background: #222;
}

    .button.secondary:hover {
        background: #FFF;
    }

.close {
    color: #FFF;
    opacity: 1;
    text-shadow: none;
    cursor: pointer;
}

    .close:hover {
        color: var(--color-orange);
        opacity: 1;
    }
/* -- Newsletter -- */
#newsletter input {
    width: 40%;
    height: 45px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border: none !important;
    padding: 0 0 0 20px;
    display: inline-block;
    margin-top: 20px;
    color: #fff;
}

#newsletter button {
    display: inline-block;
    height: 43px;
    width: auto;
}
/* --------------------------- /////////// IX. CONTACT SECTION /////////// --------------------------- */
#contactForm {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 5%;
    margin-top: 25px;
}

    #contactForm input {
        width: 100%;
        color: #FFF;
        background: none;
        border-bottom: 2px solid var(--color-purple) !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        margin-bottom: 25px;
    }

    #contactForm textarea {
        width: 100%;
        color: #FFF;
        background: none;
        border-bottom: 2px solid var(--color-purple) !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        margin-bottom: 25px;
    }

    #contactForm .button {
        margin-left: 0;
        padding: 15px 25px;
        font-size: 1.25rem;
    }
/* - Warning and succes msg text- */
.text-danger, .text-success {
    font-family: FutuBk, Open Sans, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.25rem;
}

#contact-info {
    margin-top: 25px;
}

#contact ul li i {
    color: var(--color-purple);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 10px;
}

#contact ul li p {
    display: inline;
    margin-left: 5px;
}

#contact ul li {
    margin-bottom: 15px;
}

#map-canvas {
    width: 100%;
    height: 330px;
    opacity: 0.9;
    margin-bottom: 2.5rem
}

    #map-canvas > iframe {
        width: 100%;
        height: 100%;
    }
/* --------------------------- /////////// X. FOOTER /////////// --------------------------- */
#footer {
    width: 100%;
    min-height: 70px;
    height: auto;
    background: #070707;
    border-top: 2px solid var(--color-purple);
    padding: 20px 0 0 0;
}

.social-links {
    float: right;
}

    .social-links li {
        display: inline;
        margin-left: 15px;
    }

        .social-links li a {
            color: #FFF;
        }

            .social-links li a:hover {
                color: var(--color-orange);
            }

            .social-links li a:focus {
                color: var(--color-orange);
            }

#copyright {
    float: left;
}
/* --------------------------- /////////// XI. 404 PAGE /////////// --------------------------- */
#container-404 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

    #container-404 .row-fluid {
        margin-top: 18%;
    }

.text-404 h1 {
    font-family: FutuBk, Anurati, sans-serif;
    font-size: 4rem;
}

.text-404 a {
    display: inline-block;
    text-decoration: none;
}
/* --------------------------- /////////// XII. RESPONSIVE STYLES /////////// --------------------------- */
@media (max-width : 1199px) {
    .hero-caption {
        margin-top: 15vh;
        margin-bottom: 2em;
        text-align: center;
    }

    .hero-unit {
        height: auto;
    }

    #hero-slider .carousel-item img {
        -webkit-clip-path: none;
        clip-path: none;
    }
}

@media (max-width : 991px) {
    .nav-item > a::first-letter {
        color: var(--color-orange);
    }

    .navbar-dark {
        opacity:1;
        background-color: rgba(0,0,0,0.8); /* navbar background gradient */
    }

    .scrolled {
        background-color: rgba(0,0,0,0.8); /* navbar background gradient */
    }

    #footer {
        text-align: center;
        padding: 10px 0 0 0;
    }

    .social-links {
        float: none;
    }

    #copyright {
        float: none;
        margin-bottom: 5px;
    }

    #container-404 .row-fluid {
        margin-top: 40%;
    }
    .reversable {
        flex-direction: column-reverse;
    }
        .reversable > .game-card-left img{
            height:50dvw
        }
}

@media (max-width : 767px) {
    .large-margin {
        margin-bottom: 4em; /* 96px */
    }

    .medium-margin {
        margin-bottom: 3em;
    }

    .small-margin {
        margin-bottom: 2em;
    }

    .heading {
        font-size: 1.50rem;
    }

    hr {
        margin: 0;
    }

    #support-image {
        display: block;
        margin: 2em auto 0 auto;
    }

    .game-card {
        margin: 0 0 3.5em 0;
    }

    .steam-btn {
        display: block;
        text-align: center;
    }

    .button-store:nth-of-type(2) {
        float: right;
    }

    .reviews {
        display: block;
        margin: 15px auto 0 auto;
        float: left;
        width: 100%;
    }

    .rating {
        display: block;
        margin: 15px auto 0 auto;
        float: none;
    }

    #team figure {
        margin: 20px auto;
    }

    .gallery-item {
        margin: 5px 0;
        position: relative;
    }

    .grid-gallery .row {
        margin: 0;
    }

    #newsletter input {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    #newsletter button {
        width: 100%;
        display: block;
    }

    #contactForm {
        margin: 0 0 3em 0;
    }

    .text-404 h1 {
        font-size: 3.5rem;
    }
}

@media (max-width : 480px) {
    .game-card-left img {
        min-height: 0;
    }

    .score-card {
        margin: 5px 0;
    }

    .hero-caption h1 {
        font-size: 2.5rem;
    }

    .button-store {
        margin: 5px auto;
    }

        .button-store:nth-of-type(2) {
            float: none;
        }
}


/*custom*/

.user-select-none {
    user-select: none
}

.nav-margin {
    margin-top: 91px;
}

.top {
    opacity: .6;
}

    .top:hover {
        opacity: 1;
        transition: .5s ease-in;
        background-color: rgba(0,0,0,0.8)
    }


.breadcrumb-item::before, .breadcrumb-item.active::before, .breadcrumb-item.active {
    color: var(--color-white) !important
}

article.card-text {
    text-align: justify
}

/*cards news*/

.projcard-container {
    margin: 50px 0;
}

    /* Actual Code: */
    .projcard-container,
    .projcard-container * {
        box-sizing: border-box;
    }

.projcard-container {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

.projcard {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #ddd;
    font-size: 18px;
    overflow: hidden;
    
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    color:var(--color-purple-dark)
}

    .projcard:hover {
        box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
        transform: translate(0px, -3px);
    }

    .projcard::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(-70deg, #424242, transparent 50%);
        opacity: 0.07;
    }

    .projcard:nth-child(2n)::before {
        background-image: linear-gradient(-250deg, #424242, transparent 50%);
    }

.projcard-innerbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.projcard-img {
    position: absolute;
    height: 300px;
    width: 400px;
    top: 0;
    right: 0;
    transition: transform 0.2s ease;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

.projcard:nth-child(2n) .projcard-img {
    right: initial;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.projcard:hover .projcard-img {
    transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
    width: 70px;
}

.projcard-cta {
    width:fit-content;
    margin:0 auto;
}

.projcard:hover .projcard-cta, .projcard:active .projcard-cta, .projcard:focus .projcard-cta {
    display: block;
    opacity: 1;
    width: fit-content;
    margin: 0 auto;
    transition: ease .5s;
}
.projcard-cta a {
    color:white
}

    .projcard-cta a:hover {
        background-color: var(--color-purple-light);
        color: white;
        text-decoration:none
    }

.projcard-textbox {
    position: absolute;
    top: 7%;
    bottom: 7%;
    right: 430px;
    width: calc(100% - 470px);
    font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
    right: initial;
    left: 430px;
}

/*.projcard-textbox::before,
.projcard-textbox::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    right: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
}*/

.projcard:nth-child(2n) .projcard-textbox::before {
    display: none;
}

.projcard-textbox::after {
    display: none;
    right: initial;
    left: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
    display: block;
}

.projcard-textbox * {
    position: relative;
}

.projcard-title {
    font-family: FutuBk, 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 24px;
}

.projcard-subtitle {
    font-family: FutuBk,'Voces', 'Open Sans', arial, sans-serif;
    color: #888;
}

.projcard-bar {
    left: -2px;
    width: 50px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: var(--color-purple-dark);
    transition: width 0.2s ease;
}

.projcard .projcard-bar {
    background-color: var(--color-purple-dark);
}

.projcard::before {
    background-image: linear-gradient(-70deg, var(--color-purple-dark), transparent 50%);
}

.projcard:nth-child(2n) .projcard-bar {
    background-color: var(--color-purple-light);
}
.projcard:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, var(--color-purple-smooth), transparent 50%);
}
.projcard:nth-child(3n) .projcard-bar {
    background-color: var(--color-orange);
}
.projcard:nth-child(3n) .projcard-bar {
    background-color: var(--color-orange);
}

.projcard:nth-child(3n)::before {
    background-image: linear-gradient(-70deg, var(--color-orange), transparent 50%);
}

.projcard:nth-child(4n)::before {
    background-image: linear-gradient(-250deg, #D62F1F, transparent 50%);
}

/*.projcard-green .projcard-bar {
    background-color: #40BD00;
}

.projcard-green::before {
    background-image: linear-gradient(-70deg, #40BD00, transparent 50%);
}

.projcard-green:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #40BD00, transparent 50%);
}

.projcard-yellow .projcard-bar {
    background-color: #F5AF41;
}

.projcard-yellow::before {
    background-image: linear-gradient(-70deg, #F5AF41, transparent 50%);
}

.projcard-yellow:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #F5AF41, transparent 50%);
}

.projcard-orange .projcard-bar {
    background-color: #FF5722;
}

.projcard-orange::before {
    background-image: linear-gradient(-70deg, #FF5722, transparent 50%);
}

.projcard-orange:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #FF5722, transparent 50%);
}

.projcard-brown .projcard-bar {
    background-color: #C49863;
}

.projcard-brown::before {
    background-image: linear-gradient(-70deg, #C49863, transparent 50%);
}

.projcard-brown:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #C49863, transparent 50%);
}

.projcard-grey .projcard-bar {
    background-color: #424242;
}

.projcard-grey::before {
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
}

.projcard-grey:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-customcolor .projcard-bar {
    background-color: var(--projcard-color);
}

.projcard-customcolor::before {
    background-image: linear-gradient(-70deg, var(--projcard-color), transparent 50%);
}

.projcard-customcolor:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, var(--projcard-color), transparent 50%);
}
*/
.projcard-description {
    z-index: 10;
    font-size: 15px;
    color: #424242;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .projcard-description p {
        text-wrap: pretty;
    }

.projcard-tagbox {
 
    font-size: 14px;
   
}
    .projcard-tagbox a{
     
    }

.projcard-tag {
    display: inline-block;
    background: #E0E0E0;
    color: #777;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
    cursor: pointer;
}

    .projcard-tag::before {
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
        height: 6px;
        left: 10px;
        width: 6px;
        top: 10px;
    }

    .projcard-tag::after {
        content: '';
        position: absolute;
        border-bottom: 13px solid transparent;
        border-left: 10px solid #E0E0E0;
        border-top: 13px solid transparent;
        right: -10px;
        top: 0;
    }


/*endcards*/

a.link-none {
    color: black;
    text-decoration: none;
}

article.card-text {
    text-align: justify
}

.card-header h1 {
    font-size: 3.6rem;
}
.card-header h2 {
    font-size: 2.6rem;
}
.card-header h3 {
    font-size: 2rem;
}

.nav-container {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 70px;
}

.sticky {
    position: fixed;
    top: 0;
}

/*
    const nav = document.querySelector(".tabs-container");

const offset = nav.offsetTop;

window.addEventListener("scroll", function () {
  if (window.scrollY >= offset) {
    nav.classList.add("sticky");
  } else {
    nav.classList.remove("sticky");
  }
});
*/
select.form-select.page-select {
    border-radius: 0;
}

.vw-50{
    width:50vw;
}
.vh-50{
    height: 50vh;
}
.h-fit {
    min-height: calc(100vh - 91px - 70px);
}
.text-card-body p {
    font-weight: 400;
    line-height: 1.25;
}

.news {
    background-color: #1E1E1E;
    color: #CCCCCC;
}
.news-article {
    padding: 0 2.5rem;
}

.news-article img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    
    .card-header h1 {
        font-size: 2.5rem !important;
    }
    .news-article {
    padding: 0;
}
    .news-article img{
       max-width: 100%;
       max-height: fit-content;
    }
}

/* ============================ */
/* Carrousel de clientes */
/* ============================ */
@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none
}

    .logos.paused .logo_items {
        animation-play-state: paused;
    }
/*.logos:before, .logos:after {
        position: absolute;
        top: 0;
        content: '';
        width: 250px;
        height: 100%;
        z-index: 2;
    }*/

/*  .logos:before {
            left: 0;
            background: linear-gradient(to left, rgba(255,255,255,0),var(--color-background));
        }

        .logos:after {
            right: 0;
            background: linear-gradient(to right, rgba(255,255,255,0), var(--color-background));
        } */

.logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
}


.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    margin-right: 1em;
    object-fit: contain;
    width: 360px;
    max-width: 30%;
}
/* ============================ */
/* FIN Carrousel de clientes */
/* ============================ */
