.faq-q {
    margin-top: 50px;
    color: #fff;
    text-shadow: 2px 2px 0px #000;
    background-color: #fb9419;
    border-color: #fb9419;
    font-family: rubik, sans-serif !important;
    padding: 0px 7px;
}

.faq-a {
    background-color: #131421CC;
    font-family: rubik, sans-serif !important;
    color: #fff;
    padding: 20px 7px 10px;
}

#faq {
    margin-top: 100px;
}

#country {
    margin-bottom: 10px;
}

.first-object {
    position: inherit;
    margin-top: 70px;
}

#success {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
    background-color: darkgreen;
    border-radius: 20px;
}

#failure {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
    background-color: #660000;
    border-radius: 20px;
}

html {
    font-size: 1.25em;
}

h1 {
    font-size: min(9vh, 10vw);
}

h2 {
    font-size: 1.5rem;
    margin: 0px;
}

a {
    color: #fb9419;
}

a:hover {
    color: #a4b3e5;
}

.darken-bg {
    display: flex;
    flex-direction: column;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #11111180;
    overflow-y: auto;
}

.bg-01 {
    background: url(images/01.webp);
}

.bg-02 {
    background: url(images/02.webp);
}

.bg-03 {
    background: url(images/03.webp);
}

.bg-base {
    position: absolute;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: body-size-anim;
    animation-duration: 0.80s;
    width: 100%;
    height: 100%;
}

@keyframes body-size-anim {
    from {
        transform: scale(1.75, 1.75);
    }

    to {
        transform: scale(1, 1);
    }
}

.body-base {
    animation-name: body-size-anim;
    animation-duration: 0.5s;
}

.headlines-container {
    display: block;
    float: left;
    padding-top: 2vh;
    padding-left: 5vw;
    color: rgb(255, 255, 255);
    font-family: rubik, sans-serif !important;
    line-height: 1.2;
}

.store-buttons {
    display: block;
    float: right;
    padding-top: 2vh;
    padding-right: 10vw;
    padding-bottom: 10px;
    text-align: center;
}

#title-text {
    color: rgb(255, 255, 255);
    text-shadow: 5px 5px 0px #000;
    margin-bottom: .5rem;
    line-height: 1.2;
    font-size: min(8vh, 10vw);
    font-weight: 600;
}

.sub-title {
    font-family: rubik, sans-serif;
    line-height: 1.5;
    color: #fff;
    font-size: min(3vh, 4vw);
    font-family: rubik, sans-serif !important;
    box-sizing: border-box;
}

.button-centerer {
    clear: both;
    display: block;
    text-align: center;
    width: 100%;
}

.button-container {
    display: inline;
    left: 10vw;
    color: rgb(255, 255, 255);
    font-family: rubik, sans-serif !important;
    line-height: 1.2;
}

.airwar-btn-primary {
    display: inline-block;
    color: #fff;
    background-color: #131421;
    border-color: #131421;
    border-width: 0px;
    margin-bottom: 10px;
    min-width: 160px;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
    white-space: pre;
}

.airwar-btn-primary:hover {
    color: #fff;
    background-color: #fb9419;
    border-color: #fb9419;
}

.airwar-btn-trailer {
    color: #fff;
    background-color: #fb9419;
    border-color: #fb9419;
}

.top-right-back-btn {
    position: fixed;
    top: 8px;
    right: 4vw;
    min-width: 10vw;
}

/* For some reason on mobile the footer is not visible so we use reactive
   to have the separator expand on Desktop, and just be a small bump on mobile
*/
.footer-separator {
    flex: 1;
}

@media (max-aspect-ratio: 1/1) {
    .footer-separator {
        flex: unset;
        min-height: 40px;
    }
}

.footer {
    display: flex;
    color: #fff;
    background-color: #131421;
    width: 100%;
    height: fit-content;
}

.footer-obj {
    display: inline;
    font-size: 0.7rem;
}

.footer button {
    display: inline-block;
    border-width: 0px;
    min-width: 80px;
    text-align: center;
    color: #fff;
    background-color: #131421;
}

.footer button:hover {
    background-color: #fb9419;
}

.footer img {
    min-width: 22px;
    height: 20px;
    padding: 2px 5px;
    margin: 0px 10px;
}

.footer img:hover {
    background-color: #fb9419;
}


/* ================= CAROUSEL ================= */

/* Slideshow container */
.slideshow-center-container {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    padding-top: 20px;
}

@media (max-aspect-ratio: 1/1) {
    .slideshow-center-container {
        padding-top: 40px;
    }
}

.slideshow-container {
    position: relative;
    margin: auto;
    width: fit-content;
    height: fit-content;
    flex: 1;
}

/* Hide the images by default */
.slide-element {
    display: none;
    height: fit-content;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: relative;
    width: auto;
    padding: 48px 16px;
    color: orange;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Position the "next button" to the right */
.next {
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel-desc-bottom {
    font-size: 0.75em;
    position: absolute;
    bottom: 16px;
    width: 100%;
    text-align: center;
}

.carousel-desc-top {
    font-size: 0.75em;
    position: absolute;
    top: 16px;
    width: 100%;
    text-align: center;
}

.carousel-text {
    background-color: #111111BB;
    padding: 10px;
}

.carousel-img {
    display: inline;
    width: 100cqmin;
}

@media (min-aspect-ratio: 1/1) {
    .carousel-img {
        width: 65cqw;
        height: unset;
    }
}

/* Fading animation */
.myFade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

figure {
    display: flex;
    flex-flow: column;
    padding: 5px;
    margin: auto;
    margin-bottom: 20px;
}

figcaption {
    background-color: #222222;
    color: white;
    font: italic smaller sans-serif;
    padding: 3px;
    text-align: center;
}

pre {
    background: #1e1e1e;
    color: #e4e4e4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

pre:code {
    font-family: inherit;
}

code {
    color: rgb(245, 244, 180);
}