/*!
Theme Name: aaa
Version: 1.0.0
Text Domain: aaa
*/

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: #111;
    font-family: "Open Sans", sans-serif;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.45;
    background-color: #fff
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body, h1, h2, h3, h4, h5, h6, ul, li, ol, p, pre, textarea, iframe, legend, blockquote, body, dd, dl, dt, fieldset {
    padding: 0;
    margin: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    color: #111;
    text-decoration: none;
    cursor: pointer;
}

input,
textarea,
button,
.button,
.checkbox,
select {
    appearance: none;
    -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea {
    padding: 3px;
    border: 1px solid #ccc;
    transition: 0.3s;
    box-shadow: none;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #888;
}

textarea {
    width: 100%;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    color: #fff;
    font-size: 0.875rem;
    border: 0;
    border-radius: 0;
    padding: 12px 20px;
    background-color: #1a1a1a;
    transition: 0.3s;
    -webkit-appearance: button;
    cursor: pointer;
}

table {
    width: 100%;
}

th,
td {
    padding: 5px;
    border: 1px solid #ccc;
}

pre {
    max-width: 100%;
    font-family: Menlo, Consolas, monaco, monospace;
    font-size: 0.875rem;
    background-color: #eff3f5;
    padding: 1.1em;
    border-radius: 3px;
    overflow: auto;
}

.container {
    max-width: 1150px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header */
.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 65px;
    align-items: center;
}

.main-navigation {
    flex: 1;
    justify-content: flex-end;
    display: flex;
}

.site-branding {
    flex: 1;
}

.main-navigation ul li {
    float: left;
    margin: 0 10px;
}

.site-title {
    margin: 0;
}

/* Content */
.entry-content {
	margin-bottom: 45px;
}