@font-face {
font-family: "Platform";
src: url("../font/Platform-Regular-Web.eot");
src:
url("../font/Platform-Regular-Web.woff") format("woff"),
url("../font/Platform-Regular-Web.ttf") format("ttf"),
url("../font/Platform-Regular-Web.svg") format("svg");
}
@font-face {
font-family: "Platform Medium";
src: url("../font/Platform-Medium-Web.eot");
src:
url("../font/Platform-Medium-Web.woff") format("woff"),
url("../font/Platform-Medium-Web.ttf") format("ttf"),
url("../font/Platform-Medium-Web.svg") format("svg");
}
/* if portrait mode is detected, show warning
/*@media (orientation: portrait) {

  html body {
    overflow: hidden;
  }

  .force-landscape {
    display:flex;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    color: #000;
    position: absolute;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99;
  }

  .force-landscape h2 {
    font-weight: 700;
    margin-top:1em;
    padding:0;
  }

  @keyframes pulse_mobile {
    0% { transform: scale(1); }
    30% { transform: scale(1); }
    40% { transform: scale(1.08); }
    50% { transform: scale(1); }
    60% { transform: scale(1); }
    70% { transform: scale(1.05); }
    80% { transform: scale(1); }
    100% { transform: scale(1); }
  }

  .force-landscape img {
    width: 200px;
    height:auto;
    animation: pulse_mobile 0.8s infinite;
  }

}*/

/*if landscape mode is active, hide warning */
@media (orientation: landscape) {
  .force-landscape {
    display:none;
  }
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    width: 100%;
    height: 100vh;
    background: #222;
    overflow: hidden;
    font-family: 'Platform'
}
.hide {
    display: none !important;
}
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  position: fixed;
}
header {
    z-index: 2;
    position: fixed;
    background: white;
    padding: 20px 30px;
    left: 0;
    right: 0;
    top: -100%;
    width: 100%;
    transition: 0.5s linear;
}
header.show {
    top: 0;
}
.logo {
    display: inline-block;
    font-size: 0;
}

.logo img {
    max-height: 104px;
    height: 100%;
}
.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-links li {
    display: inline-block;
}

.social-links li:not(:last-child) {
    margin-right: 25px;
}

.social-links li a {
    font-size: 0;
    display: inline-block;
    color: black;
}

.social-links li a i {
    font-size: 35px;
}
.social-links li a:hover {
    color: #3b5998;
}
.social-links li:first-child a:hover {
    color: #8a49a1;
}
.social-links li:last-child a:hover {
    color: #0077b5;
}
.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.dep_wrapper {
    position: fixed;
    left: 0;
    top: 10%;
    display: flex;
    align-items: flex-start;
    transition: 1s linear;
    left: -100%;
    margin-left: 10vw;
}
.js--fast-forward .dep_wrapper {
    display: none;
}
.dep_wrapper.enter {
    left: 0;
}
.dep_wrapper.enter .dep-desc {
    opacity: 1;
}
.dep-name {
    background: #f20017;
    color: white;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Platform Medium';
    padding: 0 10px;
    position: relative;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.5);
}
.dep-desc {
    margin: 0 0 0 10px;
    list-style: none;
    opacity: 0;
    position: relative;
    padding: 0 10px;
    transition: 0.3s linear;
    transition-delay: 1s;
}
.dep-desc li {
    font-size: 32px;
    background: white;
    padding: 0 10px;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    transition: 0.5s linear;
    transition-delay: 1.1s;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.5);
}
.enter .dep-desc li:first-child {
    z-index: 5;
    top: calc(0 * 43px);
}

.enter .dep-desc li:nth-child(2) {
    z-index: 4;
    top: calc(1 * 43px);
}

.enter .dep-desc li:nth-child(3) {
    z-index: 3;
    top: calc(2 * 43px);
}

.enter .dep-desc li:nth-child(4) {
    z-index: 2;
    top: calc(3 * 43px);
}

.enter .dep-desc li:nth-child(5) {
    z-index: 1;
    top: calc(4 * 43px);
}
.vr-line {
    display: inline-block;
    height: 100px;
    position: absolute;
    width: 2px;
    background: white;
    left: calc(50% - 1px);
    top: calc(100% + 5px);
}

.hr-line {
    display: inline-block;
    height: 40vh;
    position: absolute;
    width: 2px;
    background: white;
    left: calc(50% - 1px);
    top: calc(100% + 105px);
    transform: rotate(-45deg);
    transform-origin: top;
    transition: 0.3s linear;
}
.contact-popup {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
}

.contact_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 60px 80px;
    width: calc(100% - 60px);
    max-width: 1000px;
}

.contact-details > * {
    display: block;
    color: black;
}

.contact-popup h2 {
    color: white;
    text-transform: uppercase;
    background: #f20017;
    margin: 0 10px 5px 0;
    padding: 0 10px;
    font-size: 22px;
    display: inline-block;
}

.contact-details a {
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 5px;
}

.contact-details span {
    font-size: 19px;
}

.what {
    font-size: 20px;
    width: 70%;
}
/***********FIRST CAPTION************/
#first .hr-line {
    transition: 0.7s linear;
}
#first .hr-line.short {
    height: 25vh;
}
#first .hr-line.move {
    transform: rotate(45deg);
}
/********END OF FIRST CAPTION********/

/***********SECOND CAPTION************/
#second .dep-name {
    max-width: 500px;
}
#second .hr-line {
    transition: 1s linear;
}
#second .hr-line.short {
    height: 20vh;
}
#second .hr-line.straight {
    transform: rotate(0deg);
}
#second .hr-line.move {
    transform: rotate(45deg);
}
/********END OF SECOND CAPTION********/

/***********FORTH CAPTION************/

#forth .hr-line {
    transition: 1s linear;
}
#forth .hr-line.short {
    height: 20vh;
}
#forth .hr-line.straight {
    transform: rotate(0deg);
}
#forth .hr-line.move {
    transform: rotate(45deg);
}
/********END OF FORTH CAPTION********/

/***********fifth CAPTION************/

#fifth .hr-line {
    transition: 1s linear;
}
#fifth .hr-line.short {
    height: 20vh;
}
#fifth .hr-line.straight {
    transform: rotate(0deg);
}
#fifth .hr-line.move {
    transform: rotate(45deg);
}
/********END OF fifth CAPTION********/

@keyframes pulse {
    from {transform:scale(1);}
    to {transform:scale(1.1);}
}
.scroll-message_wrapper {
    position: fixed;
    z-index: 1;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition-delay: 0.5s;
    transition: 1s linear;
}
.scroll-message_wrapper.down {
    bottom: -100vh;
}
.scroll-icon img {
    height: 100px;
    animation: pulse 0.5s alternate linear infinite ;
}

.scroll-message_wrapper span {
    color: white;
    font-size: 20px;
    display: inline-block;
    margin-top: 10px;
}
.replay-btn,
.fast-forward {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;
    text-align: center;
}

.fast-forward i,
.replay-btn i {
    cursor: pointer;
    background: white;
    color: #000;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
}
.fast-forward.active i ,
.fast-forward i:hover,
.replay-btn i:hover {
    color: #f20017;
}
.fast-forward {
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 3
}
.gdpr {
    font-size: 20px;
    text-decoration: none;
    color: black;
    margin-top: 30px;
}
.gdpr:hover {
    color: #f20017;
}
.social-links_wrapper {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: flex-end;
}
.soon {
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 100px;
    font-size: 20px;
}
@media(max-width: 1200px){
    .navbar {
        align-items: center;
    }
    .dep-name {
        font-size: 24px;
    }
    .dep-desc li {
        font-size: 20px;
    }
    .enter .dep-desc li:nth-child(2) {
        z-index: 4;
        top: calc(1 * 28px);
    }
    .enter .dep-desc li:nth-child(3) {
        z-index: 3;
        top: calc(2 * 28px);
    }
    .enter .dep-desc li:nth-child(4) {
        z-index: 2;
        top: calc(3 * 28px);
    }
    .enter .dep-desc li:nth-child(5) {
        z-index: 1;
        top: calc(4 * 28px);
    }
    #second .dep-name {
        max-width: 300px;
    }
}
@media(max-width: 1024px){
    .logo img {
        max-height: 60px;
    }
    .gdpr {
        margin-top: 5px;
    }
}
@media(max-width: 800px){
    .soon {
        font-size: 16px;
    }
    .what {
        font-size: 16px;
    }
    .scroll-icon img {
        height: 50px;
    }
    .scroll-message_wrapper span {
        font-size: 16px;
    }
    .dep_wrapper {
        top: 15vh;
        flex-direction: column;
    }
    .dep-desc {
        margin-left: 0;
        margin-top: 10px;
    }
    .vr-line,
    .hr-line {
        display: none;
    }
    .contact_content {
        padding: 30px;
        font-size: 16px;
        margin-top: -20px;
    }
    .contact-details a {
        font-size: 16px;
    }
    .contact-details span {
        font-size: 13px;
    }
    .logo img {
        max-height: 40px;
    }
}

@media (orientation: portrait) {
    .replay-btn {
        bottom: auto;
        top: 5vh;
    }
    .fast-forward i {
        font-size: 18px;
    }
    .fast-forward {
        top: 15px;
        right: 15px;
        transform: none;
    }
    .social-links li a i {
        font-size: 22px;
    }
    .social-links li:not(:last-child) {
        margin-right: 10px;
    }
    .scroll-message_wrapper {
        /*bottom: 100px;*/
        display: none;
    }
    .scroll-message_wrapper span {
        font-size: 14px;
        margin-top: 0;
    }

    .scroll-icon img {
        height: 40px;
    }
    video {
        object-fit: contain;
        background: white;
        object-position: 10% calc(100% - 100px);
    }
    header,
    header.show {
        top: auto;
        bottom: 0;
    }
    .dep_wrapper.enter {
        top: 30px;
        margin-left: 0;
    }
    .dep_wrapper {
        padding-left: 15px;
        width: calc(100% - 55px);
    }
    .dep-desc li {
        font-size: 18px;
        position: relative !important;
        top: auto !important;
        margin: 5px 0;
        box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
        white-space: normal;
    }
}
@media (orientation: portrait) and (max-width: 600px){
    .contact_content {
        flex-direction: column;
    }
    .what {
        width: 100%;
        margin-bottom: 30px;
    }
    .dep-name {
        font-size: 20px;
    }
    .dep-desc li {
        font-size: 18px;
    }
}
