* {
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: Akz;
  src: url(/font/AkzidenzGrotesk-Regular.woff);
}

a {
     text-decoration: none;
}

body {
    border: 0;
    padding: 0;
    margin: 0;
}
 #bg {
     width: 100%;
     height: 100vh;
     background: #2D3E4F;
     background-position: center center;
     background-repeat: no-repeat;
     background-size: cover;
     background-image: url(/images/bg.svg);
 }
 #bg svg {
    width: 200% !important; 
    height: 200% !important;
 }
 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
 }

 .content img {
     margin-top: 49px;
 }

 .content .logo {
    align-items: center;
    display: flex;
    height: auto;
    flex-direction: column;
    text-align: center;

 }

 .content .block {
    align-items: center;
    display: flex;
    height: auto;
    flex-direction: column;
    width: 586px;
    text-align: center;
    justify-content: center;
 }

 .content h1 {
     font-family: Akz, sans-serif;
     font-size: 100px;
     color: white;
     font-weight: initial;
     line-height: 0px;
 }

 .content h2 {
    font-family: Akz, sans-serif;
    font-size: 24px;
    color: white;
    font-weight: initial;
    line-height: 30px;
 }

 .btn {
    width: 150px;
    background: #E33B3B;
    border-radius: 50px;
    padding: 16px;
    font-family: akz;
    font-size: 14px;
    letter-spacing: 5px;
    color: white;
    font-weight: 100;
    margin-top: 50px;
    border: 2px solid #E33B3B;
    cursor: pointer;

 }

 .btn:hover {
    width: 150px;
    background: transparent;
    border: 2px solid #E33B3B;
    border-radius: 50px;
    padding: 16px;
    font-family: akz;
    font-size: 14px;
    letter-spacing: 5px;
    color: white;
    font-weight: 100;
    margin-top: 50px;
    cursor: pointer; 
 }
  .anim-headline {
    margin: 0px;
    overflow: hidden;
}

.transition {
    background: #E33B3B;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
}

@media screen and (max-width: 600px) {

    .content .block {
        width: 100%;
    }

    .content h2 {
        font-size: 20px;
        line-height: 26px;
        padding: 0 20px;
    } 

    .content h1 {
        font-family: Akz, sans-serif;
        font-size: 78px;
        color: white;
        font-weight: initial;
        line-height: 0px;
    }

    .btn {
        margin-top: 24px;
    }

    .btn:hover {
        margin-top: 24px;
    }

}

@media screen and (min-width: 600px) {
    .only-mobile {
        display: none;
    }
}