@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kulim+Park:400,700&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*
End reset
*/

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
} 
a,
a:hover,
a:visited {
    text-decoration: none;
    color: #ff0c67;
}

strong {
    font-weight: bold;
}

h2 a {
    font-weight: bold;
}

.page-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-height: 50px;
    max-width: 1000px;
    margin: 30px auto 0 auto;

}

.page-header img {
    height: 30px;
}

.page-header nav ul {
    display: flex;
}

.page-header nav ul li:not(:first-of-type) {
    margin-left: 50px;
}

section article {
    max-width: 1000px;
    margin: 50px auto;
}

.title {
    display: flex;
    align-items: center;
}

.title img {
    margin: 0 40px;
}

h1 {
    font-size: 35px;
    font-weight: normal;
}

h2 {
    font-size: 35px;
    color: #ff0c67;
    margin: 80px 0;
    text-align: center;
}

.title h2 {
    font-style: italic;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
}

.title h2,
.title button {
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
}

form .form-group {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 10px;
    justify-content: center;
}

form .form-group label {
    margin-right: 15px;
    flex:0;
    min-width: 100px;
}

form .form-group.reverse label {
    flex:1;
    margin: 0;
    margin-left: 15px;
}
form .form-group.reverse input {
    flex:0 1 20px;
}
input[type="checkbox"] {
    min-width: 20px;
}


form .form-group input {
    flex:1;
    font-size: 18px;
}

form .form-group input[type="submit"] {
    flex: 0;
}

form .disclaimer {
    font-size: 14px;
    color: #666666;
    padding: 10px 0px;
}

form p {
    text-align: center;
    padding: 50px 0;
}

.mandatory::after {
    content: '*';
    vertical-align: super;
    color: #ff0C67;
}

button, input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: #ff0c67;
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-family: 'Ubuntu';
    font-size: 18px;
    border: none;
    
}

button a,
button a:hover,
button a:visited {
    color: #ffffff;
}

article h3 {
    font-size: 24px;
    margin-bottom: 10px;
}


.text-with-image {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.text-with-image .image {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.text-with-image .image img {
    max-width: 70px;
}

.text-with-image .text {
    flex: 1 1 75%;
    margin-bottom: 40px;
}

.text-with-image .text p {
    line-height: 24px;
}

.pink {
    background-color: #ff0c67;
    padding: 80px 0;
}

.pink p,
.pink h2 {
    color: #ffffff;
    text-align: center;
}

.pink h2 {
    margin-top: 0;
}

.pink p {
    margin-bottom: 20px;
}


.contact ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact ul li:not(:first-of-type) {
    margin-left: 30px;
}
.contact li {
    display: flex;
    align-items: center;
}
.contact a img {
    max-width: 30px;
    margin-right: 10px;
}
span.logo {
    font-family: 'Kulim Park';
    font-weight: bold;
}

@media screen and (max-device-width: 768px) {
    .page-header {
        justify-content: center;
    }
    .page-header nav {
        display: none;
    }
    .title > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .title img {
        display: none;
    }
    h1,.title h2,h3,.text-with-image .text {
        text-align: center;
    }
    .white,
    .pink {
        padding: 0 10px;
    }
    input[type="email"],
    input[type="text"] {
        border: 1px solid #A0A0A0;

    }
    form .form-group {
        width: auto;
    }

    .text-with-image {
        flex-direction: column;
    }

    .pink {
        padding: 40px 10px;
    }

}
