@charset "UTF-8";
:root {
  --accent: #309eb7;
  --link: #999999;
  --link-hover: #000000;
  --link-active: #000000;
  --link-visited: #000000;
  --nav-link: #000000;
  --nav-link-hover: #000000;
  --nav-dd-bg: #fafafa;
  --top-bar-bg: #f1f1f1;
  --footer-bg: #309eb7;
  --footer-text: #ffffff;
  --footer-link: #ffffff;
}

html {
  font-size: 17px;
}

body {
  -webkit-font-smoothing: antialiased;
  color: #555;
  outline-color: var(--accent);
  margin: 0;
}

a {
  color: var(--link);
}
a:hover {
  color: var(--link-hover);
}
a:active {
  color: var(--link-active);
}
a:visited {
  color: var(--link-visited);
}

input[type=submit] {
  width: auto;
  border: 0;
  border-radius: 3px;
  line-height: 1;
  font-size: 0.9em;
  background-color: var(--accent);
  padding: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}
input[type=submit]:hover, input[type=submit]:focus {
  background-color: var(--accent);
  text-decoration: none;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
  text-transform: uppercase;
}

h6 {
  font-size: 1em;
}

.section-title {
  color: var(--accent);
  text-align: center;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

blockquote {
  border-left: solid 0.2rem var(--accent);
  margin: 4rem 0 1.25rem 0;
  padding: 0.5rem 0 0 1.2rem;
}
blockquote:before, blockquote:after {
  content: "";
}
blockquote p:last-child {
  margin: 0;
}

ul {
  margin-top: 0.25em;
  margin-left: 0.7em;
  padding-left: 0.7em;
}

li {
  margin-bottom: 0.8em;
}

pre, fieldset, input, textarea, table, table *, hr {
  border-color: #e6e6e6;
}

th, td {
  border: solid 1px #e6e6e6;
  padding: 1em 0.5em;
  line-height: 1.4;
  margin: 0;
}

ul, ol {
  padding-left: 0.1em;
}
ul li, ol li {
  margin: 0.5em 0;
}

address {
  margin-bottom: 1rem;
  color: #999999;
}

cite {
  font-size: 1em;
  color: var(--accent);
}

.entry-title, .page-title, .widget-title {
  margin-top: 0;
}

#content {
  margin-top: 2.5em;
}

#client-showcase .item {
  margin-bottom: 1rem;
}

.entry-content {
  /*
  	form[class*="wp-block"] {
  		display: flex;
  		align-items: center;
  	}
  */
  /*
  	label[class*="wp-block"] {
  		width: 100%;
  	}
  */
}
.entry-content ul[class*=wp-block] {
  list-style: none;
}
.entry-content ul[class*=wp-block] li {
  margin-bottom: 1.2em;
}
.entry-content ul[class*=wp-block] li:before {
  content: "";
  font-family: "Dashicons";
  font-size: 0.8em;
  margin-right: 0.5em;
}
.entry-content input[type=search][class*=wp-block] {
  width: 100%;
  border-radius: 3px;
  padding: 0.5em;
}
.entry-content input[type=submit][class*=wp-block], .entry-content button[type=submit][class*=wp-block] {
  margin-left: 0.5em;
  border: 0;
  background: none;
  color: var(--accent);
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.entry-content select[class*=wp-block] {
  padding: 0.5em;
  border-radius: 3px;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
}

#header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #header-wrapper {
    display: block;
    text-align: center;
  }
}
#header-wrapper button:not(.menu-toggle) {
  padding: 0;
  border: 0;
  background: none;
  margin-left: auto;
  color: var(--accent);
}
#header-wrapper button:not(.menu-toggle) span {
  font-size: 2em;
  width: 100%;
  height: auto;
}
#header-wrapper .site-title {
  margin: 0;
}
#header-wrapper .site-title a {
  text-decoration: none;
}
#header-wrapper .site-description {
  margin: 0;
}

#masthead img {
  width: 100%;
}
@media (max-width: 991px) {
  #masthead img {
    margin: 2em auto 1em;
  }
}
#masthead.banner #header-wrapper {
  text-align: center;
  min-height: 400px;
}
#masthead.banner #header-wrapper > div {
  z-index: 9;
}

#ct_amulet_search {
  position: relative;
  text-align: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  #ct_amulet_search {
    width: 60%;
    margin: auto;
  }
}
#ct_amulet_search button:not([type=submit]) {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
#ct_amulet_search input[type=text] {
  border-radius: 0;
  padding: 0.4em 2em 0.4em 0;
  width: 100%;
}
#ct_amulet_search button[type=submit] {
  cursor: pointer;
  position: absolute;
  height: 100%;
  margin-right: 0.4em;
  right: 0;
  font-size: 0.8em;
}

.post {
  margin: 0 0 2em;
  padding: 0 0 3em;
}

article {
  border-bottom: solid 1px #eeeeee;
}
article .entry-title {
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
article .entry-title a {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}
article .entry-title a:hover {
  color: var(--accent);
}
article .entry-meta {
  display: flex;
  margin-bottom: 0.5em;
}
article .entry-meta a {
  color: black;
  text-decoration: underline;
  margin-right: 0.5em;
}
article .entry-meta img {
  margin-right: 0.5em;
  margin-left: 0.5em;
  border-radius: 50%;
}
article .entry-meta .posted-on, article .entry-meta .byline {
  display: flex;
  align-items: center;
}
article .entry-excerpt {
  margin-bottom: 0.8em;
  font-size: 0.9em;
  width: 80%;
  color: #999;
}
article .more-link {
  position: relative;
  display: inline-block;
  padding: 0.4em 0.6em;
  text-decoration: none;
  align-items: center;
  border: solid 1px #cccccc;
  color: var(--accent);
}
article .more-link:after {
  content: "";
  font-family: "Dashicons";
  position: relative;
  top: 2px;
  margin-left: 0.4em;
  transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
}
article .more-link:hover {
  color: var(--accent);
}
article .more-link:hover:after {
  margin-left: 0.7em;
}

.post-navigation span.dashicons {
  position: relative;
  top: 2px;
}

.nav-jumper {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
}

#site-navigation {
  text-align: center;
}
#site-navigation a {
  display: inline-block;
  text-decoration: none;
  color: var(--nav-link);
}
#site-navigation a:hover {
  color: var(--nav-link-hover);
  background-color: rgba(0, 0, 0, 0.02);
}
#site-navigation ul ul {
  background-color: white;
  box-shadow: 0px 3px 12px -5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  #site-navigation ul#primary-menu {
    display: inline-block;
    background-color: var(--nav-bg);
  }
  #site-navigation ul#primary-menu .dropdown-arrow {
    display: none;
  }
  #site-navigation ul#primary-menu > li {
    position: relative;
    float: left;
  }
  #site-navigation ul#primary-menu > li > a {
    padding: 0.5em 1em;
  }
  #site-navigation ul#primary-menu > li.menu-item-has-children > a:after {
    position: relative;
    content: "";
    font-family: "Dashicons";
    padding-left: 3px;
    top: 3px;
  }
  #site-navigation ul#primary-menu ul {
    flex-direction: column;
    text-transform: none;
    box-shadow: none;
    text-align: left;
    background-color: var(--nav-dd-bg);
  }
  #site-navigation ul#primary-menu ul li {
    position: relative;
    float: none;
    display: block;
    margin: 0;
  }
  #site-navigation ul#primary-menu ul li a {
    padding: 1em;
  }
  #site-navigation ul#primary-menu ul li:hover > ul, #site-navigation ul#primary-menu ul li.focus > ul {
    left: 100%;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  #site-navigation ul#primary-menu ul li.menu-item-has-children > a:after {
    position: relative;
    content: "";
    font-family: "Dashicons";
    float: right;
  }
  #site-navigation ul#primary-menu li:hover > ul {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

button.menu-toggle {
  width: auto;
  border: 0;
  border-radius: 3px;
  line-height: 1;
  font-size: 0.9em;
  background-color: var(--accent);
  padding: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin: auto;
  margin: 1em auto;
  cursor: pointer;
}
button.menu-toggle:hover, button.menu-toggle:focus {
  background-color: var(--accent);
  text-decoration: none;
}

@media (max-width: 991px) {
  #site-navigation .dropdown-arrow {
    cursor: pointer;
    margin: 3px 0 0 3px;
  }
  #site-navigation li {
    padding: 0.5em 0.8em;
    margin: 0;
  }
  #site-navigation li .dashicons {
    float: right;
  }
  #site-navigation a {
    background: none;
  }
  #site-navigation ul {
    width: 300px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.03);
  }
  #site-navigation ul ul {
    width: 100%;
    position: relative;
    opacity: 1;
    float: none;
    left: 0;
    box-shadow: none;
    background-color: rgba(221, 221, 221, 0.24);
  }
  #site-navigation ul ul a {
    width: auto;
  }
}
#footer-sidebar {
  background-color: var(--footer-bg);
  padding-top: 2rem;
  margin-top: 3rem;
}
#footer-sidebar h2.widget-title {
  color: #ffffff;
}
#footer-sidebar a {
  color: var(--footer-link);
  font-weight: 600;
}
#footer-sidebar .widget {
  color: var(--footer-text);
}
#footer-sidebar .widget li:before {
  color: var(--footer-text);
}

#colophon {
  background-color: var(--accent);
  text-align: center;
  color: white;
}
#colophon .site-info {
  display: inline-block;
  padding: 1em 0;
}
#colophon a {
  color: white;
  font-weight: 600;
}

/**
 *	Styling for the Pagination
 */
.ct-amulet-pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 1em auto;
  color: #aaaaaa;
}
.ct-amulet-pagination .nav-links > * {
  text-decoration: none;
  margin: 0.8em;
}
.ct-amulet-pagination .nav-links span.current {
  position: relative;
  font-weight: 400;
}

.widget {
  margin: 0 0 3em;
}
.widget:not(.widget_rss):not(.widget_text) {
  color: #aaaaaa;
}
.widget a:not(.widget_text) {
  text-decoration: none;
}
.widget a:not(.widget_text):hover {
  text-decoration: underline;
}
.widget h2, .widget .widget-title {
  color: var(--accent);
  font-weight: 700;
}
.widget article {
  border: 0;
  line-height: 1.5em;
}
.widget ul, .widget ol {
  list-style: none;
  margin-top: 0.25em;
  margin-left: 0.7em;
  padding-left: 0em;
}
.widget li {
  margin-bottom: 1.2em;
  position: relative;
  padding-left: 1.2em;
}
.widget li:before {
  content: "";
  font-family: "Dashicons";
  position: absolute;
  left: 0;
  font-size: 0.8em;
  color: #aaaaaa;
  line-height: 1.8em;
  margin-right: 0.5em;
}
.widget > ul {
  margin-left: 0;
  padding-left: 0;
}
.widget.widget_search form {
  display: flex;
  align-items: center;
}
.widget.widget_search label {
  width: 100%;
}
.widget.widget_search input[type=search] {
  width: 100%;
  border-radius: 0;
  padding: 0.5em;
}
.widget.widget_search input[type=submit], .widget.widget_search button[type=submit] {
  margin-left: 0.5em;
  border: 0;
  background: none;
  color: var(--accent);
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.widget.widget_search.widget_block label {
  display: none;
}
.widget select {
  padding: 0.5em;
  border-radius: 3px;
}

#respond input[type=submit] {
  width: auto;
  border: 0;
  border-radius: 3px;
  line-height: 1;
  font-size: 0.9em;
  background-color: var(--accent);
  padding: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}
#respond input[type=submit]:hover, #respond input[type=submit]:focus {
  background-color: var(--accent);
  text-decoration: none;
}

.comment-body {
  border-bottom: solid 1px #eeeeee;
}

#comments ol, #comments ul {
  list-style: none;
}
#comments .comment-meta a {
  margin-right: 0.5em;
  text-decoration: none;
}
#comments .comment-author {
  display: flex;
  align-items: center;
}
#comments .comment-author img {
  border-radius: 50%;
  margin-right: 0.5em;
}
#comments .reply a {
  display: inline-block;
  width: auto;
  border: 0;
  border-radius: 3px;
  line-height: 1;
  font-size: 0.9em;
  background-color: var(--accent);
  padding: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin-bottom: 1.4em;
  text-decoration: none;
}
#comments .reply a:hover, #comments .reply a:focus {
  background-color: var(--accent);
  text-decoration: none;
}
#comments p {
  margin-left: 1em;
}

body.single .entry-content, body.page .entry-content {
  margin-bottom: 1em;
}
body.single .entry-title, body.page .entry-title {
  color: black;
}
body.single .singular-thumb, body.page .singular-thumb {
  margin-bottom: 1em;
}
body.single .entry-footer a, body.page .entry-footer a {
  margin-left: 0.4em;
}
body.single .entry-footer .edit-link a, body.page .entry-footer .edit-link a {
  display: inline-block;
  width: auto;
  border: 0;
  border-radius: 3px;
  line-height: 1;
  font-size: 0.9em;
  background-color: var(--accent);
  padding: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}
body.single .entry-footer .edit-link a:hover, body.single .entry-footer .edit-link a:focus, body.page .entry-footer .edit-link a:hover, body.page .entry-footer .edit-link a:focus {
  background-color: var(--accent);
  text-decoration: none;
}
body.single .nav-links a, body.page .nav-links a {
  text-decoration: none;
}

button.top-menu-mobile {
  background-color: var(--accent);
  cursor: pointer;
  border: 0;
  padding: 0.6em 0.75em;
  color: white;
  display: flex;
  font-weight: 700;
}

#top-navigation {
  position: static;
  display: inline-block;
  position: relative;
  float: left;
}
#top-navigation .top-toggled {
  display: block;
}
#top-navigation a {
  color: var(--nav-link);
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 700;
}
#top-navigation a:hover {
  color: var(--nav-link-hover);
  text-decoration: underline;
}
@media (min-width: 992px) {
  #top-navigation button {
    display: none;
  }
  #top-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-transform: uppercase;
  }
  #top-navigation ul li {
    float: left;
    margin: auto 0.5em;
  }
}
@media (max-width: 991px) {
  #top-navigation.toggled ul, #top-navigation.toggled .jumper {
    display: block;
  }
  #top-navigation .jumper {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
  }
  #top-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 100%;
    z-index: 99;
    min-width: 120px;
    left: 0;
    right: 0;
    background-color: var(--top-bar-bg);
  }
  #top-navigation ul li {
    margin: 0.4em 0.8em;
  }
}

#ct-top-bar {
  position: relative;
  padding: 0.25em 0;
  background-color: var(--top-bar-bg);
}
#ct-top-bar .container {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #ct-top-bar {
    display: flex;
    align-items: center;
  }
}
#ct-top-bar #top-content {
  display: inline-block;
  margin-left: auto;
  float: left;
}
#ct-top-bar #top-content button {
  display: none;
}
#ct-top-bar #top-content p {
  margin: 0;
}
@media (max-width: 767px) {
  #ct-top-bar #top-content {
    display: block;
    margin-left: auto;
    position: static;
    left: 0;
  }
  #ct-top-bar #top-content p {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4em 15px;
    visibility: hidden;
    z-index: 9;
  }
  #ct-top-bar #top-content button {
    display: block;
    cursor: pointer;
  }
}
#ct-top-bar #top-content button {
  background-color: rgba(0, 0, 0, 0.3);
  border: 0;
  padding: 0.25em;
  border-radius: 50%;
  color: white;
}
#ct-top-bar #ct-social-icons {
  z-index: 9;
}
#ct-top-bar #ct-social-icons .icon {
  float: left;
  margin: auto 0.4em;
}
#ct-top-bar #ct-social-icons .icon .dashicons-facebook-alt {
  color: #278EEA;
}
#ct-top-bar #ct-social-icons .icon .dashicons-twitter {
  color: #33a4ec;
}
#ct-top-bar #ct-social-icons .icon .dashicons-rss {
  color: #e66237;
}
#ct-top-bar #ct-social-icons .icon .dashicons-pinterest {
  color: #c22532;
}
#ct-top-bar #ct-social-icons .icon .dashicons-mail {
  color: #000000;
}
#ct-top-bar #ct-social-icons .icon .dashicons-youtube {
  color: #f91628;
}
#ct-top-bar #ct-social-icons .icon .dashicons-instagram {
  color: #c141a4;
}
#ct-top-bar #ct-social-icons .icon .dashicons-linkedin {
  color: #1d6abc;
}
#ct-top-bar #ct-social-icons .icon .dashicons-twitch {
  color: #5e45a2;
}
#ct-top-bar #ct-social-icons .icon .dashicons-xing {
  color: #c7d152;
}
#ct-top-bar #ct-social-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  #ct-top-bar #ct-social-icons {
    position: fixed;
    right: 0;
    top: 30vh;
  }
  #ct-top-bar #ct-social-icons .icon {
    float: none;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.75);
  }
  #ct-top-bar #ct-social-icons .icon a {
    color: white;
  }
  #ct-top-bar #ct-social-icons .icon a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }
}

body.error404 #primary {
  width: 100%;
  text-align: center;
}

.wpcf7 input:not([type=submit]), .wpcf7 textarea, .wpcf7 select {
  border-radius: 0;
  width: 100%;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item, .wpcf7 .wpcf7-radio .wpcf7-list-item {
  display: block;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input, .wpcf7 .wpcf7-radio .wpcf7-list-item input {
  width: auto;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.85em;
  font-weight: 700;
}
