/* roboto-condensed-300 - latin */
/* nunito-sans-300 - latin */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/nunito-sans-v12-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/nunito-sans-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/nunito-sans-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/nunito-sans-v12-latin-300.svg#NunitoSans') format('svg'); /* Legacy iOS */
  }
  
  /* nunito-sans-regular - latin */
  @font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v12-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/nunito-sans-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/nunito-sans-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/nunito-sans-v12-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
  }
  
  /* nunito-sans-700 - latin */
  @font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-sans-v12-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/nunito-sans-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/nunito-sans-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/nunito-sans-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/nunito-sans-v12-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
  }
  

body {
    font-size: 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--textColor);
    font-weight: 300;
}

/* Variables */
:root {
    --primaryColor: #254985;
    --secondaryColor: #d2e4ee;
    --textColor: #070e1a;
    --textGrey: #888789;
    --yellowColor: #f9ebc8;
}


/* Responsive Menü */

.menutopxsbtn {
    float: right;
    margin-top: 25px;
    margin-right: 0px;
    display: block;
}

.menutopxsbtn {
display: none;
}

.menutopxs {
position: absolute;
top: 190px;
right: -500px;
width: 490px;
display: none;
padding: 0px 0px;
z-index: 999999999999;
background: var(--secondaryColor);
border-top-left-radius:  5px;
border-bottom-left-radius:  5px;
}

.menutopxs ul {
width: 90%;
margin: 15px;
padding: 0;
list-style: none;
}

.menutopxs li {
float: none !important;
background:  none !important;
width: 100%;
margin-bottom: 10px;
}

.menutopxs li a {
padding: 10px !important;
color: #010000;
font-weight: 700;
font-size: 17px;
text-align: center;
transition: color 0.5s;
line-height: 17px;
padding-bottom: 0px;
display: block;
text-align: left;
position: relative;
z-index: 5;
text-decoration: none !important;
}

.menutopxs li a span {
font-size: 15px;
font-weight: 400;
display: block;
}

.menutopxs li a:hover, .menutopxs li.active>a {
color: var(--primaryColor);
background: none !important;
}

.menutopxs .parent .nav-child li:last-child {
border-bottom: 0;
}

.menutopxs .parent .nav-child {
}


.menutopxs li li a {
border-bottom: 0px;
font-size: 17px;
color: #010000;
text-decoration: none;
display:  block;
overflow: hidden;
padding-left: 15px !important;
}

.menutopxs ul ul {
margin: 0;
padding: 0;
padding-left: 15px;
}   

.menutopxs h1 {
font-weight: 700;
letter-spacing: -3px;
font-size: 50px;
cursor: pointer;
margin: 0px;
padding: 30px 15px;
text-align: center;
color: #010000;
}

.menutopxs h1 img {
width: 45px;
height: auto,
}

.menutopxs ul.nav-child {
display: none;
}

.menutopxs li.active ul.nav-child {
display: block;
}

.menutopxs li .parentnavimg, .menutopxs li .parentnavclose {
display: block !important;
position: absolute;
right: 15px;
top: 5px;
z-index: 10;
}

/* Hamburger Menu Icon - to X */

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s; }
  
  .c-hamburger:focus {
    outline: none; }
  
  .c-hamburger span {
    display: block;
    position: absolute;
    top: 22px;
    left: 9px;
    right: 9px;
    height: 4px;
    background: var(--primaryColor); }
  
  .c-hamburger span::before,
  .c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primaryColor);
    content: ""; }
  
  .c-hamburger span::before {
    top: -10px; }
  
  .c-hamburger span::after {
    bottom: -10px; }
  
  .c-hamburger--htx {
    background-color: #fff; }
  
  .c-hamburger--htx span {
    transition: background 0s 0.3s; }
  
  .c-hamburger--htx span::before,
  .c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s; }
  
  .c-hamburger--htx span::before {
    transition-property: top, transform; }
  
  .c-hamburger--htx span::after {
    transition-property: bottom, transform; }
  
  /* active state, i.e. menu open */
  .c-hamburger--htx.is-active {
    background-color: #fff; }
  
  .c-hamburger--htx.is-active span {
    background: none; }
  
  .c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg); }
  
  .c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg); }
  
  .c-hamburger--htx.is-active span::before,
  .c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s; }
  
  
.topbar {
    background: var(--secondaryColor);
    padding: 15px 0px;
}

.topbar .module-topbar-contact {
    text-align: left;
    color: var(--primaryColor);
    padding-top: 10px;
}

.topbar .module-topbar-contact a {
    display: inline-block;
    margin-right: 20px;
}

.topbar .module-topbar-login form {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    margin-bottom: 0;
}

.topbar .module-topbar-login form input[type="text"], .topbar .module-topbar-login form input[type="password"] {
    margin: 0px 5px;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
    color: var(--textColor);
    max-width: 200px;
    border: 1px solid #fff;
    outline: none;
}

.topbar .module-topbar-login form button {
    margin: 0px 5px;
    border-radius: 5px;
    padding: 10px;
    background: var(--secondaryColor);
    color: var(--primaryColor);
    max-width: 200px;
    border: 1px solid var(--primaryColor);
    text-transform: uppercase;
    transition: all 0.8s;
}

.topbar .module-topbar-login form button:hover {
    background: var(--primaryColor);
    color: #fff;
}


.button {
    border-radius: 5px;
    padding: 10px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.8s;
    margin: 0px 5px;
}   

.btnprimary {
    background: var(--primaryColor);
    color: #fff;
    border: 1px solid var(--primaryColor);
}

.btnprimary:hover {
    background: var(--secondaryColor);
    color: var(--primaryColor);
}
  

nav {
    padding: 15px 0px;
    position: relative;
    z-index: 10;
}

nav .module-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
	transition: all 0.8s;
}

.module-mainnav ul.mainnav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 60px;
	transition: all 0.8s;
}

.module-mainnav ul.mainnav>li>a {
    color: var(--textColor);
    font-size: 1.8rem;
    text-decoration: none !important;
    transition: all 0.8s;
    padding: 20px 0px;
}

.module-mainnav ul.mainnav>li>a:hover {
    color: var(--primaryColor);
}

.module-mainnav ul.mainnav>li.parent>a:after {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-weight: 900;
    font-size: 1.3rem;
    margin-left: 5px;
}

.module-mainnav ul.subnav {
    background: var(--secondaryColor);
    padding: 15px 25px;
    border-radius: 5px;
    position: absolute;
    top: 100px;
    min-width: 200px;
}


.module-mainnav ul.subnav>li>a {
    color: var(--textColor);
    font-size: 1.8rem;
    text-decoration: none !important;
    transition: all 0.8s;
}

.module-mainnav ul.subnav>li>a:hover {
    color: var(--primaryColor);
}

.module-mainnav ul.subnav>li {
    margin: 7px 0px;
}

header {
    background: rgb(37,73,133);
    background: -moz-linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    background: linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#254985",endColorstr="#4072c9",GradientType=1); 
    width: 100%;
    position: relative;
	margin-top: 240px;
}

header .container-wide {
    height: 500px;
}

.container-wide {
    width: 100%;
    max-width: 1600px;
    position: relative;
}

header .headerimg {
    width: 57%;
    height: 100%;
    transform: skew(-20deg);
    margin-left: 8.5%;
    overflow: hidden;
}

header .headerimg img {
    position: relative;
    display:block;
    transform: skew(20deg);
    width: 240%;
    max-width: unset;
    height: auto;
    left: -60%;
    top: 0%;
    object-fit: cover;
    object-position:center center;
} 

.headervideo {
    position: absolute;
    top: 30%;
    width: 300px;
    height: 300px;
    left: 0px;
}

.headervideo img {
    border-radius: 5px;
    transition: all 0.8s;
}

.headervideo p {
    color: #fff;
    font-weight: 700;
    margin-top: 5px;
    background: var(--primaryColor);
    padding: 5px;
    border-radius: 5px;
}

.headervideo a:hover img {
    box-shadow: 0px 0px 8px #111;
}

.headernews {
    width:550px;
    position: absolute;
    top: 50px;
    right: 0px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.headernews .newsbox {
    width: 48%;
    background: var(--primaryColor);
    border-radius: 5px;
    overflow: hidden;
}

.headernews .newsbox h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.headernews .newsbox p {
    color: #fff;
    padding: 0px 20px;
}

.headernews .newsbox a {
    display: block;
    margin: 15px 20px 8px 20px;
    padding-top: 8px;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.8s;
    display: flex;
    justify-content: space-between;
}

.headernews .newsbox a:after {
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-weight: 600;
    font-size: 1.3rem;
    transform: rotate(-90deg);
}

.headernews .newsbox a:hover {
    font-weight: 700;
}

.searchbar {
    position: absolute;
    bottom: -185px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.searchbar .module-search {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.searchbar input {
    border: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: var(--yellowColor);
    padding: 15px 40px;
    color: var(--textColor);
    outline: none;
}

.searchbar button {
    padding: 15px 30px;
    border: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: var(--primaryColor);
    color: #fff;
    font-size: 2.5rem;
    transition: all 0.8s;
}

.searchbar button:hover {
    background: var(--secondaryColor);
    color: var(--primaryColor);
}

main {
    margin-top: 150px;
}

.content h3 {
    font-weight: 300;
    font-size: 2.5rem;
    display: flex;
    justify-content: row;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 30px;
}

.content h3 span {
    display: inline-block;
    position: relative;
    background: #fff;
    padding-right: 15px;
    z-index: 2;
}

.content h3:after {
    content: " ";
    display: block;
    border-bottom: 1px solid var(--textColor);
    width: 100%;
    position: absolute;
    bottom: 5px;
    left: 0px;
    z-index: 1;
}

.content .colleft {
    padding-right: 100px;
}


.newsbox {
    margin-bottom: 30px;
}

.newsbox img {
    border-radius: 5px;
}

.newsbox .subline {
    color: var(--textGrey);
}

.newsbox a.newstitle {
    font-size: 2rem;
    text-decoration: underline;
    color: var(--textColor);
    display: block;
    margin: 10px 0px;
    font-weight: 400;
}

.newsbox p {
    color: var(--textGrey);
}

.newsbox .meta-date {
    margin-top: 15px;
}

.newsbox .meta-date i {
    display: inline-block;
    margin-right: 7px;
}

.btnsecondary {
    background: #fff;
    border: 1px solid var(--primaryColor);
    letter-spacing: 1px;
}

.newsboxes .button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 25px;
}


.module-newsletter {
    color: var(--textGrey);
    margin-bottom: 50px;
}

.module-newsletter h3 {
    color: var(--textColor);
}

.module-newsletter p {
    margin-bottom: 15px;
}

.module-newsletter input[type="text"] {
    background: var(--secondaryColor);
    margin: 8px 0px;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    border: 1px solid var(--secondaryColor);
    outline: none;
}

.checkboxgroup {
    display: flex;
    margin-top: 15px;
}

.checkboxinput {
    margin-right: 10px;
}

.checkboxlabel label {
    color: var(--textColor);
}

.checkboxlabel label strong {
    font-weight: 400;
}

.checkboxlabel label {
    font-weight: 300;
}

.module-newsletter button {
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 15px;
    letter-spacing: 1px;
}

.module-newsletter .archivelink {
    color: var(--textGrey);
    text-decoration: underline;
}

.module-sponsoren img {
    max-width: 100%;
    border-radius: 5px;
}

.module-sponsoren a.button {
    background: #d5a418;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    color: var(--textColor);
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
}

.module-socialicons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.module-socialicons img {
    max-width: 40px;
    height: auto;
    margin: 8px;
    transition: all 0.8s;
}

.module-socialicons img:hover {
    opacity: 0.8;
}

.membersarea {
    background: rgb(37,73,133);
    background: -moz-linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    background: linear-gradient(180deg, rgba(37,73,133,1) 0%, rgba(64,114,201,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#254985",endColorstr="#4072c9",GradientType=1); 
    width: 100%;
    position: relative;   
    height: 400px;
    overflow: hidden;
    margin-top: 100px;
    color: #fff;
}

.membersimage img {
    width: 100%;
    height: auto;
    margin-top: -100px;
}

.membersarea .memberslabel {
    position: absolute;
    left: 15px;
    top: 50px;
    background: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: var(--textColor);
    font-size: 3rem;
    font-weight: 400;
    padding: 15px 50px;
}

.membersarea h3 {
    display: inline-block;
    position: relative;
    padding-right: 15px;
    z-index: 2;
    display: flex;
    margin-bottom: 15px;
    font-weight: 300;
}

.membersarea p {
    margin-bottom: 15px;
}

.membersarea h3:after {
    content: " ";
    display: block;
    border-bottom: 1px solid #fff;
    width: 100%;
    margin-bottom: 5px;
    margin-left: 15px;
    z-index: 1;
}

.memberstext {
    width: 100%;
    max-width: 550px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.memberstext a {
    display: inline-block;
    width: 300px;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 1px;
}

.memberstext a i {
    display: inline-block;
    margin-right: 15px;
}

.bottombuttons {
    margin-top: 5px;
}

.bottombuttons .boxes {
    display: flex;
}

.bottombuttons .boxes .box {
    width: 20%;
    margin: 5px 5px;
    height: 250px;
    position: relative;
}

.bottombuttons .boxes .box .boxlabel {
    position: absolute;
    bottom: 30px;
    left: 0px;
    background: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: var(--textColor);
    font-size: 2rem;
    font-weight: 400;
    padding: 15px;
    width: 90%;
    text-decoration: none;
    transition: all 0.8s;
}

.bottombuttons .boxes .box .boxlabel:hover {
    background: var(--primaryColor);
    color: #fff;
}

.box_newsletter {
    background: url(../img/newsletter-ab.jpg) no-repeat center;
    background-size: cover;
}

.box_raeume {
    background: url(../img/raeume-buchen.jpg) no-repeat center;
    background-size: cover;
}

.box_preise {
    background: url('../img/billroth_Medaille_gold.jpg') no-repeat center;
    background-size: cover;
}

.box_sponsoren {
    background: url('../img/Sponsoren und Kooperationen.jpg') no-repeat center;
    background-size: cover;
}
.box_ejournal {
    background: url(../img/ezb.png) no-repeat center;
    background-size: cover;
}

footer {
    background: var(--secondaryColor);
    padding: 15px 0px;
}

footer ul {
    display: flex;
    justify-content: right;
}

footer ul li {
    padding-left: 10px;
	white-space: nowrap;
}

footer ul li:after {
    /** content: "|"; */
    display: inline-block;
    margin-left: 10px;
}

footer ul li a {
    color: var(--textColor);
}

footer ul li:last-of-type:after {
    display: none;
}

.fixedtop {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 5;
    width: 100%;
    background: #fff;
}

.scrolls .fixedtop .module-logo img {
    max-width: 180px;
}

.scrolls .fixedtop .module-mainnav ul.mainnav {
    margin-top: 35px;
}		   
@media(max-width: 1200px) {
    .topbar .module-topbar-login form input[type="text"], .topbar .module-topbar-login form input[type="password"] {
        max-width: 150px;
    }
}

@media(max-width: 991px) {
    .topbar .module-topbar-login form input[type="text"], .topbar .module-topbar-login form input[type="password"] {
        max-width: 100px;
    }

    .menutopxsbtn {
        display: block;
    }

    .module-mainnav ul.mainnav {
        display: none !important;
    }

    nav .module-logo img {
        max-width: 200px;
    }

    .headernews  .newsbox:last-of-type{
        display: none;
    }

    .headernews  .newsbox p {
        display: none;
    }

    header .headerimg {
        width: 77%;
    }

    .headernews  {
        top: 10px;
        width: 450px;
        justify-content: flex-end;
    }

    .headervideo {
        width: 200px;
        height: 200px;
        top: 15%;
        left: 10px;
    }

    header .container-wide {
        height: 300px;
    }

    .headernews .newsbox {
        margin-right: 15px;
    }

    .headernews .newsbox h3 {
        font-size: 1.7rem;
    }

    .bottombuttons .boxes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bottombuttons .boxes .box {
        width: 25%;
    }

    .membersarea {
        height: auto;
    }

    .memberstext {
        width: 100%;
        height: auto;
        padding: 20px 15px
    }
}

@media(max-width: 767px) {
    .topbar .module-topbar-contact {
        text-align: center;
        margin-bottom: 10px;
    }

    .topbar .module-topbar-login form {
        justify-content: center;
    }

    .button {
        padding: 5px 10px;
    }

    .topbar .module-topbar-login form input[type="text"], .topbar .module-topbar-login form input[type="password"] {
        padding: 5px 10px
    }

    .colright {
        margin-top: 50px;
    }

    .bottombuttons .boxes .box {
        width: 48%;
    }

    footer {
        text-align: center;
    }

    footer ul {
        justify-content: center;
      }
      header .headerimg img {
        width: 300%;
        left: -100%;
      }						 
}

@media(min-width: 551px) {
    .headernews_content {
        display: none;
    }
}

@media(max-width: 550px) {
	.content .colleft {
        padding-right: 0;
    }
    .module-topbar-login .btnprimary {
        display: none;
    }


   .headernews_header {
        display: none;
    }

    .headernews .newsbox:last-of-type {
        display: block;
      }

      .headernews_content h3:after {
        display: none;
      }

      .headernews {
        flex-wrap: wrap;
        margin-bottom: 50px;
      }

      .headernews .newsbox {
        width: 98%;
      }


    .headernews_content {
        position: relative;
    }

    .headernews {
        width: 100%;
    }
    header .container-wide {
        height: 250px;
    }

    .headervideo {
        top: 8%;
    }

    header .headerimg img {
        top: -15%;
    }

    .bottombuttons .boxes .box {
        width: 98%;
    }
    .menutopxs {
        width: 320px;
    }

    header .headerimg img {
        width: 350%;
        left: -125%;
      }
}


.ignore-css a:link, .ignore-css a:visited, .ignore-css a:active {
	overflow: hidden;
	color: white;
	text-align: left;
	display: inline;
	letter-spacing: 0.0em;
}
				


/* ithelps - new news box */
.newsbox {
    margin-bottom: 0px;
}

.extra-newsbox-outer {
    margin-top: 70px;
}
.extra-newsbox {
    min-height: 100px;
    border: 1px solid #254985;
    margin-top: 40px;
    border-radius: 5px;
	margin-top: 30px;
}
.extra-newsbox .newsbox {
    padding-right: 10px !important;
    padding-bottom: 10px;
}

@media only screen and (max-width: 776px) {
    
    .extra-newsbox .newsbox .row .col-sm-6:nth-child(2) a,
    .extra-newsbox .newsbox .row .col-sm-6:nth-child(2) p{
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 15px;
    }
    .extra-newsbox .newsbox .row .col-sm-6:nth-child(1) {
        padding-right: 5px;
    }
}

		