:root {
  --main-bg-color: #f7f9fc;
  --main-border-color: #C7D2E3;
  --border-light-blue: #D9E0EA;
  --main-gray-color: #636465;
  --main-link-color: #31C1FF;
}
@font-face {
    font-family: AlbraBold;
    src: url("../assets/fonts/AlbraTRIAL-Bold.otf");
}
@font-face {
    font-family: AlbraMedium;
    src: url("../assets/fonts/AlbraTRIAL-Medium.otf");
}
@font-face {
    font-family: AlbraRegular;
    src: url("../assets/fonts/AlbraTRIAL-Regular.otf");
}
@font-face {
    font-family: FilsonProMedium;
    src: url("../assets/fonts/FilsonProMedium-Medium.otf");
}
@font-face {
    font-family: FilsonProRegular;
    src: url("../assets/fonts/FilsonProRegular-Regular.otf");
}

* {
    box-sizing: border-box;
    font-family: FilsonProRegular, sans-serif;
    margin: 0;
    padding: 0;
}
html,body {
	height: 100%; /*Firefox needs this line...*/
}

.h1 {
    font-size: 60px;
    font-weight: normal;
    line-height: 72px;
    font-family: AlbraBold;
}
.h2 {
    font-size: 42px;
    font-weight: normal;
    line-height: 50px;
    font-family: AlbraBold;
}
.h3 {
    font-size: 30px;
    font-weight: normal;
    line-height: 42px;
    font-family: AlbraBold;
}
.h4 {
    font-size: 24px;
    font-weight: normal;
    line-height: normal;
    font-family: AlbraBold;
}
.h5 {
    font-size: 20px;
    font-weight: normal;
    line-height: 27px;
    font-family: AlbraBold;
}
.smallTitle {
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    font-family: AlbraBold;
}
.buttonFont {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    font-family: FilsonProMedium;
}
@media only screen and (max-width: 850px) {
    .h1 {
        font-size: 30px;
        line-height: 42px;
    }
    .h2 {
        font-size: 24px;
        line-height: normal;
    }
    .h3 {
        font-size: 20px;
        line-height: normal;
    }
    .h4 {
        font-size: 20px;
        line-height: normal;
    }
    .h5 {
        font-size: 16px;
        line-height: normal;
    }
    .buttonFont {
        font-size: 16px;
        line-height: normal;
    }
}
.body1 {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    font-family: FilsonProRegular;
}
.body2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: FilsonProRegular;
}
.body3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: FilsonProRegular;
}
.body4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: FilsonProRegular;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 50;
    transition: 0.3s;
}
.headerHidden {
    top: -150px !important;
}
.burger {
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    display: none;
}
.burgerLine {
    width: 24px;
    height: 2px;
    position: absolute;
    left: 4px;
}
#burgerLine1 {
    top: 6px;
    transition: 0.4s;
}
#burgerLine2 {
    top: 15px;
    transition: 0.2s;
}
#burgerLine3 {
    top: 24px;
    transition: 0.4s;
}
.headerWhiteBackground {
    background: var(--main-bg-color);
    border-bottom: 1px solid var(--main-border-color);
}
.whiteBG {
    background: white;
}
.whiteColor {
    color: white;
}
.blackBG {
    background: black;
}
.blackColor {
    color: black;
}
#mobileMenuContainer {
    display: flex;
    padding: 0 5%;
    height: 80px;
}
.logoContainer {
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    text-decoration: none;
}
.logoImg {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
}
#logoTitle {
    padding-left: 20px;
    font-size: 26px;
    line-height: 29px;
    cursor: pointer;
    transition: 0.2s;
}
.menuContainer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 5%;
    top: 0;
    height: 80px;
}
.menuItem {
    text-decoration: none;
    margin: 0 20px;
    transition: 0.2s;
}
.menuItemText {
    font-size: 18px;
    line-height: 25px;
}
.menuItemWithBorder {
    text-decoration: none;
    margin: 0 20px;
    font-size: 20px;
    line-height: 22px;
    padding: 13px 20px 11px 20px;
    transition: 0.2s;
    border-radius: 4px;
}
.menuItemWithBorderWhite {
    color: white;
    border: 1px solid white;
}
.menuItemWithBorderWhite:hover {
    background: white;
    color: #10253E; /*#61748A;*/
}
.menuItemWithBorderBlack {
    color: black;
    border: 1px solid black;
}
.menuItemWithBorderBlack:hover {
    background: black;
    color: white;
}

#menuItemContactMobile {
    display: none;
}
#menuItemContactWeb {
    display: block;
}
.menuArrow {
    display: none;
    filter: invert(0);
    transition: 0.2s;
}
.invertArrow {
    filter: invert(1);
}
.menuItemTextWhite, .menuItemTextBlack {
    text-wrap: nowrap;
    padding: 13px 0 11px 0;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0);
}
.menuItemTextWhite:hover {
    border-bottom: 1px solid white;
}
.menuItemTextBlack:hover {
    border-bottom: 1px solid black;
}
@media only screen and (max-width: 850px) {
    #header {
        height: 76px;
        overflow: hidden;
    }
    #mobileMenuContainer {
        justify-content: space-between;
        width: 100%;
        height: 76px;
        align-items: center;
    }
    .logoImg {
        width: 28px;
        height: 28px;
    }
    #logoTitle {
        padding-left: 12px;
        font-size: 20px;
        line-height: 22px;
    }
    .burger {
        display: block;
    }
    .menuContainer {
        width: 100%;
        position: relative;
        height: unset;
        display: block;
        right: unset;
        top: unset;
    }
    .menuItem {
        width: 100%;
        min-height: 56px;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0 5%;
    }
    .menuItemText {
        font-size: 16px;
        line-height: 24px;
    }
    .menuItemInnerContainer {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--main-border-color);
        width: 100%;
        min-height: 56px;
    }
    #menuItemContactMobile {
        display: block;
    }
    #menuItemContactWeb {
        display: none;
    }
    .menuArrow {
        display: block;
    }
    .menuItemText:hover {
        border-bottom: 1px solid rgba(255,255,255,0);
    }
}

.footer {
    max-width: 1350px;
    margin: auto;
    width: 100%;
}
.footerInnerContainer {
    display: flex;
    margin-bottom: 100px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.footerInnerContainer2 {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--main-border-color);
    padding-top: 30px;
}
.footerLink {
    color: black;
    text-decoration: none;
}
.footerLinkTitle {
    margin-bottom: 30px; 
}
#footerLogo {
    flex-grow: 1;
    text-align: right;
}
#footerLogo img {
    width: 28px;
    height: 28px;
}
.footerLinksContainer {
    margin-right: 220px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 850px) {
    .footerInnerContainer {
        flex-direction: column;
        margin-bottom: 0;
    }
    .footerInnerContainer2 {
        flex-direction: column;
        align-items: flex-start;
        border-top: none;
        padding-top: 0;
    }
    .footerLinksContainer {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .footerLinkTitle {
        margin-bottom: 16px; 
    }
    #footerTitle {
        margin-bottom: 16px;
    }
    #footerLogo {
        flex-grow: 0;
        text-align: left;
        margin-top: 40px;
    }
    #footerLogo img {
        width: 44px;
        height: 44px;
    }
    .footLinkB4 {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
}
.languageMenuBtn {
    font-size: 18px !important;
    line-height: 25px !important;
}
.languageMenuBtnBlackColor {
    color: black !important;
}
.languageMenuBtnWhiteColor {
    color: white !important;
}
.languageMenuBtnWhiteBG {
    background: var(--main-bg-color) !important;
}
.languageMenuBtnBorder {
    border-bottom: 1px solid rgba(0,0,0,0);
    transition: 0.2s;
}
.mobileOnly {
    display: none;
}
#language:hover + .languageMenuBtnWhiteBorder {
    border-bottom: 1px solid white;
}
#language:hover + .languageMenuBtnBlackBorder {
    border-bottom: 1px solid black;
}
.weglot-container, .country-selector {
    position: relative !important;
    bottom: unset !important;
    right: unset !important;
}
.country-selector, .wgcurrent, .wgcurrent:after, .country-selector ul {
    background: none !important;
    border: none !important;
}
.country-selector a {
    height: 46px !important;
    padding: 13px 20px 11px 20px !important;
}
.weg-openup ul {
    bottom: unset !important;
    top: 47px !important;
}
.weg-openleft ul {
    right: unset !important;
    top: 47px !important;
}
@media only screen and (max-width: 850px) {
    .languageMenuBtn {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .languageMenuBtnBorder {
        display: none;
    }
    .languageMenuBtnWhiteBG {
        background: none !important;
    }
    #language:hover + .languageMenuBtnWhiteBorder {
        border-bottom: 1px solid rgba(0,0,0,0);
    }
    #language:hover + .languageMenuBtnBlackBorder {
        border-bottom: 1px solid rgba(0,0,0,0);
    }
    .country-selector, .country-selector ul {
        position: relative !important;
    }
    .country-selector a {
        cursor: default;
        height: 56px !important;
        padding: 13px 0 11px 0 !important;
    }
    .weglot-container {
        width: 100%;
    }
    .country-selector {
        display: block !important;
    }
    .weg-openup ul {
        bottom: unset !important;
        top: unset !important;
    }
    .weg-openleft ul {
        right: unset !important;
        top: unset !important;
    }
    .mobileOnly {
        display: block;
    }
}



