@import url(fonts.css);

html, body {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

*{
    box-sizing: border-box;
}

body {
    font-family: "mundial-narrow-variable", sans-serif !important;
    color: #010101;
    overflow: hidden;
}

/* HEADER */

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0 5em;
    z-index: 10000;
}

.header-logo {
    width: 65px;
    height: 65px;
}

.logo-svg {
    position: absolute;
}

.header-links > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-link {
    width: 160px;
    height: 50px;
    border-radius: 25px;
    background: #FC466B;
    background: linear-gradient(135deg, #FC466B 0%, #3F5EFB 100%);
    font-weight: 700;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(1,0,.65,.76);
    overflow: hidden;
}

.contact-link:hover {
    cursor: pointer;
    transform: scale(1.01,1.01) translate(0,-1px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}

.contact-link-overlay {
    position: absolute;
    width: inherit;
    height: 50px;
    border-radius: 25px;
    background: #FC466B;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.contact-link:hover .contact-link-overlay {
    opacity: 1;
}

.contact-link > svg {
    display: none;
    width: 40%;
    height: 40%;
}

.contact-link > svg > path {
    fill: #fff;
}

/* HEADER */

/* LANDING */

#landing {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 100px 5em 0 5em;
    overflow: hidden;
    background: #FEFEFE;
}

.landing-left, .landing-right {
    flex: 1 0 50%;
}

.landing-left {
    font-weight: 300;
}

.landing-title {
    font-weight: 300;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-size: 3em;
}

.landing-subtitle {
    font-size: 1.5em;
    line-height: 2em;
    margin-bottom: 2em;
}

.landing-contact {
    font-size: 1.5em;
    margin-bottom: 3em;
}

.landing-cta {
    font-family: Mundial Narrow Variable;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: CAP_HEIGHT;
line-height: 100%;
letter-spacing: 0%;
color: #FFFFFF;

    width: 224px;
    height: 44;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 24px;
    gap: 8px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 9999px;
    background: #010101;
}

.mail-adress {
    color: #FEFEFE;
    width: 95;
    height: 37;
    margin-left: 12px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 9999px;
    background: #010101;
}


/* LANDING */

/* CONTACT */

#contact {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 100%;
    background-color: #1d3557;
    transition: all 0.75s cubic-bezier(1,0,.65,.76);
}

/* CONTACT */

