/* Variables */
:root {
    --background: #f5f5f5;
    --border: #c4c4c4;
    --background-light: #898989;
    --background-dark: #424242;
    --buttons: #B2B3B3;
    --headings: #484a46;
    --copy: #111;
    --copy-light: #dfe5ec;
    --accent: var(--background-dark);
    --brand: #fbcc00;
}

/* General */
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    min-width: 320px;
    color: #2d2d2e;
}

main .text-image-item {
    display: flex;
    flex-direction: column-reverse;
    padding: 4em 0;
}

main .text-image-item .image {
    text-align: center;
}
main .component-text:nth-child(odd) {
    background-color: #eee
}

main .component-text.accent h2 {
    color: #fff;
}
main .component-text.accent {
    background-color: var(--brand);
}
.component-text .button {
    background-color: var(--background-dark);
    color:#fff;
    font-size:1.5em;
    padding:.5em 3em;
    border-radius: 1.5em;
    text-decoration: none;
    display: inline-block;
    margin-top:1em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (min-width: 900px) {
    main .text-image-item {
        flex-direction: row-reverse;
        align-items: center;
    }

    main .text-image-item.image-right {
        flex-direction: row;

    }

    main .text-image-item .image {
        flex: 0 0 45%;
        padding-right: 5%;
    }

    main .text-image-item.image-right .image {
        padding-right: 0;
        padding-left: 5%;
    }
}

.component img {
    max-width: 100%;
    height: auto;
}

.nk-testimonial-body {
    font-style: italic;
}


.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: .75em;
}

.contact-field label {
    display: none;
}

.contact-field .altcha-label {
    display: block;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    border: 0;
    padding: 8px 10px;
    font-size: 1rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
    border: 1px solid transparent;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-field select option {
    background: #333;
    color: #fff;
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    transition: opacity 0.2s;
}

.contact-submit:hover {
    opacity: 0.8;
}

.contact-success {
    background: rgba(80, 160, 80, 0.2);
    border: 1px solid rgba(80, 160, 80, 0.4);
    color: #a0e0a0;
    padding: 16px 20px;
    border-radius: 3px;
}

.contact-error {
    background: rgba(200, 60, 60, 0.2);
    border: 1px solid rgba(200, 60, 60, 0.4);
    color: #f09090;
    padding: 16px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}
 .inner {
     max-width: 1600px;
     margin-left: auto;
     margin-right: auto;
}
.nk-footer .inner {
    max-width: 1600px;
    padding-left: 5%;
    padding-right:5%;
}
@media(min-width: 1000px) {
    .nk-footer .inner {
        display: flex;
    }
}

.nk-footer .inner > * {
    flex: 1;
    padding-top: 4em;
    padding-bottom: 4em;
}

.nk-footer ul {
    padding: 0;
}

.nk-footer ul li {
    display: inline-block;
    margin: 0 .25em .5em 0;
    padding: 0;
}

.nk-footer ul li span {
    display: inline-block;
    padding: 1em !important;
    line-height: 1.2em;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: .05em;
}

.nk-footer ul li .cloud {
    margin: 0;
}

.nk-footer h4 {
    margin-bottom: 25px;
    font-family: inherit;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}
main .inner {
    padding:0 5%;
}

.stageusps {
    display: flex;
    gap: 4em;
    justify-content: center;
}
.stageusp {
    max-width:10em;
    flex: 1;
}
.stageusp strong {
    font-size:1.5em;
    line-height: 1.2em;
}
main .component-text ul {
    padding:0;
    margin:0;
    list-style-type: none;
}
main .component-text li {
    position: relative;
    padding-left:2.5em;
}
main .component-text li:before {
    content:'';
    background-image: url(../images/check.svg);
    background-size: contain;
    display: block;
    width:2em;
    height:2em;
    position: absolute;
    left:0;
}
main .component-text img {
    border-radius:2.5em;
}
main .component-text h2 {
    color:var(--brand);
}
@media (min-width: 900px) {
    main .component-text h2 {
        font-size:3em;
    }
}
.component-autonav {
    background-color: var(--brand);
    color:#000;
    padding-top:4em;
    padding-bottom:4em;
}
.component-autonav ul {
    padding:0;
    margin:0;
    list-style-type: none;
}
.component-autonav ul a {
    color:#000;
    text-decoration: underline;
    text-underline-offset: .2em;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1420px !important;
    }
}
.nk-footer .nk-widget-contact li {
    display: block;
}
footer .inner .inner {
    padding:0;
}
footer .text-image-item  {
    padding:0;
}