a, abbr, address, article, aside, audio, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary,
sup, time, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
}

article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary {
    display: block;
}

a, ins, del {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

strong {
    font-weight: bold;
}

caption, th {
    text-align: left;
}

q:after, q:before {
    content: "";
}

* {
    outline: none;
    margin: 0;
    padding: 0;
}

a {
    color: #888d9d;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: none;
}


html, body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 1.25;
    background: #101010 url(assets/images/vestigio-body-background.png) center top no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.transition {
    opacity: 0.9;
    -webkit-transition: all 300ms ease-out 0s;
    -moz-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

.transition:hover {
    opacity: 1;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header {
    padding-top: 70px;
    text-align: center;
}

.header__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 840px;
    margin: 0 auto;
    gap: 62px;
}

.header h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2.5px;
}

.form {
    padding-top: 70px;
    padding-bottom: 40px;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 840px;
    margin: 0 auto;
    gap: 45px;
}

.form form {
    padding: 0 30px;
}

.form h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
}

.form-group > div {
    width: 100%;
}

.form-control {
    width: calc(100% - 64px);
    max-width: calc(100% - 64px);
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 20px 32px;
    -webkit-transition: all 300ms ease-out 0s;
    -moz-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

.form-control:hover {
    outline: 1px solid #fff;
}

.form-control::placeholder {
    color: #fff;
    opacity: 1;
}


.form-consent {
    position: relative;
    margin: 6px 0;
}

.form-consent input[type=checkbox] {
    visibility: hidden;
    min-width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    position: absolute;
}

.form-consent input[type=checkbox] + span:before {
    display: block;
    position: absolute;
    content: '';
    height: 24px;
    min-width: 24px;
    border-radius: 10px;
    top: 0;
    left: 0;
    border: 1px solid #fff;
}

.form-consent input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    content: "\2713";
    height: 24px;
    width: 24px;
    color: #fff;
    top: 5px;
    left: 1px;
    visibility: hidden;
    font-size: 14px;
    text-align: center;
    line-height: 16px;
}

.form-consent input[type=checkbox]:checked + span:before {
    border: 1px solid #fff;
    outline: 1px solid #fff;
}

.form-consent input[type=checkbox]:checked + span:after {
    visibility: visible;
}

.form-consent .list-item-label {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-left: 38px;
    line-height: 1.4;
}

.form-consent .list-item-label a {
    text-decoration: underline;
}

.btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    background-color: white;
    color: #fff;
    cursor: pointer;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    -webkit-animation: hue 60s linear;
    -o-animation: hue 60s linear;
    animation: hue 60s linear;
    border: 0;
    padding: 20px 32px;
    border-radius: 50px;
    animation-name: color_change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.btn-submit:hover {
    background-color: #fff !important;
    color: #000;
}

@-webkit-keyframes color_change {
    0% {
        background: #613ECE
    }
    20% {
        background: #2A74EC
    }
    40% {
        background: #0EA185
    }
    60% {
        background: #E09C17
    }
    80% {
        background: #FF4040
    }
    100% {
        background: #C53DAB
    }
}

@-moz-keyframes color_change {
    0% {
        background: #613ECE
    }
    20% {
        background: #2A74EC
    }
    40% {
        background: #0EA185
    }
    60% {
        background: #E09C17
    }
    80% {
        background: #FF4040
    }
    100% {
        background: #C53DAB
    }
}

@-ms-keyframes color_change {
    0% {
        background: #613ECE
    }
    20% {
        background: #2A74EC
    }
    40% {
        background: #0EA185
    }
    60% {
        background: #E09C17
    }
    80% {
        background: #FF4040
    }
    100% {
        background: #C53DAB
    }
}

@-o-keyframes color_change {
    0% {
        background: #613ECE
    }
    20% {
        background: #2A74EC
    }
    40% {
        background: #0EA185
    }
    60% {
        background: #E09C17
    }
    80% {
        background: #FF4040
    }
    100% {
        background: #C53DAB
    }
}

@keyframes color_change {
    0% {
        background: #613ECE
    }
    20% {
        background: #2A74EC
    }
    40% {
        background: #0EA185
    }
    60% {
        background: #E09C17
    }
    80% {
        background: #FF4040
    }
    100% {
        background: #C53DAB
    }
}

.partner {
    padding: 30px 0;
}

.partner__wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.text {
    padding: 80px 0;
}

.text h2 {
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -1.75px;
}

.text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 840px;
    margin: 0 auto;
}

.footer {
    padding-top: 30px;
}

.footer__wrapper {
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.footer a {
    color: #fff;
}

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

@media (max-width: 768px) {
    .header h1 {
        font-size: 44px;
    }

    .form {
        padding-bottom: 0;
    }

    .form form {
        padding: 0;
    }

    .form h2 {
        font-size: 30px;
    }

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

    .btn-submit {
        font-size: 18px;
    }

    .partner__wrapper {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .partner__wrapper > div {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .text {
        padding: 40px 0;
    }

    .text h2 {
        font-size: 32px;
    }

    .footer__wrapper {
        flex-direction: column;
        text-align: center;
        line-height: 1.6;
    }
}