@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Outfit:wght@100..900&display=swap');
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
html * {
  box-sizing: border-box;
}
body {
  background: #ffffff;
  font-family: 'Karla', sans-serif;
  color: #333333;
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 1.25;
}
body .page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .page main {
  flex-grow: 1;
}
.body_fixed {
  overflow: hidden;
}
.layout--fixed_width {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.area_wrapper--background {
  background: #f9f9f9;
}
.area_wrapper > div {
  margin-top: 80px;
}
.area_wrapper > div:first-child {
  margin-top: 0;
  position: relative;
  z-index: 100;
}
.area_wrapper > div:last-child {
  margin-bottom: 0 !important;
}
.content_wrapper > div,
.area_wrapper > div {
  margin-top: 80px;
}
.content_wrapper > div:first-child,
.area_wrapper > div:first-child {
  position: relative;
  z-index: 100;
}
.errorpage .content_wrapper > div:first-child,
.calculator .content_wrapper > div:first-child,
.errorpage .area_wrapper > div:first-child,
.calculator .area_wrapper > div:first-child {
  margin-top: 150px;
}
.content_wrapper > div:last-child,
.area_wrapper > div:last-child {
  margin-bottom: 80px;
}
.content_wrapper .section__container + div,
.area_wrapper .section__container + div {
  margin-top: 60px;
}
.content_wrapper .btn__container,
.area_wrapper .btn__container {
  margin-top: 60px;
}
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}
.errorpage h1 {
  color: #333333 !important;
}
h1 + h2 {
  margin-top: 5px !important;
}
h1 + p {
  margin-top: 15px;
}
h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: #333333;
  margin: 0;
}
h2 + h1 {
  margin-top: 8px;
}
h2 + h3 {
  margin-top: 5px;
}
h2 + p {
  margin-top: 15px;
}
h2 a {
  font-size: inherit;
}
h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #333333;
  margin: 0;
}
h3 + h2 {
  margin-top: 5px;
}
h3 + p {
  margin-top: 12px;
}
h4 {
  font-family: 'Outfit', sans-serif;
  color: #333333;
  margin: 0;
}
h5 {
  font-family: 'Outfit', sans-serif;
  color: #333333;
  margin: 0;
}
h6 {
  font-family: 'Outfit', sans-serif;
  color: #333333;
  margin: 0;
}
p {
  font-family: 'Karla', sans-serif;
  color: #333333;
  margin: 0;
  letter-spacing: -0.1px;
  font-size: 1.1rem;
}
p + .rs_button {
  padding-top: 25px;
}
p + p {
  margin-top: 1rem !important;
}
p + h1 {
  margin-top: 10px;
}
p + h2 {
  margin-top: 15px;
}
p + h3 {
  margin-top: 12px;
}
p + hr {
  margin-top: 25px;
}
a {
  font-family: inherit;
  font-size: inherit;
  color: red;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
ul {
  font-family: 'Karla', sans-serif;
  padding-left: 15px;
}
ul + p {
  margin-top: 1rem;
}
hr {
  border-top: 3px solid #333333;
  margin-top: 15px;
  margin-bottom: 0;
}
hr + h3,
hr + h2,
hr + p {
  margin-top: 25px;
}
.divider hr {
  border-top: 1px solid #333333;
  margin: 0;
}
.hyphenate {
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
.donthyphenate {
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}
picture {
  overflow: hidden;
}
img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .layout--fixed_width {
    width: 970px;
  }
}
@media only screen and (max-width: 992px) {
  .layout--fixed_width {
    width: 750px;
  }
  .content_wrapper > div {
    margin-top: 50px;
  }
  .content_wrapper .section__container + div {
    margin-top: 50px;
  }
  .content_wrapper .btn__container {
    margin-top: 50px;
  }
  .content_wrapper > div:last-child {
    margin-bottom: 50px;
  }
  .content_wrapper .page--404 {
    padding-top: 50px;
  }
  .body_fixed {
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .layout--fixed_width {
    width: 90%;
  }
  hr {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 468px) {
  .layout--fixed_width {
    width: 100%;
  }
  .content_wrapper .section__container + div {
    margin-top: 40px;
  }
  .content_wrapper .btn__container {
    margin-top: 40px;
  }
  p + p {
    margin-top: 0.5rem !important;
  }
  p + .rs_button {
    padding-top: 15px;
  }
}
.layout--connected {
  margin-top: 40px !important;
}
.layout--no_margin_top {
  margin-top: 0 !important;
}
.layout--no_margin_bottom {
  margin-bottom: 0 !important;
}
.layout_padding--larger {
  padding: 100px 0;
}
.layout_padding--default {
  padding: 80px 0;
}
.layout_padding--smaller {
  padding: 50px 0;
}
.parallax {
  background-attachment: fixed;
}
.is_mobile .parallax {
  background-attachment: scroll;
}
.is_tablet .parallax {
  background-attachment: scroll;
}
@media only screen and (max-width: 992px) {
  .hide_on_breakpoint--desktop {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .hide_on_breakpoint--tablet {
    display: none;
  }
}
@media only screen and (max-width: 468px) {
  .hide_on_breakpoint--phone {
    display: none;
  }
}
.colorscheme--light h1,
.colorscheme--light h2,
.colorscheme--light h3,
.colorscheme--light h4,
.colorscheme--light h5,
.colorscheme--light h6,
.colorscheme--light p,
.colorscheme--light a,
.colorscheme--light .fa {
  color: ;
}
.colorscheme--light hr {
  border-color: ;
}
.shadow--default {
  -webkit-box-shadow: 0 0 30px -15px rgba(0,0,0,0.6);
  -moz-box-shadow: 0 0 30px -15px rgba(0,0,0,0.6);
  box-shadow: 0 0 30px -15px rgba(0,0,0,0.6);
}
.shadow--default.rounded {
  -webkit-border-radius: ;
  -moz-border-radius: ;
  border-radius: ;
}
.text_shadow {
  text-shadow: 0 0 10px #333333;
}
.image_offset--left {
  width: 140%;
  max-width: 140%;
  margin-left: -40%;
}
.image_offset--right {
  width: 140%;
  max-width: 140%;
}
.image_style--rounded img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: block;
  border: 5px solid #ffffff;
  padding: 0;
}
.images--overlapping > div:first-child img {
  transform: translateX(100%);
  max-width: 200px;
  max-height: 200px;
}
.images--overlapping > div:nth-child(2) {
  position: relative;
  z-index: 9;
  margin-top: -25%;
}
.images--overlapping_reversed > div:nth-child(2) img {
  transform: translateX(-100%);
  max-width: 200px;
  max-height: 200px;
  margin-top: -25%;
}
@media only screen and (max-width: 992px) {
  .layout_padding--larger,
  .layout_padding--default {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 468px) {
  .layout--connected {
    margin-top: 30px !important;
  }
  .image_style--rounded img {
    height: auto;
    width: auto;
  }
  .images--overlapping > div:nth-child(2) {
    margin-top: -45%;
  }
}
header a {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
header .header__container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: red;
  transition: .5s;
}
header .header__container .header {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
}
header .header__container .header .header__logo {
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header__container .header .header__logo img {
  width: 195px;
  max-width: 100%;
  height: auto;
  max-height: 80px;
  transition: width ease-in-out .5s;
}
header .header__container .header .header__menu_bar {
  display: flex;
}
header .header__container .header .header__menu_bar__navigation {
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header__container .header .header__menu_bar__navigation > div {
  margin-left: 40px;
}
header .header__container .header .header__menu_bar__navigation > div:first-child {
  margin-left: 0;
}
header .header__container .header .header__menu_bar .rs_responsive_burger {
  align-content: center;
  color: #ffffff;
}
header .header__container .header .header__menu_bar .rs_responsive_burger .rs_responsive_burger__icon > span {
  background-color: #ffffff;
}
header .header__container .header .header__menu_bar .phone {
  margin-left: 25px;
}
header .header__container .header .header__menu_bar .phone a {
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-flex;
}
header .header__container .header .header__menu_bar .phone a:hover {
  background: #000000;
  color: #ffffff;
}
header .header__container .header .header__menu_bar .phone a:hover p {
  color: #ffffff;
}
header .header__container .header .header__menu_bar .phone a::before {
  content: "\f098";
  font-family: 'FontAwesome';
  margin-right: 10px;
  margin-top: 1px;
}
@media only screen and (max-width: 992px) {
  header .header__container .header .header__logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  header .header__container .header .header__navigation > div {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 468px) {
  header .header__container .header .header__navigation > div {
    margin-left: 15px;
  }
}
footer {
  position: relative;
  background-color: red;
}
footer .footer_content__container {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  border-bottom: 1px dotted #cdcdcd;
}
footer .footer_content__container .footer_content .rs_grid_3_of_12 {
  width: auto;
  max-width: calc(100% / 4 -  40px  * 3 / 4);
}
@media all and (-ms-high-contrast: none) {
  footer .footer_content__container .footer_content *::-ms-backdrop,
  footer .footer_content__container .footer_content .rs_grid_3_of_12 {
    width: 500px !important;
  }
}
footer .footer_content__container .footer_content .rs_blurb--fontawesome .rs_blurb__container .rs_blurb__icon {
  font-size: 1.1rem;
  margin-top: -3px;
}
footer .footer_content__container .footer_content .rs_blurb--fontawesome .rs_blurb__container .rs_blurb__content {
  padding-left: 15px;
}
footer .footer_content__container .footer_content p {
  font-size: 1rem;
  text-align: left;
  margin: 0;
  color: #ffffff;
}
footer .footer_content__container .footer_content p + p {
  margin-top: 0.5rem !important;
}
footer .footer_content__container .footer_content a {
  color: #ffffff;
}
footer .footer_content__container .footer_content a:hover {
  color: #333333;
}
footer .footer_content__container .footer_content > div:nth-child(1) img {
  max-height: 60px;
  height: auto;
  width: auto;
  margin-bottom: 15px;
}
footer .footer_bottom__container .footer_bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .footer_bottom__container .footer_bottom p {
  color: #ffffff;
  font-size: .8rem;
  margin: 0;
}
footer .footer_bottom__container .footer_bottom a {
  color: #ffffff;
}
footer .footer_bottom__container .footer_bottom a:hover {
  color: #333333;
  transition: ease 0.3s;
}
footer .footer_bottom__container .footer_bottom__navigation p {
  text-align: right;
}
footer .footer_bottom__container .footer_bottom__navigation p a {
  color: #ffffff;
}
footer .footer_bottom__container .footer_bottom__navigation p a:hover {
  color: #333333;
  transition: ease 0.3s;
}
footer .footer_bottom__container .footer_bottom__navigation p a + a {
  margin-left: 10px;
}
@media only screen and (max-width: 992px) {
  footer .footer_content__container .footer_content .rs_grid_3_of_12 {
    max-width: none;
    width: calc(100% / 2 -  40px  / 2);
  }
  footer .footer_bottom__container .footer_bottom__legal p {
    text-align: center;
  }
  footer .footer_bottom__container .footer_bottom__navigation {
    margin-top: 10px;
  }
  footer .footer_bottom__container .footer_bottom__navigation p {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer_content__container .footer_content .rs_grid_3_of_12 {
    width: 100%;
  }
}
@media only screen and (max-width: 468px) {
  footer .footer_content__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.rs_button {
  border: none;
  white-space: normal;
  display: block;
  padding-top: 25px;
  text-align: left;
}
.btn__container .rs_button {
  padding-top: 0;
}
.rs_button a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid red;
  letter-spacing: -0.1px;
  padding: 15px 25px;
  transition: 0.5s;
  width: auto !important;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  background: red;
}
.rs_button a:hover {
  color: #ffffff;
  background: #000000;
  border: 1px solid #000000;
  transition: 0.5s;
}
.rs_button:active {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.rs_button:focus {
  text-decoration: none;
  outline: none;
}
@media only screen and (max-width: 468px) {
  .rs_button {
    padding-top: 15px;
  }
  .rs_button a {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  .btn--text_only .rs_button a {
    padding: 0 !important;
  }
}
.rs_responsive_overlay {
  background: #f6f6f6 !important;
  border: 15px solid ;
  height: 0;
}
.rs_responsive_overlay--is_visible {
  height: 100%;
  transition: all ease-in .5s;
}
.rs_responsive_overlay__close {
  background-color: red !important;
  padding: 15px !important;
  -webkit-box-shadow: 0 0 10px -1px #333;
  -moz-box-shadow: 0 0 10px -1px #333;
  box-shadow: 0 0 10px -1px #333;
  text-align: center;
}
.rs_responsive_overlay__close::after {
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  color: ;
  font-weight: ;
  margin-left: 10px;
}
.rs_responsive_overlay__navigation ul {
  margin-left: 0 !important;
  padding-left: 0;
  list-style: none;
}
.rs_responsive_overlay__navigation ul > li {
  text-align: center;
}
.rs_responsive_overlay__navigation ul > li a {
  font-family: 'Karla', sans-serif;
  color: ;
  font-size: 1rem;
  font-weight: ;
  text-transform: uppercase;
  padding: 40px 8px 10px !important;
  width: auto;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid ;
  display: inline-block !important;
}
.rs_responsive_overlay__navigation ul > li a:hover {
  text-decoration: none;
  font-weight: 900;
  color: ;
}
.rs_responsive_overlay__navigation ul > li a.rs_responsive_navigation--is_selected {
  font-weight: 700;
  color: ;
}
.rs_responsive_overlay__navigation ul > li.rs_responsive_navigation--has_dropdown > ul {
  display: block !important;
  padding: 5px 20px 0;
}
.rs_responsive_overlay__navigation ul > li.rs_responsive_navigation--has_dropdown > ul > li a {
  text-transform: inherit;
  font-weight: ;
  border-bottom: none;
  padding: 25px 15px 0 !important;
  font-style: italic;
}
.rs_responsive_overlay__navigation ul > li.rs_responsive_navigation--has_dropdown > ul > li a.rs_responsive_navigation--is_selected {
  font-weight: ;
}
.rs_responsive_overlay__navigation ul > li.rs_responsive_navigation--has_dropdown > ul > li:last-child > a {
  margin-bottom: 10px;
}
.rs_responsive_overlay__navigation ul > li:first-child > a {
  padding-top: 30px;
}
.rs_responsive_overlay__navigation ul > li:last-child > a {
  margin-bottom: 50px;
}
.rs_google_rating_stars {
  unicode-bidi: bidi-override;
  color: #333333;
  font-size: 25px;
  position: relative;
  padding: 0;
}
.rs_google_rating_stars div + div {
  margin-left: 0 !important;
}
.rs_google_rating_stars .rs_google_rating_stars_top {
  color: #ffb400;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.rs_google_rating_stars .rs_google_rating_stars_bottom {
  padding: 0;
  display: block;
}
.rs_grid--2_of_12 > div,
.rs_grid--3_of_12 > div,
.rs_grid--4_of_12 > div,
.rs_grid--5_of_12 > div,
.rs_grid--6_of_12 > div,
.rs_grid--7_of_12 > div,
.rs_grid--8_of_12 > div,
.rs_grid--9_of_12 > div,
.rs_grid--10_of_12 > div {
  margin-top: 40px !important;
}
.rs_grid--2_of_12 > div:first-of-type,
.rs_grid--3_of_12 > div:first-of-type,
.rs_grid--4_of_12 > div:first-of-type,
.rs_grid--5_of_12 > div:first-of-type,
.rs_grid--6_of_12 > div:first-of-type,
.rs_grid--7_of_12 > div:first-of-type,
.rs_grid--8_of_12 > div:first-of-type,
.rs_grid--9_of_12 > div:first-of-type,
.rs_grid--10_of_12 > div:first-of-type {
  margin-top: 0 !important;
}
.rs_grid--2_of_12 > div + .element--no_margin_top,
.rs_grid--3_of_12 > div + .element--no_margin_top,
.rs_grid--4_of_12 > div + .element--no_margin_top,
.rs_grid--5_of_12 > div + .element--no_margin_top,
.rs_grid--6_of_12 > div + .element--no_margin_top,
.rs_grid--7_of_12 > div + .element--no_margin_top,
.rs_grid--8_of_12 > div + .element--no_margin_top,
.rs_grid--9_of_12 > div + .element--no_margin_top,
.rs_grid--10_of_12 > div + .element--no_margin_top {
  margin-top: 0 !important;
}
.rs_grid--2_of_12 .rs_anchor + div,
.rs_grid--3_of_12 .rs_anchor + div,
.rs_grid--4_of_12 .rs_anchor + div,
.rs_grid--5_of_12 .rs_anchor + div,
.rs_grid--6_of_12 .rs_anchor + div,
.rs_grid--7_of_12 .rs_anchor + div,
.rs_grid--8_of_12 .rs_anchor + div,
.rs_grid--9_of_12 .rs_anchor + div,
.rs_grid--10_of_12 .rs_anchor + div {
  margin-top: 0 !important;
}
.rs_grid--2_of_12 .column_wrapper--default > div,
.rs_grid--2_of_12 .column_wrapper--larger > div,
.rs_grid--3_of_12 .column_wrapper--default > div,
.rs_grid--3_of_12 .column_wrapper--larger > div,
.rs_grid--4_of_12 .column_wrapper--default > div,
.rs_grid--4_of_12 .column_wrapper--larger > div,
.rs_grid--5_of_12 .column_wrapper--default > div,
.rs_grid--5_of_12 .column_wrapper--larger > div,
.rs_grid--6_of_12 .column_wrapper--default > div,
.rs_grid--6_of_12 .column_wrapper--larger > div,
.rs_grid--7_of_12 .column_wrapper--default > div,
.rs_grid--7_of_12 .column_wrapper--larger > div,
.rs_grid--8_of_12 .column_wrapper--default > div,
.rs_grid--8_of_12 .column_wrapper--larger > div,
.rs_grid--9_of_12 .column_wrapper--default > div,
.rs_grid--9_of_12 .column_wrapper--larger > div,
.rs_grid--10_of_12 .column_wrapper--default > div,
.rs_grid--10_of_12 .column_wrapper--larger > div {
  margin-top: 40px !important;
}
.rs_grid--2_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--2_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--3_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--3_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--4_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--4_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--5_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--5_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--6_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--6_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--7_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--7_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--8_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--8_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--9_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--9_of_12 .column_wrapper--larger > div:first-of-type,
.rs_grid--10_of_12 .column_wrapper--default > div:first-of-type,
.rs_grid--10_of_12 .column_wrapper--larger > div:first-of-type {
  margin-top: 0 !important;
}
.rs_grid--2_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--2_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--3_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--3_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--4_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--4_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--5_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--5_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--6_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--6_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--7_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--7_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--8_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--8_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--9_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--9_of_12 .column_wrapper--larger > div + .element--no_margin_top,
.rs_grid--10_of_12 .column_wrapper--default > div + .element--no_margin_top,
.rs_grid--10_of_12 .column_wrapper--larger > div + .element--no_margin_top {
  margin-top: 0 !important;
}
.rs_grid--2_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--2_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--3_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--3_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--4_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--4_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--5_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--5_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--6_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--6_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--7_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--7_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--8_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--8_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--9_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--9_of_12 .column_wrapper--larger .rs_anchor + div,
.rs_grid--10_of_12 .column_wrapper--default .rs_anchor + div,
.rs_grid--10_of_12 .column_wrapper--larger .rs_anchor + div {
  margin-top: 0 !important;
}
@media only screen and (max-width: 468px) {
  .rs_grid--2_of_12 > div,
  .rs_grid--3_of_12 > div,
  .rs_grid--4_of_12 > div,
  .rs_grid--5_of_12 > div,
  .rs_grid--6_of_12 > div,
  .rs_grid--7_of_12 > div,
  .rs_grid--8_of_12 > div,
  .rs_grid--9_of_12 > div,
  .rs_grid--10_of_12 > div {
    margin-top: 30px !important;
  }
  .rs_grid--2_of_12 .column_wrapper--default > div,
  .rs_grid--2_of_12 .column_wrapper--larger > div,
  .rs_grid--3_of_12 .column_wrapper--default > div,
  .rs_grid--3_of_12 .column_wrapper--larger > div,
  .rs_grid--4_of_12 .column_wrapper--default > div,
  .rs_grid--4_of_12 .column_wrapper--larger > div,
  .rs_grid--5_of_12 .column_wrapper--default > div,
  .rs_grid--5_of_12 .column_wrapper--larger > div,
  .rs_grid--6_of_12 .column_wrapper--default > div,
  .rs_grid--6_of_12 .column_wrapper--larger > div,
  .rs_grid--7_of_12 .column_wrapper--default > div,
  .rs_grid--7_of_12 .column_wrapper--larger > div,
  .rs_grid--8_of_12 .column_wrapper--default > div,
  .rs_grid--8_of_12 .column_wrapper--larger > div,
  .rs_grid--9_of_12 .column_wrapper--default > div,
  .rs_grid--9_of_12 .column_wrapper--larger > div,
  .rs_grid--10_of_12 .column_wrapper--default > div,
  .rs_grid--10_of_12 .column_wrapper--larger > div {
    margin-top: 30px !important;
  }
}
.rs_grid__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rs_grid__container .rs_grid--2_of_12 {
  width: calc(100% / 6 -  40px  * 5 / 6);
}
.rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12,
.rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 {
  width: calc(16.666666666667%);
}
.rs_grid__container .rs_grid--3_of_12 {
  width: calc(100% / 4 -  40px  * 3 / 4);
}
.rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12,
.rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 {
  width: calc(25%);
}
.rs_grid__container .rs_grid--4_of_12 {
  width: calc(100% / 3 -  40px  * 2 / 3);
}
.rs_grid--gutterless .rs_grid__container .rs_grid--4_of_12,
.rs_grid--gutterless--slim .rs_grid__container .rs_grid--4_of_12 {
  width: calc(33.333333333333%);
}
.rs_grid__container .rs_grid--6_of_12 {
  width: calc(100% / 2 -  40px  / 2);
}
.rs_grid--gutterless .rs_grid__container .rs_grid--6_of_12,
.rs_grid--gutterless--slim .rs_grid__container .rs_grid--6_of_12 {
  width: calc(50%);
}
@media only screen and (max-width: 992px) {
  .rs_grid--reversed .rs_grid__container {
    flex-direction: column-reverse;
  }
  .rs_grid--reversed .rs_grid__container > :nth-child(1) {
    margin-top: 40px;
  }
  .rs_grid--gutterless.rs_grid--reversed .rs_grid__container > :nth-child(1) {
    margin-top: 0;
  }
  .rs_grid--reversed .rs_grid__container > :nth-child(2) {
    margin-top: 0 !important;
  }
  .rs_grid--3--reversed .rs_grid__container {
    flex-direction: column-reverse;
  }
  .rs_grid--3--reversed .rs_grid__container > div:nth-child(1),
  .rs_grid--3--reversed .rs_grid__container >	div:nth-child(2) {
    margin-top: 40px;
  }
  .rs_grid--gutterless.rs_grid--3--reversed .rs_grid__container > div:nth-child(1),
  .rs_grid--gutterless.rs_grid--3--reversed .rs_grid__container >	div:nth-child(2) {
    margin-top: 0;
  }
  .rs_grid--3--reversed .rs_grid__container > :nth-child(3) {
    margin-top: 0 !important;
  }
  .rs_grid__container .rs_grid--2_of_12 {
    width: calc(100% / 3 -  40px  * 2 / 3);
  }
  .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+4) {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+4),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+4) {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--3_of_12 {
    width: calc(100% / 2 -  40px  / 2);
  }
  .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+3) {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+3),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+3) {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12:empty {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--4_of_12:empty + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--4_of_12 {
    width: calc(33.333333333333%);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 {
    width: calc(100% / 3 -  40px  * 2 / 3);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12:empty {
    margin-top: 0;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12:empty + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--6_of_12 {
    width: 100%;
  }
  .rs_grid__container .rs_grid--6_of_12 + .rs_grid--6_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--6_of_12 + .rs_grid--6_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--6_of_12 + .rs_grid--6_of_12 {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--6_of_12 + .rs_grid--6_of_12:empty {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--6_of_12:empty + .rs_grid--6_of_12 {
    margin-top: 0;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--6_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--6_of_12 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .rs_grid__container .rs_grid--2_of_12 {
    width: calc(100% / 2 -  40px  / 2);
  }
  .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+3) {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+3),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+3) {
    margin-top: 0;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 {
    width: calc(33.333333333333%);
  }
  .rs_grid__container .rs_grid--3_of_12 {
    width: 100%;
  }
  .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 0;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 0;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 {
    width: calc(50%);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--3_of_12 {
    width: calc(100% / 2 -  40px  / 2);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+3) {
    margin-top: 40px;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--4_of_12 .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--4_of_12 .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 468px) {
  .rs_grid--reversed .rs_grid__container > :nth-child(1) {
    margin-top: 30px;
  }
  .rs_grid--gutterless.rs_grid--reversed .rs_grid__container > :nth-child(1) {
    margin-top: 0;
  }
  .rs_grid--3--reversed .rs_grid__container {
    flex-direction: column-reverse;
  }
  .rs_grid--3--reversed .rs_grid__container > div:nth-child(1),
  .rs_grid--3--reversed .rs_grid__container > div:nth-child(2) {
    margin-top: 30px;
  }
  .rs_grid--gutterless.rs_grid--3--reversed .rs_grid__container > div:nth-child(1),
  .rs_grid--gutterless.rs_grid--3--reversed .rs_grid__container > div:nth-child(2) {
    margin-top: 0;
  }
  .rs_grid__container .rs_grid--2_of_12 {
    width: 100%;
  }
  .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+2) {
    margin-top: 30px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+2),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+2) {
    margin-top: 0;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+2) {
    margin-top: 0;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--2_of_12,
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--2_of_12 {
    width: calc(50%);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--2_of_12 {
    width: calc(100% / 2 -  40px  / 2);
  }
  .rs_grid--slim .rs_grid__container .rs_grid--2_of_12 + .rs_grid--2_of_12:nth-child(n+3) {
    margin-top: 30px;
  }
  .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 30px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2),
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 0;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--3_of_12 + .rs_grid--3_of_12:nth-child(n+2) {
    margin-top: 30px;
  }
  .rs_grid--gutterless .rs_grid__container .rs_grid--3_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless--slim .rs_grid__container .rs_grid--3_of_12 {
    width: 50%;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--3_of_12 {
    width: 100%;
  }
  .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 30px;
  }
  .rs_grid--slim .rs_grid__container .rs_grid--4_of_12 + .rs_grid--4_of_12 {
    margin-top: 30px;
  }
  .rs_grid__container .rs_grid--6_of_12 + .rs_grid--6_of_12 {
    margin-top: 30px;
  }
}
.rs_grid__special_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rs_grid__special_container .rs_grid--2_of_12 {
  width: calc(100% / 6 -  40px  * 5 / 6);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 {
  width: calc(16.666666666667%);
}
.rs_grid__special_container .rs_grid--3_of_12 {
  width: calc(100% / 4 -  40px  * 3 / 4);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 {
  width: calc(25%);
}
.rs_grid__special_container .rs_grid--4_of_12 {
  width: calc(100% / 3 -  40px  * 2 / 3);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 {
  width: calc(33.333333333333%);
}
.rs_grid__special_container .rs_grid--5_of_12 {
  width: calc(100% / 2.4 -  40px  / 2);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 {
  width: calc(41.666666666667%);
}
.rs_grid__special_container .rs_grid--6_of_12 {
  width: calc(100% / 2 -  40px  / 2);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--6_of_12 {
  width: calc(50%);
}
.rs_grid__special_container .rs_grid--7_of_12 {
  width: calc(100% / 1.714285714285714 -  40px  / 2);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--7_of_12 {
  width: calc(58.333333333333%);
}
.rs_grid__special_container .rs_grid--8_of_12 {
  width: calc(100% / 1.5 -  40px  / 3);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--8_of_12 {
  width: calc(66.666666666667%);
}
.rs_grid__special_container .rs_grid--9_of_12 {
  width: calc(100% / 1.33333333333333 -  40px  / 4);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--9_of_12 {
  width: calc(75%);
}
.rs_grid__special_container .rs_grid--10_of_12 {
  width: calc(100% / 1.2 -  40px  / 6);
}
.rs_grid--gutterless .rs_grid__special_container .rs_grid--10_of_12 {
  width: calc(83.333333333333%);
}
@media only screen and (max-width: 992px) {
  .rs_grid--reversed .rs_grid__special_container {
    flex-direction: column-reverse;
  }
  .rs_grid--reversed .rs_grid__special_container > :nth-child(1) {
    margin-top: 40px;
  }
  .rs_grid--gutterless.rs_grid--reversed .rs_grid__special_container > :nth-child(1) {
    margin-top: 0;
  }
  .rs_grid--reversed .rs_grid__special_container > :nth-child(2) {
    margin-top: 0 !important;
  }
  .rs_grid__special_container .rs_grid--2_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--7_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--8_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--10_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--4_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--5_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--6_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--7_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--8_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--10_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--3_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--7_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--9_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--4_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--5_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--6_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--7_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--9_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--8_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--4_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--5_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--6_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--8_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--5_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--7_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--4_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--5_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--7_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--7_of_12:empty {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--5_of_12:empty + .rs_grid--7_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--6_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--6_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--4_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--7_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--7_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--5_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--3_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--5_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--5_of_12:empty {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--7_of_12:empty + .rs_grid--5_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--8_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--8_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--4_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--2_of_12,
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--4_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--9_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--9_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--9_of_12 + .rs_grid--3_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--9_of_12 + .rs_grid--3_of_12 {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--10_of_12 {
    width: 100%;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--10_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--10_of_12 + .rs_grid--2_of_12 {
    margin-top: 40px;
  }
  .rs_grid--gutterless .rs_grid__special_container .rs_grid--10_of_12 + .rs_grid--2_of_12 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 468px) {
  .rs_grid--reversed .rs_grid__special_container > :nth-child(1) {
    margin-top: 30px;
  }
  .rs_grid--gutterless.rs_grid--reversed .rs_grid__special_container > :nth-child(1) {
    margin-top: 0;
  }
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--7_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--8_of_12,
  .rs_grid__special_container .rs_grid--2_of_12 + .rs_grid--10_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--7_of_12,
  .rs_grid__special_container .rs_grid--3_of_12 + .rs_grid--9_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--6_of_12,
  .rs_grid__special_container .rs_grid--4_of_12 + .rs_grid--8_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--5_of_12 {
    width: 100%;
  }
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--4_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--5_of_12,
  .rs_grid__special_container .rs_grid--5_of_12 + .rs_grid--7_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--6_of_12 + .rs_grid--4_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--3_of_12,
  .rs_grid__special_container .rs_grid--7_of_12 + .rs_grid--5_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--2_of_12,
  .rs_grid__special_container .rs_grid--8_of_12 + .rs_grid--4_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--9_of_12 + .rs_grid--3_of_12 {
    margin-top: 30px;
  }
  .rs_grid__special_container .rs_grid--10_of_12 + .rs_grid--2_of_12 {
    margin-top: 30px;
  }
}
.rs_hero_block--basic {
  margin-top: 80px;
}
.rs_hero_block--basic.hero-slider-items .slick-prev {
  left: 25px;
  z-index: 99;
}
.rs_hero_block--basic.hero-slider-items .slick-prev::before {
  font-size: 40px;
}
.rs_hero_block--basic.hero-slider-items .slick-next {
  right: 50px;
  z-index: 99;
}
.rs_hero_block--basic.hero-slider-items .slick-next::before {
  font-size: 40px;
}
.rs_hero_block--basic .rs_hero_block__container {
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("/static/images/Bad -- Gross.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
}
.is_mobile .rs_hero_block--basic .rs_hero_block__container {
  min-height: 60vh !important;
}
.is_tablet .rs_hero_block--basic .rs_hero_block__container {
  min-height: 60vh !important;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #797979;
  mix-blend-mode: multiply;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content {
  z-index: 99;
  padding-top: 10vw;
  padding-bottom: 10vw;
  position: relative !important;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__headline {
  text-align: left;
  width: 75%;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__headline p {
  color: #ffffff;
  padding-right: 0;
  padding-left: 0;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple {
  display: flex;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-child(2) {
  display: block;
  margin-left: 25px;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-child(2) a {
  background: #ffffff;
  color: red;
  border: 1px solid #ffffff;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-child(2) a:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-child(2) a::before {
  content: '\f0da';
  font-family: 'FontAwesome';
  margin-right: 10px;
}
.rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-last-child(2) a::before {
  display: none;
}
@media only screen and (max-width: 992px) {
  .rs_hero_block--basic .rs_hero_block__container {
    min-height: 60vh !important;
  }
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__headline {
    width: 100%;
  }
}
@media only screen and (max-width: 468px) {
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple {
    flex-direction: column;
  }
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple > div:nth-child(2) {
    margin-left: 0;
  }
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple .rs_button {
    width: 100%;
  }
  .rs_hero_block--basic .rs_hero_block__container .rs_hero_block__content .rs_hero_block__button--multiple .rs_button a {
    width: 100% !important;
    padding: 15px 10px;
  }
}
.service-shop-navigation {
  margin-top: 10px;
  border-bottom: 1px solid #c5c5c5;
  margin-bottom: 10px;
}
.service-shop-navigation > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-shop-navigation > ul > li {
  padding: 15px 0 10px;
  cursor: pointer;
}
.service-shop-navigation > ul > li.active {
  border-bottom: 5px solid #000;
}
.service-shop-navigation > ul > li.active:hover {
  color: inherit;
}
.service-shop-navigation > ul > li:hover {
  color: red;
}
.service-shop-navigation > ul > li + li {
  margin-left: 15px;
}
.service-shop-items {
  display: none;
  flex-wrap: wrap;
  margin-top: 20px !important;
  margin: -10px;
}
.service-shop-items.active {
  display: flex;
}
.service-shop-item {
  width: calc(25% - 20px);
  margin: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid transparent;
}
.service-shop-item:hover {
  border: 1px solid #333333;
}
.service-shop-item img {
  border-radius: 8px;
}
.service-shop-item a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F1CFCE;
  padding: 10px;
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .service-shop-items-wrapper {
    display: flex;
  }
  .service-shop-items.active {
    display: block;
    width: 100%;
  }
  .service-shop-item {
    display: flex;
    width: 100%;
  }
  .service-shop-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px 0 0 8px;
  }
  .service-shop-item a {
    position: relative;
    width: 100%;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
  }
}
.customer_profile__container {
  display: flex;
  padding: 25px 25px 0;
  background: #ffffff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 -30px 35px -25px #656565;
  margin-top: -180px;
}
.customer_profile__container .customer_profile__image {
  width: 200px;
  height: 200px;
}
.customer_profile__container .customer_profile__image img {
  border-radius: 8px;
  box-shadow: 0 0 35px -20px #000000;
}
.customer_profile__container .customer_profile__body {
  margin-left: 40px;
}
.customer_profile__container .customer_profile__body > div + div {
  margin-top: 10px;
}
.customer_profile__container .customer_profile__body .customer_profile__content h2 + p {
  margin-top: 8px;
}
.customer_profile__container .customer_profile__body .customer_profile__rating {
  display: flex;
  align-items: center;
  margin-top: 3px;
}
.customer_profile__container .customer_profile__body .customer_profile__rating div + div {
  margin-left: 14px;
}
.customer_profile__container .customer_profile__body .customer_profile__rating--rating p {
  font-weight: 700;
  color: #f3ab00;
}
.customer_profile__container .customer_profile__body .customer_profile__services {
  margin-top: 15px;
}
.customer_profile__container .customer_profile__body .customer_profile__services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.customer_profile__container .customer_profile__body .customer_profile__services ul li {
  padding: 5px 10px;
  font-size: 14px;
  background-color: #F1CFCE;
  border-radius: 8px;
  cursor: default;
}
.customer_profile__container .customer_profile__body .customer_profile__services ul li + li {
  margin-left: 12px;
}
.content_intro__container .content_intro__navigation {
  margin-top: 10px;
  border-bottom: 1px solid #c5c5c5;
}
.content_intro__container .content_intro__navigation > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.content_intro__container .content_intro__navigation > ul > li {
  padding: 15px 0 10px;
  cursor: pointer;
}
.content_intro__container .content_intro__navigation > ul > li.active {
  border-bottom: 5px solid #000;
}
.content_intro__container .content_intro__navigation > ul > li.active:hover {
  color: inherit;
}
.content_intro__container .content_intro__navigation > ul > li:hover {
  color: red;
}
.content_intro__container .content_intro__navigation > ul > li + li {
  margin-left: 15px;
}
.content_intro__container .content_intro__body {
  padding: 25px;
  background: #f2f2f2;
  border-radius: 8px;
  margin-top: 20px;
}
.content_intro__container .content_intro__body .content_intro__content {
  display: none;
}
.content_intro__container .content_intro__body .content_intro__content.active {
  display: block;
}
.cta__container {
  background-image: url(/static/images/CTA_Background.jpg);
  background-position: center;
  border-radius: 8px;
  padding: 25px 50px;
  box-shadow: 0 0 35px -15px #333333;
}
.cta__container .rs_grid--6_of_12:nth-child(1) {
  display: flex;
}
.cta__container .cta__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta__container .cta__body h2 {
  color: #ffffff;
}
.cta__container .cta__body p {
  color: #ffffff;
}
.cta__container .cta__image {
  width: 400px;
  margin: 0 auto;
}
.content_teaser__container .rs_grid__special_container > div {
  display: flex;
}
.content_teaser__container .rs_grid__special_container.img--left {
  flex-direction: row-reverse;
}
.content_teaser__container .rs_grid__special_container .content_teaser__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content_teaser__container .rs_grid__special_container .content_teaser__image img {
  min-height: 400px;
  border-radius: 8px;
  object-fit: cover;
}
.page >.hero {
  height: 80vh;
  background: black;
}
.page > .hero > .hero-header {
  background: var(--main-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
