/* Font Face Declaration */
@font-face {
    font-family: 'StudioFeixenSans';
    src: url('fonts/StudioFeixenSans-Semibold.eot'); /* IE9 Compat Modes */
    src: url('fonts/StudioFeixenSans-Semibold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/StudioFeixenSans-Semibold.woff2') format('woff2'), /* Modern Browsers */
         url('fonts/StudioFeixenSans-Semibold.woff') format('woff'), /* Pretty Modern Browsers */
         url('fonts/StudioFeixenSans-Semibold.ttf') format('truetype'); /* Safari, Android, iOS */
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'StudioFeixenSans', Arial, sans-serif;
    color: #003BDE;
    font-weight: 600;
    font-size: 20px;
    leading-trim: Cap height;
    line-height: 135%;
    letter-spacing: 0%;
    overflow-x: hidden;
}
h1,h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -1%;
}
.content p{

    margin-bottom: 15px;
}
.spacer-extra-small{
    height: 20px;
}
.spacer-small{
    height: 45px;
}
.spacer-medium{
    height: 70px;
}
.spacer-large{
    height: 100px;
}
.spacer-extra-large{
    height: 150px;
}
.color-primary{
    color: #003BDE;
}
.color-secondary{
    color:#FE4D01;
}
.background-color-primary{
    background-color: #003BDE;
}
.background-color-secondary{
    background-color: #FE4D01;
}

.header img{
    width: 100%;
    height: auto;
}
.marquee-wrapper{
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-wrapper .marquee{
    font-family: 'StudioFeixenSans', Arial, sans-serif !important;
    font-size: 40px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: 0%;
}

/* Marquee Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee-container {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

/* Erste Marquee (JUNIOR-ARCHITEKT:INNEN) */
.background-color-primary .marquee-content {
    animation: scroll 30s linear infinite;
}

/* Zweite Marquee (BIS 07. JULI) */
.background-color-secondary .marquee-content {
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-family: 'StudioFeixenSans', Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
}



.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 200px;
    padding: 2px 4px;
    background-color: #FCF45D;
    resize: horizontal;
    container-type: inline-size;
  }
  .marquee > * {
    animation: marquee 5s linear infinite both alternate;
  }


input[type="text"], input[type="email"], input[type="tel"] {
    font-family: 'StudioFeixenSans', Arial, sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: 0%;
    border: 2px solid #003BDE;
    border-radius: 8px;
    padding: 10px;
    margin: 8px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    color: #003BDE;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    outline: none;
    border: 2px solid #003BDE;
}
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder {
    color: #003bde20;
}
a{
    text-decoration: none;
}

.btn,
.submit-btn{
    font-family: 'StudioFeixenSans', Arial, sans-serif;
    background-color: #003BDE;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: 0%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn:before,
.submit-btn:before{
    content: url('images/icon/arrow.svg');
    margin-right: 10px;
}
.btn:hover,
.submit-btn:hover{
    background-color: #003bdef2;
    color: white;
}
li{
    list-style: none;
    padding-left: 20px;
}
li:before{
    content: "→";
    color: #003BDE;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.footer{    
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #003BDE;
    color: white;
}
.footer-logo{
    float: right;
}
.footer-link a{
    color: #FE4D01;
}

#formMessage{
    color: #FE4D01;
}

/* Marquee Styles */
.marquee3k {
    height: 70px;
    display: flex;
    align-items: center;
    font-family: 'StudioFeixenSans', Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    overflow: hidden;
}

.marquee3k > div {
    padding-top: 5px;
    padding-bottom: 5px;
}