body {
    background: #152F4A;
    color: white;
    font-family: KoHo,sans-serif;
}

.row {
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
}

.text-center {
    width: 100%;
    text-align: center;
}

h1,
.h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 300;
}

.white-color {
    color: white;
}

input {
    font-family: 'Montserrat';
    font-size: 14px;
}


/*
Koho (Font)
===================================== */

@font-face {
    font-family: 'KoHo';
    src: url('fonts/koho/KoHo-Medium.woff2') format('woff2'),
            url('fonts/koho/KoHo-Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'KoHo';
    src: url('fonts/koho/KoHo-Light.woff2') format('woff2'),
            url('fonts/koho/KoHo-Light.woff') format('woff');
    font-weight: 300;
}


/*
Montserrat (Font)
===================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
            url('fonts/montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
}


/*
Step 1
===================================== */

.step-1 {
    cursor: pointer;
    background: #152F4A;
}

.step-1.is-active {
    opacity: 1;
    visibility: visible;
}

.step-1-image {
    margin: 0 auto;
}

.step-inner {
    width: 100%;
}


/*
Step 2
===================================== */

.step-2 {
    background: #152F4A;
}

.step-2-form {
    background: #2f455b;
    box-sizing: border-box;
}

.step-2-image {
    margin: 0 auto;
}

.step-2-title {
    font-weight: 300;
}

.step-2-form-row {
    flex-direction: column;
}

.step-2-form-inner {
    display: flex;
    margin: 0 auto;
}

.step-2-label {
    font-size: 20px;
    margin-right: 20px;
    line-height: 40px;
}

.step-2-email-input-wrapper  {
    display: flex;
    flex-direction: column;
}

.step-2-email-input-inner {
    display: flex;
    height: 36px;
    border: 2px solid #EE5B2F;
    border-radius: 4px;
}

.step-2-email-input {
    padding: 0 15px;
    background: none;
    border: 0;
    color: white;
}

.step-2-email-input::placeholder {
    color: white;
}

.step-2-email-input-button {
    cursor: pointer;
    width: 70px;
    background-image: url('./images/icons/mail.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ff6322;
    border: 0;
    transition: all .250s;
}

.step-2-email-input-button:hover {
    background-color: #E64A09;
}

.step-2-email-input-error {
    margin-top: 10px;
    font-size: 14px;
}

.step-2-email-confirmation {
    text-align: center;
    font-size: 20px;
}


/*
Icons
===================================== */

.icons-banner {
    display: flex;
    margin: 0 auto;
}

.icons-banner-column {
    display: flex;
}

.icons-banner-item {
    display: none;
    height: 40px;
}

.icons-banner-item-ameublement,
.icons-banner-item-genie-civil {
    width: 47px;
}

.icons-banner-item-industrie {
    width: 65px;
}

.icons-banner-item-transport {
    width: 51px;
}


/*
Animations
===================================== */

.pt-perspective {
	position: relative;
	width: 100%;
	height: 100%;
	perspective: 1200px;
	transform-style: preserve-3d;
}

.pt-page {
    height: 100vh;
    position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	visibility: hidden;
	backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.pt-page-current,
.no-js .pt-page {
	visibility: visible;
}

.no-js body {
	overflow: auto;
}

.pt-page-ontop {
	z-index: 999;
}

.pt-page-moveToLeft {
	-webkit-animation: moveToLeft .6s ease both;
	animation: moveToLeft .6s ease both;
}

.pt-page-moveFromRight {
	-webkit-animation: moveFromRight .6s ease both;
	animation: moveFromRight .6s ease both;
}

@keyframes moveToLeft {
	from { }
	to { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@keyframes moveFromRight {
	from { -webkit-transform: translateX(100%); transform: translateX(100%); }
}

/*
Responsive
===================================== */

@media screen and (max-height: 600px)  and (min-width: 768px) {
    .step-2-image {
        margin: 100px auto 0;
        width: 25%!important;
        height: 25%!important;
    }
}

@media screen and (max-height: 800px) and (min-width: 768px) {
    .step-1-image {
        margin: 150px auto 0;
        width: 20%;
        height: 20%;
    }

    .step-2-image {
        width: 35%;
        height: 35%;
    }

    .step-2-title {
        margin: 45px 0 0!important;
    }
}

@media screen and (min-width: 1200px) {
    .icons-banner-column:not(:last-child),
    .icons-banner-item:not(:last-child) {
        margin-right: 55px;
    }
}

@media screen and (min-width: 1024px) {
    .icons-banner {
        padding-top: 50px;
        margin-top: 50px;
        border-top: 3px dotted #EE5B2F;
        height: 40px;
    }

    .step-1-title {
        margin: 50px 0 0;
    }

    .step-1-inner {
        margin-top: -208px;
    }

    .step-2-title {
        margin: 85px 0 0;
        font-size: 40px;
    }

    .step-2-form {
        padding: 40px 0;
        margin: 50px 0 0;
    }

    .icons-banner-column:not(:last-child),
    .icons-banner-item:not(:last-child) {
        margin-right: 45px;
    }
}

@media screen and (max-width: 1023px) {
    .step-2-image {
        box-sizing: border-box;
        padding: 0 20px;
    }

    .step-1-image,
    .step-2-image {
        margin: 30px auto;
    }

    .icons-banner {
        display: flex;
        order: 2;
    }

    .step-1 .icons-banner {
        margin: 50px 0 0;
        padding: 50px 0 0;
        border-top: 3px dotted #EE5B2F;
    }

    .step-2 .icons-banner {
        padding: 40px 0 0;
    }

    .icons-banner-inner {
        flex-direction: column;
    }

    .icons-banner-item {
        min-width: 60px;
    }

    .icons-banner-item:not(:last-child) {
        margin-right: 25px;
    }

    .step-1-title {
        font-size: 30px;
        margin: 10px 0 0;
    }

    .step-2-title {
        margin: 0;
        padding: 0 15px;
        font-size: 30px;
        box-sizing: border-box;
    }

    .step-2-form {
        display: flex;
        order: 1;
        padding: 15px 0 30px;
        margin: 35px 0 0;
    }

    .step-2-bottom {
        display: flex;
        flex-direction: column;
    }

    .step-2-form-inner {
        flex-direction: column;
    }

    .step-2-label {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .step-2-email-confirmation {
        margin-top: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .step-1-image {
        width: 25%;
        height: 25%;
    }

    .step-2-image {
        width: 50%;
        height: 50%;
    }

    .icons-banner-column {
        margin: 0 0 35px;
    }
}

@media screen and (min-width: 768px) {
    .pt-page {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .icons-banner-column {
        margin: 0 0 30px;
    }

    .step-1-image {
        width: 40%;
        height: 40%;
    }

    .step-2-image {
        width: 55%;
        height: 55%;
    }
}

@media screen and (max-width: 599px) {
    .step-1-image {
        width: 50%;
        height: 50%;
    }

    .step-2-image {
        width: 75%;
        height: 75%;
    }
}