/*
    Common
 */

:root {
    --mainColor: #002153;
    --headerColor: #00182d;
    --franceRed: #cf0921;
}

* {
    font-family: Garamond;
    box-sizing: border-box;
}

body {
    margin: 0;
}

.logo {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    border: 3px solid white;
}

.logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 40px;
}

header {
    width: 100%;
    background-color: var(--mainColor);
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

header > h1 {
    width: 100%;
    text-align: center;
}

header > h1 a {
    color: white;
    text-decoration: none;
}

.header-link {
    color: white;
    text-decoration: none;
}

main {
    overflow: hidden;
    min-height: 100vh;
}

.menu {
    list-style: none;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #333333;
    background-color: var(--franceRed);
    padding: 20px;
}

.menu > li {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

.menu > li a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

footer {
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--mainColor);
    position: relative;
    bottom: 0;
    left: 0;
}


/*
    Home Page
 */

.video-container {
    width: 100vw;
    overflow: hidden;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.main-container {
    width: 100vw;
    overflow: hidden;
    height: 500px;
    background-color: var(--mainColor);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    position: relative;
}

.image-container {
    width: 100vw;
    height: 700px;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.container-inner-text {
    left: 10%;
    bottom: 10%;
    padding: 20px 40px;
    background-color: rgba(255, 0, 0, .6);
    color: white;
    position: absolute;
    font-weight: bold;
    font-size: 48px;
    box-shadow: 0 0 10px black;
}


/*
    Map Page
 */

.map-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.map-container-left {
    width: 100%;
}

.map-container-right {
    width: 100%;
    height: 100%;
}

svg {
    height: 700px;
    width: 100%;
}

.magnifier {
    width: 100px;
    height: 100px;
    border: 3px solid black;
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
    display: none;
    overflow: hidden;
}

.place-title {
    font-size: 36px;
    text-align: center;
}

.place-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
}

.place-content > img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/*
    Views Page
 */
.time-image-container {
    width: 100vw;
    height: 700px;
    position: relative;
}

.time-image-left, .time-image-right {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    top: 0;
    left: 0;
}

.time-image-left {
    z-index: 0;
}

.time-image-right {
    z-index: 1;
}

.time-line {
    width: 5px;
    height: 100%;
    position: absolute;
    background-color: black;
    cursor: pointer;
    top: 0;
    left: 50%;
    z-index: 2;
    font-size: 22px;
}

.time-line-before {
    position: absolute;
    top: 50%;
    left: calc(50% - 2.5px);
    background-color: #aaa;
    color: white;
    transform: translate(-100%, -100%);
    padding: 0 10px;
    user-select: none;
}

.time-line-after {
    position: absolute;
    top: 50%;
    left: calc(50% + 2.5px);
    background-color: #aaa;
    color: white;
    transform: translate(0, 0);
    padding: 0 10px;
    user-select: none;
}

.slide-container {
    display: flex;
}

.slide-container > article {
    width: 10%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.5s linear;
    cursor: pointer;
    position: relative;
}

.dark-face {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    pointer-events: none;
    transition: .5s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
}

/*
    Industry Page
 */

.circle-container {
    width: 100vw;
    margin-top: 30px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.circle-inner-container {
    transform-style: preserve-3d;
    width: 200px;
    height: 200px;
    margin-left: 220px;
    margin-right: 220px;
    transition: .5s linear;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: absolute;
}

.left-arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    padding: 3px;
    transform: rotate(135deg);
    cursor: pointer;
}

.right-arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    padding: 3px;
    transform: rotate(-45deg);
    cursor: pointer;
}

.story-container {
    display: flex;
    justify-content: center;
    background-color: var(--mainColor);
    color: white;
}
.story-container > * {
    flex: 1;
}

.row-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.row-container > * {
    flex: 1;
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-body {
    padding: 50px;
}

#industry-image {
    width: 100%;
    height: 700px;
    background-size: cover;
}

#story-title {
    font-size: 36px;
}

#story-content {
    font-size: 24px;
}