@charset "UTF-8";

@font-face {
    font-display: swap;
    font-family: "CC Running With Scissors Medium";
    font-style: normal;
    font-weight: 400;
    src: url("../Fonts/CC-Running-With-Scissors-Medium.ttf") format("truetype");
}

/* ibm-plex-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../Fonts/ibm-plex-sans-v19-latin-regular.woff2") format("woff2"), url("../Fonts/ibm-plex-sans-v19-latin-regular.ttf") format("truetype");
}

/* ibm-plex-sans-500 - latin */
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    src: url("../Fonts/ibm-plex-sans-v19-latin-500.woff2") format("woff2"), url("../Fonts/ibm-plex-sans-v19-latin-500.ttf") format("truetype");
}

/* ibm-plex-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../Fonts/ibm-plex-sans-v19-latin-700.woff2") format("woff2"), url("../Fonts/ibm-plex-sans-v19-latin-700.ttf") format("truetype");
}


body {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
    background-color: #000000;
    z-index: 1;
}

.center {
    margin: 0 auto;
    max-width: 1644px;
}

.logo-wrapper {
    width: 85vw;
    max-width: 1620px;
    height: 60px;
    margin: 30px auto;
    position: relative;

    @media (max-width: 900px) {
        width: 90vw;
    }
}

.logo-wrapper .logo-mobile {
    display: none;
}

.logo-wrapper .logo img {
    width: 100px;
    height: auto;
}

@media (max-width: 768px) {
    .logo-wrapper {
        height: 45px;
        margin: 15px auto 20px auto;
        width: 90vw;
    }
    .logo-wrapper .logo {
        display: none;
    }
    .logo-wrapper .logo-mobile {
        display: block;
    }
    .logo-wrapper .logo-mobile img {
        width: 100px;
    }
}

#language-menu {
    list-style: none;
    position: absolute;
    top: 6px;
    right: 0;
}
@media (max-width: 768px) {
    #language-menu {
        top: -9px
    }
}

#language-menu li {
    display: block;
    height: 25px;
    width: 70px;
    position: relative;
    padding: 7px 40px 7px 0;
    text-align: right;
    background-color: black;
}

#language-menu .flag {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0;
}
#language-menu .flag img {
    border: 1px solid #666;
}

#language-menu a {
    color: white;
    text-decoration: none;
}
#language-menu li.hidden {
    display: none;
}

.content-box {
    width: 85vw;
    max-width: 1620px;
    background-color: white;
    margin: 0 auto 30px auto;
    z-index: 2;
    padding-bottom: 10px;

    @media (max-width: 900px) {
        width: 90vw;
    }
}

.cta-button {
    width: fit-content;
    padding: 16px 25px 16px 55px;
    margin: 50px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
    position: relative;
    text-wrap: nowrap;
    transition: all .9s ease-in-out;
    background-color: black;
    color: white;
}
.cta-button::before {
    content: '>';
    position: absolute;
    font-size: 26px;
    width: 35px;
    height: 35px;
    left: 15px;
    top: 40%;
    transform: translateY(-40%);
    transition: all .9s ease-in-out;
}
.cta-button:hover {
    box-shadow: -8px 8px 15px rgba(0, 0, 0, 0.77);
}
.cta-button:hover::before {
    animation: arrow_movement .8s ease-in-out ;
    left: 20px;
}
@media (max-width: 1320px) {
    .cta-button {
        font-size: 21px;
    }
    .cta-button::before {
        font-size: 19px;
        width: 25px;
        height: 25px;
        top: 40%;
    }
}
@media (max-width: 1110px) {
    .cta-button {
        font-size: 18px;
    }
}
@media (max-width: 900px) {
    .cta-button {
        font-size: 18px;
        padding: 9px 9px 9px 30px;
    }
    .cta-button::before {
        top: 36%;
        font-size: 18px;
        width: 16px;
        height: 16px;
    }
}

.cta-button.revert {
    background-color: white;
    color: black;
    border: 6px solid black;
    padding: 12px 20px 12px 55px;
}
.cta-button.revert:hover {
    box-shadow: -8px 8px 15px rgba(0, 0, 0, 0.77);
}
.cta-button.revert:hover::before {
    animation: arrow_movement .9s ease-in-out ;
    left: 20px;
}
  
@keyframes arrow_movement {
    from {
        left: 15px;
    }
    to {
        left: 20px;
    }
}
  
  

.hero {
    overflow: hidden;
}
.hero img {
    width: 100%;
    height: auto;
    max-width: 100%;
}


.text-element {
    padding: 0 55px;
    margin-top: 30px;
    margin-bottom: 120px;
}
.text-element h1,
.text-element h2,
.text-element h3 {
    font-size: 90px;
    margin: 10px 0;
}
.text-element .spacer-left {
    height: 10px;
    width: 55%;
    max-width: 582px;
    background-color: black;
    margin-left: -55px;
}
.text-element h2.sub,
.text-element h3.sub,
.text-element h4.sub {
    font-size: 60px;
    margin: 20px 0 50px 0;
}
.text-element h4 {
    font-size: 30px;
}
.text-element p {
    margin: 70px 0;
    font-size: 30px;
    max-width: 85%;
}
.text-element ul {
    list-style: none;
    font-size: 22px;
    margin: 0 0 100px 0;
    padding: 0;
}
.text-element ul li:before {
    content: " - ";
    text-indent: -5px;
    font-size: 30px;
}

@media (max-width: 1200px) {
    .text-element {
        padding: 0 25px;
    }
    .text-element h1,
    .text-element h2,
    .text-element h3 {
        font-size: 70px;
    }
    .text-element h2.sub,
    .text-element h3.sub,
    .text-element h4.sub {
       font-size: 45px;
    }
    .text-element h4 {
        font-size: 20px;
    }
    .text-element p {
        margin: 50px 0;
        font-size: 22px;
        max-width: 85%;
    }
    .text-element ul {
        font-size: 20px;
    }
    .text-element li:before {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .text-element {
        padding: 0 25px;
        margin-bottom: 45px;
    }
    .text-element h1,
    .text-element h2,
    .text-element h3 {
        font-size: 45px;
    }
    .text-element h2.sub,
    .text-element h3.sub,
    .text-element h4.sub {
       font-size: 30px;
       margin-bottom: 18px;
    }
    .text-element h4 {
        font-size: 22px;
    }
    .text-element p {
        margin: 45px 0;
        font-size: 22px;
        max-width: 85%;
    }
    .text-element ul {
        font-size: 20px;
    }
    .text-element li:before {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .text-element p {
        max-width: 100%;
    }
}



.text-image-section {
    height: auto;
    padding: 0 55px 90px 55px;
    margin: 0 0 90px 0;
    border-bottom: none;
    background: linear-gradient(black,black) bottom no-repeat;
    background-size: 40% 5px;
}
.text-image-section h1,
.text-image-section h2,
.text-image-section h3 {
    font-size: 38px;
}
.text-image-section .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}
.text-image-section .half-box {
    width: 100%;
    max-width: 500px; 
    box-sizing: border-box; 
    padding: 0 10px;
    margin: 0;
}
.text-image-section .half-box.box1 {
    max-width: 40%;
}
@media (max-width: 900px) { 
    .text-image-section .half-box.box1 {
        max-width: 100%;
    }
}
.text-image-section .half-box.box2 {
    order: 1;
    padding-left: 0; 
    max-width: 60%;
}
@media (max-width: 1200px) {
    .text-image-section .half-box.box2 {
        max-width: 50%;
    }
    .text-image-section {
        padding: 0 25px 60px 25px;
    }
}
@media (max-width: 900px) { 
    .text-image-section .half-box.box2 {
        max-width: 100%;
    }
}
.text-image-section .half-box p {
    padding: 0;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 60px;
    max-width: 85%;
}
@media (max-width: 1200px) {
    .text-image-section .half-box p {
        font-size: 22px;
        margin-bottom: 45px;
    }
}
@media (max-width: 900px) { 
    .text-image-section .half-box p {
        font-size: 22px;
        margin-bottom: 40px;
        max-width: 85%;
    }
}
@media (max-width: 768px) { 
    .text-image-section .half-box p {
        max-width: 100%;
    }
}
.text-image-section .half-box img {
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0; 
    border-radius: 8px;
    box-shadow: -10px 10px 20px black;
    transition: all 4s ease-in-out;
}
.text-image-section .half-box img:hover {
    transform: scale(1.1);
}
.text-image-section.image-right .box1 {
    order: 2;     
    display: flex;
    justify-content: flex-end;
    max-width: 40%;
}
@media (max-width: 900px) {
    .text-image-section.image-right .box1 {
        order: 1;    
        justify-content: flex-start;
        max-width: 100%;
    }
}
.text-image-section.image-right .box2 {
    order: 1;
    padding-left: 0; 
    max-width: 60%;
}
@media (max-width: 1200px) {
    .text-image-section.image-right .box2 {
        max-width: 50%;
    }
}
@media (max-width: 900px) {
    .text-image-section.image-right .box2 {
        order: 2;    
        max-width: 100%;
    }
}
@media (max-width: 1600px) {
    .text-image-section img {
        max-width: 350px !important;
    }
}
@media (max-width: 1200px) {
    .text-image-section img {
        max-width: 300px !important;
    }
    .text-image-section p {
        font-size: 30px ;
    }
}
@media (max-width: 900px) {
    .text-image-section {
        padding-left: 25px;
        padding-right: 25px;
    }
    .text-image-section h3,
    .text-image-section h2,
    .text-image-section h1 {
        font-size: 30px;   
    }
    .text-image-section p {
        font-size: 22px;
    }
    .text-image-section .half-box {
        padding: 0;
    }
    .text-image-section .half-box img {
        margin-bottom: 50px;
    }
    .text-image-section .half-box img.box1 {
        width: 100%;
    }
    .text-image-section .half-box img.box2 {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .text-image-section h1,
    .text-image-section h2,
    .text-image-section h3 {
        font-size: 23px;   
    }
    .text-image-section img {
        max-width: 240px !important;
    }
}


.footer-navigation {
    display: block;
    position: relative;
    width: 85vw;
    max-width: 1620px;
    margin: 0 auto 50px auto;
    @media (max-width: 900px) {
        width: 90vw;
    }
}
.footer-navigation ul {
    font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
    list-style: none;
    color: white;
    float: right;
}
.footer-navigation li {
    display: inline-block;
    margin-left: 30px;
}
.footer-navigation a {
    color: white;
    text-decoration: none;
}
.footer-navigation a:hover {
    text-decoration: underline;
}