/*
Theme Name: AOTE
Author: pixelmort
*/

* {
    box-sizing:border-box;
}

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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering:optimizeLegibility;
    overflow-x:hidden;
}

body {
    font-family:"Titillium Web", sans-serif;
    font-weight:normal;
    font-size:16px;
    line-height:26px;
    color:#333333;
    background:#fff;
}

a,
a:focus,
a:visited,
a:active {
    color:#f0ab21;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover {
    color:#f0ab21;
    text-decoration: none;;
}

strong {font-weight:bold;}

h1,h2,h3,h4,h5,h6 {
    font-family:"Titillium Web", sans-serif;
    font-weight:bold;
    margin-bottom:0.8em;
}

h1 {font-size:2.2em; line-height:1em;}
h2 {font-size:1.7em; line-height:1.5em;}
h3 {font-size:1.5em; line-height:1.5em; font-weight:normal;}
h4 {font-size:1em; line-height:1em;}
h5 {font-size:1em; line-height:1em; font-weight:normal;}
h6 {font-size:1em; line-height:1em; font-weight:300;}

h1.underlined,
h2.underlined,
h3.underlined {
   font-weight:bold; 
}
h1.underlined:after,
h2.underlined:after,
h3.underlined:after {
    content:" ";
    display:block;
    width:50px;
    background:#f0ab21;
    height:3px;
    margin-top:15px;
}

h1.orange,
h2.orange,
h3.orange {
   color:#f0ab21;
}

.highlight {
    color:#fff;
    background:#f0ab21;
    padding:0 0.5em;
    border-radius:4px;
    display:inline-block;
    margin:3px 0;
}

p {
    margin-bottom:1em;
}

ul {
    margin:none;
    padding:none;
    list-style:none;
}

#primary ul {
    margin:0 0 1em 1em;
    list-style:disc;
}

label {
    font-weight:600;
    font-size:1.2em;
    line-height:1.4em;
    display:block;
}

input[type="text"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="tel"],
input[type="address"],
input[type="email"] {
    border:none;
    outline:0;
    background:#f2f7f6;
    color:#333;
    font-size:1em;
    line-height:1em;
    padding:0.7em 1em;   
    box-sizing:border-box;
    font-family:"Titillium Web", sans-serif;
    font-weight:normal;
    width:100%;
    border-radius:5px;
}

textarea {
    border:none;
    outline:0;
    background:#f2f7f6;
    color:#333;
    font-size:1em;
    line-height:1em;
    padding:0.7em 1em;   
    box-sizing:border-box;
    font-family:"Titillium Web", sans-serif;
    font-weight:normal;
    width:100%;
    border-radius:5px;
}

select {
    border:none;
    outline:0;
    background:#f2f7f6;
    color:#333;
    font-size:1em;
    line-height:1em;
    padding:0.7em 1em;   
    box-sizing:border-box;
    font-family:"Titillium Web", sans-serif;
    font-weight:normal;
    width:100%;
    border-radius:5px;
}

button[type="submit"],
input[type="submit"] {
    border:none;
    padding:0.5em 1.5em;
    font-weight:bold;
    font-size:1em;
    outline:0;
    color:#fff;
    background:#f0ab21;
    border-radius:5px;
    
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
    background:#e69f10; 
}

input::-webkit-input-placeholder {color: #333;}
input:-moz-placeholder {color: #333;}
input::-moz-placeholder {color: #333;}
input:-ms-input-placeholder {color: #333;}

textarea::-webkit-input-placeholder {color: #333;}
textarea:-moz-placeholder {color: #333;}
textarea::-moz-placeholder {color: #333;}
textarea:-ms-input-placeholder {color: #333;}


form .form-field {margin-bottom:1.5em;}
img {
    max-width:100%;
}

img.alignleft {
    float:left;
    margin:0 1em 1em 0;
}
img.alignright {
    float:right;
    margin:0 0 1em 1em;
}
img.aligncenter {
    margin:1em auto;
    float:none;
    display:block;
}

#website-header {
    background:#fff;
    position:relative;
    z-index:100;
    border-bottom:1px solid #000;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#website-header .top {
    clear:both;
}
#website-header .top .info {
    font-size:1em;
    color:#f0ab21;
    text-align:right;
}
#website-header .top .info > span {
    margin-left:0.5em;
}
#website-header .top .info > span:after {
    content:">>";
     margin-left:0.5em;
}
#website-header .top .info > span:last-child:after {display:none}
#website-header .bottom {
    clear:both;
    padding:0.5em 0;
}
#website-header .bottom:after {
    content:" ";
    display:block;
    clear:both;
}
#website-header .bottom .website-logo {
    float:left;
    max-width:20%;
    display:block;
    margin-top:-15px;
}
#website-header .bottom .website-logo img {
    display:block;
    width:100%;
}
#website-header .bottom #primary-nav {
    float:right;
    padding:0.5em 0;
}
#primary-nav .nav-trigger {
    background:none;
    border:none;
    font-size:35px;
    float:right;
    display:none;
    outline:0;
}
#primary-nav ul,
#primary-nav .primary-menu {
    font-family:"Raleway",sans-serif;
    list-style:none;
    margin:0;
    padding:0;
}
#primary-nav .primary-menu li {}
#primary-nav .primary-menu li a {
    color:#333;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
#primary-nav .primary-menu > li {
    display:inline-block;
    font-weight:bold;
    position:relative;
}
#primary-nav .primary-menu > li > a {
    display:block;
    padding:0.5em 1em;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
#primary-nav .primary-menu > li:hover > a {
    background:#f2f7f6;
    color:#333;
}
#primary-nav .primary-menu > li.outline > a {
    background:#efd929;
    color:#5a095e;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
#primary-nav .primary-menu > li.outline:hover > a {
    background:#dcc50f;
}
#primary-nav .primary-menu .sub-menu {
    max-height:300px;
    position:absolute;
    top:35px;
    background:#fff;
    min-width:270px;
    opacity:0;
    visibility:hidden;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
}
#primary-nav .primary-menu li:hover > .sub-menu {
    top:45px;
    opacity:1;
    visibility:visible;
}

#primary-nav .primary-menu .sub-menu li {
    font-weight:normal;
    font-size:0.9em;
    border-bottom:1px solid #fcfcfc;
}
#primary-nav .primary-menu .sub-menu li:last-child {border:none;}
#primary-nav .primary-menu .sub-menu li:hover {
    background:#f2f7f6;
    color:#333;
}
#primary-nav .primary-menu .sub-menu li a {
    padding:0.5em 0.5em;
    display:block;
}
#primary-nav .primary-menu .sub-menu li > .sub-menu {
    left:270px;
    top:0;
    opacity:0;
    visibility:hidden;
}

#primary-nav .primary-menu .sub-menu li:hover > .sub-menu {
    opacity:1;
    visibility:visible;
}

.mCSB_inside > .mCSB_container {
    margin-right:0px !important;
}

#feadr {
    margin:2em 0;
}
#feadr img {
    max-width:100%;
    margin:0 auto;
    display:block;
}

#website-footer {
    color:#fff;
    background:#333333;
    padding:3em 0;
}

#website-footer a {
    color:#fff;
}
#website-footer .widget {
    padding:1em;
}
#website-footer .widget-title {}

#website-main {
    padding:3em 0;
}
#website-main {}

#primary {
    padding:1em;
}

#secondary {
    padding:1em;
}
#secondary .widget {
    font-size:1em;
    margin-bottom:1em;
}
#secondary .widget-title {
    font-weight:bold;
    font-size:1.2em;
}
#secondary ul {
    list-style: none;
    padding: 0;
}
#secondary ul li {
    font-weight:bold;
    padding:0.5em 0.3em 0.5em 2em;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
#secondary ul li:before {
    content: "\f152"; 
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em; 
    width: 1.3em;
    
}
#secondary ul li a {
    color:inherit;
    transition: none;
}

#secondary ul li:hover {
    background:#efd929;
    color:#fff;
}
#secondary .widget.widget_search .screen-reader-text {display:none;}
#secondary .widget.widget_search .search-submit {display:none;}

.button {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.button.transparent {
    font-family:"Raleway",sans-serif;
    color:#333;
    background:none;
    border:1px solid #f0ab21;
    text-transform:uppercase;
    font-weight:bold;
    padding:1em 4em;
    border-radius:5px;
    white-space: nowrap;
}
.button.transparent:hover {
    background:#f0ab21;
    color:#fff;
}

#page-header {
    background:#f0ab21;
    color:#fff;
    padding:3em 0;
    text-align:center;
}
#page-header h1 {
    font-size:3em;
    margin:0;
    padding:0;
}

.article-list {}
.article-list article {
    padding:1em 0;
    border-bottom:1px solid #fafafa;
}
.article-list article {}