/* ===========================
Branding / Header Fixes
=========================== */
/*Logo */
.BaseMaster_imgLogo {
  max-height: 79px !important;
}

.BaseMaster_logoContainer {
  margin-top: 55px !important;
}
/*Banner */
.BaseMaster_mainMenuContainer {
  height: 150px !important;
}

/* Hide default search ??? */
.Home_page body .BaseMaster_searchBoxContainer {
  display: none;
}

.BaseMaster_mainMenuContainer .CHMenu_menu .CHMenu_menuItem, .Home_page body .BaseMaster_profileLink
{
  margin-top: 90px;
}

.BaseMaster_mainMenuContainer /* Home. Newsroom, Releasese etc... */
{
  
  height: 150px !important;
  max-height: 150px !important;
}


/* ===========================
Base Layout & Background
=========================== */
.Home_page body {
  background: url(/resources/Storage/Templates/Themes/background.jpg);
  background-repeat: no-repeat;
  background-position: center center fixed !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  
}

/* ===========================
Page Heading
=========================== */

.pnlHomePageHeadingText {
  /* position: relative;
  margin: 20px auto;
  font-size: 40px;
  */
  color: rgb(245, 132, 31);
  font-weight: bold;
  text-align: center;
  
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  font-size: 40px;
}


/* ===========================
Search Section
=========================== */
.searchContainer {
  margin: 20px auto 30px auto;
  text-align: center;
}

.searchCenteringContainer {
  max-width: 600px;
  margin: auto;
}

.searchBoxContainer {
  border: 1px solid black;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
}

.searchBox {
  width: 100%;
  font-size: 1.5em;
  border: none;
  outline: none;
}

/*===========================
MAIN MENU (2 COLUMNS)
=========================== */

.Home_mainMenu {
  display:flexbox ;
  
  
  justify-content: center;
  gap: 15px;
  
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* ===========================
MAIN MENU (2 COLUMNS)
=========================== */
.Home_mainMenu {
  display: flex;
  /* FIXED */
  justify-content: center;
  gap: 25px;
  
  max-width: 1200px;
  margin: 40px auto;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* ===========================
GLASS COLUMNS
=========================== */
.Home_mainMenuColumn {
  flex: 1;
  min-width: 320px;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  
  background: rgba(255, 255, 255,1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  
  /* subtle glass border */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

/*subtle light reflection */
.Home_mainMenuColumn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
    );
  pointer-events: none;
}

/* Section Headers (Adaptiv Connect, ELFIQ)*/
.Home_mainMenuHeader {
  font-size: 25px;
  /* color: rgb(245, 132, 31);
  */
  color: rgb(252, 120, 5);
  font-weight: bold;
  margin-bottom: 10px;
}

/* Header Description */
.Home_mainMenuHeaderDescr {
  font-size: 16px;
  font-style: italic;
  /* color: rgb(245, 132, 31);
  */
  color: rgb(252, 120, 5);
  margin-bottom: 20px;
}



.Home_mainMenuItemContainer {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 48, 70, 0.3);
  transition: background 0.3s ease;
}


/* Item Title */
.Home_mainMenuItemHeader {
  font-size: 16px;
  color: rgb(0, 48, 70);
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 5px;
  /* Space between title and description */
  white-space: normal;
  /* Allow wrapping if needed */
}

/* Item Description */
.Home_mainMenuItemDescr {
  font-size: 14px;
  font-style: italic;
  color:  rgb(0, 48, 70);
  white-space: normal;
  line-height: 1.4;
}

/* Links */
.Home_mainMenuItemContainer a {
  color:  rgb(0, 36, 53) !important;
  text-decoration: none;
}

.Home_mainMenuItemContainer a:hover {
  color: rgb(252, 120, 5) !important;
}




/* ===========================
Footer
=========================== */

.footerContainer
{
  text-align: center;
  position: fixed;
  
  position: absolute;
  width: 100%;
  bottom: 0;
  margin-top:0px;
  
  color:white !important;
  padding-bottom: 20px;
  background: rgba(0, 34, 64, 1);
}

.footerContainerItem
{
  display: inline-block;
  padding-inline-start: 40px ;
  margin-top: 5px;
}

.footerContainerLink
{
  color:white !important;
}

/* ===========================
Responsive Design
=========================== */

/* Tablet */
@media (max-width: 1024px) {
  .Home_mainMenu {
    flex-direction: column;
    max-width: 90%;
    padding: 15px;
  }
  
  .Home_mainMenuColumn {
    width: 100%;
  }
  
  .Home_mainMenuHeader {
    font-size: 24px;
  }
  
  .Home_mainMenuItemHeader {
    font-size: 18px;
  }
  
  .Home_mainMenuItemDescr {
    font-size: 15px;
    margin-left: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .Home_mainMenu {
    margin: 10px;
    padding: 10px;
  }
  
  .pnlHomePageHeadingText {
    font-size: 28px;
  }
  
  .searchContainer {
    min-height: 80px;
  }
  
  .footerContainer {
    position: static;
    margin-top: 20px;
  }
  
  .footerContainerItem {
    display: block;
    padding-left: 0;
    margin-top: 10px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .Home_mainMenu {
    padding: 5px;
  }
}

/* ===========================
Fonts
=========================== */
@font-face {
  font-family: 'Open Sans';
  src: url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2);
}.CHBlock_richTextContent, .CHBlock_container * {font-family: 'Segoe UI',Frutiger,'Frutiger Linotype','Dejavu Sans','Helvetica Neue',Arial,sans-serif;}