html, body{
	height: 100%;
	font-family: 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 200;
	margin: 0;
	padding: 0;
	color: #1A407F;
}

/*--texts--*/
h1{
	font-size: 72px;
    font-weight: bold;
	font-weight: 700;
    line-height: 70px;
	margin-top: 20px;
    margin-bottom: 0;
}
h2{
    font-size: 32px;
    font-weight: bold;
	font-weight: 400;
    margin-top: 10px;
    margin-bottom: 15px;
}
p{
	font-size: 24px;
	font-weight: 300;
}
a{
	text-decoration: none;
	color: #ffffff;
}
a:hover{
	opacity:0.6;
	filter:alpha(opacity=60);
}

/*--general elements--*/
.header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 20px;
}
.logo{
    margin-left: 40px;
}
.logo img {
    width: 180px;
}
.soon{
    margin-right: 40px;
}
.container{
	width: 100%;
	margin: 0;
}
.content{
	max-width: 1050px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
    padding: 0 20px;
}
.dot{
    max-width: 540px;
    margin-right: 15px;
}
.dot img{
    width: 100%;
}
.text{
    max-width: 450px;
    display: flex;
    flex-direction: column;
}
.form {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}
.form input{
    width: calc(100% - 10px);
    height: 45px;
    border: 1px solid #CACACA;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 18px;
    color: #1A407F;
}
.form textarea{
    width: calc(100% - 10px);
    border: 1px solid #CACACA;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #1A407F;
}
/* Override .form input width; fixed width so "Send" / "Sending" never overlap (same padding as style.2) */
input[type=submit] {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    background-color: #1A407F;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 18px;
}
input[type=submit]:hover:not(:disabled) {
    background-color: #6780AA;
}
input[type=submit]:disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

/* honeypot: hide from users, leave for bots */
.form .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* form status message (success / error) */
.form-status {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-top: 12px;
    margin-bottom: 0;
    min-height: 1.5em;
}
.form-status.success {
    color: #1A407F;
}
.form-status.error {
    color: #c00;
}

/* thank-you block (shown on success instead of form) */
.thank-you {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}
.thank-you[hidden] {
    display: none;
}
.thank-you h2 {
    margin-bottom: 10px;
}
.thank-you p {
    margin-top: 0;
}

/*--adaptive--*/
@media only screen and (max-width: 800px)
	{
        .header {
             justify-content: center;
            padding-top: 40px;
        }
        .soon {
            display: none;
        }
        .content{
            flex-direction: column;
            align-items: center;
        }
        .text, .dot{
            width: 100%;
        }
        .dot{
            margin-right: 0;
            text-align: center;
        }
        .dot img{
            width: 80%;
        }
        h1{
            font-size: 48px;
            line-height: 46px;
            text-align: center;
        }
        p{
            font-size: 20px;
            text-align: center;
        }
        h2{
            font-size: 24px;
        }
        .thank-you h2{
            text-align: center;
        }
        .logo{
            margin-left: 0;
        }
}
