/*
 Theme Name:   System 
 Theme URI:    https://system.it
 Description:  System Theme
 Author:       Marco Giannini
 Template:     astra
 Version:      1.0.0
*/

/*
* ---------------------------------------------------------
* Include scss modules.
* Mixins, Expands, Variables
* ---------------------------------------------------------
*/
/*
* @return bg-white
*/
.bg-blue {
  background-color: #1c73b6;
}

.bg-green {
  background-color: #95C032;
}

.bg-white {
  background-color: #fff;
}

.bg-deep-grey {
  background-color: #262728;
}

.bg-grey {
  background-color: #3B3C3D;
}

.bg-light-grey {
  background-color: #E7E8E9;
}

/*
* @return text-white
*/
.text-blue {
  color: #1c73b6;
}

.text-green {
  color: #95C032;
}

.text-white {
  color: #fff;
}

.text-deep-grey {
  color: #262728;
}

.text-grey {
  color: #3B3C3D;
}

.text-light-grey {
  color: #E7E8E9;
}

.row-wrap {
  flex-wrap: wrap;
}

/*
* ---------------------------------------------------------
* Create flex alignments.
* @return .row-v-top
* ---------------------------------------------------------
*/
.row-v-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.row-v-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.row-v-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.row-v-s-between {
  display: flex;
  flex-direction: row;
  align-items: space-between;
}

.row-h-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.row-h-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.row-h-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.row-h-s-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.column-v-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.column-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.column-v-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.column-v-s-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-h-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.column-h-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column-h-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.column-h-s-between {
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

.l-align {
  text-align: left;
}

.c-align {
  text-align: center;
}

.r-align {
  text-align: right;
}

/*
* @return xs-padding-top : $spacing-$distance-$position
*/
.no-padding-top {
  padding-top: 0;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-padding-left {
  padding-left: 0;
}

.no-margin-top {
  margin-top: 0;
}

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

.no-margin-bottom {
  margin-bottom: 0;
}

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

.xs-padding-top {
  padding-top: 10px;
}

.xs-padding-right {
  padding-right: 10px;
}

.xs-padding-bottom {
  padding-bottom: 10px;
}

.xs-padding-left {
  padding-left: 10px;
}

.xs-margin-top {
  margin-top: 10px;
}

.xs-margin-right {
  margin-right: 10px;
}

.xs-margin-bottom {
  margin-bottom: 10px;
}

.xs-margin-left {
  margin-left: 10px;
}

.sm-padding-top {
  padding-top: 15px;
}

.sm-padding-right {
  padding-right: 15px;
}

.sm-padding-bottom {
  padding-bottom: 15px;
}

.sm-padding-left {
  padding-left: 15px;
}

.sm-margin-top {
  margin-top: 15px;
}

.sm-margin-right {
  margin-right: 15px;
}

.sm-margin-bottom {
  margin-bottom: 15px;
}

.sm-margin-left {
  margin-left: 15px;
}

.md-padding-top {
  padding-top: 20px;
}

.md-padding-right {
  padding-right: 20px;
}

.md-padding-bottom {
  padding-bottom: 20px;
}

.md-padding-left {
  padding-left: 20px;
}

.md-margin-top {
  margin-top: 20px;
}

.md-margin-right {
  margin-right: 20px;
}

.md-margin-bottom {
  margin-bottom: 20px;
}

.md-margin-left {
  margin-left: 20px;
}

.lg-padding-top {
  padding-top: 50px;
}

.lg-padding-right {
  padding-right: 50px;
}

.lg-padding-bottom {
  padding-bottom: 50px;
}

.lg-padding-left {
  padding-left: 50px;
}

.lg-margin-top {
  margin-top: 50px;
}

.lg-margin-right {
  margin-right: 50px;
}

.lg-margin-bottom {
  margin-bottom: 50px;
}

.lg-margin-left {
  margin-left: 50px;
}

.default-padding-top {
  padding-top: 45px;
}

.default-padding-right {
  padding-right: 45px;
}

.default-padding-bottom {
  padding-bottom: 45px;
}

.default-padding-left {
  padding-left: 45px;
}

.default-margin-top {
  margin-top: 45px;
}

.default-margin-right {
  margin-right: 45px;
}

.default-margin-bottom {
  margin-bottom: 45px;
}

.default-margin-left {
  margin-left: 45px;
}

/*
* ---------------------------------------------------------
* Include scss components
* ---------------------------------------------------------
*/
body {
  font-family: "Source Sans Pro";
  line-height: 1.4;
  font-size: 16px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4 !important;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

h4.small {
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

.elementor-slides .slick-slide-inner div.elementor-slide-heading {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px !important;
}

.elementor-slides .slick-slide-inner div.elementor-slide-description {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px !important;
}

.elementor-slides .slick-slide-inner div.elementor-slide-button {
  width: 250px;
  border-radius: 0;
  text-transform: uppercase;
  border-width: 1px;
  font-size: 16px;
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

a.arrow-link::after {
  content: '>';
  position: relative;
  left: 5px;
  top: 1px;
  transition: .3s;
}

a.arrow-link:hover::after {
  left: 15px;
  color: #95C032;
}

a:hover,
a:focus {
  color: #95C032;
}

.divider,
.ast-archive-description h1 {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.divider::before,
.divider--left::before,
.ast-archive-description h1::before,
.ast-archive-description h1--left::before {
  position: absolute;
  bottom: 0;
  content: '';
  background-color: #c5c5c5;
  height: 2px;
  width: 80px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: 0;
}

.divider--center::before,
.ast-archive-description h1--center::before {
  margin-left: auto;
  margin-right: auto;
}

.divider--right::before,
.ast-archive-description h1--right::before {
  margin-left: auto;
  margin-right: 0;
}

.divider--small::before,
.ast-archive-description h1--small::before {
  width: 40px;
}

span.wpcf7-list-item {
  margin-left: 0;
}

.elementor-popup-modal .wpcf7 input[type=checkbox] {
  margin-top: 15px;
  margin-bottom: 15px;
}

.elementor-popup-modal .text-blue * {
  color: #1c73b6;
}

.ast-separate-container {
  background-color: white;
}

.ast-above-header-section .user-select .ast-search-menu-icon a {
  color: #96C032;
}

.ast-above-header-section .user-select .ast-search-menu-icon form {
  margin-right: 15px;
}

body.home .ast-above-header {
  background-color: transparent;
}

body:not(.home) header.site-header {
  position: relative;
}

body:not(.home) .ast-above-header {
  background-color: #262728;
}

.container {
  max-width: 100%;
}

header.site-header {
  position: absolute;
  left: 0;
  right: 0;
}

header.site-header .ast-above-header .ast-above-header-section-1 {
  color: white;
}

header.site-header .ast-above-header .ast-above-header-section-1 i {
  margin-right: 5px;
  color: white;
}

header.site-header .ast-above-header .ast-above-header-section-1 a {
  color: inherit;
}

header.site-header .ast-above-header .ast-above-header-section-1 a:first-child {
  margin-right: 25px;
}

header.site-header .ast-above-header .ast-above-header-section-2 ul li {
  margin: 0 .5em;
}

header.site-header .ast-above-header .ast-above-header-section-2 ul li a {
  padding: 0 0.5em !important;
  color: white;
}

header.site-header .ast-above-header .ast-above-header-section-2 ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

header.site-header .main-header-bar {
  border-bottom: 0;
  padding: 5px 0;
}

header.site-header .main-header-bar .main-header-container {
  align-items: center;
}

header.site-header .main-header-bar .main-header-container nav {
  display: flex;
  align-items: center;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li {
  margin: 0 .5em;
  padding: 0;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li.button--grey {
  color: #3a3a3a;
  border: 1px solid;
  background-color: white;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li.button--grey:hover {
  background-color: #eee;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li:not(.button) a:hover {
  color: #95C032;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li a {
  color: inherit;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  padding: 0 .5em;
  line-height: 2.5;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li:nth-last-child(2) {
  margin-right: 0;
}

header.site-header .main-header-bar .main-header-container nav .main-navigation ul li.not-uppercase a {
  text-transform: initial;
}

footer .footer-adv-a h2.widget-title {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #95C032;
}

footer .footer-adv-a .footer-adv-widget-1 p {
  font-size: 14px;
  line-height: 1.5;
  color: #a0a0a0;
}

footer .footer-adv-a .footer-adv-widget-1 p a {
  text-decoration: underline;
}

footer .footer-adv-a .footer-adv-widget-4 .widget {
  margin-bottom: 15px;
}

footer .footer-adv-a .footer-adv-widget-4 .wpcf7-acceptance label {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 15px;
  display: block;
  color: #a0a0a0;
}

footer .footer-adv-a .footer-adv-widget-4 .elementor-social-icon i {
  font-family: "Font Awesome 5 Brands";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: initial;
}

footer .footer-adv-a .menu li a {
  font-size: 14px;
}

footer .ast-small-footer {
  border-top: 0;
}

footer .ast-small-footer .ast-footer-overlay {
  background-color: #262728;
}

footer .ast-small-footer .menu li {
  display: inline;
}

footer .ast-small-footer .menu li::after {
  content: '|';
  padding-right: 2px;
  padding-left: 5px;
}

footer .ast-small-footer .menu li:last-child::after {
  content: none;
}

footer .ast-small-footer .menu li a {
  font-size: 14px;
  color: #ccc;
}

footer .ast-small-footer .menu li a:hover {
  color: #fff;
}

footer .widget_adv_dem_widget input,
footer .widget_adv_dem_widget button {
  width: 100%;
}

.footer-sml-layout-1 .ast-small-footer-section-2 {
  font-size: 13px;
}

.elementor-slides .slick-slide-inner .elementor-slide-content {
  padding-top: 95px;
}

.elementor-slides .slick-slide-inner .elementor-slide-content .elementor-slide-heading {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px !important;
}

.elementor-slides .slick-slide-inner .elementor-slide-content .elementor-slide-description {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px !important;
}

.elementor-slides .slick-slide-inner .elementor-slide-content .elementor-slide-button {
  width: 250px;
  border-radius: 0;
  text-transform: uppercase;
  border-width: 1px;
  font-size: 16px;
  font-weight: 600;
}

div.elementor-counter {
  color: white;
  padding: 15px 0 35px 0;
}

div.elementor-counter .elementor-counter-number-wrapper {
  color: inherit;
  font-size: 44px;
  font-weight: 900;
}

div.elementor-counter .elementor-counter-title {
  color: inherit;
  line-height: 1.5;
  font-weight: 600;
}

.subscribe--cta {
  margin-top: 45px;
}

.button,
.wpcf7-submit,
button[type="submit"],
.ast-button {
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  border: 1px solid white;
  display: inline-block;
  border-radius: 0;
  letter-spacing: 1px;
  transition: .3s;
  max-width: 100%;
}

.button.button--blue,
.button.wpcf7-submit,
.button.button--transparent:hover,
.wpcf7-submit.button--blue,
.wpcf7-submit.wpcf7-submit,
.wpcf7-submit.button--transparent:hover,
button[type="submit"].button--blue,
button[type="submit"].wpcf7-submit,
button[type="submit"].button--transparent:hover,
.ast-button.button--blue,
.ast-button.wpcf7-submit,
.ast-button.button--transparent:hover {
  background-color: #1c73b6;
  border-color: #278ede;
}

.button.button--blue:hover,
.button.wpcf7-submit:hover,
.button.button--transparent:hover:hover,
.wpcf7-submit.button--blue:hover,
.wpcf7-submit.wpcf7-submit:hover,
.wpcf7-submit.button--transparent:hover:hover,
button[type="submit"].button--blue:hover,
button[type="submit"].wpcf7-submit:hover,
button[type="submit"].button--transparent:hover:hover,
.ast-button.button--blue:hover,
.ast-button.wpcf7-submit:hover,
.ast-button.button--transparent:hover:hover {
  background-color: #15578a !important;
  border-color: #15578a !important;
}

.button.button--green,
.button .wpcf7-submit:hover,
.wpcf7-submit.button--green,
.wpcf7-submit .wpcf7-submit:hover,
button[type="submit"].button--green,
button[type="submit"] .wpcf7-submit:hover,
.ast-button.button--green,
.ast-button .wpcf7-submit:hover {
  background-color: #95C032;
  border-color: #acd253;
}

.button.button--green:hover,
.button .wpcf7-submit:hover:hover,
.wpcf7-submit.button--green:hover,
.wpcf7-submit .wpcf7-submit:hover:hover,
button[type="submit"].button--green:hover,
button[type="submit"] .wpcf7-submit:hover:hover,
.ast-button.button--green:hover,
.ast-button .wpcf7-submit:hover:hover {
  background: #769827;
  border-color: #769827;
}

.button.button--grey,
.wpcf7-submit.button--grey,
button[type="submit"].button--grey,
.ast-button.button--grey {
  background-color: #AAA;
  border-color: #AAA;
}

.button.button--grey:hover,
.wpcf7-submit.button--grey:hover,
button[type="submit"].button--grey:hover,
.ast-button.button--grey:hover {
  background-color: #3B3C3D;
  border-color: #3B3C3D;
}

.button.button--transparent,
.wpcf7-submit.button--transparent,
button[type="submit"].button--transparent,
.ast-button.button--transparent {
  background-color: transparent;
}

.button--min-width,
button[type="submit"] {
  min-width: 200px;
  text-align: center;
}

button[type="submit"] {
  background-color: #1c73b6;
  border-color: #278ede;
}

button[type="submit"]:hover {
  background-color: #15578a;
  border-color: #15578a;
}

.wpcf7-submit:hover {
  background-color: #95C032 !important;
  border-color: #acd253 !important;
}

.ast-button {
  background-color: #1c73b6;
  border-color: #278ede;
}

.ast-button:hover {
  background-color: #15578a !important;
  border-color: #15578a !important;
}

/*
* ---------------------------------------------------------
* Homepage Services
* ---------------------------------------------------------
*/
.service-taxonomy {
  position: relative;
  min-height: 200px;
}

.service-taxonomy--background {
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #8f8f8f;
  background-blend-mode: multiply;
  z-index: -1;
}

.service-taxonomy--title h4 {
  font-size: 16px;
}

/*
* ---------------------------------------------------------
* Archive Services
* ---------------------------------------------------------
*/
.services-list--single {
  margin-bottom: 30px;
}

.services-list--single-container {
  background-color: #fafafa;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.services-list--single-container:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  transform: scale(1.02);
}

.services-list--single_title {
  font-size: 23px;
}

/*
* ---------------------------------------------------------
* Services Single
* ---------------------------------------------------------
*/
.services-section {
  padding-left: 15px;
  padding-right: 15px;
}

.service .services--feature-single h4 {
  text-transform: uppercase;
  font-size: 24px;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .service .services--feature-single:nth-child(even) {
    border-left: 1px solid #156caf;
    border-right: 1px solid #156caf;
  }
}

.service .services--feature-single p {
  margin-bottom: 0;
}

.service .services--pointlist ul,
.service .services--pointlist ol {
  list-style-type: none;
  margin-left: 30px;
  margin-bottom: 0;
}

.service .services--pointlist ul li,
.service .services--pointlist ol li {
  margin-bottom: 8px;
}

.service .services--pointlist ul li::before,
.service .services--pointlist ol li::before {
  content: '\f00c';
  font-size: 1.4em;
  margin-right: 15px;
  font-family: fontAwesome;
  color: #95C032;
  position: absolute;
  left: 15px;
}

.service .banner--presell h4 {
  font-size: 20px;
}

.service .banner--presell h4 span {
  font-style: italic;
}

.service--system-offer {
  border: 1px solid #CBCBCB;
  padding: 20px;
  padding-top: 0;
}

.service--system-offer--ribbon {
  position: absolute;
  transform: translate(-50%, -50%);
}

.service--system-offer--title {
  padding-top: 45px;
  padding-bottom: 25px;
}

.archive-section {
  min-height: 300px;
  background-color: #515151;
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.archive-section--title {
  color: #fff;
  font-weight: 600;
}

.archive-section--breadcrumb li {
  color: white;
  font-weight: 600;
}

.archive-section--breadcrumb li:last-child {
  color: #95C032;
}

.archive-section--breadcrumb li a {
  color: inherit;
  text-decoration: underline;
}

.search .ast-archive-description {
  padding: 0;
  background-color: transparent;
}

.search .ast-archive-description h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4 !important;
  color: #3a3a3a;
}

.secondary .sidebar-main .container {
  padding-left: 0;
  padding-right: 0;
}

.secondary .sidebar-main .widget {
  margin-bottom: 25px;
}

.secondary .sidebar-main .widget-title {
  font-size: 18px;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.secondary .sidebar-main .services-block {
  padding: 0;
  margin-bottom: 25px;
}

.secondary .sidebar-main .services-block .service-taxonomy {
  padding-left: 30px;
  padding-right: 30px;
}

.secondary .sidebar-main .services-block .service-taxonomy--title h3 {
  font-size: 25px;
}

.secondary .sidebar-main .sys-newsletter-banner .container,
.secondary .sidebar-main .sys-newsletter-banner .col-xs-12 {
  width: 100% !important;
  text-align: center;
}

.secondary .sidebar-main .sys-newsletter-banner h4 {
  font-size: 22px;
  text-align: center;
  margin: 15px 0;
}

.secondary .sidebar-main .sys-newsletter-banner img {
  max-width: 140px;
  opacity: .3;
}

.secondary .sidebar-main .button {
  font-size: 13px;
  letter-spacing: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.secondary .sidebar-main .system--blog--single {
  margin-bottom: 25px;
}

.secondary .sidebar-main .system--blog--single--title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.secondary .sidebar-main .system--blog--single--excerpt {
  display: none;
}

.secondary .sidebar-main .system--blog--single--read-more {
  display: none;
}

body.single-post.ast-separate-container article {
  padding-left: 1em;
}

body.single-post.ast-separate-container .single-date {
  color: white;
  margin-bottom: 25px;
  margin-top: 10px;
  font-size: 20px;
}

body.single-post.ast-separate-container .ast-article-single {
  padding-top: 0;
}

body.single-post.ast-separate-container .ast-article-single h2 {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

body.single-post.ast-separate-container .ast-article-single h2::after {
  position: absolute;
  bottom: 0;
  content: '';
  background-color: #c5c5c5;
  height: 2px;
  width: 80px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: 0;
}

.single-landing .landing--header {
  text-align: center;
  padding: 20px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.2);
}

.single-landing .landing .hero-banner {
  height: 450px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
}

.single-landing .landing .hero-banner h1 {
  color: white;
}

.single-landing .landing .hero-banner p {
  color: white;
  margin-bottom: 0;
  max-width: 90%;
  width: 650px;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  text-shadow: 1px 1px 1px black;
}

.single-landing .landing .benefit {
  min-height: 150px;
  height: 100%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.single-landing .landing .benefit i {
  color: #95C032;
  font-size: 43px;
}

.single-landing .landing .features .void-column-for-image {
  min-height: 300px;
}

.single-landing .landing .blue-contact-form {
  margin-bottom: 0;
}

.single-landing .landing .blue-contact-form label {
  color: white;
}

.single-landing .landing .blue-contact-form a {
  color: #95C032;
}

.single-landing .landing .blue-contact-form input[type="submit"] {
  background-color: #95C032;
  border-color: #acd253;
  margin-top: 25px;
}

.single-landing .landing .blue-contact-form input[type="submit"]:hover {
  background: #769827 !important;
  border-color: #769827 !important;
}

.single-landing footer .menu-item-home {
  display: none !important;
}

.testimonial--image img {
  height: 100%;
}

/*
* ---------------------------------------------------------
* Articles / Homepage & Blog
* ---------------------------------------------------------
*/
.system--blog--single {
  margin-bottom: 30px;
}

.system--blog--single:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .system--blog--single {
    margin-bottom: 0;
  }
}

/*
* ---------------------------------------------------------
* Services / Homepage & Single
* ---------------------------------------------------------
*/
@media (max-width: 991px) {
  .services-block .service-taxonomy {
    margin-bottom: 20px;
  }

  .ast-separate-container #primary.service {
    padding-left: 1em;
    padding-right: 1em;
  }
}

/*
* ---------------------------------------------------------
* Banner newsletter / Homepage
* ---------------------------------------------------------
*/
@media (max-width: 991px) {
  .sys-newsletter-banner {
    padding-bottom: 35px;
    padding-top: 35px;
  }

  .sys-newsletter-banner--column {
    text-align: center;
    margin-bottom: 20px;
  }

  .sys-newsletter-banner--column:last-child {
    margin-bottom: 0;
  }
}

/*
* ---------------------------------------------------------
* Banner presale
* ---------------------------------------------------------
*/
@media (max-width: 991px) {
  .banner--presell--column {
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/*
* ---------------------------------------------------------
* Header edits
* ---------------------------------------------------------
*/
.ast-header-break-point .ast-above-header-wrap .ast-button-wrap {
  display: block;
}

.ast-header-break-point header.site-header .main-header-bar .main-header-container nav .main-navigation ul li {
  margin: 0;
  padding: 0 .5em;
}

.ast-header-break-point header.site-header .main-header-bar .main-header-container nav .main-navigation ul li.button a {
  border-color: transparent;
}

/*# sourceMappingURL=style.css.map */