html, body{
    margin: 0;
}
*{
    font-family: Raleway;
    font-size: 20px;
    font-weight: 500;
}
.prototype{
    display: none;
}
button, input[type="submit"] {
    border: none;
    border-radius: 6px;
    background-color: #009fdf;
    color: #fff;
    font-size: 14px;
    padding: 11px;
    min-width: 145px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
a{
    text-decoration: none;
    color: inherit;
}
table{
    border-spacing: 0 10px;
}
.section_header{
    border-bottom: solid 3px #009fdf;
    display: table;
    width: 100%;
}
.section_header > div{
    display: table-cell;
    padding: 8px 20px;
    vertical-align: middle;
}
.section_header > div:nth-child(1){
    text-align: left;
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    color: #009fdf;
}
.section_header > div:nth-child(2){
    text-align: right;
    white-space: nowrap;
}
.section_header a{
    text-decoration: underline;
    color: #404040;
}
.section_content{
    padding: 40px 20px;
}
input[type="text"], input[type="password"], input[type="search"], input[type="email"]{
    width: 300px;
    height: 36px;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    border: solid 1px #979797;
    font-size: 14px;
    color: #4a4a4a;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 11px;
}
textarea{
    width: 300px;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    border: solid 1px #979797;
    font-size: 14px;
    color: #4a4a4a;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 11px;
}
select{
    font-size: 14px;
    border: 0;
    background-color: transparent;
    -webkit-appearance: none;
    height: 36px;
    cursor: pointer;
    padding-right: 15px;
}
option{
    font-size: 14px;
}
.select_holder {
    display: inline-block;
    border-bottom: solid 1px #979797;
    position: relative;
    vertical-align: middle;
}
.select_holder::after {
    content: '▼';
    font-size: 14px;
    color: #009fdf;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 36px;
    pointer-events: none;
}
.orthodox_link{
    text-decoration: underline;
    color: #009fdf;
}
@media only screen and (max-width: 690px){
    *{
        font-size: 14px;
    }
    button, input[type="submit"]{
        min-width: auto;
    }
    input[type="text"], input[type="password"], input[type="search"], input[type="email"], textarea{
        width: 200px;
    }
    .section_header > div:nth-child(1){
        font-size: 20px;
    }
}