/*==============================================================================
============================== FONTS ===========================================
==============================================================================*/

/*---------------------------- OPEN SANS -------------------------------------*/

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Open_Sans/OpenSans-Light.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/Open_Sans/OpenSans-LightItalic.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Open_Sans/OpenSans-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/Open_Sans/OpenSans-Italic.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Open_Sans/OpenSans-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  src: url(../fonts/Open_Sans/OpenSans-MediumItalic.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Open_Sans/OpenSans-SemiBold.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url(../fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Open_Sans/OpenSans-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/Open_Sans/OpenSans-BoldItalic.ttf) format('truetype');
}


/*---------------------------- ROBOTO CONDENSED ------------------------------*/

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-LightItalic.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Italic.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-BoldItalic.ttf) format('truetype');
}




/*==============================================================================
============================== ALLGEMEIN =======================================
==============================================================================*/

* {
  box-sizing: border-box;
}


html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0px;

  font-family: 'Open Sans';
  background-image: url(../img/background_new.jpg);
  background-size: cover;
  background-repeat: repeat-y;
}

.flex-center-center {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.display-none {
  display: none;
}

.align-center-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.align-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.align-center-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.square-blue {
  display: block;
  width: 13px;
  height: 13px;
  background-color: #325FAA;
}

.color-blue {
  color: #325FAA;
}

.italic {
  font-style: italic;
}

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

.white-space-nowrap {
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

a, button {
  color: #000;
  font-weight: 700;
}

button {
  font-family: 'Open Sans';
}

/*==============================================================================
============================== PADDING =========================================
==============================================================================*/

.pt-0 {
  padding-top: 0px !important;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

/*==============================================================================
============================== MARGIN ==========================================
==============================================================================*/

.mt-0 {
  margin-top: 0px !important;
}


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

.mt-40 {
  margin-top: 40px;
}

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

.mt-80 {
  margin-top: 80px;
}

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

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

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

.mr-40 {
  margin-right: 40px;
}


@media (min-width: 576px){
  .mt-sm-20 {
    margin-top: 20px;
  }
  .mt-sm-40 {
    margin-top: 40px;
  }
}

@media (min-width: 768px){
  .mt-md-0 {
    margin-top: 0px;
  }
}

@media (min-width: 992px){
  .mt-lg-0 {
    margin-top: 0px;
  }
}

/*==============================================================================
============================== TITEL ===========================================
==============================================================================*/

h1 {
  font-family: 'Roboto Condensed';
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
}

h2 {
  font-family: 'Roboto Condensed';
}

h3 {
  font-family: 'Roboto Condensed';
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 28px;
}

/*==============================================================================
============================== SVG =============================================
==============================================================================*/

.svgriedmannlogo1{
  fill:#325FAA;
}

.svgriedmannicon1 {
  fill: #325FAA;
}

.svgriedmannicon2 {
  fill: #000000;
}

/*==============================================================================
============================== HEADER ==========================================
==============================================================================*/

#desktop-header {
  /*position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;*/
}



/*
.header-fixed-left {
  top: 0px;
  left: 0px;
  left: 0px;
} */

.header-fixed-right {
  top: 0px;
  right: 0px;
}

.header-fixed {
  position: fixed;
  z-index: 100;
}

.header-fixed-item {
  display: flex;
  justify-content: flex-end;
  margin-top: 120px;
  padding-right: 30px;
}

.header-fixed-item > a.header-fixed-menu-link-icon {
  width: 45px;
  color: #325FAA;
  display: flex;
  align-items: center;
}

.header-fixed-menu-open {
  display: flex;
  cursor: pointer;
}

.header-fixed-menu-text,
.header-fixed-menu-icon {
  display: flex;
  align-items: center
}

.header-fixed-menu-text > span {
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 20px;
  font-size: 22px;
}


.header-fixed-scroll-container {
  position: fixed;
  bottom: 80px;
  left: -50px;
  rotate: -90deg;
}

.header-fixed-scroll {
  display: flex;
  align-items: center;
}

.header-fixed-scroll-line > div {
  width: 80px;
  height: 0px;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;

}

.header-fixed-scroll-line {
  margin-right: 16px;
}

.header-fixed-scroll-text {
  margin-left: 33px;
}

#mobile-header {
  display: none;
  position: fixed;
  width: 100%;
  background-color: #F3F3F3;
  z-index: 90;
}

.header-mobile-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

.header-mobile-left,
.header-mobile-right {
  display: flex;
  align-items: center;
}


#mobile-header .header-mobile-left .header-mobile-item > a {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}



.asw-menu-btn {
  right: 20px;
  left: auto !important;
}


/*==============================================================================
============================== FOOTER ==========================================
==============================================================================*/

footer {
  display: flex;
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  justify-content: center;
}

.footer-container {
  width: 100%;
  max-width: 1420px;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  width: 500px;
}

.footer-item-titel {
  display: flex;
  align-items: center;
}

.footer-item-kontakt {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.footer-item-kontakt-kontakt {
  text-align: right;
}

.footer-item-kontakt-kontakt > a {
  font-size: 24px;
  color: #325FAA;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-decoration: none;
  line-height: 40px;
}

.footer-item-kontakt-address {
  font-weight: 700;
  font-size: 19px;
}

.footer-item-kontakt-address-mid {
  padding-left: 20px;
  padding-right: 20px;
}


.footer-item-titel {
  color: #000000;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-item-titel-text {
  padding-left: 20px;
}

.footer-item.footer-item-left {
  display: flex;
  align-items: flex-end;
}

.footer-bottom-container {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 40px;
}

.footer-bottom-container > span {
  margin-left: 20px;
  margin-right: 20px;
}

.footer-bottom-container > a {
  font-weight: 300;
  color: #000000;
  text-decoration: none;
}


/*==============================================================================
============================== MENU ============================================
==============================================================================*/

#menu {
  position: fixed;
  height: 100vh;
  width: 100%;
  right: 0px;
  top: 0px;
  display: none;
  justify-content: flex-end;
  background: #00000082;
}

#menu.open {
  display: flex;
  z-index: 100;
}

.menu {
  background-color: #161822;
  color: #ffffff;
  height: 100%;
  width: 700px;
}

.menu-inner {
  display: flex;
}

.menu-left {
  width: 500px;
}

.menu-right {
  width: 200px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-right-bottom {
  padding-bottom: 50px;
  padding-right: 30px;
}

.menu-lang {
  font-size: 22px;
  text-align: right;
}

.menu-lang > a {
  color: #ffffff;
  text-decoration: none;
}

.menu-fixed-item {
  display: flex;
  justify-content: flex-end;
  margin-top: 120px;
  padding-right: 30px;
}

.menu-fixed-item > a.menu-fixed-menu-link-icon {
  width: 45px;
  color: #325FAA;
  display: flex;
  align-items: center;
}

.menu-fixed-item > a.menu-fixed-menu-link-icon .svgmail1,
.menu-fixed-item > a.menu-fixed-menu-link-icon .svgphone1 {
  fill: #ffffff;
}

.menu-nav {
  font-family: 'Roboto Condensed';
  font-weight: 300;
  padding-left: 80px;
  margin-top: 100px;
  max-height: calc(100vh - 210px);
  overflow: auto;
}

a.menu-item {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 40px;
  margin-top: 80px;
  font-weight: 300;
}

.menu-sub-nav {
  margin-top: 80px;
}

a.menu-sub-item {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 300;
  /*font-weight: 400;*/
}

.menu-icon {
  padding-top: 30px;
  padding-left: 30px;
}

.menu-icon-inner {
  display: block;
  width: 70px;
}

.menu-icon-inner .svgriedmannicon1,
.menu-icon-inner .svgriedmannicon2 {
  fill: #ffffff;
}

/**/

.menu-mobile {
  display: none;
  width: 100%;
}

.menu-mobile-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

.menu-mobile-left,
.menu-mobile-right {
  display: flex;
  align-items: center;
}


.menu-mobile-left .menu-mobile-item > a {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}


.menu-mobile-left .menu-mobile-item > a .svgmail1,
.menu-mobile-left .menu-mobile-item > a .svgphone1 {
  fill: #ffffff;
}

.menu-mobile-bottom {
  display: none;
}

.menu-mobile-bottom-inner {
  display: flex;
  padding-left: 25px;
  padding: 20px 25px;
  justify-content: space-between;
}

.menu-mobile-bottom-inner .menu-mobile-bottom-right .menu-icon {
  padding-top: 0px;
  padding-left: 0px;
}

.menu-mobile-bottom-inner .menu-mobile-bottom-right .menu-icon .menu-icon-inner {
  height: 55px;
  width: 50px;
}

/*==============================================================================
============================== CONTENT =========================================
==============================================================================*/

.grecaptcha-badge {
  display: none;
}

.mobile-content,
.responsive-3-content,
.responsive-4-content {
  display: none;
}

.content-preheader {
  position: absolute;
  top: 0px;
  left: 0px;
}

.content-preheader-icons {
  display: flex;
}

.content-preheader-icon {
  width: 75px;
  display: block;
}

.content-preheader-icon > img {
  width: 100%;
}


.content-header {
  display: flex;
  justify-content: center;
  padding-top: 120px;
}

.content-header-logo {
  width: 500px;
}

.content-header-logo > a {
  display: block;
}


.content-subtitle {
  font-size: 40px;
  font-weight: 400;
}

.content-item-titel {
  color: #000000;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.content-item-titel-text {
  padding-left: 20px;
  max-width: calc(100% - 33px);
}

.content-title {
  margin-top: 0px;
  margin-bottom: 0px;
}


.content-spacer-1 {
  width: 100%;
  height: 200px;
}


.content-align-bottom {
  display: flex;
  align-items: flex-end;
}

.content-box {
  background-color: #ffffff;
}

/*------------------------------------------------
-------------- KEYFACTS --------------------------
------------------------------------------------*/

.content-keyfact-icon {
  display: flex;
  justify-content: center;
}

.content-keyfact-titel {
  justify-content: center;
  font-size: 40px;
  margin-bottom: 0px;
  margin-top: 20px;
  font-weight: 400;
  text-align: center;
}

.content-keyfact-titel .content-subtitle {
  font-size: 28px;
  letter-spacing: 1.45px;
}

.content-keyfact-text {
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}

/*------------------------------------------------
-------------- SLIDER ----------------------------
------------------------------------------------*/

.content-slider {
  overflow: hidden;
  max-height: 260px;
}

.content-slider-inner {
  display: flex;
  position: relative;
  left: 0px;
  transition: left 0.5s;
}

/*
.owl-item {
  width: 200px;
  min-width: 200px;
} */

/*------------------------------------------------
-------------- NAV -------------------------------
------------------------------------------------*/

.content-nav-link {
  display: flex;
  text-decoration: none;
  font-size: 16px;
}

button.content-nav-link {
  background: none;
  border: none;
  font-weight: 700;
  align-items: center;
}

.content-nav-link > .content-nav-link-text {
  color: #000000;
  font-weight: 700;
  letter-spacing: 2.85px;
  display: flex;
  align-items:center;
  position: relative;
  margin-right: 10px;
}

.content-nav-link > .content-nav-link-text > span {
  left: 0px;
  position: relative;
  transition: left 0.5s;
}

.content-nav-link > .content-nav-link-arrow {
  display: flex;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
  color: #325FAA;
  font-size: 18px;
}

.content-nav-link:hover > .content-nav-link-text > span {
  left: -30px;
}

.content-nav-link:hover > .content-nav-link-arrow {
  border: 1px solid #325FAA;
}

.content-nav-link.content-nav-link-left > .content-nav-link-text {
  margin-right: 0px;
  margin-left: 10px;
}

.content-nav-link.content-nav-link-left:hover > .content-nav-link-text > span {
  left: 30px;
}


/*------------------------------------------------
-------------- LIST ------------------------------
------------------------------------------------*/


.content-list {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  list-style: none;
}

.content-list > li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.content-list > li:before {
  content: " ";
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  background-color: #325FAA;
  margin-right: 10px;
}

/*
.content-list > li {
  margin-bottom: 20px;
}
*/

/*------------------------------------------------
-------------- TABLELIST -------------------------
------------------------------------------------*/


.content-tablelist-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 2px solid #E4E4E4;
  margin-bottom: 25px;
}

.content-tablelist-item-80 {
  width: 80px;
  min-width: 80px;
}

/*------------------------------------------------
-------------- TABLELIST -------------------------
------------------------------------------------*/

.content-linkbox-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

.content-linkbox {
  display: block;
  width: 160px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 50px;
  text-decoration: none;
  color: #000000;
}

.content-linkbox-box {
  width: 160px;
  height: 160px;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  word-break: break-all;
}

.content-linkbox-titel {
  min-height: 50px;
  display: flex;
  /*align-items: center;*/
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content-linkbox .content-item-content-nav {
  display: flex;
  justify-content: center;
}

.content-linkbox .content-item-content-nav .content-nav-link:hover > .content-nav-link-text > span {
  left: 0px;
}

.content-linkbox:hover .content-nav-link > .content-nav-link-arrow {
  border: 1px solid #325FAA;
}

/*------------------------------------------------
-------------- COLUMN CONTAINER  -----------------
------------------------------------------------*/

.content-column-container {
  display: flex;
}

.content-column-container > .content-column {
  margin-right: 40px;
}

.content-column-container > .content-column::last-child {
  margin-right: 0px;
}

/*------------------------------------------------
-------------- FORM ------------------------------
------------------------------------------------*/

input[type='text'], input[type='email'], textarea {
  width: 100%;
  font-family: 'Open Sans';
  font-size: 19px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  padding: 37px 35px 11px;
}

textarea {
  resize: none;
  height: 250px;
}


.content-form {
  margin-left: -35px;
  margin-right: -35px;
}

.content-form-row {
  display: flex;
}

.content-form-col {
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
  margin-top: 20px;
}

.content-form-col-50 {
  width: 50%
}

input[type='text'].form-error, input[type='email'].form-error, textarea.form-error {
  border-color: red;
}


/*------------------------------------------------
-------------- COLOR INVERTED --------------------
------------------------------------------------*/

.content-color-inv,
.content-color-inv .content-item-titel,
.content-color-inv .content-nav-link > .content-nav-link-text,
.content-color-inv a, .content-color-inv button
{
  color: #ffffff;
}

.content-color-inv .content-list {
  color: #ffffff;
}





/*------------------------------------------------
-------------- CONTANT TYPE 1 --------------------
------------------------------------------------*/

.content-type-1 {
  display: flex;
  justify-content: center;
}

.content-type-1 > .content-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-type-1 > .content-inner > div {
  max-width: 480px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 2 --------------------
------------------------------------------------*/

.content-type-2 {
  display: flex;
  justify-content: center;
}

.content-type-2 > .content-inner {
  max-width: 910px;
  width: 100%;
}

.content-type-2 .content-top {
  display: flex;
  justify-content: center;
}

.content-type-2 .content-top > img {
  width: 600px;
}

.content-type-2 .content-bottom {
  margin-top: 50px;
  text-align: center;
}

.content-type-2 .content-item-titel {
  justify-content: center;
}


/*------------------------------------------------
-------------- CONTANT TYPE 3 --------------------
------------------------------------------------*/

.content-type-3 {
  display: flex;
  justify-content: center;
}

.content-type-3 > .content-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
}

.content-type-3 .content-left > img {
  width: 800px;
}

.content-type-3 .content-right {
  padding: 20px;
}

.content-type-3 .content-keyfacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-type-3 .content-keyfact {
  margin-bottom: 40px;
}

.content-type-3 .content-item-content-text {
  text-align: center;
  margin-bottom: 50px;
}

.content-type-3 .content-item-content-nav {
  display: flex;
  justify-content: center;
}


/*------------------------------------------------
-------------- CONTANT TYPE 4 --------------------
------------------------------------------------*/

.content-type-4 {
  display: flex;
  justify-content: center;
}

.content-type-4 img {
  width: 100%;
}

.content-type-4 > .content-inner {
  /*max-width: 910px;*/
  width: 100%;
}

.content-type-4 .content-row {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}

.content-type-4 .content-row-item {
  padding-left: 30px;
  padding-right: 30px;
  width: 350px;
}

.content-type-4 .content-item-titel {
  margin-bottom: 0px;
}

.content-type-4 .content-item-subtitel {
  color: #325FAA;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 20px;
}

.content-type-4 .content-item-content > a {
  color: #000000;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}



/*------------------------------------------------
-------------- CONTANT TYPE 5 --------------------
------------------------------------------------*/

.content-type-5 {
  display: flex;
  justify-content: center;
}

.content-type-5 > .content-inner {
  max-width: 1280px;
  width: 100%;
  background-color: #161822;
  color: #ffffff;
  padding: 110px 180px;
}

.content-type-5 .content-top {
  padding-left: 160px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 6 --------------------
------------------------------------------------*/

.content-type-6 {
  display: flex;
  justify-content: center;
}

.content-type-6 > .content-inner {
  max-width: 1420px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-type-6 > .content-inner > .content-left {
  max-width: 480px;
}

.content-type-6 .content-title {
  margin-bottom: 50px;
}

.content-type-6 .content-item-img > img {
  width: 400px;
}

.content-type-6 .content-item-img.content-item-right  {
  margin-left: 150px;
  margin-bottom: 50px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 7 --------------------
------------------------------------------------*/

.content-type-7 {
  display: flex;
  justify-content: center;
}

.content-type-7 > .content-inner {
  max-width: 910px;
  width: 100%;
  display: flex;
  padding-left: 100px;
  padding-right: 100px;
}

.content-type-7 .content-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.content-type-7 .content-item-icon {
  display: flex;
  justify-content: center;
}

.content-type-7 .content-item-titel {
  justify-content: center;
  font-size: 40px;
  margin-bottom: 0px;
  margin-top: 20px;
  font-weight: 400;
}

.content-type-7 .content-item-text {
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 8 --------------------
------------------------------------------------*/

  .content-type-8 {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .content-type-8 > .content-inner {
    max-width: 1420px;
    width: 100%;
    display: flex;
  }

  .content-type-8 > .content-inner > .content-left {
    width: 360px;
    margin-right: 100px;
  }

  .content-type-8 > .content-inner > .content-right {
    width: calc( 100% - 460px );
  }

  .content-type-8 .content-title {
    font-size: 60px;
  }

  .content-type-8 .content-item {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
    /*justify-content: space-between;*/
    width: min-content;
  }

  .content-type-8 .content-item-icon {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    /*pointer-events: none;
    user-select: none;*/

  }

  .content-type-8 .content-item-icon > img {
    width: auto;
    max-height: 100%;
    max-width: 100%;
  }

/*------------------------------------------------
-------------- CONTANT TYPE 9 --------------------
------------------------------------------------*/

.content-type-9 {
  display: flex;
  justify-content: center;
}

.content-type-9 > .content-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
}

.content-type-9 .content-left {
  width: 200px;
}

.content-type-9 .content-right {
  width: calc( 100% - 200px );
}

/*
.content-type-9 .content-left > img {
  width: 800px;
}

.content-type-9 .content-right {
  padding: 20px;
}
*/

.content-type-9 .content-keyfacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-type-9 .content-keyfact {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
}

.content-type-9 .content-keyfact .content-keyfact-inner {
  max-width: 500px;
}

.content-type-9 .content-keyfact-text {
  font-weight: 400;
}


.content-type-9 .content-item-content-nav,
.content-type-9 .content-keyfact-link {
  display: flex;
  justify-content: center;
}


/*------------------------------------------------
-------------- CONTANT TYPE 11 -------------------
------------------------------------------------*/

.content-type-11 {
  display: flex;
  justify-content: center;
}

.content-type-11 > .content-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-type-11 > .content-inner > .content-left {
  max-width: 480px;
}

.content-type-11 .content-title {
  color: #325FAA;
  font-size: 70px;
}

.content-type-11 .content-subtitle {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 400;
}


.content-type-11 .content-item-img > img {
  width: 400px;
}

.content-type-11 .content-item-img.content-item-img-top > img {
  margin-bottom: 50px;
  width: 600px;
}

.content-type-11 .content-left {
  padding-top: 200px;
}

.content-type-11 .content-left .content-item {
  margin-top: 80px;
}

.content-type-11 .content-item-content-nav,
.content-type-12 .content-item-content-nav {
  margin-top: 35px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 12 -------------------
------------------------------------------------*/

.content-type-12 {
  display: flex;
  justify-content: center;
}

.content-type-12 > .content-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-type-12 > .content-inner > .content-right {
  max-width: 480px;
}

.content-type-12 .content-title {
  color: #325FAA;
  font-size: 70px;
}

.content-type-12 .content-subtitle {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 400;
}

.content-type-12 .content-item-img > img {
  width: 400px;
}

.content-type-12 .content-item-img.content-item-img-top > img {
  margin-bottom: 50px;
  width: 600px;
}

.content-type-12 .content-right {
  padding-top: 200px;
}

.content-type-12 .content-right .content-item {
  margin-top: 80px;
}


/*------------------------------------------------
-------------- CONTANT TYPE 13 -------------------
------------------------------------------------*/

.content-type-13 {
  display: flex;
  justify-content: center;
}

.content-type-13 > .content-inner {
  max-width: 1420px;
  width: 100%;
}

.content-type-13 .content-title {
  font-size: 60px;
}

.content-type-13 .content-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
  /*justify-content: space-between;*/
}

.content-type-13 .content-item-icon {
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.content-type-13 .content-item-icon > img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
}


/*------------------------------------------------
-------------- CONTANT TYPE 14 -------------------
------------------------------------------------*/

.content-type-14 {
  display: flex;
  justify-content: center;
}

.content-type-14 > .content-inner {
  width: 100%;
  display: flex;
  /*justify-content: space-between;*/
}

.content-type-14 .content-left {
  width: 900px;
  background-color: #000000;
  padding: 140px 60px 90px 250px;
}

.content-type-14 .content-right {
  width: calc( 100% - 900px );
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-type-14 .content-subtitle {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 400;
  padding-right: 250px;
}

.content-type-14 .content-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-type-14 .content-item-img > img {
  width: 400px;
}

.content-type-14 .content-item-content {
  margin-top: 40px;
  margin-bottom: 40px;
}





/*------------------------------------------------
-------------- CONTANT TYPE 15 -------------------
------------------------------------------------*/

.content-type-15 {
  display: flex;
  justify-content: center;
}


.content-type-15 > .content-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-type-15 > .content-inner .content-left {
  width: 50%;
  min-width: 50%;
  margin-right: 80px;
}


.content-type-16 {
  display: flex;
  justify-content: center;
}


.content-type-16 > .content-inner {
  max-width: 1280px;
  width: 100%;
  /*display: flex;
  justify-content: space-between;*/
}

.content-type-16 .content-box {
  padding: 50px;
  max-width: 800px;
}

/*------------------------------------------------
-------------- CONTANT TYPE 15 -------------------
------------------------------------------------*/

.content-type-17 {
  display: flex;
  justify-content: center;
}

.content-type-17 > .content-inner {
  max-width: 1280px;
  width: 100%;
  /*display: flex;
  justify-content: space-between;*/
}





/*==============================================================================
============================== BTN =============================================
==============================================================================*/

.btn-fluid {
  width: 100%;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  padding: 0px;
  border-radius: 50%;
  font-size: 22px;
}

.btn-fs {
  display: block;
  width: 100%;
}

.btn-blue {
  background-color: #7e9cd0;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #57585a;
  color: #ffffff;
}

.btn-grey {
  background-color: #ffffff;
  color: #57585a;
  border-color: #57585a;
}

.btn-grey:hover {
  background-color: #57585a;
  color: #ffffff;
}

.btn-dual {
  line-height: 1rem;
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.btn-dual:first-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.btn-dual:last-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}



/*==============================================================================
================================================================================
====================== RESPONSIVE ==============================================
================================================================================
==============================================================================*/


/*==============================================================================
====================== 1600 ====================================================
==============================================================================*/

@media only screen and (max-width: 1599px) {

  /*------------------------------------------------
  -------------- HEADERS ---------------------------
  ------------------------------------------------*/

  h1 {
    font-size: 70px;
  }


  /*------------------------------------------------
  -------------- CONTANT WIDTH ---------------------
  ------------------------------------------------*/

  .content-type-1 > .content-inner,
  .content-type-2 > .content-inner {
    max-width: 800px;
  }


  .content-type-3 > .content-inner,
  .content-type-6 > .content-inner,
  .content-type-8 > .content-inner,
  .content-type-9 > .content-inner,
  .content-type-11 > .content-inner,
  .content-type-12 > .content-inner,
  .content-type-13 > .content-inner,
  .content-type-15 > .content-inner,
  .content-type-16 > .content-inner {
    max-width: 940px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 1 --------------------
  ------------------------------------------------*/

  .content-type-1 > .content-inner > div {
    max-width: 380px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 2 --------------------
  ------------------------------------------------*/

  .content-type-2 .content-top > img {
    width: 400px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 3 --------------------
  ------------------------------------------------*/

  .content-type-3 .content-left > img {
    width: 550px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 6 --------------------
  ------------------------------------------------*/

  .content-type-6 > .content-inner > .content-left {
    max-width: 400px;
  }

  .content-type-6 .content-item-img > img {
    width: 280px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 8 --------------------
  ------------------------------------------------*/

  .content-type-8 > .content-inner > .content-left {
    margin-right: 0px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 12 -------------------
  ------------------------------------------------*/

  .content-type-11 .content-item-img.content-item-img-top > img,
  .content-type-12 .content-item-img.content-item-img-top > img {
    width: 400px;
  }

  .content-type-11 .content-right,
  .content-type-12 .content-right {
    padding-top: 100px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 14 -------------------
  ------------------------------------------------*/

  .content-type-14 .content-left {
    width: 640px;
    padding: 100px 60px 90px 105px;
  }

  .content-type-14 .content-right {
    width: calc(100% - 640px);
  }

  .content-type-14 .content-subtitle {
    padding-right: 80px;
  }


  .footer-container {
    max-width: 1130px;
  }

}


/*==============================================================================
====================== 1200 ====================================================
==============================================================================*/

@media only screen and (max-width: 1199px) {

  /*
    ** Type 14
    ** Footer
  */

  .content-type-14 .content-left {
    width: 520px;
    padding: 60px 35px 90px 35px;
  }

  .content-type-14 .content-right {
    width: calc(100% - 520px);
  }

  .content-type-14 .content-item-img > img {
    width: 350px;
  }

  .content-type-14 .content-subtitle {
    padding-right: 0px;
  }

  /*------------------------------------------------
  -------------- FOOTER ----------------------------
  ------------------------------------------------*/

  footer {
    padding: 40px 25px;
  }

  .footer-container {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-container .footer-item {
    width: 100%;
  }

  .footer-item.footer-item-center {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-item-kontakt-line {
    text-align: center;
  }

  .footer-item-kontakt-line.footer-item-kontakt-kontakt {
    margin-bottom: 15px;
  }

}

/*==============================================================================
====================== 992 ====================================================
==============================================================================*/

@media only screen and (max-width: 991px) {

  h1 {
    font-size: 55px;
  }

  .menu-nav {
    margin-top: 0px;
    max-height: calc(100vh - 110px);
  }

  a.menu-item {
    margin-top: 40px;
  }

  .responsive-3-content {
    display: block;
  }

  .content-spacer-1 {
    height: 120px;
  }

  .content-spacer-mobile-mid-1 {
    width: 100%;
    height: 80px;
  }

  .content-type-1 > .content-inner,
  .content-type-2 > .content-inner,
  .content-type-3 > .content-inner,
  .content-type-6 > .content-inner,
  .content-type-8 > .content-inner,
  .content-type-9 > .content-inner,
  .content-type-11 > .content-inner,
  .content-type-12 > .content-inner,
  .content-type-13 > .content-inner,
  .content-type-15 > .content-inner,
  .content-type-16 > .content-inner {
    max-width: 680px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 3 --------------------
  ------------------------------------------------*/

  .content-type-3 > .content-inner > .content-left {
    display: none;
  }

  .content-type-3 > .content-inner > .content-right .content-item-img {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .content-type-3 > .content-inner > .content-right .content-item-img > img {
    width: 400px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 5 --------------------
  ------------------------------------------------*/

  .content-type-5 > .content-inner {
    padding: 110px 70px;
  }

  .content-type-5 .content-top {
    padding-left: 0px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 5 --------------------
  ------------------------------------------------*/

  .content-type-6 .content-item-img.content-item-right {
    margin-left: 0px;
  }

  .content-type-6 > .content-inner > .content-left {
    max-width: 330px;
  }



  /*------------------------------------------------
  -------------- CONTANT TYPE 8 --------------------
  ------------------------------------------------*/

  .content-type-8 > .content-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .content-type-8 > .content-inner > .content-left,
  .content-type-8 > .content-inner > .content-right {
    width: 100%;
  }

/*  .content-type-8 .content-item-icon {
    width: 160px;
    height: 160px;
  }
  */

  /*------------------------------------------------
  -------------- CONTANT TYPE 9 --------------------
  ------------------------------------------------*/

  .content-type-9 > .content-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .content-type-9 .content-left,
  .content-type-9 .content-right {
    width: 100%;
  }

  .content-type-9 .content-subtitle {
    text-align: center;
  }

  .content-type-9 .content-keyfact {
    margin-bottom: 100px;
  }

  .content-type-9 .content-keyfact.align-left,
  .content-type-9 .content-keyfact.align-right {
    justify-content: center;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 11 / 12 --------------
  ------------------------------------------------*/

  .content-type-11 .content-title,
  .content-type-12 .content-title {
    font-size: 55px;
  }

  .content-type-11 .content-item-img.content-item-img-top > img,
  .content-type-11 .content-item-img.content-item-img-bottom > img,
  .content-type-12 .content-item-img.content-item-img-top > img,
  .content-type-12 .content-item-img.content-item-img-bottom > img {
    width: 320px;
  }

  .content-type-11 > .content-inner > .content-left,
  .content-type-12 > .content-inner > .content-right {
    max-width: 320px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 13 -------------------
  ------------------------------------------------*/

  .content-type-13 .content-item {
    justify-content: center;
  }

  .content-type-13 .content-item-icon {
    width: 160px;
    height: 160px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 14 -------------------
  ------------------------------------------------*/

  .content-type-14 .content-left {
    width: 100%;
    padding: 100px 120px 90px 120px;
  }

  .content-type-14 .content-right {
    display: none;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 15 -------------------
  ------------------------------------------------*/

  .content-type-15 > .content-inner {
    flex-wrap: wrap;
  }

  .content-type-15 > .content-inner .content-left {
    width: 100%;
    margin-right: 0px;
  }

  .content-type-15 .content-right {
    margin-top: 50px;
  }

  /*------------------------------------------------
  -------------- FORM ------------------------------
  ------------------------------------------------*/

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

  .content-form-col-50 {
    width: 100%;
  }





}

/*==============================================================================
====================== 767 ====================================================
==============================================================================*/

@media only screen and (max-width: 766px) {

  h1 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
  }

  body {
    background: #f3f3f3;
  }

  .hide-on-mobile {
    display: none !important;
  }

  #desktop-header,
  .content-preheader {
    display: none;
  }

  #mobile-header {
    display: block;
  }

  .square-blue {
    width: 10px;
    height: 10px;
  }

  .header-fixed-menu-text > span {
    padding-right: 12px;
    font-size: 16px;
  }


  .menu-left {
    width: 100%;
  }

  .menu-right,
  .menu-left > .menu-icon {
    display: none;
  }

  .menu-mobile,
  .menu-mobile-bottom {
    display: block;
  }

  a.menu-item {
    margin-top: 26px;
    font-size: 35px;
  }

  a.menu-item:first-child {
    margin-top: 0px;
  }

  .menu-nav {
    padding-left: 25px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 0px;
    max-height: calc( 100% - 167px );
  }

  .menu-sub-nav {
    margin-top: 50px;
  }

  a.menu-sub-item {
    font-size: 18px;
    margin-top: 18px;
  }

  .footer-item-kontakt-address {
    font-size: 16px;
  }

  .footer-item.footer-item-center {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-item-kontakt-kontakt > a {
    font-size: 22px;
    line-height: 34px;
  }

  .content-spacer-1 {
    height: 80px;
  }

  .content-nav-link > .content-nav-link-text > span {
    left: 10px;
  }

  .content-item-titel {
    font-size: 14px;
  }

  .content-column-container {
    flex-wrap: wrap;

  }

  .content-column-container > .content-column {
    width: 100%;
    margin-right: 0px;
  }

  .content-tablelist-item {
    flex-wrap: wrap;
  }

  .content-tablelist-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .content-tablelist-item > div {
    width: 100%;
  }

  .content-tablelist-item .content-tablelist-item-fill {
    padding-right: 0px;
    margin-bottom: 20px;
  }

  .content-tablelist-item > .content-tablelist-item-200 {
    display: flex;
    justify-content: flex-end;
  }

  .content-form {
    margin-left: 0px;
    margin-right: 0px;
  }

  .content-form .content-form-col {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-type-1 > .content-inner,
  .content-type-2 > .content-inner,
  .content-type-3 > .content-inner,
  .content-type-5 > .content-inner,
  .content-type-7 > .content-inner,
  .content-type-8 > .content-inner,
  .content-type-9 > .content-inner,
  .content-type-13 > .content-inner,
  .content-type-15 > .content-inner {
    max-width: 100%;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 1 --------------------
  ------------------------------------------------*/

  .content-type-1 > .content-inner {
    flex-wrap: wrap;
  }

  .content-type-1 > .content-inner > .content-left,
  .content-type-1 > .content-inner > .content-right {
    width: 100%;
  }

  .content-type-1 > .content-inner > .content-right {
    margin-bottom: 40px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 2 --------------------
  ------------------------------------------------*/

  .content-type-2 .content-top > img {
    width: 100%;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 3 --------------------
  ------------------------------------------------*/

  .content-type-3 .content-right {
    padding: 0px;
  }

  .content-type-3 > .content-inner > .content-right .content-item-img > img {
    width: 100%;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 4 --------------------
  ------------------------------------------------*/
  .content-type-4 > .content-inner > .content-row {
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .content-type-4 > .content-inner > .content-row > .content-row-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .content-type-4 > .content-inner > .content-row > .content-row-item .content-row-content {
    margin-top: 20px;
  }


  /*------------------------------------------------
  -------------- CONTANT TYPE 5 --------------------
  ------------------------------------------------*/

  .content-type-5 > .content-inner {
    padding: 55px 25px 40px 25px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 7 --------------------
  ------------------------------------------------*/

  .content-type-7 > .content-inner > .content-top {
    flex-wrap: wrap
  }

  .content-type-7 > .content-inner > .content-top > .content-item {
    width: 100%;
    margin-bottom: 40px;
  }


  /*------------------------------------------------
  -------------- CONTANT TYPE 8 --------------------
  ------------------------------------------------*/

  .content-type-8 .content-title {
    font-size: 40px;
  }
/*
  .content-type-8 .content-item-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 0px;
  }*/

  /*------------------------------------------------
  -------------- CONTANT TYPE 11 / 12 --------------
  ------------------------------------------------*/

  .content-type-6 > .content-inner,
  .content-type-11 > .content-inner,
  .content-type-12 > .content-inner {
    flex-wrap: wrap;
  }

  .content-type-6 > .content-inner > .content-left,
  .content-type-11 > .content-inner > .content-left,
  .content-type-12 > .content-inner > .content-right {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 20px;
  }

  .content-type-6 > .content-inner > .content-right,
  .content-type-11 > .content-inner > .content-right,
  .content-type-12 > .content-inner > .content-left {
    padding-left: 25px;
    padding-right: 25px;
  }

  .content-type-12 > .content-inner > .content-right {
    order: 2;
  }

  .content-type-6 > .content-inner > .content-right,
  .content-type-6 > .content-inner > .content-left,
  .content-type-11 > .content-inner > .content-right,
  .content-type-11 > .content-inner > .content-left,
  .content-type-12 > .content-inner > .content-right,
  .content-type-12 > .content-inner > .content-left {
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
  }

  .content-type-6 > .content-inner > .content-right .content-item-img.content-item-left,
  .content-type-11 > .content-inner > .content-right .content-item-img.content-item-img-bottom,
  .content-type-12 > .content-inner > .content-left .content-item-img.content-item-img-bottom {
    /*justify-content: flex-end;*/
    justify-content: center;
    display: flex;
  }

  .content-type-6 > .content-inner > .content-right .content-item-img.content-item-right > img,
  .content-type-11 > .content-inner > .content-right .content-item-img.content-item-img-top > img,
  .content-type-12 > .content-inner > .content-left .content-item-img.content-item-img-top > img {
    margin-bottom: 10px;
  }

  .content-type-6 > .content-inner > .content-right .content-item-img.content-item-left > img,
  .content-type-11 > .content-inner > .content-right .content-item-img.content-item-img-bottom > img,
  .content-type-12 > .content-inner > .content-left .content-item-img.content-item-img-bottom > img {
    width: 100px;
  }

  .content-type-6 .content-left .content-item,
  .content-type-11 .content-left .content-item,
  .content-type-12 .content-right .content-item {
    margin-top: 40px;
  }


  .content-type-6 .content-item-img.content-item-right > img,
  .content-type-6 .content-item-img.content-item-left > img,
  .content-type-11 .content-item-img.content-item-img-top > img,
  .content-type-11 .content-item-img.content-item-img-bottom > img,
  .content-type-12 .content-item-img.content-item-img-top > img,
  .content-type-12 .content-item-img.content-item-img-bottom > img {
    width: 100%;
  }

  .content-type-6 .content-title,
  .content-type-11 .content-title,
  .content-type-12 .content-title {
    font-size: 34px;
  }

  .content-type-6 .content-subtitle,
  .content-type-11 .content-subtitle,
  .content-type-12 .content-subtitle {
    font-size: 28px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 13 -------------------
  ------------------------------------------------*/

  .content-type-13 .content-title {
    font-size: 40px;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 14 -------------------
  ------------------------------------------------*/

  .content-type-14 .content-left {
    width: 100%;
    padding: 55px 25px 40px 25px;
  }

  .content-type-14 .content-item-titel {
    justify-content: center;
  }

  .content-type-14 .content-subtitle {
    padding-right: 0px;
    font-size: 30px;
    text-align: center;
  }

  .content-type-14 .content-item {
    text-align: center;
  }

  .content-type-14 .content-item-content-nav {
    display: flex;
    justify-content: center;
  }

  .content-type-14 .content-item-img > img {
    width: 100%;
  }

  /*------------------------------------------------
  -------------- CONTANT TYPE 16 -------------------
  ------------------------------------------------*/

  .content-type-16 .content-box {
    padding: 50px 25px;
  }


}



@media only screen and (max-height: 945px) {
  .menu-nav {
    margin-top: 0px;
    max-height: calc(100vh - 160px);
  }
  a.menu-item {
    font-size: 36px;
    margin-top: 50px;
  }
}

@media only screen and (max-height: 670px) {
  a.menu-item {
    font-size: 30px;
    margin-top: 20px;
  }
}


/* Extra small devices (phones, 600px and down)
@media only screen and (max-width: 600px) {...}

/* Small devices (portrait tablets and large phones, 600px and up)
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up)
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up)
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up)
@media only screen and (min-width: 1200px) {...}
*/