/* =====================================================================================================================
THIS IS THE SASS COMPILE PROCESS ROUTINE.
=======================================================================================================================*/
/* RESET
=======================================================================================================================*/
/* =====================================================================================================================
THE RESET - resets all UA-Styles.
=======================================================================================================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}
.edge nav ul {
  list-style-type: none;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:link,
a:hover,
a:visited {
  text-decoration: none;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* @group browser */
/* Firefox Linkumrandung weg */
*|*:-moz-any-link:focus, select:focus {
  outline: none;
  border: none;
}

input:invalid,
input:focus {
  border: none;
  box-shadow: none;
}

/* Safari Feldumrandung weg */
input[type=text]:focus, input[type=search]:focus, input[type=password]:focus, textarea:focus, select:focus {
  outline: 0 none;
}

input:focus, textarea:focus {
  outline-width: 0;
}

/* IE-Schrott punktierte Linkumrandung weg */
a {
  outline: 0 none;
}

/* Library
=======================================================================================================================*/
/* =====================================================================================================================
THIS IS THE COLOR COLLECTION - define all colors here and avoid to define some elsewhere.
=======================================================================================================================*/
/* BASICS - not nessecarily used in site design
=======================================================================================================================*/
/* PRIMARY SITE COLORS - the main colors and uses
=======================================================================================================================*/
/* BACKGROUND COLOR FUNCTION
=======================================================================================================================*/
.hellblau1 {
  background-color: #eef2f4;
}

.hellblau2 {
  background-color: #f4fcff;
}

.beige {
  background-color: #f1f0eb;
}

.beige2 {
  background-color: #e1dcd5;
}

.hellrot {
  background-color: #fff8f4;
}

/* =====================================================================================================================
six part breakpoint system config
=======================================================================================================================*/
/* =====================================================================================================================
GLOBAL BREAKPOINTS -  BPs should be coded right into respective objects...
=======================================================================================================================*/
@media (max-width: 699px) {
  .visible_screen_a {
    display: block;
  }
}
@media (min-width: 700px) {
  .visible_screen_a {
    display: none;
  }
}

@media (max-width: 699px) {
  .visible_screen_a_inline {
    display: inline-block;
  }
}
@media (min-width: 700px) {
  .visible_screen_a_inline {
    display: none;
  }
}

@media (max-width: 699px) {
  .visible_screen_a_inline {
    display: inline-block;
  }
}
@media (min-width: 700px) {
  .visible_screen_a_inline {
    display: none;
  }
}

@media (max-width: 1023px) {
  .visible_screen_a_and_b_inline {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .visible_screen_a_and_b_inline {
    display: none;
  }
}

@media (max-width: 1023px) {
  .visible_screen_a_and_b {
    display: block;
  }
}
@media (min-width: 1024px) {
  .visible_screen_a_and_b {
    display: none;
  }
}

@media (max-width: 699px) {
  .visible_all_but_screen_a {
    display: none;
  }
}
@media (min-width: 700px) {
  .visible_all_but_screen_a {
    display: block;
  }
}

@media (max-width: 1023px) {
  .visible_all_but_screen_a_and_b {
    display: none;
  }
}
@media (min-width: 1024px) {
  .visible_all_but_screen_a_and_b {
    display: block;
  }
}

@media (max-width: 699px) {
  .visible_all_but_screen_a_inline {
    display: none;
  }
}
@media (min-width: 700px) {
  .visible_all_but_screen_a_inline {
    display: inline-block;
  }
}

@media (max-width: 1023px) {
  .visible_all_but_screen_a_and_b_inline {
    display: none;
  }
}
@media (min-width: 1024px) {
  .visible_all_but_screen_a_and_b_inline {
    display: inline-block;
  }
}

/* =====================================================================================================================
THE LIBRARY - Mixins, Functions, Placeholders & stuff.
=======================================================================================================================*/
/* INSET ALIGNED ORDERED LIST
========================================================================================================================== */
/* CSS cubic-bezier timing functions.
========================================================================================================================== */
/* CLEARFIX
=============================================================================================================================*/
.clearfix {
  clear: both;
}

/* RESPONSIVE PROPERTY
=============================================================================================================================*/
/**
 * Format all Heading Elements
 */
/**
hyphenation
 */
/*
	Distribute Transition Delay
 */
/*
	Control Darkmode according to system prefs
	@param $type light|dark default: light
 */
/* DEVTOOLS
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
DEVTOOLS
=======================================================================================================================*/
#devtools {
  position: fixed;
  left: 3px;
  bottom: 3px;
  height: 40px;
  width: 70px;
  font-family: sans-serif;
  font-size: 12px;
  background-color: rgba(165, 165, 165, 0.7);
  color: #ffffff;
  text-align: center;
  border-radius: 1%;
  cursor: pointer;
  z-index: 999999;
}
#devtools .main_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding-top: 9px;
}
#devtools .switches {
  position: relative;
  left: 70px;
  overflow: hidden;
  width: 0;
  height: 40px;
  -webkit-transition: width 150ms linear;
  -moz-transition: width 150ms linear;
  transition: width 150ms linear;
  white-space: nowrap;
}
#devtools .switches.on {
  width: 288px;
}
#devtools .switches button {
  height: 40px;
  margin-right: 1px;
  width: 40px;
  color: #ffffff;
  background-color: rgba(165, 165, 165, 0.7);
  border-left: 1px solid transparent;
  display: inline-block;
  cursor: pointer;
}
#devtools .switches button.on {
  background-color: rgba(165, 165, 165, 0.9);
}
#devtools .close {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  font-size: 8px;
  color: #383838;
  cursor: pointer;
}
#devtools:hover {
  background-color: rgba(165, 165, 165, 0.8);
}
#devtools.off {
  opacity: 0;
  bottom: -40px;
  -webkit-transition: all 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -moz-transition: all 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: all 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
#devtools #screenX, #devtools #screenY {
  font-size: 0.8em;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 Page Layout
/*=======================================================================================================================*/
/* =====================================================================================================================
THE VERTICAL SPACING SYSTEM
=======================================================================================================================*/
@media (max-width: 699px) {
  .space_padding-top_gross {
    padding-top: 60px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_padding-top_gross {
    padding-top: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_padding-top_gross {
    padding-top: 100px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_padding-top_gross {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_padding-top_gross {
    padding-top: 100px;
  }
}
@media (min-width: 1860px) {
  .space_padding-top_gross {
    padding-top: 100px;
  }
}

@media (max-width: 699px) {
  .space_padding-top_klein {
    padding-top: 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_padding-top_klein {
    padding-top: 45px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_padding-top_klein {
    padding-top: 60px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_padding-top_klein {
    padding-top: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_padding-top_klein {
    padding-top: 60px;
  }
}
@media (min-width: 1860px) {
  .space_padding-top_klein {
    padding-top: 60px;
  }
}

@media (max-width: 699px) {
  .space_padding-bottom_gross {
    padding-bottom: 60px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_padding-bottom_gross {
    padding-bottom: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_padding-bottom_gross {
    padding-bottom: 100px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_padding-bottom_gross {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_padding-bottom_gross {
    padding-bottom: 100px;
  }
}
@media (min-width: 1860px) {
  .space_padding-bottom_gross {
    padding-bottom: 100px;
  }
}

@media (max-width: 699px) {
  .space_padding-bottom_klein {
    padding-bottom: 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_padding-bottom_klein {
    padding-bottom: 45px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_padding-bottom_klein {
    padding-bottom: 60px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_padding-bottom_klein {
    padding-bottom: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_padding-bottom_klein {
    padding-bottom: 60px;
  }
}
@media (min-width: 1860px) {
  .space_padding-bottom_klein {
    padding-bottom: 60px;
  }
}

@media (max-width: 699px) {
  .space_margin-top_gross {
    margin-top: 60px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_margin-top_gross {
    margin-top: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_margin-top_gross {
    margin-top: 100px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_margin-top_gross {
    margin-top: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_margin-top_gross {
    margin-top: 100px;
  }
}
@media (min-width: 1860px) {
  .space_margin-top_gross {
    margin-top: 100px;
  }
}

@media (max-width: 699px) {
  .space_margin-top_klein {
    margin-top: 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_margin-top_klein {
    margin-top: 45px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_margin-top_klein {
    margin-top: 60px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_margin-top_klein {
    margin-top: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_margin-top_klein {
    margin-top: 60px;
  }
}
@media (min-width: 1860px) {
  .space_margin-top_klein {
    margin-top: 60px;
  }
}

@media (max-width: 699px) {
  .space_margin-bottom_gross {
    margin-bottom: 60px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_margin-bottom_gross {
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_margin-bottom_gross {
    margin-bottom: 100px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_margin-bottom_gross {
    margin-bottom: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_margin-bottom_gross {
    margin-bottom: 100px;
  }
}
@media (min-width: 1860px) {
  .space_margin-bottom_gross {
    margin-bottom: 100px;
  }
}

@media (max-width: 699px) {
  .space_margin-bottom_klein {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .space_margin-bottom_klein {
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .space_margin-bottom_klein {
    margin-bottom: 60px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .space_margin-bottom_klein {
    margin-bottom: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .space_margin-bottom_klein {
    margin-bottom: 60px;
  }
}
@media (min-width: 1860px) {
  .space_margin-bottom_klein {
    margin-bottom: 60px;
  }
}

/* =====================================================================================================================
THE HELPERS - all the small stuff for a liitle convenience
=======================================================================================================================*/
@media screen and (max-width: 767px) {
  .visible_desktop {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .visible_phone {
    display: none;
  }
}

/* DEFAULT - asset page design
=======================================================================================================================*/
.assets {
  position: relative;
  padding: 20px;
  margin-bottom: 1px;
}
.assets.dark {
  background-color: #1d1d1d;
}
.assets .assets_title {
  color: gray;
  font-size: 16px;
  margin-bottom: 20px;
}
.assets h2, .assets p {
  margin-bottom: 40px;
}

.assetpage_title {
  padding: 20px;
  font-size: 60px;
  white-space: nowrap;
}

/* Content Module Defaults
=======================================================================================================================*/
/* =====================================================================================================================
CONTENT MODULE
=======================================================================================================================*/
.content_module {
  position: relative;
}

/* Colors & Typography
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
THE TYPO
=======================================================================================================================*/
@font-face {
  font-family: "font_regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fnt/Lato-Regular.ttf") format("truetype");
  font-display: swap;
}
.subnav_typo, .mobilenav_typo, .mainnav_typo, .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td, .formular, .cm_formular label, .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container, .headline2, .lead_small, .headline, .lead, .headline_large {
  font-family: "font_regular", sans-serif;
}

@media (min-width: 1860px) {
  .headline_large {
    font-size: 48px;
    line-height: 1em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .headline_large {
    font-size: 48px;
    line-height: 1em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .headline_large {
    font-size: 48px;
    line-height: 1em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .headline_large {
    font-size: 48px;
    line-height: 1em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .headline_large {
    font-size: 48px;
    line-height: 1em;
  }
}
@media (max-width: 699px) {
  .headline_large {
    font-size: 26px;
    line-height: 1.23em;
  }
}
.headline_large {
  color: black;
}

@media (min-width: 1860px) {
  .headline, .lead {
    font-size: 32px;
    line-height: 1.25em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .headline, .lead {
    font-size: 32px;
    line-height: 1.25em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .headline, .lead {
    font-size: 32px;
    line-height: 1.25em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .headline, .lead {
    font-size: 32px;
    line-height: 1.25em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .headline, .lead {
    font-size: 32px;
    line-height: 1.25em;
  }
}
@media (max-width: 699px) {
  .headline, .lead {
    font-size: 22px;
    line-height: 1.36em;
  }
}
.headline, .lead {
  color: black;
}

@media (min-width: 1860px) {
  .lead_small {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .lead_small {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .lead_small {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .lead_small {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .lead_small {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (max-width: 699px) {
  .lead_small {
    font-size: 20px;
    line-height: 1.2em;
  }
}
.lead_small {
  color: black;
}

@media (min-width: 1860px) {
  .headline2 {
    font-size: 26px;
    line-height: 1.31em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .headline2 {
    font-size: 26px;
    line-height: 1.31em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .headline2 {
    font-size: 26px;
    line-height: 1.31em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .headline2 {
    font-size: 26px;
    line-height: 1.31em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .headline2 {
    font-size: 26px;
    line-height: 1.31em;
  }
}
@media (max-width: 699px) {
  .headline2 {
    font-size: 22px;
    line-height: 1.18em;
  }
}
.headline2 {
  color: black;
}

@media (min-width: 1860px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 20px;
    line-height: 1.4em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 20px;
    line-height: 1.4em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 20px;
    line-height: 1.4em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 20px;
    line-height: 1.4em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 20px;
    line-height: 1.4em;
  }
}
@media (max-width: 699px) {
  .lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
    font-size: 18px;
    line-height: 1.33em;
  }
}
.lauftext, .cm_formular p, .cm_formular input.freeform-input, .cm_formular textarea, .cm_formular select.freeform-input, .cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol, .cm_text p, .cm_text ul, .cm_text ol, .cm_text table, .footer .text_container {
  color: black;
}

@media (min-width: 1860px) {
  .formular, .cm_formular label {
    font-size: 14px;
    line-height: 1.43em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .formular, .cm_formular label {
    font-size: 14px;
    line-height: 1.43em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .formular, .cm_formular label {
    font-size: 14px;
    line-height: 1.43em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .formular, .cm_formular label {
    font-size: 14px;
    line-height: 1.43em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .formular, .cm_formular label {
    font-size: 14px;
    line-height: 1.43em;
  }
}
@media (max-width: 699px) {
  .formular, .cm_formular label {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.formular, .cm_formular label {
  color: black;
}

@media (min-width: 1860px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
@media (max-width: 699px) {
  .smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
    font-size: 13px;
    line-height: 1.15em;
  }
}
.smaltext, .cm_formular .freeform-errors, .tabletext, .cm_text table td {
  color: black;
}

@media (min-width: 1860px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media (max-width: 699px) {
  .mainnav_typo {
    font-size: 20px;
    line-height: 1.5em;
  }
}
.mainnav_typo {
  color: black;
}

@media (min-width: 1860px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
@media (max-width: 699px) {
  .mobilenav_typo {
    font-size: 24px;
    line-height: 1.33em;
  }
}
.mobilenav_typo {
  color: black;
}

@media (min-width: 1860px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
@media (max-width: 699px) {
  .subnav_typo {
    font-size: 18px;
    line-height: 1.78em;
  }
}
.subnav_typo {
  color: black;
}

/* Structural Basics
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
LAYOUT
=======================================================================================================================*/
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.wrapper {
  position: relative;
  margin: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

.main {
  position: relative;
  min-height: 600px;
}

.noscroll {
  overflow: hidden !important;
}

/* add ons
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 LINK
/*=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 TYPO FORMATTING
/*=======================================================================================================================*/
.headline1_bold {
  letter-spacing: -0.01em;
}

.headline1 {
  letter-spacing: -0.01em;
}

.headline2_bold {
  letter-spacing: -0.01em;
}

.headline2 {
  letter-spacing: -0.01em;
}

.headline3_bold {
  letter-spacing: -0.01em;
}

.headline3 {
  letter-spacing: -0.01em;
}

.headline4_bold {
  letter-spacing: -0.01em;
}

.headline4 {
  letter-spacing: -0.01em;
}

.headline5_bold {
  letter-spacing: -0.01em;
}

.headline5 {
  letter-spacing: -0.01em;
}

.facts1 {
  letter-spacing: -0.01em;
}

.facts2 {
  letter-spacing: -0.01em;
}

.facts3 {
  letter-spacing: -1.2px;
}

.text1_bold {
  letter-spacing: -0.01em;
}

.text1 {
  letter-spacing: -0.01em;
}

.text1-1 {
  letter-spacing: -0.01em;
}

.text6_bold {
  letter-spacing: 0.01em;
}

.text6 {
  letter-spacing: 0.01em;
}

.text7_bold {
  letter-spacing: 0.01em;
}

.text7 {
  letter-spacing: 0.01em;
}

.nobreak {
  white-space: nowrap;
}

/* Items
=======================================================================================================================*/
/* =====================================================================================================================
 IMAGE ITEM
/*=======================================================================================================================*/
.image_item {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
}
.image_item picture {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image_item .image {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

/* FX
=======================================================================================================================*/
/* Basic Architecture
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 FOOTER
/*=======================================================================================================================*/
.footer {
  position: relative;
}
@media (max-width: 699px) {
  .footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.footer {
  padding-top: 50px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.footer .inner_footer {
  position: relative;
  display: flex;
  gap: 60px;
  max-width: 1070px;
  margin: auto;
}
@media (max-width: 1279px) {
  .footer .inner_footer {
    flex-direction: column;
  }
}
.footer .buttons_container .button {
  margin-top: 0;
}
.footer ul {
  list-style-type: none;
  gap: 20px;
}
@media (min-width: 1280px) {
  .footer ul {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 700px) and (max-width: 1279px) {
  .footer ul {
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer ul .button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 699px) {
  .footer ul {
    display: grid;
    width: fit-content;
    grid-template-columns: auto;
  }
  .footer ul .button {
    width: 100%;
    justify-content: center;
  }
}
.footer .leftside, .footer .rightside {
  position: relative;
}
.footer .text_container {
  position: relative;
}
@media (max-width: 699px) {
  .footer .text_container {
    display: block;
  }
  .footer .text_container .text_field1 {
    margin-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .footer .text_container {
    display: flex;
    gap: 80px;
  }
}
.footer .text_container a {
  color: black;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), #567a91 calc(100% - 1px));
  background-size: 0;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  -moz-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
}
.footer .text_container a:hover {
  background-position: 0% 100%;
  background-size: 100%;
}
.footer .text_container a {
  color: #567a91;
}
.footer .text_field1, .footer .text_field2 {
  position: relative;
}
.footer .logos_list {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 5%;
}
@media (min-width: 1280px) {
  .footer .logos_container {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 1279px) {
  .footer .logos_container {
    position: relative;
    margin-top: 60px;
  }
}
.footer .logo_item {
  align-self: flex-end;
}
.footer .as_link {
  padding-bottom: 2px;
}
.footer .as_link a {
  color: black;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), black calc(100% - 1px));
  background-size: 0;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  -moz-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
}
.footer .as_link a:hover {
  background-position: 0% 100%;
  background-size: 100%;
}
.footer .as_link a {
  color: black;
}
@media (max-width: 699px) {
  .footer .as_link a.hide_on_a {
    display: none;
  }
}
.footer .as_link a.show_on_a {
  margin-top: 20px;
  display: inline-block;
}
@media (min-width: 700px) {
  .footer .as_link a.show_on_a {
    display: none;
  }
}
.footer .logo_item_link {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
  -webkit-transition: opacity 100ms linear;
  -moz-transition: opacity 100ms linear;
  transition: opacity 100ms linear;
}
.footer .logo_item_link:hover {
  opacity: 0.7;
}
.footer .logo_item_link img {
  width: 100%;
}

/* Library
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* =====================================================================================================================
 HEADER
/*=======================================================================================================================*/
.header {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header .background_image {
  background-position: center center;
}
.header .background_image.desktop {
  height: 700px;
}
@media (max-width: 1023px) {
  .header .background_image.desktop {
    display: none;
  }
}
.header .background_image.mobile {
  height: 375px;
}
@media (min-width: 1024px) {
  .header .background_image.mobile {
    display: none;
  }
}
.header .background_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .inner_header {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .header .inner_header {
    min-height: 170px;
  }
}
@media (max-width: 1023px) {
  .header .inner_header.has_image {
    margin-bottom: 40px;
  }
  .header .inner_header.has_image:has(.background_image) {
    height: 339px;
  }
}
@media (min-width: 1024px) {
  .header .inner_header.has_image {
    height: 700px;
    margin-bottom: 60px;
  }
}
.header .aufheller_gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(255, 255, 255, 0.8); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* W3C */
}
@media (max-width: 1023px) {
  .header .aufheller_gradient {
    display: none;
  }
}
.header .blurry_bar {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.85);
  height: 100px;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header .blurry_bar.on {
  height: 150px;
}
@media (max-width: 1023px) {
  .header .blurry_bar {
    display: none;
  }
}
.header .logo_container {
  position: fixed;
  -webkit-transition: width 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: width 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: width 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media (max-width: 1023px) {
  .header .logo_container {
    display: none;
  }
}
@media (min-width: 700px) {
  .header .logo_container {
    width: 230px;
    left: 30px;
    top: 13px;
  }
}
@media (min-width: 700px) {
  .header .logo_container.reduced {
    width: 160px;
  }
}
.header .logo_container img {
  position: relative;
  width: 100%;
}
.header .logo_container_mobile {
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.header .logo_container_mobile img {
  position: relative;
  width: 100%;
  max-width: 190px;
}
.header .controls_container_desktop {
  position: fixed;
  width: fit-content;
  display: flex;
  gap: 15px;
  right: 0;
  margin-right: 40px;
  margin-top: 20px;
}
.header .controls_container_desktop .langswitch {
  display: flex;
  gap: 1px;
}
.header .controls_container_desktop .button_round {
  width: 52px;
  height: 52px;
  color: #567a91;
  background-color: white;
  box-shadow: rgba(86, 122, 145, 0.5) 0 4px 5px;
}
.header .controls_container_desktop .button_round.active {
  background-color: #e1e9eb;
}
.header .controls_container_desktop .button_round:hover {
  background-color: #567a91;
  color: white;
}
.header .controls_container_desktop .button {
  margin-top: 0;
  color: #567a91;
  background-color: white;
  box-shadow: rgba(86, 122, 145, 0.5) 0 4px 5px;
}
.header .controls_container_desktop .button .icon {
  height: 27px;
}
.header .controls_container_desktop .button .text {
  margin-left: 15px;
}
.header .controls_container_desktop .button.active {
  background-color: #e1e9eb;
}
.header .controls_container_desktop .button:hover {
  color: white;
  background-color: #567a91;
}
.header .controls_container_desktop .button:hover svg path {
  stroke: white;
}
.header .controls_container_desktop .button:hover svg path.filled {
  fill: white;
}
.header .controls_container_desktop .button:hover svg .dot {
  fill: white;
}
.header .controls_container_desktop .langswitch .button {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1023px) {
  .header .controls_container_desktop {
    display: none;
  }
}
.header .controls_container_mobile {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
}
.header .controls_container_mobile .button_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 5%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .header .controls_container_mobile {
    display: none;
  }
}

/* Navigation
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 MAINNAV
/*=======================================================================================================================*/
.mainnav {
  position: relative;
  z-index: -1;
}
.mainnav.fixed {
  top: 140px;
  width: 100%;
  position: fixed;
}
.mainnav.dynamic {
  position: relative;
  top: 100px;
  height: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 100ms linear 150ms;
  -moz-transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 100ms linear 150ms;
  transition: height 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 100ms linear 150ms;
}
.mainnav.dynamic .nav_items_container {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
.mainnav.dynamic.on {
  height: 51px;
  opacity: 1;
}
@media (max-width: 1023px) {
  .mainnav {
    display: none;
  }
}
.mainnav ul, .mainnav li {
  list-style-type: none;
}
.mainnav ul {
  position: relative;
  display: flex;
  gap: 35px;
}
.mainnav .nav_items_container {
  width: fit-content;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: auto;
}
.mainnav .nav_item {
  height: 50px;
  border-bottom: 4px solid transparent;
  -webkit-transition: border-bottom-color 100ms linear;
  -moz-transition: border-bottom-color 100ms linear;
  transition: border-bottom-color 100ms linear;
}
.mainnav .nav_item:hover, .mainnav .nav_item.active {
  border-bottom-color: #567a91;
}
.mainnav .nav_item:hover .nav_item_link, .mainnav .nav_item.active .nav_item_link {
  color: #567a91;
}
.mainnav .nav_item_link {
  white-space: nowrap;
  -webkit-transition: color 100ms linear;
  -moz-transition: color 100ms linear;
  transition: color 100ms linear;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 MOBILE NAV
/*=======================================================================================================================*/
.mobile_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #eef2f4;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-top: 60px;
}
.mobile_nav.on {
  opacity: 1;
}
.mobile_nav .close_mobile_nav {
  position: absolute;
  top: 20px;
  right: 20px;
}
.mobile_nav .mobile_nav_item {
  text-align: center;
  margin-bottom: 20px;
}
.mobile_nav .button_container {
  margin-top: 60px;
}
.mobile_nav .button_container, .mobile_nav .langswitch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile_nav .button_container .phone, .mobile_nav .button_container .button, .mobile_nav .langswitch .phone, .mobile_nav .langswitch .button {
  background-color: white;
  border-radius: 100px;
  height: 44px;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: rgba(86, 122, 145, 0.3) 0 4px 5px;
  margin-top: 0;
}
.mobile_nav .button_container .phone .text, .mobile_nav .button_container .button .text, .mobile_nav .langswitch .phone .text, .mobile_nav .langswitch .button .text {
  color: #567a91;
}
.mobile_nav .button_container .phone .icon, .mobile_nav .button_container .button .icon, .mobile_nav .langswitch .phone .icon, .mobile_nav .langswitch .button .icon {
  margin-right: 10px;
}
.mobile_nav .langswitch {
  margin-top: 25px;
}
.mobile_nav .langswitch .button {
  color: #567a91;
  padding-left: 0;
  padding-right: 0;
  width: 44px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.mobile_nav .langswitch .button.active {
  background-color: #e1e9eb;
}

/* ReUsables & Stuff.
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 CTA
/*=======================================================================================================================*/
.cta {
  position: fixed;
  background-color: #567a91;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 70ms linear;
  -moz-transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 70ms linear;
  transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 70ms linear;
}
.cta.on {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cta:hover {
  opacity: 0.8;
}
.cta .cta_link {
  position: relative;
  display: block;
  text-align: center;
}
@media (max-width: 699px) {
  .cta .cta_link {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 700px) {
  .cta .cta_link {
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 20px;
    padding-bottom: 25px;
  }
}
.cta .icon {
  position: relative;
  display: block;
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
}
@media (max-width: 699px) {
  .cta .icon {
    height: 30px;
    margin-bottom: 10px;
  }
}
.cta .icon img {
  position: relative;
  width: 100%;
  height: 100%;
}
.cta .text {
  color: white;
}
@media (max-width: 699px) {
  .cta .text {
    font-size: 12px;
  }
}

/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 BUTTONS
/*=======================================================================================================================*/
.button, button[type=submit] {
  margin-top: 30px;
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  border-radius: 5px;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  background-color: #567a91;
  cursor: pointer;
  -webkit-transition: background-color 70ms linear;
  -moz-transition: background-color 70ms linear;
  transition: background-color 70ms linear;
}
.button:hover, button[type=submit]:hover {
  background-color: rgba(86, 122, 145, 0.7);
}
.button:active, button[type=submit]:active {
  background-color: #567a91;
}
.button.icon_only, button[type=submit].icon_only {
  padding-left: 20px;
  padding-right: 20px;
}

.button_round, .scroll_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  box-shadow: rgba(86, 122, 145, 0.3) 0 4px 5px;
}

@media (max-width: 699px) {
  .cm_buttons {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_buttons {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_buttons {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_buttons {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_buttons {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_buttons {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_buttons .inner_cm {
  position: relative;
}
.cm_buttons .content_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media (max-width: 1023px) {
  .cm_buttons .content_container {
    flex-direction: column;
  }
}
.cm_buttons .button {
  margin-top: 0;
}

/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 SCROLL TOP
/*=======================================================================================================================*/
.scroll_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e1e9eb;
  width: 52px;
  height: 52px;
  box-shadow: rgba(86, 122, 145, 0.5) 0 4px 5px;
  -webkit-transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translate3d(150%, 0, 0);
  -moz-transform: translate3d(150%, 0, 0);
  transform: translate3d(150%, 0, 0);
}
.scroll_top svg {
  width: 22px;
}
.scroll_top svg path {
  stroke: #567a91;
}
.scroll_top:hover {
  background-color: #567a91;
}
.scroll_top:hover svg path {
  stroke: white;
}
.scroll_top:hover {
  color: white;
}
.scroll_top.on {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Pages
=======================================================================================================================*/
/* Headers
=======================================================================================================================*/
/* VUE SFCs.
=======================================================================================================================*/
/* Containers.
=======================================================================================================================*/
/* =====================================================================================================================
 GRID
/*=======================================================================================================================*/
/*
	auto generated class naming conventions:
	no gaps:        .grid_[cols]
	same gap V + H: .grid_[cols]_[gapV+H]
	different gaps: .grid_[cols]_[gapV]_[gapH]
*/
.grid_5_50_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 50px;
  }
}

.grid_5_50_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 40px;
  }
}

.grid_5_50_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 30px;
  }
}

.grid_5_50_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 20px;
  }
}

.grid_5_50_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 15px;
  }
}

.grid_5_50_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_50_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 10px;
  }
}

.grid_5_40_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 50px;
  }
}

.grid_5_40_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 40px;
  }
}

.grid_5_40_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
  }
}

.grid_5_40_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
  }
}

.grid_5_40_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 15px;
  }
}

.grid_5_40_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_40_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 10px;
  }
}

.grid_5_30_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 50px;
  }
}

.grid_5_30_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 40px;
  }
}

.grid_5_30_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 30px;
  }
}

.grid_5_30_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
  }
}

.grid_5_30_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 15px;
  }
}

.grid_5_30_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_30_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 10px;
  }
}

.grid_5_20_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 50px;
  }
}

.grid_5_20_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 40px;
  }
}

.grid_5_20_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 30px;
  }
}

.grid_5_20_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 20px;
  }
}

.grid_5_20_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 15px;
  }
}

.grid_5_20_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_20_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 10px;
  }
}

.grid_5_15_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 50px;
  }
}

.grid_5_15_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 40px;
  }
}

.grid_5_15_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 30px;
  }
}

.grid_5_15_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 20px;
  }
}

.grid_5_15_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 15px;
  }
}

.grid_5_15_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_15_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 10px;
  }
}

.grid_5_10_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_50 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 50px;
  }
}

.grid_5_10_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_40 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 40px;
  }
}

.grid_5_10_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_30 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 30px;
  }
}

.grid_5_10_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_20 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 20px;
  }
}

.grid_5_10_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_15 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 15px;
  }
}

.grid_5_10_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_5_10_10 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 10px;
  }
}

.grid_4_50_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 50px;
  }
}

.grid_4_50_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
  }
}

.grid_4_50_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
  }
}

.grid_4_50_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 20px;
  }
}

.grid_4_50_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 15px;
  }
}

.grid_4_50_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_50_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 10px;
  }
}

.grid_4_40_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 50px;
  }
}

.grid_4_40_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 40px;
  }
}

.grid_4_40_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
  }
}

.grid_4_40_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
}

.grid_4_40_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 15px;
  }
}

.grid_4_40_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_40_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 10px;
  }
}

.grid_4_30_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
  }
}

.grid_4_30_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
  }
}

.grid_4_30_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
  }
}

.grid_4_30_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}

.grid_4_30_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
  }
}

.grid_4_30_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_30_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
  }
}

.grid_4_20_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 50px;
  }
}

.grid_4_20_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
  }
}

.grid_4_20_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
  }
}

.grid_4_20_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
  }
}

.grid_4_20_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
  }
}

.grid_4_20_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_20_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
  }
}

.grid_4_15_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 50px;
  }
}

.grid_4_15_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 40px;
  }
}

.grid_4_15_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
  }
}

.grid_4_15_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 20px;
  }
}

.grid_4_15_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 15px;
  }
}

.grid_4_15_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_15_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
  }
}

.grid_4_10_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_50 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 50px;
  }
}

.grid_4_10_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_40 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 40px;
  }
}

.grid_4_10_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_30 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
  }
}

.grid_4_10_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_20 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
  }
}

.grid_4_10_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_15 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 15px;
  }
}

.grid_4_10_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_4_10_10 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
  }
}

.grid_3_50_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}

.grid_3_50_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}

.grid_3_50_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}

.grid_3_50_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}

.grid_3_50_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
  }
}

.grid_3_50_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_50_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
  }
}

.grid_3_40_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}

.grid_3_40_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}

.grid_3_40_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}

.grid_3_40_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}

.grid_3_40_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}

.grid_3_40_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_40_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}

.grid_3_30_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}

.grid_3_30_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
}

.grid_3_30_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }
}

.grid_3_30_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

.grid_3_30_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}

.grid_3_30_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_30_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}

.grid_3_20_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
  }
}

.grid_3_20_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
}

.grid_3_20_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}

.grid_3_20_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}

.grid_3_20_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
}

.grid_3_20_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_20_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
}

.grid_3_15_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 50px;
  }
}

.grid_3_15_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
  }
}

.grid_3_15_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
  }
}

.grid_3_15_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}

.grid_3_15_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 15px;
  }
}

.grid_3_15_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_15_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }
}

.grid_3_10_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_50 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 50px;
  }
}

.grid_3_10_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_40 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
  }
}

.grid_3_10_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_30 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
  }
}

.grid_3_10_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}

.grid_3_10_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}

.grid_3_10_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_3_10_10 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}

.grid_2_50_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
  }
}

.grid_2_50_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}

.grid_2_50_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

.grid_2_50_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}

.grid_2_50_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }
}

.grid_2_50_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_50_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
  }
}

.grid_2_40_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
  }
}

.grid_2_40_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}

.grid_2_40_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

.grid_2_40_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

.grid_2_40_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}

.grid_2_40_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_40_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}

.grid_2_30_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
  }
}

.grid_2_30_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}

.grid_2_30_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}

.grid_2_30_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.grid_2_30_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

.grid_2_30_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_30_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}

.grid_2_20_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
  }
}

.grid_2_20_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}

.grid_2_20_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}

.grid_2_20_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

.grid_2_20_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}

.grid_2_20_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_20_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.grid_2_15_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 50px;
  }
}

.grid_2_15_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
  }
}

.grid_2_15_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }
}

.grid_2_15_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}

.grid_2_15_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}

.grid_2_15_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_15_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}

.grid_2_10_50 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_50 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}

.grid_2_10_40 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_40 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
}

.grid_2_10_30 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
  }
}

.grid_2_10_20 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}

.grid_2_10_15 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_15 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}

.grid_2_10_10 {
  display: grid;
}
@media (max-width: 699px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
@media (min-width: 1860px) {
  .grid_2_10_10 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}

/* CMs
=======================================================================================================================*/
/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 CM HEADLINE
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_headline {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_headline {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_headline {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_headline {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_headline {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_headline {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_headline {
  margin: auto;
}
.cm_headline .inner_cm {
  position: relative;
}
.cm_headline h1, .cm_headline h2 {
  text-align: center;
  max-width: 768px;
  margin: auto;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 CM LEAD
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_lead {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_lead {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_lead {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_lead {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_lead {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_lead {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_lead .inner_cm {
  position: relative;
}
.cm_lead p {
  text-align: center;
  max-width: 768px;
  margin: auto;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM TEXT
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_text .inner_cm {
  position: relative;
}
.cm_text figure {
  text-align: center;
  max-width: 768px;
  margin: auto;
  margin-bottom: 30px;
}
.cm_text p, .cm_text ul, .cm_text ol, .cm_text table {
  max-width: 768px;
  margin: auto;
  margin-bottom: 30px;
}
.cm_text p:last-child, .cm_text ul:last-child, .cm_text ol:last-child, .cm_text table:last-child {
  margin-bottom: 0;
}
.cm_text ul, .cm_text ol {
  padding-left: 20px;
}
.cm_text li {
  margin-bottom: 10px;
}
.cm_text p strong, .cm_text li strong {
  font-weight: bold;
}
@media (max-width: 699px) {
  .cm_text p, .cm_text li {
    hyphens: auto;
  }
}
.cm_text a {
  color: #567a91;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), #567a91 calc(100% - 1px));
  background-size: 0;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  -moz-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
}
.cm_text a:hover {
  background-position: 0% 100%;
  background-size: 100%;
}
.cm_text table {
  position: relative;
  width: 100%;
  border-collapse: separate; /* required */
}
.cm_text table tr {
  display: flex;
  gap: 20px;
}
.cm_text table td {
  vertical-align: middle;
  width: 33.3333%;
}
.cm_text table td a:has(img) {
  padding: 0;
  background: none;
}
.cm_text table td a:has(img):hover {
  background: none;
}
.cm_text img {
  width: 100%;
  height: auto;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM AKKORDEON
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_akkordeon {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_akkordeon {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_akkordeon {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_akkordeon {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_akkordeon {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_akkordeon {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_akkordeon .inner_cm {
  position: relative;
}
.cm_akkordeon .content_container {
  max-width: 1070px;
  margin: auto;
}
.cm_akkordeon .akkordeon_item {
  position: relative;
  background-color: #eef2f4;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 699px) {
  .cm_akkordeon .akkordeon_item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 700px) {
  .cm_akkordeon .akkordeon_item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cm_akkordeon .akkordeon_item.on .trigger_akkordeon {
  margin-bottom: 0;
  padding-bottom: 15px;
  border-color: #567a91;
}
.cm_akkordeon .akkordeon_item.on .trigger_akkordeon::after {
  transform: rotate(0deg);
}
.cm_akkordeon .akkordeon_item.on .akkordeon_content {
  padding-top: 40px;
}
.cm_akkordeon .akkordeon_content {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 0;
  -webkit-transition: height 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-top 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: height 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-top 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: height 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-top 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media (min-width: 700px) {
  .cm_akkordeon .akkordeon_content.has_image {
    display: grid;
    grid-template-columns: 35% auto;
  }
}
.cm_akkordeon .akkordeon_content img {
  width: 100%;
  padding-right: 20px;
  margin-top: 5px;
}
@media (max-width: 699px) {
  .cm_akkordeon .akkordeon_content img {
    padding-right: 10%;
    padding-left: 10%;
    margin-bottom: 40px;
  }
}
.cm_akkordeon .trigger_akkordeon {
  cursor: pointer;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  -webkit-transition: margin-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 300ms linear;
  -moz-transition: margin-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 300ms linear;
  transition: margin-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), padding-bottom 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 300ms linear;
}
@media (max-width: 699px) {
  .cm_akkordeon .trigger_akkordeon {
    padding-right: 40px;
    hyphens: auto;
  }
}
@media (min-width: 700px) {
  .cm_akkordeon .trigger_akkordeon {
    padding-right: 50px;
  }
}
.cm_akkordeon .trigger_akkordeon::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../img/icn_arrow_accordion.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  -webkit-transition: transform 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media (max-width: 699px) {
  .cm_akkordeon .trigger_akkordeon::after {
    width: 20px;
    height: 10px;
    top: 23px;
    right: 30px;
  }
}
@media (min-width: 700px) {
  .cm_akkordeon .trigger_akkordeon::after {
    width: 28px;
    height: 14px;
    top: 23px;
    right: 30px;
  }
}
.cm_akkordeon p, .cm_akkordeon ul, .cm_akkordeon ol {
  margin-bottom: 20px;
}
.cm_akkordeon ul, .cm_akkordeon ol {
  padding-left: 40px;
}
.cm_akkordeon p + ul, .cm_akkordeon p + ol {
  margin-top: -20px;
}
.cm_akkordeon ul,
.cm_akkordeon ul ul,
.cm_akkordeon ul ul ul,
.cm_akkordeon ol,
.cm_akkordeon ol ol,
.cm_akkordeon ol ol ol {
  list-style-type: disc !important;
}
.cm_akkordeon p strong {
  font-weight: bold;
}
@media (max-width: 699px) {
  .cm_akkordeon p {
    hyphens: auto;
  }
}
@media (max-width: 699px) {
  .cm_akkordeon li {
    hyphens: auto;
  }
}
.cm_akkordeon li ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.cm_akkordeon a {
  color: #567a91;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), #567a91 calc(100% - 1px));
  background-size: 0;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  -moz-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
}
.cm_akkordeon a:hover {
  background-position: 0% 100%;
  background-size: 100%;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 CM BILD
/*=======================================================================================================================*/
.cm_bild .inner_cm {
  position: relative;
}
@media (max-width: 699px) {
  .cm_bild .content_container.full_width .image_item {
    padding-bottom: 50%;
  }
}
@media (min-width: 700px) {
  .cm_bild .content_container.full_width .image_item {
    padding-bottom: 45%;
  }
}
.cm_bild .content_container.content_width {
  max-width: 768px;
  margin: auto;
}
@media (max-width: 699px) {
  .cm_bild .content_container.content_width .image_item {
    padding-bottom: 66%;
  }
}
@media (min-width: 700px) {
  .cm_bild .content_container.content_width .image_item {
    padding-bottom: 66%;
  }
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* =====================================================================================================================
 YOUTUBE VIDEO
/*=======================================================================================================================*/
.cm_youtube_video .inner_cm {
  position: relative;
}
.cm_youtube_video .content_container {
  max-width: 880px;
  margin: auto;
}
.cm_youtube_video .video_container {
  position: relative;
  padding: 56.22% 0 0 0;
}
.cm_youtube_video .video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM NAVI LEISTUNGEN
/*=======================================================================================================================*/
.cm_navigation_leistungen {
  position: relative;
}
@media (max-width: 699px) {
  .cm_navigation_leistungen {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_navigation_leistungen {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_navigation_leistungen {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_navigation_leistungen {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_navigation_leistungen {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_navigation_leistungen {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_navigation_leistungen {
  background-color: #eef2f4;
}
.cm_navigation_leistungen .inner_cm {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 699px) {
  .cm_navigation_leistungen .inner_cm {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cm_navigation_leistungen .section_headline {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 699px) {
  .cm_navigation_leistungen .section_headline {
    margin-bottom: 50px;
  }
}
.cm_navigation_leistungen .content_container {
  position: relative;
  max-width: 768px;
  margin: auto;
}
@media (min-width: 700px) {
  .cm_navigation_leistungen .navigation_container {
    grid-auto-rows: 1fr;
  }
}
.cm_navigation_leistungen .nav_section_title {
  position: relative;
  text-align: left;
  margin-bottom: 35px;
}
.cm_navigation_leistungen .icon {
  position: absolute;
  right: 0;
}
.cm_navigation_leistungen .icon img {
  vertical-align: top;
  margin-top: 4px;
}
.cm_navigation_leistungen .nav_section {
  position: relative;
  background-color: white;
  border-radius: 5px;
  padding: 25px;
  padding-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 7px;
  -webkit-transition: box-shadow 100ms linear;
  -moz-transition: box-shadow 100ms linear;
  transition: box-shadow 100ms linear;
}
.cm_navigation_leistungen .nav_section .nav_link {
  display: block;
  position: relative;
}
.cm_navigation_leistungen .nav_section .nav_link .arrow {
  position: absolute;
  display: inline-block;
  margin-left: -20px;
  top: 9px;
  width: 15px;
  height: 15px;
  background-image: url(../img/icn_nav_arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cm_navigation_leistungen .nav_section .nav_link .label {
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cm_navigation_leistungen .nav_section .nav_link:hover .arrow {
  opacity: 1;
  -webkit-transform: translate3d(20px, 0, 0);
  -moz-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  -webkit-transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
  -moz-transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
  transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
}
.cm_navigation_leistungen .nav_section .nav_link:hover .label {
  opacity: 1 !important;
  -webkit-transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translate3d(22px, 0, 0);
  -moz-transform: translate3d(22px, 0, 0);
  transform: translate3d(22px, 0, 0);
}
.cm_navigation_leistungen .nav_section:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 6px 10px;
}
.cm_navigation_leistungen .nav_section:hover .nav_link .label {
  opacity: 0.4;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM NAVI KRANKHEITSBILDER
/*=======================================================================================================================*/
.cm_navigation_krankheitsbilder {
  position: relative;
}
@media (max-width: 699px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_navigation_krankheitsbilder {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_navigation_krankheitsbilder {
  background-color: #f1f0eb;
}
.cm_navigation_krankheitsbilder .inner_cm {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 699px) {
  .cm_navigation_krankheitsbilder .inner_cm {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cm_navigation_krankheitsbilder .section_headline {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 699px) {
  .cm_navigation_krankheitsbilder .section_headline {
    margin-bottom: 50px;
  }
}
.cm_navigation_krankheitsbilder .content_container {
  position: relative;
  max-width: 1070px;
}
@media (min-width: 700px) and (max-width: 1279px) {
  .cm_navigation_krankheitsbilder .content_container {
    max-width: 768px;
  }
}
.cm_navigation_krankheitsbilder .content_container {
  margin: auto;
}
.cm_navigation_krankheitsbilder .nav_section_title {
  position: relative;
  text-align: left;
  margin-bottom: 35px;
}
.cm_navigation_krankheitsbilder .icon {
  position: absolute;
  right: 0;
}
.cm_navigation_krankheitsbilder .icon img {
  vertical-align: top;
  margin-top: 4px;
}
.cm_navigation_krankheitsbilder .nav_section {
  position: relative;
  background-color: white;
  border-radius: 5px;
  padding: 25px;
  padding-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 7px;
  -webkit-transition: box-shadow 100ms linear;
  -moz-transition: box-shadow 100ms linear;
  transition: box-shadow 100ms linear;
}
.cm_navigation_krankheitsbilder .nav_section .nav_link {
  display: block;
  position: relative;
}
.cm_navigation_krankheitsbilder .nav_section .nav_link .arrow {
  position: absolute;
  display: inline-block;
  margin-left: -20px;
  top: 9px;
  width: 15px;
  height: 15px;
  background-image: url(../img/icn_nav_arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cm_navigation_krankheitsbilder .nav_section .nav_link .label {
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 150ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cm_navigation_krankheitsbilder .nav_section .nav_link:hover .arrow {
  opacity: 1;
  -webkit-transform: translate3d(20px, 0, 0);
  -moz-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  -webkit-transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
  -moz-transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
  transition: opacity 150ms linear 50ms, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 50ms;
}
.cm_navigation_krankheitsbilder .nav_section .nav_link:hover .label {
  opacity: 1 !important;
  -webkit-transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 50ms linear, transform 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translate3d(22px, 0, 0);
  -moz-transform: translate3d(22px, 0, 0);
  transform: translate3d(22px, 0, 0);
}
.cm_navigation_krankheitsbilder .nav_section:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 6px 10px;
}
.cm_navigation_krankheitsbilder .nav_section:hover .nav_link .label {
  opacity: 0.4;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM AUTOR
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_autor {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_autor {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_autor {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_autor {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_autor {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_autor {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_autor .inner_cm {
  position: relative;
}
.cm_autor .content_container {
  display: grid;
  align-items: center;
  max-width: 768px;
  margin: auto;
}
@media (max-width: 699px) {
  .cm_autor .content_container {
    grid-template-columns: 100px auto;
  }
}
@media (min-width: 700px) {
  .cm_autor .content_container {
    grid-template-columns: 180px auto;
  }
}
@media (max-width: 699px) {
  .cm_autor .text {
    margin-left: 30px;
  }
}
@media (min-width: 700px) {
  .cm_autor .text {
    margin-left: 60px;
  }
}
.cm_autor .image_item {
  padding-bottom: 100%;
  border-radius: 50%;
}
.cm_autor .image_item img {
  border-radius: 50%;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM TEAM
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_team {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_team {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_team {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_team {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_team {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_team {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_team .inner_cm {
  position: relative;
}
.cm_team .headline, .cm_team .items_container {
  max-width: 1070px;
  margin: auto;
}
.cm_team .headline {
  margin-bottom: 80px;
  text-align: center;
}
.cm_team .items_container {
  position: relative;
}
@media (min-width: 700px) {
  .cm_team .items_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
.cm_team .image_item {
  padding-bottom: 100%;
}
.cm_team .funktion {
  margin-bottom: 30px;
}
.cm_team .person_name {
  margin-bottom: 5px;
}
.cm_team .image_container {
  margin-bottom: 30px;
}
.cm_team .person_name {
  text-align: left;
}
.cm_team .person_container {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 699px) {
  .cm_team .person_container {
    margin-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .cm_team .person_container {
    margin-bottom: 90px;
  }
  .cm_team .person_container:last-child, .cm_team .person_container:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.cm_team .person_container .button {
  align-self: end;
}
.cm_team .extlink {
  display: block;
  width: fit-content;
  color: #567a91;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), #567a91 calc(100% - 1px));
  background-size: 0;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  -moz-transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
  transition: margin-bottom 250ms linear, background-size 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 250ms linear;
}
.cm_team .extlink:hover {
  background-position: 0% 100%;
  background-size: 100%;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* =====================================================================================================================
 CM IMAGE GALLERY
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_image_gallery {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_image_gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_image_gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_image_gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_image_gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_image_gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_image_gallery .inner_cm {
  position: relative;
}
.cm_image_gallery .content_container {
  max-width: 1070px;
  margin: auto;
}
.cm_image_gallery ul, .cm_image_gallery li {
  list-style-type: none;
}
.cm_image_gallery .image_item {
  padding-bottom: 67%;
}
.cm_image_gallery .image_container {
  cursor: pointer;
}

/* =====================================================================================================================
 LIGHTBOX
/*=======================================================================================================================*/
.lightbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox_overlay.on {
  opacity: 1;
  visibility: visible;
}
.lightbox_overlay .lightbox_inner {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox_overlay .lightbox_content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1201px) {
  .lightbox_overlay .lightbox_content {
    max-width: calc(100% - 200px);
  }
}
@media (max-width: 699px) {
  .lightbox_overlay .lightbox_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.lightbox_overlay .lightbox_img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
@media (max-width: 699px) {
  .lightbox_overlay .lightbox_img {
    max-height: 75vh;
  }
}
.lightbox_overlay .lightbox_img.fading {
  opacity: 0;
}
.lightbox_overlay .lightbox_nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  width: calc(100% + 160px);
  margin-left: -80px;
}
@media (max-width: 1200px) {
  .lightbox_overlay .lightbox_nav {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }
}
@media (max-width: 699px) {
  .lightbox_overlay .lightbox_nav {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    gap: 30px;
    pointer-events: auto;
  }
}
.lightbox_overlay .lightbox_btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background 0.3s;
}
.lightbox_overlay .lightbox_btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox_overlay .lightbox_close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: transform 100ms;
  -moz-transition: transform 100ms;
  transition: transform 100ms;
}
.lightbox_overlay .lightbox_close:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  .lightbox_overlay .lightbox_close {
    top: 0;
    right: 0;
  }
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* add ons
=======================================================================================================================*/
/* =====================================================================================================================
 CM NEWSBLOCK
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_newsblock {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_newsblock {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_newsblock {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_newsblock {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_newsblock {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_newsblock {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_newsblock .inner_cm {
  position: relative;
  max-width: 965px;
  margin: auto;
  border-radius: 5px;
  background: -moz-linear-gradient(left, #567a91 38%, #cfccbe 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #567a91 38%, #cfccbe 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #567a91 38%, #cfccbe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media (max-width: 699px) {
  .cm_newsblock .inner_cm {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 14%;
    padding-right: 14%;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_newsblock .inner_cm {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media (min-width: 700px) {
  .cm_newsblock .inner_cm {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 8%;
    padding-right: 8%;
  }
}
.cm_newsblock .content_container {
  text-align: center;
}
.cm_newsblock .headline {
  color: white;
}
@media (max-width: 699px) {
  .cm_newsblock .headline {
    margin-bottom: 20px;
  }
}
@media (min-width: 700px) {
  .cm_newsblock .headline {
    margin-bottom: 40px;
  }
}
.cm_newsblock .text {
  color: white;
}
@media (max-width: 699px) {
  .cm_newsblock .text {
    margin-bottom: 15px;
  }
}
@media (min-width: 700px) {
  .cm_newsblock .text {
    margin-bottom: 30px;
  }
}
.cm_newsblock .button {
  margin: auto;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* =====================================================================================================================
 MODULE NAME
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_spitzmarke {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_spitzmarke {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_spitzmarke {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_spitzmarke {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_spitzmarke {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_spitzmarke {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_spitzmarke .inner_cm {
  position: relative;
}
.cm_spitzmarke .content_container {
  display: grid;
  grid-template-columns: auto auto;
  width: fit-content;
  justify-items: center;
  align-items: center;
  margin: auto;
}
@media (max-width: 699px) {
  .cm_spitzmarke .content_container {
    gap: 20px;
  }
}
@media (min-width: 700px) {
  .cm_spitzmarke .content_container {
    gap: 40px;
  }
}

/* =====================================================================================================================
 MODULE NAME
/*=======================================================================================================================*/
.cm_google_map .inner_cm {
  position: relative;
}

/* BreakPoint System, Spacing and Layout
=======================================================================================================================*/
/* Library
=======================================================================================================================*/
/* Colors & Typography
=======================================================================================================================*/
/* =====================================================================================================================
 CM FORMULAR
/*=======================================================================================================================*/
@media (max-width: 699px) {
  .cm_formular {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .cm_formular {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .cm_formular {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .cm_formular {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1859px) {
  .cm_formular {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1860px) {
  .cm_formular {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cm_formular .inner_cm {
  position: relative;
}
.cm_formular .form_container {
  max-width: 768px;
  margin: auto;
}
.cm_formular p {
  font-weight: normal !important;
}
.cm_formular label {
  font-weight: normal !important;
}
.cm_formular input.freeform-input, .cm_formular textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.9em;
}
.cm_formular select.freeform-input {
  position: relative;
  background-color: #eef2f4;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  -webkit-appearance: none;
}
@media (max-width: 699px) {
  .cm_formular select.freeform-input {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 700px) {
  .cm_formular select.freeform-input {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cm_formular select.freeform-input {
  background-image: url(../img/icn_arrow_dropdown.svg);
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  background-size: 25px;
}
.cm_formular input[type=checkbox] {
  accent-color: #567a91;
  cursor: pointer;
}
.cm_formular label {
  cursor: pointer;
}
.cm_formular .freeform-row {
  margin-bottom: 0;
}
.cm_formular .freeform-label {
  margin-bottom: 5px;
}
@media (min-width: 700px) {
  .cm_formular .freeform-fieldtype-checkboxes {
    column-count: 2;
  }
}
.cm_formular .freeform-fieldtype-checkboxes .freeform-label {
  display: none;
}
.cm_formular .freeform-fieldtype-dropdown select {
  border: 1px solid black;
}
.cm_formular .freeform-errors {
  color: red;
}

/* ITEM
=======================================================================================================================*/
/*# sourceMappingURL=main.css.map */