/* new teplate css start */

:root {
  --animated-background-transition-effect: all 0.45s ease-in-out;
  --transition-effect: all 0.35s ease-in-out;
  --navSubSectionBg: rgba(255, 255, 255, 0.75);
}

/* Navigation css start */

nav {
  position: fixed;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px 25px 15px;  
  z-index: 1000;
  transition: var(--transition-effect);
}

.nav_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;  
  opacity: 0;
  transition: var(--transition-effect);
}

nav.active .nav_bg {
  opacity: 1;
  transition: var(--transition-effect);
}

nav a, nav a.header-logo, footer a.footer-logo {
  text-decoration: none !important;
}

  /* navLogo css start */

  .navLogo {
    display: flex;
    align-items: center;
    width: auto;
  }

  .navLogo img {
    height: 2.5rem;
    width: auto;
  }

  .navLogo p {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 500;
    margin-left: 5px;
  }

  /* navLogo css end */

  .header-1-widget {
    margin-left: 10px;
  }

  li.menu-item {
    position: relative;
  }

  /* mobileNavContainer css start */

  .mobileNavContainer {
    display: none;
  }

  .mobileNavImage {
    display: none !important;
  }

  .mobileNavContainer .header-1-widget {
    display: none;
  }

  /* mobileNavContainer css end */

  /* navPartTwo css start */

  .navPartTwo {
    display: flex;
    align-items: center;
  }

  .navPartTwo ul.menu{
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
  }

  .navPartTwo ul li{
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    list-style: none;
    height: min-content;
  }

  .navPartTwo ul li a{
    color: #000;    
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition-effect);
  }

  .navPartTwo ul li.menu-item.active a {
    opacity: 1;
  }

  .navPartTwo ul li.menu-item.inactive a {
    opacity: 0.5;
  }

  .navPartTwo ul li.menu-item-has-children > a::after {
    content: "\f078"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    margin-left: 8px;
    font-size: 1.25rem;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
  }
  
  @media(min-width:1367px){
    .navPartTwo ul li.menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }
  }
  @media(max-width:1366px){
      .navPartTwo ul li.menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }
  }

  ul.sub-menu {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: max-content;
    padding: 20px 30px;  
    border: 1px solid #fff;  
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translate(-50%, calc(100% + 35px));
    background-color: var(--navSubSectionBg);
    transition: var(--transition-effect);  
  }

  .menu-item:hover ul.sub-menu {
    transform: translate(-50%, calc(100% + 15px));
    visibility: visible;
    opacity: 1;
  }

  .navPartTwo ul.sub-menu li {
    padding: 5px 0px;
  }

  .navPartTwo ul.sub-menu li a {
    font-weight: 500 !important;
    font-size: 1.35rem;
  }

  .navPartTwo .header-1-widget {
    display: block;
  }

  .header-1-widget a.wpml-ls-link {
    padding: 5px 20px !important;
  }

  .navPartTwo img {
    height: 3.4rem;
    width: auto;
    margin-left: 10px;
    cursor: pointer;
  }

  /* navPartTwo css end */

/* Navigation css end */

/* mainHeaderTextContainer-section css start */

.mainHeaderColorContainer {
  z-index: 3;
  visibility: visible;
  opacity: 1;
  transition: var(--transition-effect);
  transform: translate(5%, 0);
}

.mono-theme .mainHeaderColorContainer {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transform: translate(-5%, 0);
}

.color-theme .mainHeaderColorContainer {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: translate(0%, 0);
}

.mainHeaderNeutralContainer {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-effect);
  transform: translate(-5%, 0);
}

.color-theme .mainHeaderNeutralContainer {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transform: translate(5%, 0);
}

.mono-theme .mainHeaderNeutralContainer {
  visibility: visible;
  opacity: 1;
  z-index: 3;
  transform: translate(0%, 0);
}

.mainHeaderTextContainer {
  position: absolute;
}

.mainHeaderTextContainer-section {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;  
  align-items: center;
  padding-top: 20px;
}

.mainHeaderTextContainer.mainHeaderColorContainer {
  width: 100%;
  text-align: right;
}

.mainHeaderTextContainer.mainHeaderNeutralContainer {
  width: 100%;
}

h2.title.mainHeaderText {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: bold;
}

h1.headline.mainHeaderText {
  font-size: 2.4rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.1;
}

@media(max-width:1680px){

  h2.title.mainHeaderText {
    font-size: 1.8rem;
  }

  h1.headline.mainHeaderText {
    font-size: 2.2rem;
  }

}

@media(max-width:1600px){

  h2.title.mainHeaderText {
    font-size: 1.7rem;
  }

  h1.headline.mainHeaderText {
    font-size: 2.1rem;
  }

}

@media(max-width:1440px){

  h2.title.mainHeaderText {
    font-size: 1.6rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.9rem;
  }

}

@media(max-width:1366px){

  h2.title.mainHeaderText {
    font-size: 1.5rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.8rem;
  }

}

@media(max-width:1280px){

  h2.title.mainHeaderText {
    font-size: 1.45rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.75rem;
  }

}

@media(max-width:1280px){

  h2.title.mainHeaderText {
    font-size: 1.45rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.75rem;
  }

}

@media(max-width:1024px){

  h2.title.mainHeaderText {
    font-size: 1.3rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.6rem;
  }

  .mainHeaderTextContainer-section {
    padding-top: 30px;
  }

}

@media(max-width:990px){

  h2.title.mainHeaderText {
    font-size: 1.25rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.5rem;
  }

}

@media(max-width:767px){

  h2.title.mainHeaderText {
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
  }

  h1.headline.mainHeaderText {
    font-size: 1.4rem;
  }

}

@media(max-width:540px){
  h1.headline.mainHeaderText {
    font-size: 1.3rem;
  }

  .color-theme .mainHeaderColorContainer h1.headline.mainHeaderText {
    font-size: 1.3rem;
    padding-left: 25px;
  }

  .mono-theme .mainHeaderNeutralContainer h1.headline.mainHeaderText {
    font-size: 1.3rem;
    padding-right: 25px;
  }

  .mainHeaderTextContainer-section {
    padding-top: 65px;
  }

}

@media(max-width:450px){

  h2.title.mainHeaderText {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
  }
  
  h1.headline.mainHeaderText {
    font-size: 1.2rem;
  }

  .color-theme .mainHeaderColorContainer h1.headline.mainHeaderText {
    font-size: 1.2rem;
    padding-left: 15px;
  }

  .mono-theme .mainHeaderNeutralContainer h1.headline.mainHeaderText {
    font-size: 1.2rem;
    padding-right: 15px;
  }

  .mainHeaderTextContainer-section {
    padding-top: 65px;
  }

}

@media(max-width:380px){

  h2.title.mainHeaderText {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
  }
  
  h1.headline.mainHeaderText {
    font-size: 1.15rem;
  }

  .color-theme .mainHeaderColorContainer h1.headline.mainHeaderText {
    font-size: 1.15rem;
    padding-left: 10px;
  }

  .mono-theme .mainHeaderNeutralContainer h1.headline.mainHeaderText {
    font-size: 1.15rem;
    padding-right: 10px;
  }

}

/* mainHeaderTextContainer-section css end */

/* animated-background css start */

.animated-background .animated-background__svg.color {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  animation: move-left-right-color 7s linear infinite alternate;
  transition: all 0.55s ease-out;
}

@keyframes move-left-right-color {
  0% {
    transform: translate(-10px, -50%) scale(1);
  }
  50% {
    transform: translate(10px, -50%) scale(1.05);
  }
  100% {
    transform: translate(-10px, -50%) scale(1);
  }
}

.animated-background .animated-background__svg.mono {
  width: calc(100% + 20px);
  height: 80%;
  position: absolute;
  top: 50%;
  left: -10px;
  animation: move-left-right 10s cubic-bezier(0.42, 0, 0.58, 1) infinite
    alternate;
  transition: var(--animated-background-transition-effect);
  transform: translate(0, -50%);
}

@keyframes move-left-right {
  0% {
    transform: translate(-10px, -50%);
  }
  50% {
    transform: translate(10px, -50%);
  }
  100% {
    transform: translate(-10px, -50%);
  }
}

.mono-theme .animated-background__svg.color {
  opacity: 0 !important;
  visibility: hidden;
  transition: all 0.55s ease-out;
}

.color-theme .animated-background__svg.color {
  opacity: 1;
  visibility: visible;
  transition: all 0.55s ease-out;
  transition-delay: 0.2s;
}

.mono-theme .animated-background__svg.mono {
  visibility: visible;
  opacity: 1;
}

.color-theme .animated-background__svg.mono {
  opacity: 0;
  visibility: hidden;
}

/* animated-background css end */

/* mainHeaderBlur css start */

.mainHeaderBlur {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  transition: all 0.55s ease-in-out 0.1s;
}

.mono-theme .mainHeaderBlur {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  background-color: rgba(255, 255, 255, 0);
  transition-delay: 0.1s;
}

.color-theme .mainHeaderBlur {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0);
  transition-delay: 0s;
}

/* mainHeaderBlur css start */

/* header slide css end */

.fixedButton {
  border: none;
  position: fixed;
  right: 0;
  top: 50%;  
  z-index: 1000;
  writing-mode: vertical-rl;
  height: max-content;
  min-width:50px;
  padding: 20px 10px;
  border-radius: 0 30px 30px 0;
  transform: translate(100%, -50%) rotateZ(180deg);
  -webkit-transform: translate(100%, -50%) rotateZ(180deg);
  transition: var(--transition-effect);
  -webkit-transition: var(--transition-effect);  
}

.fixedButton.active {
  transform: translate(0, -50%) rotateZ(180deg);
  -webkit-transform: translate(0, -50%) rotateZ(180deg);
}

.fixedButton a {
  display: flex;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  writing-mode: vertical-rl;
}

.fixedButtonImage {
  width: auto;
  height: 2.1rem;
  width: 2.1rem;
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
}

.fixedButtonImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.mono-theme .fixedButton {
  background-color: rgba(0, 0, 0, 0.85);
}

.color-theme .fixedButton {
  background-color: #5b3b67;
}

.mono-theme .fixedButton a {
  color: #ffffff;
}

.color-theme .fixedButton a {
  color: #ffffff;
}

/* fixedButton css end */

/* the-content css start */

.color-theme .has-red-color-color, .color-theme .the-content h2 {
  color: #e50050;
  transition: var(--transition-effect);
}

.color-theme .has-red-color-background-color {
  background: #e50050;
  transition: var(--transition-effect);
}

.mono-theme .has-red-color-background-color {
  background-color : #414241;
  transition: var(--transition-effect);
}

.sectionBottomLine {
  width: 100%;
  height: 2px !important; 
  background-color: rgb(210, 210, 210) !important;
  margin: 4rem 0px !important;
}

/* sectionLink css start */

.sectionLink {
  width: fit-content;
}

.sectionLink a {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-effect);
}

.sectionLink i {
  border: 2px solid black;
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  transition: var(--transition-effect);
}

.sectionLink:hover a {
  color: #e50050;
}

.sectionLink:hover i {
  border: 2px solid #e50050;
  margin-left: 15px;
}

/* sectionLink css end */

/* custom sub links css start */

div.custom-sublinks-container {
  margin-left: 20px;
  margin-bottom: 40px;
}

p.custom-sublink {
  margin-bottom: 0.8rem;
}

p.custom-sublink a {
  font-size: 1.3rem;
}

p.custom-sublink a i {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.1rem;
}

@media(max-width:991px){
  p.custom-sublink a {
    font-size: 1.2rem;
  }
  
  p.custom-sublink {
    margin-bottom: 0.5rem;
  }
  
  p.custom-sublink a i {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
}

@media(max-width:767px){
  div.custom-sublinks-container {
    margin-left: 15px;
    margin-bottom: 30px;
  }
  p.custom-sublink a {
    font-size: 1.1rem;
  }
  p.custom-sublink {
    margin-bottom: 0.4rem;
  }
  p.custom-sublink a i {
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.9rem;
  }
}

@media(max-width:540px){
  div.custom-sublinks-container {
     margin-left: 10px;
  }
}

/* custom sub links css start */

/* smart-grid-template-block css start */

.projektMeetContainer {
  margin-bottom: 0 !important;
  gap:0 !important;
  margin-top: 2rem;
}

/* zumprojectDiv css start */

.zumprojectDiv {
  margin-top: 4rem;
  padding: 2rem;
  transition: var(--transition-effect);
}

.zumprojectHeadline {
  margin-bottom: 1.5rem !important;
  transition: var(--transition-effect);
}

.zumprojectDiv p {
  transition: var(--transition-effect);
}

.zumprojectDiv p:last-child {
  margin-bottom: 1.5rem !important;
}

.has-project-background-background-color {
  background-color: #f6b5af;
}

.mono-theme .has-project-background-background-color {
  background-color: #5b3b67;
}

.mono-theme .zumprojectHeadline , .mono-theme .zumprojectDiv p, .mono-theme .zumprojectDiv a {
  color: #ffffff;
}

.color-theme .zumprojectHeadline , .color-theme .zumprojectDiv p, .color-theme .zumprojectDiv a {
  color: #000000;
}

.mono-theme .zumprojectDiv a i {
  border-color: #ffffff;
}

.color-theme .zumprojectDiv a i {
  border-color: #000000;
}

.zumprojectDiv a:hover {
  color: #e50050;
}

.zumprojectDiv a:hover i {
  color: #e50050;
  border-color: #e50050;
}

/* zumprojectDiv css end */

/* meetexpertDivmain css start */

.meetexpertDivmain {
  gap: 0 !important;
}

.meetexpertDiv {
  padding: 2rem;
  transition: var(--transition-effect);  
}

.meetexpertDiv h2 {
  margin-bottom: 1.5rem;
}

.meetexpertDiv p {
  margin-bottom: 1.5rem;
}

.meetexpertDivmain .meetexpertDivImage-content {
  margin:0 !important;
}

.expert-image{
  width: 100%;
  margin: 0;
}

.expert-image img{
  width: 100%;
}

.has-expert-background-background-color {
  background-color: #e9dfec;
}

.mono-theme .has-expert-background-background-color {
  background-color: #d6d6d6 !important;
}

/* meetexpertDivmain css end */

/* smart-grid-template-block css end */

div#virtuelle-hauptversammlung {
  position: relative;
  z-index: 2;
}

div#textlab {
  position: relative;
  z-index: 2;
}

div#esg-funding {
  position: relative;
  z-index: 2;
}

/* the-content css end */

/* contact us link section css start */

.beforeFooter {
  position: relative;
  text-align: center;
  padding: 30px 0;  
  z-index: 900;
  transition: var(--transition-effect);
}

.beforeFooter a {  
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition-effect);
}

.beforeFooter i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 2.5rem;  
  border-radius: 50%;
  margin-right: 15px;
  transition: var(--transition-effect);
}

.mono-theme .beforeFooter {
  background-color: #f6b5b0;
}

.color-theme .beforeFooter {
  background-color: #e50050;
}

.mono-theme .beforeFooter a {
  color: #000000;
}

.color-theme .beforeFooter a {
  color: #ffffff;
}

.mono-theme .beforeFooter a:hover {
  color: #ffffff;
}

.color-theme .beforeFooter a:hover {
  color: #000000;
}

.mono-theme .beforeFooter a:hover i {
  border: 3px solid #ffffff;
}

.color-theme .beforeFooter a:hover i {
  border: 3px solid #000000;
}

.mono-theme .beforeFooter i {
  border: 3px solid #000000;
}

.color-theme .beforeFooter i {
  border: 3px solid #ffffff;
}

/* contact us link section css start */

/* footer css start */

footer {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 30px;
}

footer a , .footer-5-widget ul li {
  transition: var(--transition-effect);
}

footer a:hover {
  color: #e50050;
}

.footer-5-widget ul li:hover {
  color: #e50050;
  border-color: #e50050;
}

.footerlogo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footerlogo img {
  width: auto;
  height: 1.8rem;
}

.footerlogo p {
  color: #ffffff;
  font-size: 1.8rem;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}

.footertitle a {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  text-decoration: none;
  letter-spacing: 0;
  font-weight: bold;
}

.footerAddress p {
  color: #ffffff;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 0 !important;
}

.menu-footer-main-menu-de-container ul, .menu-footer-main-menu-en-container ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.menu-footer-main-menu-de-container ul li, .menu-footer-main-menu-en-container ul li {
  color: #ffffff;
  padding: 0;
  margin-left: 1rem;
  margin-right: 1rem;
  letter-spacing: 0;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
  transition: var(--transition-effect);
}

.menu-footer-main-menu-de-container ul li:hover, .menu-footer-main-menu-en-container ul li:hover {
  color: #e50050;
}

.menu-footer-main-menu-de-container ul li a, .menu-footer-main-menu-en-container ul li a{
  font-size: 1.5rem;
}

.footersubtitle {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  font-weight: bold;
}

.footerLinks p:hover {
  color: #e50050;
}

.footerLinks a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-effect);
  font-weight: bold;
}

.footerLinks a:hover{
  font-weight: bold;
}

/* footer css start */

.headline {
  font-size: 2.4rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.1;
}

.mainHeader {
  width: 100%;
  height: fit-content;
  z-index: 1000;
}

.post-link{
  text-decoration: none;
}

.post-link:hover{
  text-decoration: none;
}

.postsectionLink.right-link{
  text-align: right;
  display: flex;
  justify-content: end;
}

.postlistLink i{
  border: 2px solid black;
  aspect-ratio: 1 / 1;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  cursor: pointer;
  transition: var(--transition-effect);
}

.postsectionLink i {
  border: 2px solid black;
  aspect-ratio: 1 / 1;
  width: 4rem;
  height: 4rem;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  cursor: pointer;
  transition: var(--transition-effect);
}

form .postsectionLink i {
    border-color: #ffff;
}

form .postsectionLink i:hover , .postlistLink i:hover , .postsectionLink.right-link i:hover {
    border-color: #e50050;
    color: #e50050;
}


@media(max-width:1600px){

  .navPartTwo ul li {
    padding: 5px 15px;
  }

  .navPartTwo ul.sub-menu li {
    padding: 5px 0px;
  }
  
  .header-1-widget a.wpml-ls-link {
    padding: 4px 15px !important;
  }

  .navPartTwo img {
    height: 3.2rem;
    margin-left: 5px;
  }

}

@media(max-width:1536px){

  .footersubtitle {
    font-size: 1.3rem;
  }
  
  .menu-footer-main-menu-de-container ul li a, .menu-footer-main-menu-en-container ul li a{
    font-size: 1.3rem;
  }
  
  .menu-footer-main-menu-de-container ul li, .menu-footer-main-menu-en-container ul li{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0;
    letter-spacing: 0;
    font-weight: bold;
    list-style: none;
  }
  

}

@media(max-width:1480px){

  .navLogo img {
    height: 2.3rem;
    width: auto;
  }

  .navLogo p {
    font-size: 1.9rem;
    line-height : 2rem;
  }

  .navPartTwo ul li a {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  .navPartTwo ul.sub-menu li {
    padding : 6px 0px;
  }

  .navPartTwo ul.sub-menu li a {
    line-height: 1.7rem;
  }

}

@media(max-width:1400px){
  .navPartTwo ul li a {
      color: #000;
      font-size: 1.4rem;
      margin: 0;
      padding: 0;
      letter-spacing: 0;
      font-weight: bold;
      text-decoration: none;
      transition: var(--transition-effect);
  }
  
  .headline {
    font-size: 2.8rem;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    font-weight: bold;
    line-height: 1.1;
  }
}

@media(max-width:1366px){

  /* .the-title {
    min-height: calc(83vh);
  } */

  .navLogo img, .footerlogo img {
    height: 2rem;
  }

  .navLogo p {
    font-size: 1.7rem;
    line-height: 1.8rem;
  }

  .footerLinks {
    text-align: right;
    flex-direction: column-reverse;
  }

  p.footersubtitle {
    margin-left: 0.5rem !important;
  }

  .menu-footer-main-menu-de-container ul, .menu-footer-main-menu-en-container ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .main-footer{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .navPartTwo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: start;
    padding: 0px;
    padding-top: 120px;
    padding-bottom: 30px;
    transform: translateX(-100%);
    transition: var(--transition-effect);
  }

  .menu-main-menu-de-container, .menu-main-menu-en-container {
    width: 100%;
    padding: 0px 20px;
    overflow-y: scroll;
  }
  
  .navPartTwo ul li.menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
    }

  .navPartTwo .header-1-widget {
    display: none;
  }

  .mobileNavContainer .header-1-widget.active {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
  }

  .mobileNavContainer .header-1-widget ul li a {
    font-size: 1.4rem;
    padding: 5px 45px !important;
  }

  /* .header-1-widget li.wpml-ls-current-language a {
    border-color: white !important;
  } */

  .mono-theme .header-1-widget li.wpml-ls-current-language a {
    border-color: #000000;
  }
  
  .color-theme .header-1-widget li.wpml-ls-current-language a {
    border-color: #ffffff;
  }

  .mono-theme span.wpml-ls-native {
    color: #000000;
  }
  
  .color-theme span.wpml-ls-native {
    color: #ffffff;
  }

  .color-theme .preset-page__widget-1 li a span.wpml-ls-native {
    color: #000000 !important;
  }

  .mono-theme .navPartTwo {
    background-color: #ffffff;
  }
  
  .color-theme .navPartTwo {
    background-color: #4f395a;
  }

  .menu-main-menu-de-container, .menu-main-menu-en-container{
    width: 100%;
  }

  .navPartTwo ul.menu{
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
    flex-direction: column;
    padding: 0 !important;
  }

  .navPartTwo ul.menu li{
    padding: 10px 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-effect);    
    border-radius: 0;
    width: 100%;
    text-align: center;
  }

  .mono-theme .navPartTwo ul.menu li {
    border-bottom: 1px solid #000000;
  }
  
  .color-theme .navPartTwo ul.menu li {
    border-bottom: 1px solid #ffffff;
  }

  .navPartTwo ul.menu li:last-child {
    border-bottom: none;
  }

  /* .navLink {
    padding: 10px 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-effect);    
    border-radius: 0;
    width: 100%;
    text-align: center;
  }

  .mono-theme .navLink {
    border-bottom: 1px solid #000000;
  }
  
  .color-theme .navLink {
    border-bottom: 1px solid #ffffff;
  }

  .navLink:nth-child(5) {
    border-bottom: none;
  } */

  .navPartTwo.active .menu-item {
    transform: translateY(0);
    opacity: 1;
  }

  .navPartTwo.active {
    transform: translateX(0);
  }

  .navPartTwo ul.menu li a {
    font-size: 2rem;
  }

  .mono-theme .navPartTwo ul.menu li a{
    color: #000000;
  }
  
  .color-theme .navPartTwo ul.menu li a{
    color: #ffffff;
  }

  .navPartTwo img {
    display: none;
  }

  .mobileNavButton {
    border: 1px solid #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 5;
  }

  .mobileNavButton.active {
    position: fixed;
    /* top: 15px; */
    right: 15px;
  }

  .lineOne {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #000000;
    margin: 2px 0;
    transition: var(--transition-effect);
  }

  .mobileNavButton.active .lineOne {
    transform: rotateZ(45deg) translate(4px, 4px);
    /* background-color:#ffffff; */
  }

  .lineTwo {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #000000;
    margin: 2px 0;
    transition: var(--transition-effect);
  }

  .mobileNavButton.active .lineTwo {
    opacity: 0;
  }

  .lineThree {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #000000;
    margin: 2px 0;
    transition: var(--transition-effect);
  }

  .mobileNavButton.active .lineThree {
    transform: rotateZ(-45deg) translate(4px, -5px);
    /* background-color: #ffffff; */
  }

  .mono-theme .mobileNavButton.active {
    border: 1px solid #000000;
  }
  
  .color-theme .mobileNavButton.active {
    border: 1px solid #ffffff;
  }

  .mono-theme .mobileNavButton.active .lineOne {
    background-color: #000000;
  }
  
  .color-theme .mobileNavButton.active .lineOne {
    background-color: #ffffff;
  }

  .mono-theme .mobileNavButton.active .lineThree {
    background-color: #000000;
  }
  
  .color-theme .mobileNavButton.active .lineThree {
    background-color: #ffffff;
  }

  .mobileNavImage {
    display: block !important;
    margin-right: 20px;
  }

  .mobileNavImage.active {
    margin: 5px 60px 5px 0;
  }

  .mobileNavImage img {
    height: 2.8rem;
    width: auto;
  }

  .mobileNavContainer {
    display: flex;
    align-items: center;
  }

  /* new menu css start here */

  ul.sub-menu {
    position: relative;
    transform: translate(0, 0) !important;
    left: 0;
    top: 0;
    visibility: visible;
    opacity: 1;
    width: 100%;
    display: none;
    transition: none;
    background-color: transparent;
    border: none;
    padding-left: 0px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: 10px;
  }

  .navPartTwo ul.menu li {
    padding: 15px 15px;
    padding-left: 0px;
    margin-left: 15px;
    width: calc(100% - 30px);
    text-align: left;
  }

  .navPartTwo ul.menu li a {
    font-size: 2.5rem;
    line-height : 2.6rem;
  }

  .navPartTwo ul.sub-menu li a {
    font-size: 1.5rem !important;
    line-height : 2.2rem;
    font-weight: 600;
  }
  
  .navPartTwo ul.sub-menu li {
    padding: 5px 15px;
    padding-left: 0px;
    border-bottom: 0 !important;
  }

  /* new menu css end here */
  
}

@media (max-width: 1280px) {

  /*.navPartTwo ul li a {*/
  /*  font-size: 1.3rem;*/
  /*}*/

  .fixedButton {
    z-index: 901;
  }

  /*.navPartTwo ul li {*/
  /*  padding: 5px 15px;*/
  /*  border-radius: 20px;*/
  /*}*/

  .footersubtitle {
    font-size: 1.2rem;
  }
  
  .menu-footer-main-menu-de-container ul li a, .menu-footer-main-menu-en-container ul li a{
    font-size: 1.2rem;
  }

}

@media (min-width: 1200px){
  .the-title{
    min-height: calc(76.5vh + 3rem);
  }
}

@media (max-width: 1199px) {

  .mobileNavImage img {
    height: 2.5rem;
    width: auto;
  }

  .mainHeader .mensaliaLogo {
    width: auto;
    height: 100%;
  }

  .mainHeader .mensaliaLineLogo {
    width: auto;
    height: 100%;
  }

  nav {
    padding: 15px 15px;
  } 

  .fixedButtonImage {
    height: 2rem;
    width: 2rem;
  }

  .animated-background {   
    height: 100% !important;
  }

  .animated-background .animated-background__svg.mono {
    width: calc(100% + 20px);
    height: 500px;
    top: 335px;
  }

  .animated-background .animated-background__svg.color {
    width: calc(100% + 20px);
    /* height: 600px; */
    top: 340px;    
  }

  .navLogo p , .footerlogo p {
    font-size: 1.6rem;
  }  

  .subtitle {
    font-size: 1.2rem;
  }

  .navPartTwo img {
    height: 3rem;
    margin-left: 18px;
  }

  /*h2.title.mainHeaderText {*/
  /*  font-size: 1.3rem;*/
  /*}*/

  .headline {
    font-size: 2.4rem;
  }

  .front-page-title {
    min-height: 600px;
  }

  .the-title {
    min-height: 634px;
  }

  .footertitle a {
    font-size: 1.2rem;
  }

  .footersubtitle {
    font-size: 1.2rem;
  }
  
  .menu-footer-main-menu-de-container ul li a, .menu-footer-main-menu-en-container ul li a{
    font-size: 1.2rem;
  }

  .meetexpertDiv {
    font-size: 0.92rem;
  }

}

@media (max-width: 991px) {  

  .mainHeader .mensaliaLogo {
    width: auto;
    height: 100%;
  }

  .mainHeader .mensaliaLineLogo {
    width: auto;
    height: 100%;
  }

  .mainHeaderText {
    margin-bottom: 20px;
  }

  
  .fixedButton {
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    writing-mode: initial;
    height: auto;
    padding: 15px 0;
    border-radius: 0;
    width: 100%;
  }

  .animated-background .animated-background__svg.mono {
    width: auto;
  }

  .animated-background .animated-background__svg.color {
    width: auto;
    height: 800px;
  }

  .color-theme .mainHeaderBlur {
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
  }

  /*h2.title.mainHeaderText {*/
  /*  margin-bottom: 18px;*/
  /*  font-size: 1.25rem;*/
  /*}*/

  p.sectionLink a, .zumprojectLink a  {
    font-size: 1.4rem;
  }

  .fixedButtonImage {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .sectionBottomLine {
    margin: 3rem 0px !important;
  }

  .beforeFooter {
    padding: 20px 0;
  }

  .beforeFooter i {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2.2rem;    
  }

  .headline {
    font-size: 2.15rem;
  }

  footer {
    padding: 60px 30px;
  }

  .footerLinks {
    text-align: left;
    margin-top: 1rem !important;
  }

  .copyright-text.mt-3 {
    margin-bottom: 2.5rem;
  }

  .footersubtitle {
    font-size: 1.2rem;
    margin-top: 0.2rem !important;
    margin-bottom: 0.2rem !important;    
  }

  p.footersubtitle{
    margin-left: 0rem !important;
  }

  .menu-footer-main-menu-de-container ul li, .menu-footer-main-menu-en-container ul li{
    font-size: 1.2rem;
    margin-left: 0rem !important;
  }

   .fixedButton a {
    writing-mode: unset;
  } 

  .fixedButtonImage {
    height: 1.5rem;
    width: 1.5rem;
  }

  .fixedButton.active {
    transform: translate(0, 0) rotateZ(00deg);
  }
}

@media (max-width: 767px){
  /*h2.title.mainHeaderText {*/
  /*  margin-bottom: 18px;*/
  /*  font-size: 1.1rem;*/
  /*}*/
  .headline {
    font-size: 1.85rem;
  }
  p.sectionLink a, .zumprojectLink a {
    font-size: 1.25rem;
  }
  .sectionLink i, .zumprojectLink i{
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.2rem;
    line-height: 1rem;
  }
  
  /* new menu css start here */

  

  .navPartTwo ul.menu li {
    padding: 10px 0px;
  }

  .navPartTwo ul.sub-menu {
    margin-left: 10px;
    padding: 10px;
    padding-top: 0px;
    padding-left: 5px;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .navPartTwo ul.sub-menu li {
    padding: 5px 0px !important;
    border-bottom: 0 !important;
  }

  .navPartTwo ul.menu li a {
    font-size : 2rem;
    line-height: 2.2rem;
  }

  .navPartTwo ul.sub-menu li a {
    font-size : 1.5rem !important;
    line-height: 1.8rem;
    font-weight: 600 !important;
  }
  
  .navPartTwo ul.sub-menu li.current_page_item a {
      font-weight: bold !important;
  }

  .navPartTwo ul.menu li {
    margin-left: 0px;
    width: calc(100% - 0px);
  }

  .wpml-ls-legacy-list-horizontal {
    padding: 0;
  }

  .mobileNavContainer .header-1-widget.active {
      display: block;
      position: absolute;
      top: 15px;
      left: 10px;
      z-index: 3;
  }

  .header-1-widget {
    margin-left: 5px;
  }

  nav {
      padding: 15px 15px;
      padding-top: 10px;
  }

  .mobileNavContainer .header-1-widget.active {
        left: 10px;
  }  

  /* new menu css end here */
  
}

@media (max-width: 600px) {

  #wpadminbar {
    position: fixed !important;
  }

  .mobileNavImage img {
    height: 2.6rem;
    width: auto;
  }

  .navLogo img {
    height: 1.8rem;
  }
  
  .navLogo p, .footerlogo p {
    font-size: 1.6rem;
  }

  .fixedButtonImage {
    height: 1.3rem;
    width: 1.3rem;
  }

  .fixedButton a {
    font-size: 1.1rem;   
  }

  h2.h1.has-red-color-color {
    font-size: 2.1rem;
  }

  .beforeFooter a {
    font-size: 1.8rem !important;
  }

  .beforeFooter i {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
    margin-right: 10px;
  }

  .headline {
    font-size: 1.7rem;
  }

  /*h2.title.mainHeaderText {*/
  /*  margin-bottom: 18px;*/
  /*  font-size: 1rem;*/
  /*}*/

  .mainHeaderTextContainer {
    position: absolute;
    /* right: 20px; */
  }

  /* .mainHeaderNeutral {
    left: 20px;
  } */

  .mainHeaderTextContainer-section .mainHeaderColor, .mainHeaderTextContainer-section .mainHeaderNeutral {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mainHeaderColorContainer {
    transition: var(--transition-effect);
    transform: translate(-5%, 0);
  }

  .mainHeaderNeutralContainer {
    transition: var(--transition-effect);
    transform: translate(5%, 0);
  }

  .mono-theme .mainHeaderColorContainer{
    transform: translate(-5%, 0)
  }

  .mono-theme .mainHeaderNeutralContainer {
    transform: translate(0%, 0)
  }

  .color-theme .mainHeaderColorContainer{
    transform: translate(0%, 0)
  }

  .color-theme .mainHeaderNeutralContainer {
    transform: translate(5%, 0)
  }

  footer {
    padding: 60px 15px;
  }

  .footerlogo p {
    font-size: 1.5rem;
    padding: 0;
  }

  .footerlogo img {
    height: 1.4rem;
  }

  .footersubtitle {
    font-size: 1rem;
  }

  .menu-footer-main-menu-de-container ul li a, .menu-footer-main-menu-en-container ul li a {
    font-size: 1rem;
  }

  .footertitle a {
    font-size: 1rem;
  }

}

@media (max-width: 450px) {
    
  .navLogo img {
    height: 1.6rem;
  }
  
  .navLogo p {
    font-size: 1.5rem;
    line-height: 1.6rem;
    margin-left: 2px;
  }

  .mobileNavImage img {
    height: 2.3rem;
  }

  .mobileNavImage {
    margin-right: 15px;
  }
  
  .navPartTwo {
    padding-top: 100px;
  }
  
  .navPartTwo ul.menu li a {
    font-size : 1.8rem;
    line-height: 2rem;
  }

  .navPartTwo ul.sub-menu li a {
    font-size : 1.3rem !important;
    line-height: 1.5rem;
    font-weight: 600 !important;
  }

  .beforeFooter a {
    font-size: 1.3rem !important;
  }

  .beforeFooter i {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1.25rem;
    margin-right: 10px;
  }

  .fixedButton a {
    font-size: 1rem;
  }

  .fixedButton {
    padding: 12px 0;
  }

  .headline {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .sectionLink i {
    width: 1.7rem;
    height: 1.7rem;
  }

  .zumprojectLink i {
    width: 1.7rem;
    height: 1.7rem;
  }

  .mainHeaderTextContainer {
    position: absolute;
    /* right: 10px; */
  }

  .mainHeaderNeutral {
    /* left: 0px; */
  }

  .postlistLink i {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.2rem; 
  }

  .postsectionLink i {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.5rem;
  }

}

@media(max-width:360px){
    
  nav {
    padding: 15px 10px;
    padding-top: 10px;
  }

  .navLogo img {
    height: 1.5rem;
  }

  .navLogo p {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  p.sectionLink a, .zumprojectLink a {
    font-size: 1.15rem;
  }

  .sectionLink i, .zumprojectLink i {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 1.0rem;
    line-height: 1rem;
  } 

  .footerlogo img {
    height: 1.4rem;
  }

  .footerlogo p {
    font-size: 1.4rem;
    padding: 0;
  }

}

@media(max-width:340px){

  .navLogo img {
    height: 1.4rem;
  }

  .navLogo p {
    font-size: 1.3rem;
  }

  .footerlogo img {
    height: 1.3rem;
  }

  .footerlogo p {
    font-size: 1.3rem;
    padding: 0;
  }

  .mobileNavContainer .header-1-widget.active {
    top: 20px;
    left: 10px;
}

  .mobileNavContainer .header-1-widget ul li a {
    font-size: 1.4rem;
    padding: 5px 35px !important;
  }

}

/* form custom css start */

div.has-mulled-wine-background-color .mensalia-contact-form input,div.has-mulled-wine-background-color .mensalia-contact-form textarea ,div.has-mulled-wine-background-color .mensalia-contact-form select,div.has-mulled-wine-background-color .mensalia-contact-form select option {
  color: rgb(0 0 0);
  background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
}

div.has-mulled-wine-background-color .mensalia-contact-form select,div.has-mulled-wine-background-color .mensalia-contact-form select option, div.has-mulled-wine-background-color .mensalia-contact-form input[type=text], div.has-mulled-wine-background-color .mensalia-contact-form input[type=email],div.has-mulled-wine-background-color .mensalia-contact-form input[type=tel],div.has-mulled-wine-background-color .mensalia-contact-form textarea {
  background-color: rgb(232, 240, 254) !important;
}

div.has-mulled-wine-background-color .mensalia-contact-form select:focus,div.has-mulled-wine-background-color .mensalia-contact-form select option, div.has-mulled-wine-background-color .mensalia-contact-form input[type=text]:focus, div.has-mulled-wine-background-color .mensalia-contact-form input[type=email]:focus,div.has-mulled-wine-background-color .mensalia-contact-form input[type=tel]:focus,div.has-mulled-wine-background-color .mensalia-contact-form textarea:focus {
  background-color: rgb(232, 240, 254) !important;
}

span.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.mensalia-contact-form [type=submit] {
  background: none;
  color: transparent;
  font-size: 0;
  border: none;
  display: flex;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  margin-top: 1.5rem;
  padding: 0;
}

@media (min-width: 992px) {
  .mensalia-contact-form [type=submit] {
    margin-top: -1.3rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (max-width: 450px) {
    .mensalia-contact-form [type=submit] {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.mensalia-contact-form [type=submit] svg {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
}

.mensalia-contact-form [type=submit] svg path {
  transition: var(--transition-effect);
}

div.has-mulled-wine-background-color .mensalia-contact-form [type=submit] svg path {
  fill: #fff;
}

.mensalia-contact-form [type=submit] svg path {
  fill: #000;
}

.mensalia-contact-form [type=submit] svg path.cls-2 {
  stroke-miterlimit: 10;
}

.mensalia-contact-form [type=submit] svg:hover path , div.has-mulled-wine-background-color .mensalia-contact-form [type=submit] svg:hover path {
  fill: #e50050;
  transition: var(--transition-effect);
}

/* form custom css end */

/* Preloader start  */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0vh;
  visibility: hidden;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
  transition: all 750ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform-origin: left;
}

body.loading {
  overflow-x: hidden;
}

body.loading #preloader {
  height: 100vh;
  width: 100vw;
  visibility: visible;
}

#preloader > div {
  opacity: 0;
}

body.loading #preloader > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: end;
  animation: preloader 1.5s infinite linear;
  opacity: 1;
}

#preloader img {
  width: 150px;
  height: auto;
}

span.preloader-text {
  font-size: 2.8rem;
  line-height:2.2rem;
  margin: 0;
  font-family: "Mont", sans-serif !important;
  font-weight: 500 !important;
}

@keyframes preloader {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
}

@media(max-width:991px){
    #preloader img {
        width: 120px;
        height: auto;
    }
    span.preloader-text {
        font-size: 2.2rem;
        line-height: 2rem;
    }
}

@media(max-width:540px){
     #preloader img {
        width: 100px;
        height: auto;
    }
    span.preloader-text {
        font-size: 1.8rem;
        line-height: 1.5rem;
        margin-left: -3px;
    }
}

@media(max-width:768px){
    .custom-cc-heading {
        font-size: 1.8rem;
    }
}

@media(max-width:540px){
    .custom-cc-heading {
        font-size: 1.5rem;
    }
}

@media(max-width:450px){
    .custom-cc-heading {
        font-size: 1.25rem;
    }
    .custom-cc-heading-en {
        font-size: 2rem;
    }
}

/* Preloader end */

.menu-main-menu-de-container::-webkit-scrollbar, .menu-main-menu-en-container::-webkit-scrollbar {
  display: none;
}
