body {
    font-family: $didact-gothic-font;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: $secondary-color;
    overflow-x: hidden;
    background: #151725;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

p {
    font-family: $didact-gothic-font;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: $secondary-color;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: $barlow-font;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: $secondary-bg-color;
}

span,
a{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: $primary-color;
}

/* text field */

button,
input,
optgroup,
select,
textarea,
select {
    font-family: $oswald-font;
}

input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea,
select {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 5px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: $didact-gothic-font;
    font-size: 16px;
    font-weight: 400;
    color: $secondary-color;
    background-image: none;
    border-bottom: 1px solid $secondary-bg-color;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}

input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: $primary-color;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: $primary-color;
    border: 1px solid transparent;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: $secondary-bg-color;
    color: $secondary-color;
    border: 1px solid transparent;
}

select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

/* blockquote */

blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: $secondary-bg-color;
    overflow: hidden;
    margin: 35px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: $secondary-color;
}

blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
}

blockquote:before {
    content: '\e645';
    font-family: 'Themify';
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: $white-color;
}

blockquote p {
    margin-bottom: 0;
}

blockquote p a {
    color: inherit;
}

blockquote cite {
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding-left: 60px;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: $primary-color;
    font-weight: 400;
}

blockquote cite:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: $primary-color;
}

/* Placeholder */

::-webkit-input-placeholder {
    color: $secondary-color;
    font-size: 15px;
    font-weight: 400;
}

:-moz-placeholder {
    color: $secondary-color;
}

::-moz-placeholder {
    color: $secondary-color;
    opacity: 1;
}

:-ms-input-placeholder {
    color: $secondary-color;
}


.site-content{
    ul,ol{
        margin-bottom: 20px;
        padding-left: 20px;
        li:not(:last-child){
            margin-bottom: 10px;
        }
    }
}