/*------------------------------------------------------------------
[Main Stylesheet]

Author: AtypicalThemes
Template: STRIDER 2 - Video Game Studio

-------------------------------------------------------------------
Table of contents

    -General
    -Loading Screen
    -Cookie Management
    -Header & Navigation
    -Hero Section
    -Games Section
    -About Section
    -Newsletter Section
    -Careers Section
    -Contact Section
    -Footer
    -Careers Page
    -Policy Pages
    -404 Page

Colors used:
    #FF1B48

-------------------------------------------------------------------*/

/* --------------------------- /////////// GENERAL /////////// --------------------------- */

.social-links {
    margin-top: 0.625rem;
}

.social-links li {
    display: inline;
    margin-right: 0.9375rem;
}

.social-links li i {
    transition: 0.3s;
}

/* -Link Styling- */
a {
    color: #000;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
}

a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #FF1B48;
    text-decoration: none;
}

a:active {
    color: #FF1B48;
    text-decoration: underline;
}

a:focus {
    color: #FF1B48;
    text-decoration: none;
}
a:link {
    color: #FFF;
    text-decoration: none;
}

/* -Resets- */
html, body {
    background-color: #FFF;
    color: #000;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem; /* 16px */
    padding: 0.3125rem 0.3125rem 0.3125rem 0;
    font-weight: 400;
}

.loader-logo, #main-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.5rem;
}

q {
    font-style: italic;
}

.strong {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.capitalized {
    text-transform: capitalize;
}

.spaced {
    letter-spacing: 0.3125rem;
}

.subtle {
    color: #575757;
}

.highlight {
    color: #FF1B48;
}

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

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

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

ul {
    margin: 0.625rem 0;
    list-style: none;
    padding: 0;
}

/* -Margins and Floats- */
.floated-left {
    float: left;
}

.floated-right {
    float: right;
}

.inline {
    display: inline;
}

.tiny-margin {
    margin-bottom: 3rem;
}

.small-margin {
    margin-bottom: 6rem;
}

.medium-margin {
    margin-bottom: 8rem;
}

.large-margin {
    margin-bottom: 12rem;
}

/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background-color: #FF1B48;
    margin: 1.5625rem auto;
}

/* -General Button Styles */
button {
    outline: none !important;
}

.button {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    text-align: center;
    background-color: #e58296;
    color: #FFF;
    border: 1px solid #FF1B48;
    transition: 0.2s;
}

a.button {
    color: #FFF;
}

.button:hover {
    background-color: #FFF;
    border: 1px solid #000;
    color: #000;
}

.help-block {
    font-size: 0.75rem;
}

.heading p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.heading h1, .heading h2 {
    margin-bottom: 1rem;
}

/* --------------------------- /////////// LOADING SCREEN /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
    overflow: hidden;
}

#loader-wrapper .flex-wrapper {
    width: 100%;
}

.loader-logo {
    color: #FFF;
    font-size: 3rem;
}

#progress {
    width: 0;
    height: 2px;
    background: #e58296;
}

.loader-text {
    color: #FFF;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* -Loading Screen Animation- */
.content-loaded {
    transform: translate3d(0px, -100%, 0px);
    transition: all 0.5s ease;
}

/* --------------------------- /////////// COOKIE MANAGEMENT /////////// --------------------------- */
#policy-message, .policy-notice-bar {
    position: fixed;
    width: 100%;
    background-color: #111;
    color: #fff;
    z-index: 1060;
    transition: 0.5s ease;
}

#policy-message {
    bottom: -50%;
    height: 60px;
    padding: 12px;
    text-align: center;
}

#policy-message.open {
    bottom: 0;
}

.policy-notice-bar {
    height: auto;
    bottom: -50%;
    padding: 1rem;
}

.open {
    display: block;
    bottom: 0;
}

.policy-notice-bar p, #policy-message p {
    display: inline-block;
    margin-bottom: 0;
}

.policy-notice-bar a, #policy-modal a {
    color: #FF1B48;
}

.policy-notice-bar .close, #close-policy-message {
    background-color: #FFF;
    color: #000;
    float: right;
}

.policy-bar-buttons {
    display: inline-block;
}

.policy-notice-bar button {
    display: inline-block;
    margin-left: 1rem;
}

.policy-notice-bar button, .policy-notice-bar .close, #close-policy-message {
    padding: 5px 10px;
    transition: 0.3s;
    border: none;
}

.policy-notice-bar button:hover, .policy-notice-bar .close:hover, #close-policy-message:hover {
    background-color: #e58296;
    color: #FFF;
}

.checkbox-wrapper {
    margin: 1rem 0;
}

#policy-modal .modal-content {
    background-color: #111;
}

#policy-modal button {
    border-radius: 0;
}

#policy-modal .form-check {
    margin-bottom: 1rem;
}

/* --------------------------- /////////// HEADER & NAVIGATION /////////// --------------------------- */
#main-logo {
    max-height: 100px;
    width: auto;
    margin: 0;
    color: #FFF;
}

#main-logo:hover {
    color: #FFF;
}

.navbar {
    height: auto;
    background-color: #111;
    padding: 0.5rem;
}

.navbar-nav {
    margin-top: 0;
    margin-right: 1rem;
}

.nav-item {
    font-family: 'Quicksand', sans-serif;
}

a.nav-link {
    color: #FFF;
}

.nav-link:hover {
    color: #FF1B48;
}

.socials {
    margin-left: 1rem;
}

.socials li {
    display: inline;
    margin-right: 1rem;
}

.socials li a {
    transition: 0.3s;
    color: #FFF;
}

.socials li a:hover {
    color: #FF1B48;
}

/* Menu icon for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
.navbar-toggler:focus {
    box-shadow: none;
}

#hamburger .icon-bar {
    display: block;
    height: 0.125rem;
    width: 1.5625rem;
    background: #FFF;
    margin: 0.4375rem 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);
}

/* --------------------------- /////////// HERO SECTION /////////// --------------------------- */
#hero-carousel .carousel-item {
    height: 100vh;
    background-color: #000;
}

#hero-carousel .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-caption.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.hero-caption {
    position: absolute;
    bottom: 5rem;
    left: 10%;
    color: #FFF;
}

.line {
    width: 100%;
    height: 5px;
    background-color: #bbbbbb;
    margin: 0;
}

/* Progress bar container */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Progress bar filler */
.carousel-progress .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #bbbbbb;
    transition: width linear;
}

/* Here you can set a different font for each game title */
#game-1-heading {
    font-family: 'Quicksand', sans-serif;
}

#game-2-heading {
    font-family: 'Quicksand', sans-serif;
}


.hero-caption h1, .hero-caption h2, .hero-caption p {
    text-shadow: 2px 2px 4px #333;
}

.hero-caption h2 {
    font-size: 4rem;
}
/* --------------------------- /////////// GAMES SECTION /////////// --------------------------- */
.locations-section .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-image {
    height: 100%;
    object-fit:fill;
}

.locations-section .text-box {
    display: block;
    width: 85%;
    height: auto;
}

.locations-section .text-box p:not(.heading p) {
    line-height: 25px;
}

.locations-section .text-box .button {
    margin-top: 1rem;
}

/* --------------------------- /////////// ABOUT SECTION /////////// --------------------------- */
.about-section .col-lg-6:has(.text-box) {
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 720px;
    height: auto;
    padding: 2rem;
}

.ideals {
    padding: 7rem 5rem;
    text-align: center;
}

.about-section .text-box {
    height: auto;
    width: 60%;
}

.about-section img {
    width: 100px;
    margin-bottom: 1rem;
}

.subtle-background {
    background-color: #F5F5F5;
}

/* --------------------------- /////////// NEWSLETTER SECTION /////////// --------------------------- */
.FAQ-section {
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.FAQ-section summary{
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    outline: none;
    list-style: none;
}

.FAQ-section details{
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.FAQ-section p {
    padding: 10px;
    margin: 0;
}

.FAQ-section .col-lg-12 {
    display: flex;
    justify-content: left;
}

.FAQ-perks {
    width: 80%;
    justify-self: center;
    margin: 2rem 0;
}

.FAQ-perks li {
    display: block;
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 0 1rem 3rem;
}

.FAQ-container h2 {
    justify-self: center;
}

#FAQ {
    width: 90%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #FF1B48;
    margin-right: 5px;
}

#FAQ:focus {
    outline: none;
    border-bottom-width: 2px;
}

#FAQForm label {
    margin-top: 1rem;
}

#FAQForm a {
    font-weight: bold;
}

.FAQ-button {
    border: 1px solid #FF1B48;
    background-color: #e58296;
    color: #FFF;
    transition: 0.3s;
    padding: 10px 15px;
}

.FAQ-button:hover {
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
}


/* --------------------------- /////////// CAREERS SECTION /////////// --------------------------- */
.careers-section .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 720px;
    height: auto;
    background-color: #F9F9F9;
}

.careers-image {
    background-image: url(../images/careers_section_bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.careers-section .text-box {
    width: 60%;
}

.careers-section .text-box h2 {
    margin-bottom: 1rem;
}

/* --------------------------- /////////// CONTACT SECTION /////////// --------------------------- */
.contact-section {
    padding: 5rem 0 0 0;
}

.contact-section h2 {
    margin-bottom: 0;
}

.contact-section .text-box {
    width: 60%;
}

.contact-section .col-lg-6 {
    display: flex;
    justify-content: center;
}

#contactForm {
    margin-top: 1rem;
}

#contactForm input {
    margin-bottom: 1.5rem;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #FF1B48;
    height: 36px;
    outline: none;
}

#contactFrom input p.subtle  {
    margin-bottom: 1.5rem;
}

#contactForm textarea {
    height: 100px;
}

#contactForm input:focus, #contactForm textarea:focus {
    border-width: 3px;
}

input,
textarea,
select {
    transition: background-color 9999s ease-in-out 0s !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #FFF inset !important;
    -webkit-text-fill-color: #000 !important;
}


.company-info {
    margin-top: 2rem;
}

.company-info li a {
    color: #000;
}

.company-info li a:hover {
    text-decoration: underline;
}

.company-info li i {
    padding: 1rem;
    min-width: 50px;
    background-color: #F9F9F9;
    color: #FF1B48;
    margin: 0 1rem 1rem 0;
}

#map-canvas {
    width: 100%;
    height: 450px;
    background-color: #999;
}

/* --------------------------- /////////// FOOTER /////////// --------------------------- */
#main-footer {
    height: auto;
    background-color: #111;
    color: #FFF;
}

.footer .col-lg-3 {
    display: flex;
}

.footer .col-lg-3:first-of-type {
    justify-content: flex-start;
}

.footer .col-lg-3:last-of-type {
    justify-content: flex-end;
}

.footer p, .footer ul {
    margin: 1rem 0;
}

.footer .socials {
    display: flex;
    align-items: center;
}

#copyright {
    display: inline;
}

.footer-links {
    padding-top: 4px;
}

.footer-links li {
    display: inline;
    font-size: 14px;
    margin: 0 12px;
}

.footer-links li a {
    color: #FFF;
}

.footer-links button {
    background: none;
    border: none;
    color: #FFF;
}

.footer-links li a, .footer-links button {
    transition: 0.3s;
}

.footer-links li a:hover, .footer-links button:hover {
    color: #e58296;
}

/* --------------------------- /////////// CAREERS PAGE /////////// --------------------------- */
.careers-page-hero {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

.about-us p {
    width: 60%;
    margin: 0 auto
}

.company-perks .col-lg-6 {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-perks .col-lg-6:has(.text-box) {
    background-color: #F9F9F9;
}

.company-perks .text-box {
    width: 40%;
}

.perk-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#perk-1 {
    background-image: url(../images/perk1_image.webp);
}

#perk-2 {
    background-image: url(../images/perk2_img.webp);
}

#perk-3 {
    background-image: url(../images/game1_bg.webp);
}

.ceo-quote {
    padding: 5rem 0;
}

.quote {
    font-size: 2.5rem;
    font-weight: 500;
}

.open-positions {
    background-color: #F9F9F9;
    padding: 5rem 0 12rem 0;
}

.open-positions h2 {
    margin-bottom: 3rem;
}

.job-card {
    background-color: #FFF;
    padding: 3rem;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
    transition: 0.3s;
}

.job-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.10);
}

.modal-body ul {
    padding: 0;
}

.modal-title {
    margin-bottom: 0 !important;
}

.skill-list li {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 5px 15px 7px 15px;
    margin: 5px 5px;
}

.modal-header button {
    background-color: #FFF;
    border: 1px solid #000;
}

.job-requirements li:before {
    content: "\f101";
    color: #000;
    display: inline-block;
    width: 1rem;
    margin-left: -10px;
    font-family: fontawesome;
}

.job-requirements li {
    display: block;
    margin: 10px;
}

.job-requirements li p {
    padding: 0 10px;
    display: inline;
}

/* --------------------------- /////////// POLICY PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
}

.extra-page .hero-section {
    align-items: center;
    min-height: auto;
    background: #222;
}

.extra-page h3 {
    font-size: 1.5rem;
}

.extra-page a:not(.button, .socials li a) {
    color: #FF1B48;
}

.extra-page a:hover:not(.button, .socials li a) {
    color: #FF1B48;
    text-decoration: underline;
}

.extra-page .hero-unit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25rem;
    height: auto;
    width: 100%;
    border: none;
}

.extra-page h1 {
    font-size: 3.5rem;
}

.extra-page h2 {
    font-size: 1.8rem;
}

.text-container ul {
    list-style: circle;
    margin-left: 2.5rem;
}

.text-container ul li {
    margin: 0.3125rem 0;
}

.text-container ol li {
    margin: 0.3125rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    background: #171717;
    border: none;
    height: 3.75rem;
}

.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    padding-left: 1rem;
}

.breadcrumb-item.active {
    color: #999;
}

.breadcrumb-item.active::before {
    color: #999;
}

.form-control {
    height: 2.8125rem;
    width: 100%;
    background: #222;
    border: none;
    outline: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    background: #222;
    border: none;
    outline: 1px solid #FFF;
    color: #fff;
}

.form-control-select {
    width: 100%;
    height:2.8125rem;
    background: #333;
    border: none;
    outline: 1px solid #333;
    color: #fff;
    padding: 0 0 0 1.25rem;
}

.checkbox {
    font-size: 0.875rem;
}

.checkbox input {
    width: auto;
    height: auto;
    vertical-align: -5%;
    margin-right: 0.375rem;
}

#privacyForm .button {
    width: 100%;
    margin-top: 0;
    height: 3.125rem;
    font-size: 1.1rem;
}

.form-container {
    flex-basis: 100%;
}

#privacyForm input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 4px;
    background: #333;
    padding: 0 0 0 20px;
    color: #FFF;
}

#privacyForm input:focus {
    outline: 2px solid #FF1B48;
}

#privacyForm .form-group {
    margin-bottom: 1rem;
}

#footer-extra {
    padding-top: 1.5625rem;
    padding-bottom: 8px;
    border-top: 1px solid #FF1B48;
    background-color: #111;
    color: #FFF;
}

#footer-extra .socials {
    margin-left: 0;
}

#footer-extra .socials li a {
    margin-bottom: 10px;
}

#footer-extra .socials li a:hover {
    text-decoration: none;
    color: #FF1B48;
}

#footer-extra #copyright {
    font-size: 14px;
    padding: 0;
}


/* --------------------------- /////////// 404 PAGE /////////// --------------------------- */
.error-page {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../images/404-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #FFF;
}

.error-page .col-lg-12 {
    display: flex;
    justify-content: center;
    text-align: center;
}

.error-page h1 {
    font-size: 10rem;
    margin-bottom: 0;
}

.error-page p {
    font-size: 1.5rem;
    padding-top: 0;
    margin-bottom: 2rem;
}

/* --------------------------- /////////// RESPONSIVE STYLES  /////////// --------------------------- */
@media (max-width : 1440px) {
    .job-card {
        width: 100%;
    }

    .hero-caption h1, .hero-caption h2 {
        font-size: 2rem;
    }
}

@media (min-width : 1024px) and (max-width : 1440px) {
    .about-section .text-box, .locations-section .text-box, .careers-section .text-box, .company-perks .text-box, .contact-section .text-box {
        width: 70%;
    }

    .locations-section .text-box {
        padding: 1rem 0;
    }

    .company-info .label {
        display: none;
    }

    .company-info li i {
        min-width: 0;
    }

}

@media (max-width : 1200px) {
    .policy-bar-buttons, .policy-notice-bar .close {
        margin-top: 10px;
    }
}

@media (max-width : 1023px) {
    .order-xs-1 {
        order: 1 !important;
    }

    .order-xs-2 {
        order: 2 !important;
    }


    .navbar {
        position: relative;
    }

    .navbar .socials {
        margin-left: 0;
    }

    .locations-section .text-box, .about-section .text-box, .careers-section .text-box {
        width: 100%;
        padding: 4rem 2rem;
    }

    .company-perks .text-box {
        padding: 4rem 1rem;
    }

    .job-card {
        margin-bottom: 2rem;
    }

    #contactForm {
        margin-bottom: 4rem;
    }

    .FAQ-perks {
        justify-self: flex-start;
    }

    .FAQ-perks li {
        margin-left: 0;
    }

    .footer .col-lg-3 {
        justify-content: center !important;
    }

    #footer-extra .col-md-4 {
        justify-content: center !important;
        text-align: center;
        padding-bottom: 2rem;
    }
}

@media (max-width : 767px) {
    .about-us h1 {
        font-size: 3rem;
    }

    .company-logo {
        width: 80%;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section .text-box, .company-perks .text-box, .contact-section .text-box {
        width: 100%;
    }

    .about-section .col-lg-6, .careers-section .col-lg-6 {
        min-height: auto !important;
    }

    .careers-page-hero {
        margin-top: 3rem;
    }

    .quote {
        padding: 1rem;
    }

    .FAQ-perks li {
        margin-left: 0;
    }

    #policy-bar button {
        display: block;
        margin-top: 1rem;
        margin-left: 0;
    }

    #close-policy-bar {
        float: none;
    }

    #close-policy-message {
        float: none;
        margin-top: 10px;
    }
}

@media (max-width : 692px) {
    #policy-message {
        height: 150px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .hero-caption {
        left: 50%;
        bottom: 50%;
        transform: translate(-50%, 50%);
        text-align: center;
    }

    .hero-caption a {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width : 480px) {
    .hero-caption h1 {
        font-size: 2rem;
    }

    #main-footer .socials {
        float: none;
        margin-top: 1rem;
    }

    .footer-links li {
        display: block;
        margin-bottom: 8px;
    }

    .company-info .label {
        display: none;
    }

    .company-info li i {
        padding: 0;
        min-width: 0;
    }
}