/* exo-2-300 - latin */
@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/exo-2-v20-latin-300.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('fonts/exo-2-v20-latin-300.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/exo-2-v20-latin-300.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('fonts/exo-2-v20-latin-300.woff') format('woff'),
        /* Modern Browsers */
        url('fonts/exo-2-v20-latin-300.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('fonts/exo-2-v20-latin-300.svg#Exo2') format('svg');
    /* Legacy iOS */
}

/* exo-2-600 - latin */
@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/exo-2-v20-latin-600.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('fonts/exo-2-v20-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/exo-2-v20-latin-600.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('fonts/exo-2-v20-latin-600.woff') format('woff'),
        /* Modern Browsers */
        url('fonts/exo-2-v20-latin-600.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('fonts/exo-2-v20-latin-600.svg#Exo2') format('svg');
    /* Legacy iOS */
}

:root {
    --highlight: #ae9131;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    color: #898989;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

a {
    color: #898989;
    text-decoration: none;
}

.header {
    padding: 10px 20px 5px;
    line-height: 1.7;
    position: relative;
    border-right: 10px solid var(--highlight);
}

.header:before {
    position: absolute;
    content: '';
    width: 50%;
    height: 10px;
    background: var(--highlight);
    left: 0;
    top: 0;
}

.header a {
    font-size: 18px;
    display: block;
    text-align: right;
}

.content {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: start;
    margin-top: 11vh;
    min-height: 700px;
    height: calc(100vh - 11vh - 130px);
}

.content .hidden,
.content .hidden > div {
    width: 100%;
    position: relative;
}


.content a.logo {
    margin-bottom: 10px;
}

.content .hidden {
    position: relative;
    padding-top: 20px;
}

.content .hidden:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 187px;
    background: var(--highlight);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin-left: -3px;
}

.button,
button {
    background: var(--highlight);
    color: #fff;
    padding: 20px 0px;
    width: 187px;
    margin-left: -3px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

button {
    width: 290px;
    border: 0;
    margin-top: 1.5em;
}

/* SHIFT */
.button,
button {
    position: relative;
    z-index: 1;
}


.button:after,
button:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #575756;
    visibility: none;
    opacity: 0;
    z-index: -1;
}

.button:hover:after,
button:hover::after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.button,
.button:after,
.button:before,
button,
button:after,
button:before {
    transition: all .5s;
}

/* Keyframes */
@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background: #333;
    }
}

/* Keyframes */
@-webkit-keyframes circle {
    0% {
        width: 1px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        z-index: -1;
        background: #eee;
        border-radius: 100%;
    }

    100% {
        background: #aaa;
        height: 5000%;
        width: 5000%;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 0;
    }
}


.footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 16px;
    width: calc(100% - 40px);
}

ul {
    margin: 0;
    padding: 0;
}

ul.nav {
    display: flex;
}

ul li {
    list-style: none;
    cursor: pointer;
    margin: 0 10px
}



.content .hidden {
    position: relative;
}

.content .hidden > div {
    transition: all 1s ease 1s;
    position: absolute;
    overflow: visible;
}

.content .hidden div.deactive {
    opacity: 0;
    transition: all 1s ease .5s;
    height: 0;
    overflow: hidden;
}

form {
    width: 500px;
    max-width: 100%;
    margin: 1em auto 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.flex .cr_ipe_item {
    width: 47%;

}

input[type="text"],
input[type="email"] {
    padding: 15px 5px;
    border: none;
    width: 100%;
    border-bottom: 1px solid #ccc;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #898989
}

input:focus,
input:focus-visible {
    border-bottom: 2px solid #ccc;
    outline: 0;
}

::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: 'Exo 2';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4)
}

::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: uppercase;
    font-family: 'Exo 2';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4)
}

:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: 'Exo 2';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4)
}

:-moz-placeholder {
    text-transform: uppercase;
    font-family: 'Exo 2';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4)
}

.cr_form-inputgroup--typecheckbox {
    align-items: center;
    margin-top: 15px;
}

.cr_form-inputgroup--typecheckbox label {
    font-size: 12px;
    text-align: left;
    margin-left: 10px;
    width: calc(100% - 40px);
}

.cr_form-inputgroup--typecheckbox a {
    color: var(--highlight)
}

@media (max-width: 900px) {
    .footer {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding-bottom: 10px;
    }

    .footer .address {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 18px;
    }

    a.logo img {
        max-width: 70vw;
    }

    .content .hidden > div {
        padding: 0 20px;
        width: calc(100% - 40px)
    }

    .header {
        padding: 20px 20px 5px;
    }

    .content {
        margin-top: 9vw;
    }


}

@media (max-width: 420px) {
    .content {
        min-height: 640px;
    }

    a.logo img {
        max-width: 50vw;
    }

    .flex {
        flex-wrap: wrap;
    }

    .flex .cr_ipe_item {
        width: 100%;
    }
}
