.grid-row {
  position: relative;
  padding: 0 calc( calc( 100% - 1320px ) / 2 );
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat( 12, minmax(0,1fr) );
  row-gap: 20px;
  column-gap: 40px;
}
.grid-col {
  position: relative;
  box-sizing: content-box;
  display: grid;
  row-gap: 10px;
}

.grid-block {
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
}

.grid-col.aligncntnt-start {
  align-content: start;
}
.grid-col.aligncntnt-end {
  align-content: end;
}
.grid-col.aligncntnt-center {
  align-content: center;
}
.grid-col.aligncntnt-stretch {
  align-content: stretch;
}
.grid-col.aligncntnt-space-around {
  align-content: space-around;
}
.grid-col.aligncntnt-space-between {
  align-content: space-between;
}
.grid-col.aligncntnt-space-evenly {
  align-content: space-evenly;
}

.grid-block.align-left, .grid-block.txt-left {
  text-align: left;
}
.grid-block.align-right, .grid-block.txt-right {
  text-align: right;
}
.grid-block.align-center, .grid-block.txt-center {
  text-align: center;
}
.grid-block.align-justify, .grid-block.txt-justify {
  text-align: justify;
}



/** de: Weißer Text */
/** en: White Text */
.bax-white-text {
}
.bax-white-text, .bax-white-text a, .bax-white-text a:focus, .bax-white-text a:hover, .bax-white-text a:active,
.bax-white-text .headline1, .bax-white-text .headline2 {
  color: #FFFFFF;
}
.bax-white-text a {
  text-decoration: underline;
}
.bax-white-text a:focus, .bax-white-text a:hover, .bax-white-text a:active {
  text-decoration: none;
}

/** de: Bilder auf volle Breite skalieren */
/** en: Bilder auf volle Breite skalieren */
.bax-image-fullwidth {
}
.bax-image-fullwidth img, .bax-image-fullwidth svg {
  width: 100%;
  margin: 0;
}

/** de: Bilder mit Schlagschatten */
/** en: Bilder mit Schlagschatten */
.bax-image-dropshadow {
  overflow: visible;
}
.bax-image-dropshadow img, .bax-image-dropshadow svg {
  box-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/** de: Bilder ohne Abstand */
/** en: Bilder ohne Abstand */
.bax-image-nomargin {
}
.bax-image-nomargin img, .bax-image-nomargin svg {
  margin: 0;
}

/** de: Hover-Effekt: Zoom  */
/** en: Hover-Effekt: Zoom */
.bax-zoomeffect {
  transition: 500ms;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bax-zoomeffect:hover {
  transform: scale(1.05) translateZ(0);
}



/** de: XS (alle Seiten) */
/** en: XS (alle Seiten) */
.cap-padding-xs {
  padding: clamp( 10px, 1vw, 20px );
}

/** de: S (alle Seiten) */
/** en: S (alle Seiten) */
.cap-padding-s {
  padding: clamp( 20px, 2vw, 40px );
}

/** de: Hover-Effekt: Zoom  */
/** en: Hover-Effekt: Zoom */
.cax-zoomeffect {
  transition: 500ms;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cax-zoomeffect:hover {
  transform: scale(1.05) translateZ(0);
}


/** de: kein Abstand (oben+unten) */
/** en: kein Abstand (oben+unten) */
.ram-margin-0-top-bottom {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/** de: kein Abstand (oben) */
/** en: kein Abstand (oben) */
.ram-margin-0-top {
  margin-top: 0 !important;
}

/** de: kein Abstand (unten) */
/** en: kein Abstand (unten) */
.ram-margin-0-bottom {
  margin-bottom: 0 !important;
}

/** de: Animation: Fade-In unten/oben */
/** en: Animation: Fade-In unten/oben */
.rax-fadein-bottom-top {
}
@media all and (min-width: 800px) {
  .rax-fadein-bottom-top div.grid-col {
    opacity: 0;
  }
  .rax-fadein-bottom-top.inview div.grid-col {
    animation: rax-fadein-bottom-top 1s forwards;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(1) {
    animation-delay: 0ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(2) {
    animation-delay: 250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(3) {
    animation-delay: 500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(4) {
    animation-delay: 750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(5) {
    animation-delay: 1000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(6) {
    animation-delay: 1250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(7) {
    animation-delay: 1500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(8) {
    animation-delay: 1750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(9) {
    animation-delay: 2000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(10) {
    animation-delay: 2250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(11) {
    animation-delay: 2500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(12) {
    animation-delay: 2750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(13) {
    animation-delay: 3000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(14) {
    animation-delay: 3250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(15) {
    animation-delay: 3500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(16) {
    animation-delay: 3750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(17) {
    animation-delay: 4000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(18) {
    animation-delay: 4250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(19) {
    animation-delay: 4500ms;
  }
  @keyframes rax-fadein-bottom-top {
    from {
      opacity: 0;
      transform: translate(0,100px);
    }
    to {
      opacity: 1;
      transform: translate(0,0);
    }
  }
}


/** de: Animation: Fade-In links>rechts */
/** en: Animation: Fade-In links>rechts */
.cax-fadein-left-right {
}
@media all and (min-width: 800px) {
  .cax-fadein-left-right div.grid-block {
    opacity: 0;
  }
  .cax-fadein-left-right.inview div.grid-block {
    animation: cax-fadein-left-right 1s forwards;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(1) {
    animation-delay: 0ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(2) {
    animation-delay: 250ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(3) {
    animation-delay: 500ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(4) {
    animation-delay: 750ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(5) {
    animation-delay: 1000ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(6) {
    animation-delay: 1250ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(7) {
    animation-delay: 1500ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(8) {
    animation-delay: 1750ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(9) {
    animation-delay: 2000ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(10) {
    animation-delay: 2250ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(11) {
    animation-delay: 2500ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(12) {
    animation-delay: 2750ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(13) {
    animation-delay: 3000ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(14) {
    animation-delay: 3250ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(15) {
    animation-delay: 3500ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(16) {
    animation-delay: 3750ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(17) {
    animation-delay: 4000ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(18) {
    animation-delay: 4250ms;
  }
  .cax-fadein-left-right.inview div.grid-block:nth-child(19) {
    animation-delay: 4500ms;
  }
  @keyframes cax-fadein-left-right {
    from {
      opacity: 0;
      transform: translate(-100px,0);
    }
    to {
      opacity: 1;
      transform: translate(0,0);
    }
  }
}

.grid-row.row-colored-1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #3e68bb, #0e295f);
}.grid-row.row-colored-2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #f2f2f2, #eeeeee);
}.grid-col.col-inbackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  grid-column: unset;
}
.grid-col.col-inbackground.col-1 {
  width: calc( 100% / 12 * 1 );
}
.grid-col.col-inbackground.col-2 {
  width: calc( 100% / 12 * 2 );
}
.grid-col.col-inbackground.col-3 {
  width: calc( 100% / 12 * 3 );
}
.grid-col.col-inbackground.col-4 {
  width: calc( 100% / 12 * 4 );
}
.grid-col.col-inbackground.col-5 {
  width: calc( 100% / 12 * 5 );
}
.grid-col.col-inbackground.col-6 {
  width: calc( 100% / 12 * 6 );
}
.grid-col.col-inbackground.col-7 {
  width: calc( 100% / 12 * 7 );
}
.grid-col.col-inbackground.col-8 {
  width: calc( 100% / 12 * 8 );
}
.grid-col.col-inbackground.col-9 {
  width: calc( 100% / 12 * 9 );
}
.grid-col.col-inbackground.col-10 {
  width: calc( 100% / 12 * 10 );
}
.grid-col.col-inbackground.col-11 {
  width: calc( 100% / 12 * 11 );
}.grid-col.col-productbox {
  align-items: end;
  row-gap: 0;
}.grid-col.col-imageslider {
  background: #FFFFFF;
}
.grid-col.col-imageslider img, .grid-col.col-imageslider > a {
  margin: 0;
  width: 100%;
}
.grid-col.col-imageslider > .grid-block .grideditor-edit-button {
  display: none;
}
.grid-col.col-imageslider > .grid-block {
  display: none;
}
.grid-col.col-imageslider.slick-slider > .grid-block {
  display: block;
}
.grid-col.col-imageslider > .grid-block:first-child {
  display: block;
}

.grid-col.col-imageslider .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 2.5rem;
  height: 2.5rem;
  left: 0;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
  border: 0;
  outline: 0;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  transition: 300ms;
  z-index: 100;
}
.grid-col.col-imageslider .slick-arrow::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 60%;
  height: 50%;
  transform: translate(-50%,-50%) rotate(135deg);
  width: 0.75rem;
  height: 0.75rem;
  box-shadow: 1px 1px 0px 0 #FFFFFF;
  content: '';
}
.grid-col.col-imageslider .slick-next {
  left: auto;
  right: 0;
}
.grid-col.col-imageslider .slick-next::after {
  left: 41%;
  transform: translate(-50%,-50%) rotate(-45deg);
}
.grid-col.col-imageslider .slick-arrow:hover, .slick-arrow:focus {
  background: #FFFFFF;
  border: 1px solid var(--primaryColor);
}
.grid-col.col-imageslider .slick-arrow:hover::after, .slick-arrow:focus::after {
  box-shadow: 1px 1px 0px 0 var(--primaryColor);
}
.grid-col.col-iconbox {
  display: grid;
  grid-template-columns: 100px auto;
  background: linear-gradient(#fefeff, #f0f3fa);
  border: 1px solid #c7d3eb;
  align-items: center;
  row-gap: 0;
  column-gap: 30px;
  box-sizing: border-box;
  padding: 20px;
  color: #797B7E;
  line-height: 120%;
  transition: 300ms;
  outline: 2px solid transparent;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.grid-col.col-iconbox[data-url] {
  cursor: pointer;
}
.grid-col.col-iconbox[data-url] a:link, .grid-col.col-iconbox[data-url] a:focus, .grid-col.col-iconbox[data-url] a:hover, .grid-col.col-iconbox[data-url] a:active, .grid-col.col-iconbox[data-url] a:visited {
  color: inherit;
  text-decoration: inherit;  
}
.grid-col.col-iconbox img, .grid-col.col-iconbox svg {
  margin: 0;
}
.grid-col.col-iconbox[data-url]:hover, .grid-col.col-iconbox:has(a:focus) {
   box-shadow: 0 5px 8px rgba(0,0,0,0.1);
   outline: 2px solid #c7d3eb;
}
.grid-block.textarea-productbox-image {
  z-index: 1;
}
.grid-block.textarea-productbox-image a:not([class]) {
  display: block;
  text-align: right;
  transition: transform 600ms;
}
.grid-block.textarea-productbox-image > a:not([class]):hover, .col-productbox:has(a:hover) .grid-block.textarea-productbox-image > a:not([class]) {
  transform: scale(1.1);
}.grid-block.textarea-hero-headline {
  font-family: 'Overpass', sans-serif;
  font-size: clamp( 36px, 3vw , 50px );
  font-weight: 400;
  line-height: 100%;
  text-shadow: 3px 3px 5px rgba(0,0,0,0.5);
}.grid-block.textarea-links-as-buttons1 > a:not([class]) {
  position: relative;
  display: inline-block;
  color: var(--primaryColor);
  padding: 0.7em 1.3rem 0 0;
  font-size: 0.9rem;
  text-decoration: none;
  vertical-align: middle;
  border-bottom: 1px solid transparent;
}
.grid-block.textarea-links-as-buttons1 > a:not([class])::before {
  display: block;
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+Cjxzdmcgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIwMSAxOTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyI+CiAgICA8ZyB0cmFuc2Zvcm09Im1hdHJpeCg4LjMzMzMzMywwLDAsOC4zMzMzMzMsMC42NzQ5MjcsOTYuNDk5MTY3KSI+CiAgICAgICAgPHBhdGggZD0iTTIyLjAyNywwLjVMMCwwLjVMLTAsLTAuNUwyMi4wMjcsLTAuNUwxMS43NjUsLTEwLjYxOUwxMi40NjcsLTExLjMzMUwyMy45NTgsMEwxMi40NjcsMTEuMzMxTDExLjc2NSwxMC42MTlMMjIuMDI3LDAuNVoiIHN0eWxlPSJmaWxsOnJnYigxOSw3MSwxNzMpOyIvPgogICAgPC9nPgo8L3N2Zz4K);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-45deg);
  content: '';
}
.grid-block.textarea-links-as-buttons1 > a:not([class]):hover {
  border-bottom: 1px solid var(--primaryColor);
}.grid-block.textarea-links-as-buttons2 > a:not([class]) {
  position: relative;
  display: inline-block;
  background: var(--primaryColor);
  color: #FFFFFF;
  padding: 0.6em 1em 0.5em 1em;
  border: 1px solid #2c53a1;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: normal;
  text-transform: none;
  vertical-align: middle;
  transition: 300ms;
}
.grid-block.textarea-links-as-buttons2 > a:not([class]):hover {
  background: #FFFFFF;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}.grid-block.textarea-productbox-link {
  overflow: visible;
}
.grid-block.textarea-productbox-link > a:not([class]) {
  position: relative;
  display: block;
  background: #f1f4fa;
  color: var(--primaryColor);
  margin-top: -100px;
  padding: calc(0.5em + 100px) 2em 0.5em 1em;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: normal;
  text-transform: none;
  vertical-align: middle;
  transition: 300ms;
}
.grid-block.textarea-productbox-link > a:not([class]):hover, .col-productbox:has(a:hover) .grid-block.textarea-productbox-link > a:not([class]) {
  background: var(--primaryColor);
  color: #FFFFFF;
}
.grid-block.textarea-productbox-link > a:not([class])::before {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.8em;
  height: 1.8em;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+Cjxzdmcgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIwMSAxOTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyI+CiAgICA8ZyB0cmFuc2Zvcm09Im1hdHJpeCg4LjMzMzMzMywwLDAsOC4zMzMzMzMsMC42NzQ5MjcsOTYuNDk5MTY3KSI+CiAgICAgICAgPHBhdGggZD0iTTIyLjAyNywwLjVMMCwwLjVMLTAsLTAuNUwyMi4wMjcsLTAuNUwxMS43NjUsLTEwLjYxOUwxMi40NjcsLTExLjMzMUwyMy45NTgsMEwxMi40NjcsMTEuMzMxTDExLjc2NSwxMC42MTlMMjIuMDI3LDAuNVoiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPC9nPgo8L3N2Zz4K)  var(--primaryColor);
  background-repeat: no-repeat;
  background-size: 1.2em auto;
  background-position: center;
  content: '';
  border: 1px solid var(--primaryColor);
}
.grid-block.textarea-productbox-link > a:not([class]):hover::before, .col-productbox:has(a:hover) .grid-block.textarea-productbox-link > a:not([class])::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+Cjxzdmcgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIwMSAxOTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyI+CiAgICA8ZyB0cmFuc2Zvcm09Im1hdHJpeCg4LjMzMzMzMywwLDAsOC4zMzMzMzMsMC42NzQ5MjcsOTYuNDk5MTY3KSI+CiAgICAgICAgPHBhdGggZD0iTTIyLjAyNywwLjVMMCwwLjVMLTAsLTAuNUwyMi4wMjcsLTAuNUwxMS43NjUsLTEwLjYxOUwxMi40NjcsLTExLjMzMUwyMy45NTgsMEwxMi40NjcsMTEuMzMxTDExLjc2NSwxMC42MTlMMjIuMDI3LDAuNVoiIHN0eWxlPSJmaWxsOnJnYigxOSw3MSwxNzMpOyIvPgogICAgPC9nPgo8L3N2Zz4K);
  background-color: #FFFFFF;
  background-size: 1.2em auto;
}.grid-block.image-cover, .grid-block.image-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid-block.image-cover img {
  object-fit: cover;
  margin: 0;
}@media all and (min-width: 1101px) {
  .hide-default { display: none; }
  .col-1 { grid-column: span 1; }
  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; }
  .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; }
  .col-12 { grid-column: span 12; }
}

@media all and (max-width: 1600px) {
  .grid-row { margin-top: 60px; margin-bottom: 60px; padding-left: 40px; padding-right: 40px; }
}

@media all and (min-width: 601px) and (max-width: 1100px) {
  .hide-tablet { display: none; }
  .col-t-1 { grid-column: span 1; }
  .col-t-2 { grid-column: span 2; }
  .col-t-3 { grid-column: span 3; }
  .col-t-4 { grid-column: span 4; }
  .col-t-5 { grid-column: span 5; }
  .col-t-6 { grid-column: span 6; }
  .col-t-7 { grid-column: span 7; }
  .col-t-8 { grid-column: span 8; }
  .col-t-9 { grid-column: span 9; }
  .col-t-10 { grid-column: span 10; }
  .col-t-11 { grid-column: span 11; }
  .col-t-12 { grid-column: span 12; }
}

@media all and (max-width: 600px) {
  .grid-row { column-gap: 20px; row-gap: 50px; margin-top: 40px; margin-bottom: 40px; padding-left: 20px; padding-right: 20px; }
  .hide-mobile { display: none; }
  .col-m-1 { grid-column: span 1; }
  .col-m-2 { grid-column: span 2; }
  .col-m-3 { grid-column: span 3; }
  .col-m-4 { grid-column: span 4; }
  .col-m-5 { grid-column: span 5; }
  .col-m-6 { grid-column: span 6; }
  .col-m-7 { grid-column: span 7; }
  .col-m-8 { grid-column: span 8; }
  .col-m-9 { grid-column: span 9; }
  .col-m-10 { grid-column: span 10; }
  .col-m-11 { grid-column: span 11; }
  .col-m-12 { grid-column: span 12; }
}
