@font-face {
    font-family: 'source-sans-pro';
    src: url('sourcesanspro-bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: auto;
}

@font-face {
    font-family: 'source-sans-pro';
    src: url('sourcesanspro-regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

*, ::after, ::before {
    box-sizing: border-box;
}

html, body {
    background: transparent;
    font-family: 'source-sans-pro', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
}

body {
    color: white;
    font-size: 18px;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

h1, h2 {
    font-family: 'source-sans-pro', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    color: #222222;
}

h1 {
    font-size: 34px;
    line-height: 1.1em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h2 {

    color: #830055;
}

.btn-download {
    display: inline-block;
    background: #f99c1a;
    border: 1px solid #f68f00;
    border-radius: 5px;
    margin: 10px;
    padding: 15px 30px 13px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    vertical-align: middle;
}

.btn-download:hover {
    border: 1px solid white;
}

.btn-download img {
    margin-top: -2px;
}


textarea {
    font-family: monospace;
    font-size: 12px;
}


.flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #830055;
}

.download {
    max-width: 708px;
    width: 100%;
}

.download-suite {
    background: #F7F7F7;
    padding: 48px;
    border-radius: 24px;
}

.download-suite p {
    font-size: 42px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.03em;
    text-align: left;
    margin: 30px 0 35px;
}

.download-suite--cloud {
    padding-bottom: 44px;
}

.download-suite a {
    padding: 10px 32px;
    border: none !important;
    border-radius: 60px;
    color: white;
    background: #60BB46 !important;
    cursor: pointer;
    transition: 0.2s;
    font-size: 22px;
    font-weight: 500;
    line-height: 29px;
    text-align: center;
    text-decoration: none;
    display: flex;
    width: 210px;
    align-items: center;
    justify-content: space-between;
}

.download-suite a:hover {
    background: #0C8948 !important;
}

.download-separate {
    padding-top: 60px;
}

.download-separate div {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    padding: 0 5px;
}

.download-separate div p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
}

.download-separate div a {
    font-size: 22px;
    font-weight: 500;
    line-height: 29px;
    text-align: center;
    text-decoration: none;
    color: #0A6E3A;
    display: flex;
    gap: 10px;
}

.download-separate div a:hover {
    text-decoration: underline;
}

.download-separate--white {
    background-color: white;
}

.download-separate--grey {
    background-color: #F7F7F7;
    border-top: 1px solid #B9B5B0;
    border-bottom: 1px solid #B9B5B0;
}

@media only screen and (max-width: 1200px) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .download-suite--cloud {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .download-suite p {
        font-size: 32px;
        margin: 20px 0 25px;
    }
}


.trialform {
    max-width: 708px;
    margin: 0 auto;
}

.trialform-form {
    padding: 42px;
    background: transparent;
}

.trialform-form--flex {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.trialform-form--flex div {
    flex: 1;
}

.trialform-text h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 59px;
    letter-spacing: -0.03em;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.trialform-text p {
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding-bottom: 40px;
}

input, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0 32px;
    font-size: 18px;
    line-height: 64px;
    background: #F7F7F7;
    border: 1px solid #D1D1D1;
    border-radius: 46px;
    height: 66px;
    transition: 0.2s;
}

textarea {
    line-height: 22px;
    resize: none;
    padding: 24px 32px;
    height: 150px;
    border-radius: 0;
}

input:hover, input:focus, textarea:hover, textarea:focus {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2);
    border: 1px solid #e1e1e1;
}

label {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    color: #830055;
    padding: 12px 0;
    margin-bottom: 0;
}

.trialform-form--button {
    width: 100%;
    padding: 16px 40px;
    border: none !important;
    border-radius: 60px;
    color: white;
    background: #60BB46 !important;
    cursor: pointer;
    transition: 0.2s;
    font-size: 22px;
    font-weight: 500;
    line-height: 29px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.trialform-form--button:hover {
    background: #0C8948 !important;
}


::placeholder {
    color: rgb(205, 205, 205);
}


.trialform-form--consent {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #B9B5B0;
}

.trialform-form--consent a {
    color: #60BB46;
    transition: 0.2s;
    text-decoration: none;
}

.trialform-form--consent a:hover {
    color: #0C8948;
    text-decoration: underline;
}

/* custom checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox--checkmark {
    width: 24px;
    height: 24px;
    border: 1px solid #E4E4E4;
    background-color: #F5F5F5;
    border-radius: 4px;
    position: absolute;
}

.custom-checkbox--checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: green;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease-in-out;
}

.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox--checkmark::after {
    opacity: 1;
}

.custom-checkbox--text {
    margin-left: 50px;
}

@media only screen and (max-width: 708px) {
    .trialform-form {
        border-radius: 0;
    }

    .trialform-form--flex {
        flex-direction: column;
    }
}
