@import url("assets/fonts/Panton-Bold/styles.css");
@import url("assets/fonts/Panton-Light/styles.css");
@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/Panton-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
  }
  

* {
    box-sizing: border-box;
}

*:first-child {
    margin-top: 0 !important;
}

*:last-child {
    margin-bottom: 0 !important;
}

html, body {
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    font-family: "Panton", sans-serif;
    background-color: #005D6E;
    overflow-x: hidden; 
    position: relative;
}

body {
    --header-height: 4.7em;
}

@media (max-width: 800px) {
    html, body {
        font-size: 18px;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    html, body {
        font-size: 16px;
        line-height: 1.3;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: var(--header-height);
    border-radius: 0 0 10px 10px;
    z-index: 999;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    header .wrap {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 1.5em;
        max-width: 74em;
        margin: 0 auto;
        position: relative;
    }

    header .logo {

    }
    
        header .logo a {
            margin: 0;
            background: none;
            padding: 0;
            border: none;
            outline: none;
        }
    
        header .logo a svg {
            width: 10.36em;
            height: auto;
        }

    header .lang-switch {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 0.25em;
        font-size: 0.7em;
        line-height: 1;
        cursor: pointer;
        position: relative;
    }

    header .lang-switch .languages {
        transform: translateY(0.5em);
        opacity: 0;
        pointer-events: none;
        min-width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-out;
    }

    header .lang-switch:hover .languages {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    header .lang-switch .languages a {
        display: block;
        padding: 1em 1em;
        text-decoration: none;
        color: #111;
    }

    header .lang-switch .languages a + a {
        padding-top: 0.5em;
        margin-top: -0.5em;
    }

    header .lang-switch svg {
        transform: translateY(-7%) scale(0.8);
        fill: #666
    }

.content {
    padding: calc(6em + var(--header-height)) 0 6em 0;
    background: url("assets/img/bg.png") no-repeat top right;
    background-size: 105% 100%;
    
    color: #fff;
}

.content.fullheight {
    min-height: calc(100vh - var(--header-height));
}

    @media (max-width: 1000px) {
        .content {
            padding: calc(3em + var(--header-height)) 0 3em 0;
            background-size: 200% 100%;
            background-position: top left 5%;
        }
    }

   

    .content .wrap {
        max-width: 74em;
        padding: 0 1.5em;
        margin: 0 auto;
    }

    @media (min-width: 1000px) {
        .content .wrap {
            padding-right: 36vw;
        }
    }

    @media (min-width: 1800px) {
        .content .wrap {
            padding-right: 25vw;
        }
    }

    @media (min-width: 2400px) {
        .content .wrap {
            padding-right: 10vw;
        }
    }

    @media (min-width: 3000px) {
        .content .wrap {
            padding-right: 5vw;
        }
    }

    @media (min-width: 3500px) {
        .content .wrap {
            padding-right: 1.5em;
        }
    }

.form {
    padding: 4.5em 0 4.5em 0;
    background-color: #005D6E;
    color: #fff;
}

    @media (max-width: 500px) {
        .form {
            padding: 2em 0;
        }
    }

    @media (min-width: 1000px) {
        .form {

        }

        .form .stoerer {
            position: absolute;
            margin-left: auto !important;
            margin-top: -5em !important;
        }
    }

    @media (min-width: 1400px) {
        .form .stoerer {
            margin-left: 1050px !important;
            right: unset !important;
        }
    }



    .form .wrap {
        max-width: 74em;
        padding: 0 1.5em;
        margin: 0 auto;
    }


    h1 {
        font-size: 2.1em;
        line-height: 1.2;
        font-weight: 600;
        margin-bottom: 1.5em;
    }

    h2 {
        font-size: 1.5em;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 1em;
    }

    .digitalone-logo {
        width: 11em;
        height: auto;
        margin-bottom: 1em;
    }

.narrow-text {
    padding-bottom: 4em !important;
    position: relative;
}

    


    

   

    

p.datetime {

    padding-bottom: 1.5em;
}

    p.datetime span.date {

        font-weight: 700;
    }

.content ul {
    padding-left: 0;
    list-style: none;
}

    .content ul li {
        position: relative;
        padding-left: 1.5em;
        margin-bottom: 0.25em;
    }

        .content ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.2em;
            width: 0.8em;
            height: 0.8em;
            background: url("assets/img/check.svg") no-repeat center center;
            background-size: 100% 100%;
        }

.salesforce-form {
    display: flex;
    flex-flow: row wrap;
    gap: 1.33em;
}

.salesforce-form .form-group {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.1em;
    flex:1
}

    @media (max-width: 1200px) {
        .salesforce-form .form-group {
            flex: 1 1 100%;
        }
    }

.salesforce-form .form-group .flex {
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
}

.salesforce-form .form-group .flex label {
    flex: 1
}

    .salesforce-form .form-group label {
        width: calc(50% - 0.5em);
    }

    @media (max-width: 600px) {
        .salesforce-form .form-group label {
            width: 100%;
        }
            
    }

    .salesforce-form .form-group label span {
        display: block;
        font-size: 0.8em;
        font-weight: 600;
        margin-bottom: 0.2em;
    }

    .salesforce-form .form-group label input,
    .salesforce-form .form-group label select {
        width: 100%;
        padding: 0.75em;
        border-radius: 0.3em;
        border: 1px solid #fff;
        background-color: #fff;
        color: #005D6E;
        box-sizing: border-box;
        font: inherit;
        appearance: none;
        -webkit-appearance: none;
        outline: none;
    }

    .salesforce-form .button-group {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        
        gap: 1em;
        margin-top: 1.5em;
    }

        .salesforce-form .button-group input[type="submit"] {
            background-color: transparent;
            color: #fff;
            border: 3px solid #fff;
            padding: 0.5em 2.5em;
            border-radius: 99px;
            font: inherit;
            font-weight: 700;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        form input[type="submit"]:disabled {
            opacity: 0.5;
            cursor: not-allowed !important;
        }

        input.empty {
            border-color: #F85057 !important;
        }



.stoerer {
    margin-top: -7em !important;
    margin-bottom: 1.5em;
    margin-left: auto !important;
    position: absolute;
    right: 1.5em;
    width: 8em;
    height: 8em;
    background-color: #F85057;
    color: #fff;
    z-index: 9;
    border-radius: 99px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transform: rotate(-15deg);
}



footer {
    background-color: #e5eff0;
    color: #005D6E;
    padding: 2em 0;
    border-radius: 24px 24px 0 0;
}

    footer .footer-container {
        display: flex;
        flex-flow: row wrap;
        gap: 1em;
        max-width: 74em;
        margin: 0 auto;
        padding: 0 1.5em;
    }

    footer a {
        color: #005D6E;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer .logo,
    footer .google-partner-logo {
        flex: unset;
        width: auto;
    }

    footer .logo svg {
        width: 100%;
        max-width: 150px;
    }

    footer nav {
        margin-left: 0;
        margin-top: 2em;
        flex: 2;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
    }

    @media (min-width: 800px) {
        footer nav {
            margin-left: 5em;
            margin-top: 0;
        }
    }

    footer nav ul {
        display: flex;
        flex-flow: row wrap;
        gap: 0.75em 1em;
        padding: 0;
        list-style: none;
    }

    footer nav ul li {
        width: calc(25% - 0.75em);
    }

    @media (max-width: 1400px) {
        footer nav ul li {
            width: calc(33.33% - 0.67em);
        }
    }
    
    @media (max-width: 1000px) {
        footer nav ul li {
            width: calc(50% - 0.5em);
        }
    }

    @media (max-width: 800px) {
        footer .footer-container {
            flex-flow: column nowrap;
        }

        footer nav ul li {
            width: 100%;
        }
    }


    .google-partner-logo {
        height: 2em;
        margin-right: auto;
        
    }

    .